
:root{
    --olive:    #6E7423;
    --olive-m:  #8C9140;
    --tomato:   #C63A2F;
    --amber:    #E78B1F;
    --cream:    #F4EFE6;
    --cream2:   #EDE5D4;
    --ink:      #1F1B1A;
    --ink2:     #3a3330;
    --soft:     rgba(31,27,26,.5);
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
    background:var(--cream);
    color:var(--ink);
    font-family:'Jost',sans-serif;
    font-weight:400;
    line-height:1.65;
    overflow-x:hidden;
}
body::after{
    content:'';position:fixed;inset:0;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events:none;z-index:9999;
}
h1,h2,h3,h4{font-family:'Cormorant Garamond',serif}

/* ── TOP NAV (always on top of hero) ── */
#topnav{
    position:absolute;top:0;left:0;right:0;
    z-index:200;
    display:flex;align-items:center;justify-content:space-between;
    padding:.9rem 2rem;
    background:linear-gradient(to bottom, rgba(31,27,26,.65) 0%, transparent 100%);
}
.topnav-logo{height:128px;filter:drop-shadow(0 2px 8px rgba(0,0,0,.5))}
.topnav-links{display:flex;align-items:center;gap:.2rem;overflow-x:auto;scrollbar-width:none}
.topnav-links::-webkit-scrollbar{display:none}
.tnav-pill{
    display:inline-block;
    padding:.45rem .85rem;
    color:rgba(244,239,230,.65);
    font-size:.68rem;letter-spacing:.14em;text-transform:uppercase;
    text-decoration:none;font-weight:500;
    border-radius:2px;
    white-space:nowrap;
    transition:color .2s,background .2s;
}
.tnav-pill:hover{color:var(--amber);background:rgba(244,239,230,.06)}
@media(max-width:768px){
    #topnav{padding:.75rem 1rem}
    .topnav-links{display:none}
    .topnav-logo{display: none;}
    .photo-band{height:100%}
}

/* ── HERO ── */
#hero{
    position:relative;
    min-height:100vh;
    display:flex;flex-direction:column;
    align-items:center;justify-content:center;
    background:url('https://media.base44.com/images/public/user_69f0890960f2243cb70a9454/0e8db5711_WhatsAppImage2026-05-10at153829.jpeg') center/cover no-repeat fixed;
    overflow:hidden;
}
/* dark overlay top */
#hero::before{
    content:'';position:absolute;inset:0;
    background:rgba(31,27,26,.45);
    z-index:1;
}
/* gradient bottom-to-top */
#hero::after{
    content:'';position:absolute;
    bottom:0;left:0;right:0;
    height:38%;
    background:linear-gradient(to top, var(--olive-m) 0%, transparent 100%);
    z-index:2;
}
.hero-content{
    position:relative;z-index:3;
    text-align:center;
    padding:6rem 1.5rem 4rem;
    display:flex;flex-direction:column;align-items:center;gap:1.3rem;
}
.hero-logo-wrap{
    width:min(300px,50vw);
    background:rgba(244,239,230,.07);
    border-radius:50%;
    padding:16px;
    backdrop-filter:blur(3px);
    border:1px solid rgba(244,239,230,.16);
    animation:floatY 5s ease-in-out infinite;
}
.hero-logo-wrap img{width:100%;display:block;filter:drop-shadow(0 6px 24px rgba(0,0,0,.45))}
@keyframes floatY{0%,100%{transform:translateY(0)}50%{transform:translateY(-9px)}}


.hero-title{
    font-size: 7rem;
    font-weight:700;color:var(--cream);
    line-height:.95;letter-spacing:-.02em;
}
.hero-title em{
    display:block;font-style:italic;
    color:var(--amber);
    font-size: 9rem;
}
.hero-tagline{
    color:rgba(244,239,230,.72);
    font-size:.78rem;letter-spacing:.25em;text-transform:uppercase;font-weight:300;
}
.hero-cta{
    display:inline-flex;align-items:center;gap:.55rem;
    padding:.85rem 2.6rem;
    border:1.5px solid var(--amber);
    color:var(--cream);border-radius:2px;
    font-size:.75rem;letter-spacing:.2em;text-transform:uppercase;
    text-decoration:none;font-weight:500;
    position:relative;overflow:hidden;
    transition:color .3s;
}
.hero-cta::before{
    content:'';position:absolute;inset:0;
    background:var(--amber);
    transform:scaleX(0);transform-origin:left;
    transition:transform .32s ease;z-index:-1;
}
.hero-cta:hover{color:var(--ink)}.hero-cta:hover::before{transform:scaleX(1)}

.scroll-hint{
    position:absolute;bottom: 0;left: 50%;
    transform:translateX(-50%);z-index:4;
    display:flex;flex-direction:column;align-items:center;gap:.35rem;
    color: var(--cream); text-decoration: none;
    font-size:.65rem;letter-spacing:.2em;text-transform:uppercase;
    animation:fadeUD 2.5s ease-in-out infinite;
}
@keyframes fadeUD{0%,100%{opacity:.4;transform:translateX(-50%) translateY(0)}50%{opacity:.85;transform:translateX(-50%) translateY(6px)}}

