:root{
    --green:#123829;
    --cream:#F6F0E4;
    --gold:#D8A51D;
    --white:#FFFDF7;
    --soft-green:#2d5947;
    --line:rgba(18,56,41,.18);
}

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

html{
    scroll-behavior:smooth;
}

body{
    background:var(--cream);
    color:var(--green);
    font-family:Georgia, "Times New Roman", serif;
    line-height:1.58;
}

/* HEADER */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:28px 50px;
    z-index:100;
    display:flex;
    justify-content:space-between;
    align-items:center;
    transition:.35s ease;
}

.header.scrolled,
.header.menu-open{
    background:rgba(246,240,228,.94);
    backdrop-filter:blur(12px);
}

.header-brand,
.header-contact,
.index-toggle,
.index-menu a{
    font-family:Arial, sans-serif;
    text-transform:uppercase;
    letter-spacing:.18em;
    font-size:12px;
    text-decoration:none;
}

.header-brand,
.header-contact,
.index-toggle{
    color:white;
}

.header.scrolled .header-brand,
.header.scrolled .header-contact,
.header.scrolled .index-toggle,
.header.menu-open .header-brand,
.header.menu-open .header-contact,
.header.menu-open .index-toggle{
    color:var(--green);
}

.header-actions{
    display:flex;
    align-items:center;
    gap:28px;
}

.index-toggle{
    background:none;
    border:none;
    cursor:pointer;
}

.index-menu{
    position:absolute;
    top:78px;
    right:50px;
    width:min(360px, calc(100vw - 40px));
    padding:28px;
    background:rgba(246,240,228,.97);
    backdrop-filter:blur(14px);
    border:1px solid rgba(18,56,41,.12);
    display:none;
    flex-direction:column;
    gap:18px;
}

.header.menu-open .index-menu{
    display:flex;
}

.index-menu a{
    color:var(--green);
    padding-bottom:12px;
    border-bottom:1px solid rgba(18,56,41,.12);
}

.index-menu a:last-child{
    border-bottom:none;
}

.index-menu a:hover{
    color:var(--gold);
}

/* HERO */

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    background:url("images/hero.png") center center;
    background-size:cover;
    overflow:hidden;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(0,0,0,.30),
        rgba(0,0,0,.22)
    );
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:1000px;
    padding:40px;
}

.hero-logo{
    width:min(980px,92vw);
    max-width:980px;
    display:block;
    margin:auto;
    margin-bottom:55px;
    filter:
    drop-shadow(0 8px 18px rgba(0,0,0,.35))
    drop-shadow(0 0 10px rgba(255,255,255,.35));
}

.hero h1{
    color:white;
    font-weight:400;
    font-size:clamp(2.3rem,5vw,5.4rem);
    line-height:1.08;
    max-width:900px;
    margin:auto;
    text-shadow:0 2px 20px rgba(0,0,0,.45);
}

.hero-subtext{
    color:white;
    margin-top:28px;
    font-size:clamp(1.05rem,2vw,1.35rem);
    text-shadow:0 2px 16px rgba(0,0,0,.40);
}

/* TYPOGRAPHY */

.label{
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:.25em;
    font-family:Arial, sans-serif;
    font-size:12px;
    margin-bottom:25px;
}

.section{
    padding:140px 9vw;
}

.section h2,
.final-cta h2,
.contact h2{
    font-size:clamp(2.5rem,5vw,5.5rem);
    line-height:1.05;
    font-weight:400;
    max-width:1100px;
}

.narrow-text,
.body-text,
.focus-text{
    margin-top:42px;
    max-width:880px;
    font-size:clamp(1.05rem,1.6vw,1.42rem);
    color:var(--soft-green);
}

.narrow-text p + p,
.body-text p + p{
    margin-top:28px;
}

.lead{
    font-size:clamp(1.45rem,2.2vw,2.1rem);
    line-height:1.25;
    color:var(--green);
}

/* BUTTONS */

.button{
    display:inline-block;
    margin-top:45px;
    padding:16px 34px;
    color:white;
    border:1px solid white;
    text-decoration:none;
    text-transform:uppercase;
    letter-spacing:.18em;
    font-family:Arial, sans-serif;
    font-size:12px;
    transition:.25s ease;
}

.button:hover{
    background:white;
    color:var(--green);
}

.button-dark{
    color:var(--green);
    border-color:var(--green);
}

.button-dark:hover{
    background:var(--green);
    color:white;
}

/* PHILOSOPHY */

.philosophy{
    background:var(--green);
    color:white;
    padding:140px 9vw;
}

.philosophy h2{
    font-size:clamp(2.5rem,6vw,6rem);
    line-height:1.05;
    font-weight:400;
    max-width:1200px;
}

.philosophy p:not(.label){
    margin-top:28px;
    font-size:clamp(1.2rem,2vw,1.8rem);
    color:rgba(255,255,255,.82);
    max-width:850px;
}

/* APPROACH */

.two-columns{
    display:grid;
    grid-template-columns:1.05fr .75fr;
    gap:7vw;
    align-items:start;
}

/* INGREDIENTS */

.focus{
    background:var(--white);
}

.grid{
    margin-top:65px;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    border-left:1px solid var(--line);
    border-top:1px solid var(--line);
}

.grid span{
    min-height:140px;
    padding:32px;
    display:flex;
    align-items:flex-end;
    border-right:1px solid var(--line);
    border-bottom:1px solid var(--line);
    font-size:clamp(1.35rem,2vw,2rem);
    line-height:1.1;
}

/* WHY */

.why .highlight{
    font-size:clamp(1.6rem,2.5vw,2.6rem);
    color:var(--green);
    line-height:1.15;
}

/* FINAL CTA */

.final-cta{
    padding:120px 9vw;
    text-align:center;
    background:var(--white);
}

.final-cta h2{
    margin:auto;
}

/* CONTACT */

.contact{
    padding:140px 9vw;
    background:var(--green);
    color:white;
}

.contact h2{
    margin-bottom:40px;
}

.contact a{
    color:var(--gold);
    text-decoration:none;
    font-size:clamp(2rem,4vw,4rem);
}

/* FOOTER */

footer{
    background:var(--green);
    color:white;
    padding:30px;
    text-align:center;
    font-family:Arial, sans-serif;
    font-size:12px;
    letter-spacing:.15em;
    border-top:1px solid rgba(255,255,255,.12);
}

/* ANIMATIONS */

.reveal,
.reveal-section{
    opacity:0;
    transform:translateY(18px);
    transition:opacity .7s ease, transform .7s ease;
}

.reveal.visible,
.reveal-section.visible{
    opacity:1;
    transform:translateY(0);
}

/* RESPONSIVE */

@media(max-width:1050px){
    .grid{
        grid-template-columns:repeat(2,1fr);
    }

    .two-columns{
        grid-template-columns:1fr;
        gap:30px;
    }
}

@media(max-width:760px){
    .header{
        padding:20px;
    }

    .header-actions{
        gap:18px;
    }

    .header-brand,
    .header-contact,
    .index-toggle,
    .index-menu a{
        font-size:11px;
    }

    .index-menu{
        top:62px;
        right:20px;
        left:20px;
        width:auto;
    }

    .hero-logo{
        width:92vw;
        margin-bottom:42px;
    }

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

    .hero-subtext{
        font-size:1rem;
    }

    .section,
    .focus,
    .philosophy,
    .contact,
    .final-cta{
        padding:95px 7vw;
    }

    .grid{
        grid-template-columns:1fr;
    }

    .grid span{
        min-height:100px;
    }
}
