@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Montserrat:wght@600;700;800;900&display=swap');

:root{
    --olive:#42491e;
    --olive-dark:#373e15;
    --gold:#ffbd00;
    --header-height:120px;
    --side-space:86px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    margin:0;
    min-width:320px;
    overflow-x:hidden;
    background:var(--olive-dark);
    color:#fff;
    font-family:"Montserrat",Arial,sans-serif;
}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
button{font:inherit}
.sr-only{
    position:absolute;width:1px;height:1px;padding:0;margin:-1px;
    overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0
}

/* HEADER */
.site-header{
    position:relative;
    z-index:50;
    height:var(--header-height);
    background:rgba(62,69,29,.98);
    border-top:2px solid rgba(255,190,0,.78);
    box-shadow:0 1px 8px rgba(255,190,0,.22);
}
.header-inner{
    width:calc(100% - (var(--side-space) * 2));
    height:100%;
    margin:0 auto;
    display:grid;
    grid-template-columns:180px 1fr 180px;
    align-items:center;
}
.brand{
    width:76px;
    justify-self:start;
}
.brand img{
    width:76px;
    height:76px;
    object-fit:contain;
}
.primary-nav{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:19px;
}
.primary-nav a{
    color:var(--gold);
    font-size:14px;
    line-height:1;
    font-weight:900;
    text-transform:uppercase;
    white-space:nowrap;
}
.divider{
    width:1px;
    height:13px;
    background:rgba(255,255,255,.48);
}
.inquiry-link{
    justify-self:end;
    font-family:"Archivo Black","Montserrat",sans-serif;
    font-size:14px;
    line-height:1;
    text-transform:uppercase;
    letter-spacing:1.8px;
}
.menu-toggle{
    display:none;
    width:44px;height:40px;padding:8px;
    border:0;background:transparent;cursor:pointer
}
.menu-toggle span:not(.sr-only){
    display:block;width:100%;height:3px;margin:5px 0;
    border-radius:4px;background:var(--gold)
}

/* HERO */
.hero{
    position:relative;
    height:700px;
    min-height:700px;
    overflow:hidden;
    background:#424a20;
}
.food-collage{
    position:absolute;
    inset:0;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    grid-template-rows:repeat(2,1fr);
    gap:3px;
    opacity:.20;
    filter:grayscale(.15) saturate(.70) contrast(.92);
}
.food-collage img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(53,62,20,.89) 0%,
        rgba(58,67,24,.87) 52%,
        rgba(54,63,21,.84) 100%
    );
}
.hero-inner{
    position:relative;
    z-index:2;
    width:calc(100% - (var(--side-space) * 2));
    height:100%;
    margin:0 auto;
    display:grid;
    grid-template-columns:minmax(0,1fr) 490px;
    align-items:center;
}
.hero-copy{
    align-self:start;
    padding-top:67px;
}
.eyebrow{
    margin:0 0 13px;
    color:var(--gold);
    font-size:41px;
    line-height:1;
    font-weight:700;
    letter-spacing:1.4px;
}
.hero h1{
    margin:0;
    font-family:"Archivo Black","Montserrat",sans-serif;
    font-size:108px;
    line-height:.91;
    text-transform:uppercase;
    letter-spacing:.2px;
    color:#fff;
    text-shadow:
        0 3px 0 rgba(247,136,76,.72),
        0 7px 14px rgba(255,112,48,.25);
}
.hero h2{
    margin:15px 0 3px;
    font-family:"Archivo Black","Montserrat",sans-serif;
    font-size:34px;
    line-height:1;
    text-transform:uppercase;
    letter-spacing:.25px;
}
.rating{
    display:flex;
    align-items:center;
    gap:7px;
    margin-top:4px;
    font-size:19px;
    line-height:1;
    text-transform:uppercase;
    letter-spacing:.8px;
}
.stars{
    color:var(--gold);
    font-size:22px;
    letter-spacing:1px;
}
.dish-row{
    display:flex;
    align-items:flex-start;
    gap:13px;
    margin-top:56px;
}
.dish{
    width:127px;
    text-align:center;
}
.dish-image{
    width:127px;
    height:127px;
    border:2px solid var(--gold);
    border-radius:50%;
    overflow:hidden;
    background:#252b0c;
    box-shadow:0 2px 7px rgba(0,0,0,.25);
}
.dish-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}
.dish h3{
    margin:9px 0 0;
    color:var(--gold);
    font-size:16px;
    line-height:1.32;
    letter-spacing:1px;
    font-weight:800;
}
.hero-art{
    width:474px;
    align-self:start;
    justify-self:end;
    margin-top:24px;
    margin-right:0;
}
.hero-art img{
    width:100%;
    height:566px;
    object-fit:contain;
    object-position:center bottom;
}

/* TABLET */
@media (max-width:1250px){
    :root{--side-space:42px}
    .header-inner{grid-template-columns:120px 1fr 120px}
    .primary-nav{gap:11px}
    .primary-nav a{font-size:12px}
    .divider{display:none}
    .hero-inner{grid-template-columns:minmax(0,1fr) 390px}
    .hero h1{font-size:84px}
    .eyebrow{font-size:34px}
    .hero h2{font-size:29px}
    .rating{font-size:16px}
    .stars{font-size:19px}
    .dish-row{gap:9px;margin-top:46px}
    .dish,.dish-image{width:108px}
    .dish-image{height:108px}
    .dish h3{font-size:14px}
    .hero-art{width:390px}
    .hero-art img{height:520px}
}

/* MOBILE */
@media (max-width:820px){
    :root{--header-height:74px;--side-space:16px}
    .site-header{position:sticky;top:0}
    .header-inner{grid-template-columns:1fr auto}
    .brand,.brand img{width:60px;height:60px}
    .menu-toggle{display:block;justify-self:end}
    .inquiry-link{display:none}
    .primary-nav{
        position:absolute;top:100%;left:0;right:0;
        display:none;flex-direction:column;align-items:stretch;gap:0;
        padding:14px 20px 22px;
        background:rgba(52,59,19,.99);
        border-top:1px solid rgba(255,191,0,.25);
        box-shadow:0 10px 22px rgba(0,0,0,.24)
    }
    .primary-nav.open{display:flex}
    .primary-nav a{
        padding:13px 2px;
        font-size:14px;
        border-bottom:1px solid rgba(255,255,255,.09)
    }
    .hero{height:auto;min-height:0}
    .hero-inner{
        height:auto;
        grid-template-columns:1fr;
        text-align:center;
        padding-top:26px
    }
    .hero-copy{padding-top:0}
    .eyebrow{font-size:30px}
    .hero h1{font-size:clamp(58px,16vw,86px)}
    .hero h2{font-size:clamp(24px,7vw,34px);margin-top:10px}
    .rating{justify-content:center;flex-wrap:wrap;font-size:15px}
    .dish-row{
        justify-content:center;
        flex-wrap:wrap;
        gap:16px 10px;
        margin-top:34px
    }
    .dish,.dish-image{width:104px}
    .dish-image{height:104px}
    .hero-art{
        justify-self:center;
        width:min(410px,92vw);
        margin:24px 0 0
    }
    .hero-art img{height:auto}
}
@media (max-width:520px){
    .eyebrow{font-size:25px}
    .rating{gap:5px;font-size:13px}
    .stars{font-size:17px}
    .dish-row{gap:14px 8px}
    .dish,.dish-image{width:94px}
    .dish-image{height:94px}
    .dish h3{font-size:13px}
}