/* ── PHOTO BAND ── */
.photo-band{
    height:512px;overflow:hidden;position:relative;
}
.photo-band img{width:100%;height:100%;object-fit:fill;object-position:center 60%;transition:transform 8s ease}
.photo-band:hover img{transform:scale(1.04)}
.photo-band .pb-overlay{
    position:absolute;inset:0;
    background:linear-gradient(to bottom,var(--olive-m) 0%,transparent 20%,transparent 80%,var(--cream) 100%);
}
.photo-band .pb-label{
    position:absolute;bottom:2rem;left:50%;transform:translateX(-50%);
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(1.8rem,5vw,3.2rem);font-weight:600;
    color:var(--ink);letter-spacing:.06em;text-align:center;
    text-shadow:0 2px 20px rgba(0,0,0,.55);white-space:nowrap;
}

/* ── SECTION HEADER ── */
.sec-head{text-align:center;padding:3.5rem 1rem 1.5rem}
.sec-eyebrow{
    font-size:.65rem;letter-spacing:.32em;text-transform:uppercase;
    color:var(--olive-m);font-weight:600;display:block;margin-bottom:.5rem;
}
.sec-title{
    font-size:clamp(2rem,5vw,3.2rem);font-weight:700;
    color:var(--olive);line-height:1.05;
}
.sec-rule{display:flex;align-items:center;gap:.9rem;max-width:280px;margin:.9rem auto 0}
.sec-rule::before,.sec-rule::after{content:'';flex:1;height:1px;background:linear-gradient(90deg,transparent,var(--olive-m),transparent)}
.sec-rule i{color:var(--olive-m);font-size:.85rem}

/* ── MENU CONTAINER (all categories together) ── */
.menu-container{
    max-width:760px;margin:0 auto;
    padding:0 1rem 4rem;
    display:flex;flex-direction:column;gap:.5rem;
}

/* ── ACCORDION ── */
.acc-outer{
    border:1px solid rgba(110,116,35,.15);
    border-radius:6px;overflow:hidden;
    background:#fff;
    box-shadow:0 1px 12px rgba(31,27,26,.05);
    transition:box-shadow .3s;
}
.acc-outer:hover{box-shadow:0 3px 24px rgba(31,27,26,.08)}
.acc-btn{
    width:100%;display:flex;align-items:center;gap:.9rem;
    padding:1.1rem 1.3rem;background:transparent;border:none;cursor:pointer;text-align:left;
    transition:background .22s;
}
.acc-btn:hover{background:rgba(110,116,35,.04)}
.acc-btn.open{background:rgba(110,116,35,.06)}
.acc-icon{
    width:36px;height:36px;flex-shrink:0;border-radius:50%;
    background:rgba(110,116,35,.1);
    display:flex;align-items:center;justify-content:center;
    font-size:1rem;transition:background .25s;
}
.acc-btn.open .acc-icon{background:var(--olive);color:#fff}
.acc-label{
    flex:1;font-family:'Cormorant Garamond',serif;
    font-size:1.35rem;font-weight:700;color:var(--ink);line-height:1.2;
}
.acc-count{
    font-family:'Jost',sans-serif;font-size:.65rem;font-weight:500;
    letter-spacing:.1em;color:var(--soft);
    background:rgba(110,116,35,.08);border-radius:20px;padding:.18rem .65rem;flex-shrink:0;
}
.acc-chevron{font-size:.9rem;color:var(--olive);flex-shrink:0;transition:transform .38s cubic-bezier(.4,0,.2,1)}
.acc-btn.open .acc-chevron{transform:rotate(180deg)}
.acc-body{overflow:hidden;max-height:0;transition:max-height .5s cubic-bezier(.4,0,.2,1)}
.acc-body.open{max-height:9999px}
.acc-inner{padding:.2rem 1.3rem 1.3rem}

/* ── DISH ── */
.dish{
    display:grid;grid-template-columns:1fr auto;grid-template-rows:auto auto;
    gap:.05rem .8rem;padding:.8rem 0;
    border-bottom:1px solid rgba(31,27,26,.055);
    transition:background .18s,padding-left .18s;border-radius:3px;
}
.dish:last-child{border-bottom:none}
.dish:hover{background:rgba(110,116,35,.04);padding-left:.45rem}
.dish-name{
    font-family:'Cormorant Garamond',serif;font-size:1.1rem;font-weight:700;
    color:var(--ink);line-height:1.25;
    grid-column:1;grid-row:1;
    display:flex;align-items:center;flex-wrap:wrap;gap:.35rem;
}
.dish-desc{font-size:.78rem;color:var(--olive-m);font-style:italic;line-height:1.4;grid-column:1;grid-row:2}
.dish-price{
    grid-column:2;grid-row:1/3;align-self:center;
    font-family:'Cormorant Garamond',serif;font-size:1.25rem;font-weight:600;
    color:var(--ink2);white-space:nowrap;transition:color .18s;
}
.dish:hover .dish-price{color:var(--tomato)}
.tag{
    display:inline-block;font-family:'Jost',sans-serif;
    font-size:.58rem;font-weight:700;letter-spacing:.07em;text-transform:uppercase;
    padding:.12rem .45rem;border-radius:20px;vertical-align:middle;
}
.tag-spicy{background:var(--tomato);color:#fff}
.tag-special{background:var(--amber);color:var(--ink)}

/* ── CATEGORY DIVIDER inside container ── */
.cat-divider{
    display:flex;align-items:center;gap:.8rem;
    padding:.3rem 0 .1rem;
}
.cat-divider span{
    font-size:.6rem;letter-spacing:.28em;text-transform:uppercase;
    color:var(--olive-m);font-weight:600;white-space:nowrap;
}
.cat-divider::after{content:'';flex:1;height:1px;background:rgba(110,116,35,.15)}

/* ── SUPPLEMENTS ── */
#supplements{background:var(--ink);padding:5rem 1rem}
#supplements .sec-title{color:var(--cream)}
#supplements .sec-eyebrow{color:var(--amber);opacity:.8}
#supplements .sec-rule::before,
#supplements .sec-rule::after{background:linear-gradient(90deg,transparent,rgba(244,239,230,.25),transparent)}
#supplements .sec-rule i{color:rgba(244,239,230,.35)}
.supp-grid{
    display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1px;
    background:rgba(244,239,230,.07);border:1px solid rgba(244,239,230,.07);
    border-radius:6px;overflow:hidden;max-width:640px;margin:2.2rem auto 0;
}
.supp-item{
    display:flex;align-items:center;justify-content:space-between;gap:1rem;
    padding:.95rem 1.3rem;background:rgba(244,239,230,.03);transition:background .2s;
}
.supp-item:hover{background:rgba(244,239,230,.08)}
.supp-name{color:rgba(244,239,230,.82);font-size:.9rem}
.supp-price{color:var(--amber);font-family:'Cormorant Garamond',serif;font-size:1.15rem;font-weight:600;white-space:nowrap}


#justeat{
    background:var(--amber);
    padding:5rem 1rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

#justeat-content {
    flex: 0 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    text-align: left;
    gap: 1.3rem;
}

#justeat-img {
    flex: 0 1 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

@media (max-width: 768px) {
    #justeat {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }
    #justeat-content, #justeat-img {
        width: auto;
        max-width: 50%;
        min-width: 0;
        align-items: center;
        justify-content: center;
        text-align: left;
    }
    #justeat-img {
        margin-top: 0;
    }
    #justeat-img img {
        width: 100%;
        height: auto;
    }
}

