/* =========================
   GJP DIGITAL
   STYLE.CSS
========================= */

:root{
    --primary:#6E4932;
    --secondary:#B59B88;
    --cream:#FAF8F5;
    --white:#ffffff;
    --text:#2F2B28;
    --body:#655C55;
    --border:#E8DED6;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:"Inter",sans-serif;
    background:var(--cream);
    color:var(--text);
    line-height:1.8;
}

img{
    max-width:100%;
}

a{
    text-decoration:none;
}

.container{
    width:min(1100px,90%);
    margin:auto;
}

/* =========================
   HEADER
========================= */

header{
    position:sticky;
    top:0;
    background:rgba(250,248,245,.96);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--border);
    z-index:999;
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:28px 0;      /* was 22px */
}

.logo img{
    height:82px;         /* adjust between 78-86px if needed */
    width:auto;
    display:block;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:34px;            /* was 40px */
}

.nav-links a{
    color:var(--text);
    font-weight:600;
    font-size:1.05rem;
    letter-spacing:0.2px;
    transition:all .3s ease;
}

.nav-links a:hover{
    color:var(--primary);
}

.nav-button{
    background:var(--primary);
    color:white;
    padding:16px 32px;
    border-radius:10px;
    font-size:1rem;
    font-weight:600;
    transition:.3s;
}

.nav-button:hover{
    background:#5b3c29;
}

/* =========================
   HERO
========================= */

.hero{
    padding:120px 0;
}

.hero-grid{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:80px;
    align-items:center;
}

.eyebrow{
    letter-spacing:4px;
    color:var(--primary);
    font-size:.85rem;
    font-weight:700;
    margin-bottom:20px;
}

.hero h1{
    font-family:"Cormorant Garamond",serif;
    font-size:4.7rem;
    line-height:1;
    margin-bottom:30px;
    font-weight:600;
}

.hero-description{
    max-width:620px;
    margin-bottom:40px;
    color:var(--body);
    font-size:1.1rem;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

/* =========================
   BUTTONS
========================= */

.btn{
    display:inline-block;
    padding:16px 34px;
    border-radius:10px;
    transition:.3s;
    font-weight:600;
}

.btn-primary{
    background:var(--primary);
    color:white;
}

.btn-primary:hover{
    background:#5b3c29;
    transform:translateY(-3px);
}

.btn-secondary{
    border:1px solid var(--primary);
    color:var(--primary);
}

.btn-secondary:hover{
    background:var(--primary);
    color:white;
}

/* =========================
   PLACEHOLDER IMAGE
========================= */


.image-placeholder{
    border:1px solid var(--border);
    border-radius:20px;
    overflow:hidden;
    display:flex;
    height:100%;
}

.image-placeholder img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    object-position:center top;
}
/* =========================
   SECTIONS
========================= */

section{
    padding:110px 0;
}

.section-heading{
    text-align:center;
    margin-bottom:70px;
}

.section-heading p,
.section-tag{
    letter-spacing:3px;
    color:var(--primary);
    font-size:.85rem;
    font-weight:700;
    margin-bottom:15px;
}

.section-heading h2,
.about h2,
.cta h2{
    font-family:"Cormorant Garamond",serif;
    font-size:3.3rem;
    font-weight:600;
}

/* =========================
   SERVICES
========================= */

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:white;
    border:1px solid var(--border);
    border-radius:18px;
    padding:45px;
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.06);
}

.service-card h3{
    font-family:"Cormorant Garamond",serif;
    font-size:2rem;
    color:var(--primary);
    margin-bottom:20px;
}

/* =========================
   ABOUT
========================= */

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:stretch;
}

.about-content p{
    margin-bottom:25px;
    color:var(--body);
}

/* =========================
   WHY
========================= */

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.why-card{
    background:white;
    border:1px solid var(--border);
    border-radius:18px;
    padding:45px;
    transition:.3s;
}

.why-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.06);
}

.why-card h3{
    font-family:"Cormorant Garamond",serif;
    font-size:2rem;
    color:var(--primary);
    margin-bottom:18px;
}

/* =========================
   CTA
========================= */

.cta{
    text-align:center;
    background:white;
}

.cta p{
    max-width:700px;
    margin:25px auto 40px;
    color:var(--body);
}

/* =========================
   FOOTER
========================= */

footer{
    border-top:1px solid var(--border);
    padding:60px 0;
    text-align:center;
}

footer h3{
    font-family:"Cormorant Garamond",serif;
    font-size:2.4rem;
    color:var(--primary);
    margin-bottom:15px;
}

footer p{
    color:var(--body);
}

.copyright{
    margin-top:30px;
    font-size:.9rem;
}

/* =========================
   MOBILE
========================= */

@media(max-width:900px){

    nav{
        flex-direction:column;
        gap:20px;
    }

    .nav-links{
        gap:20px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero-grid,
    .about-grid,
    .services-grid,
    .why-grid{
        grid-template-columns:1fr;
    }

    .hero{
        text-align:center;
    }

    .hero-description{
        margin-left:auto;
        margin-right:auto;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero h1{
        font-size:3.3rem;
    }

    .section-heading h2,
    .about h2,
    .cta h2{
        font-size:2.5rem;
    }

}/* CONTACT FORM */

.contact-form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form textarea{

    width:100%;
    padding:18px;

    border:1px solid var(--border);
    border-radius:10px;

    background:white;

    font-family:"Inter",sans-serif;
    font-size:1rem;

    color:var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus{

    outline:none;
    border-color:var(--primary);

}

.contact-form textarea{
    resize:vertical;
    min-height:180px;
}.logo img{
    height:82px;
    width:auto;
    display:block;
    transition:transform .3s ease;
}
.logo-showcase{
    display:flex;
    justify-content:center;
    align-items:center;
    background:var(--light);
    border:1px solid var(--border);
    border-radius:20px;
    padding:60px 40px;
}

.logo-showcase img{
    width:100%;
    max-width:320px;
    height:auto;
    display:block;
}