#justeat .sec-title{color:var(--ink)}
#justeat .sec-eyebrow{color:var(--ink);opacity:.8}

.justeat-cta{
    display:inline-flex;align-items:center;gap:.55rem;
    padding:.85rem 2.6rem;
    border:1.5px solid var(--ink);
    color:var(--ink);border-radius:2px;
    font-size:.75rem;letter-spacing:.2em;text-transform:uppercase;
    text-decoration:none;font-weight:500;
    position:relative;overflow:hidden;
    transition:color .3s;
}

/* ── REVIEWS SECTION ── */
#reviews{
    background:var(--cream2);
    padding:5rem 1rem;
    text-align:center;
}
.reviews-widget-placeholder{
    max-width:760px;margin:2.5rem auto 0;
    min-height:260px;
    border:2px dashed rgba(110,116,35,.3);
    border-radius:8px;
    display:flex;flex-direction:column;align-items:center;justify-content:center;
    gap:.8rem;
    padding:3rem 2rem;
    background:rgba(255,255,255,.4);
}

/* ── FOOTER ── */
footer{background:#131110;padding:4rem 1rem 2.5rem}
.footer-inner{max-width:600px;margin:0 auto;text-align:center}
.footer-logo{width:256px;margin-bottom:1.4rem;opacity:.88}
.footer-name{font-family:'Cormorant Garamond',serif;font-size:1.3rem;font-weight:700;color:var(--cream);margin-bottom:.3rem}
.footer-info-line{font-size:.8rem;color:rgba(244,239,230,.48);margin-bottom:1.6rem;line-height:1.9}
.footer-info-line a{color:rgba(244,239,230,.48);text-decoration:none;transition:color .2s}
.footer-info-line a:hover{color:var(--amber)}
.footer-icons{display:flex;justify-content:center;gap:.55rem;margin-bottom:2.2rem}
.ficon{
    width:44px;height:44px;border-radius:50%;
    border:1px solid rgba(244,239,230,.1);
    display:flex;align-items:center;justify-content:center;
    color:rgba(244,239,230,.5);font-size:1.05rem;text-decoration:none;
    transition:background .22s,border-color .22s,color .22s,transform .22s;
}
.ficon:hover{background:var(--olive);border-color:var(--olive);color:#fff;transform:translateY(-3px)}
.footer-copy{font-size:.68rem;color:rgba(244,239,230,.18);letter-spacing:.12em;text-transform:uppercase}

@media(max-width:576px){
    .dish-price{font-size:1.05rem}
    .acc-label{font-size:1.18rem}
    .acc-count{display:none}
    .photo-band{height:100%}
}