
:root{
  --brown:#2b1b14;
  --brown-deep:#21130e;
  --brown-soft:#4a3025;
  --gold:#c8a24a;
  --gold-light:#e4c469;
  --cream:#faf6f0;
  --cream-2:#f4ede4;
  --white:#ffffff;
  --text:#302923;
  --muted:#756960;
  --line:#e8ded4;
  --shadow:0 18px 50px rgba(43,27,20,.09);
  --radius:24px;
  --header-h:88px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:#fff;
  color:var(--text);
  font-family:"Poppins","Segoe UI",Arial,sans-serif;
  line-height:1.6;
}
body,button,input,select,textarea{font-family:"Poppins","Segoe UI",Arial,sans-serif}
h1,h2,h3,h4{font-family:"Cormorant Garamond",Georgia,serif}
a{color:inherit;text-decoration:none}
img,video{max-width:100%}
img{display:block}
button,input,select,textarea{font:inherit}
.container{width:min(1180px,calc(100% - 48px));margin:0 auto}
main{min-height:55vh;background:#fff}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  color:#fff;
  background:rgba(43,27,20,.96);
  border-bottom:1px solid rgba(255,255,255,.09);
  box-shadow:0 8px 28px rgba(33,19,14,.14);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}
.nav-wrap{
  min-height:var(--header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}
.brand{display:flex;align-items:center;flex:0 0 auto}
.brand img{
  width:150px;
  height:72px;
  object-fit:contain;
  object-position:left center;
  filter:drop-shadow(0 4px 10px rgba(0,0,0,.14));
}
.brand>span{display:none}
.main-nav{
  display:flex;
  align-items:center;
  gap:28px;
  color:#fff;
  font-size:.93rem;
  font-weight:600;
}
.main-nav a{
  position:relative;
  padding:11px 0;
  transition:color .2s ease;
}
.main-nav a::after{
  content:"";
  position:absolute;
  left:50%;
  right:50%;
  bottom:4px;
  height:2px;
  border-radius:20px;
  background:var(--gold-light);
  transition:left .2s ease,right .2s ease;
}
.main-nav a:hover{color:var(--gold-light)}
.main-nav a:hover::after{left:0;right:0}
.nav-toggle{
  display:none;
  appearance:none;
  border:0;
  background:transparent;
  color:#fff;
  font-size:1.65rem;
  line-height:1;
  padding:10px;
  cursor:pointer;
}

/* SHARED */
.section{padding:84px 0;background:#fff}
.section-dark{background:var(--cream)}
.eyebrow{
  display:inline-block;
  margin:0 0 10px;
  color:#9c782c;
  font-size:.74rem;
  line-height:1.2;
  letter-spacing:.17em;
  text-transform:uppercase;
  font-weight:800;
}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  margin:0 0 30px;
}
.section-head h2,.split h2{
  margin:0;
  color:var(--brown);
  font-size:clamp(2.5rem,5vw,4.5rem);
  line-height:.98;
  letter-spacing:-.025em;
}
.section-head>a,.text-link{
  color:#987326;
  font-weight:800;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:11px 22px;
  border:1px solid var(--gold);
  border-radius:999px;
  background:var(--gold);
  color:var(--brown);
  font-weight:800;
  cursor:pointer;
  transition:transform .18s ease,background .18s ease,box-shadow .18s ease;
}
.btn:hover{
  background:var(--gold-light);
  transform:translateY(-1px);
  box-shadow:0 10px 24px rgba(200,162,74,.20);
}
.btn-outline{
  color:#fff;
  border-color:rgba(255,255,255,.72);
  background:rgba(255,255,255,.08);
  box-shadow:none;
}
.btn-outline:hover{background:#fff;color:var(--brown);border-color:#fff}
.prose{max-width:900px;color:#62584f;font-size:1.04rem}
.prose h2,.prose h3{color:var(--brown)}
.intro-prose{margin-bottom:28px}

/* HOMEPAGE HERO */
.hero-background-media{
  position:relative;
  min-height:690px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:linear-gradient(135deg,var(--brown),var(--brown-deep));
  isolation:isolate;
}
.hero-background-layer{
  position:absolute;
  inset:0;
  z-index:0;
  overflow:hidden;
}
.hero-background-layer img,
.hero-background-layer video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
.hero-background-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(
    90deg,
    rgba(43,27,20,.88) 0%,
    rgba(43,27,20,.72) 43%,
    rgba(43,27,20,.34) 72%,
    rgba(43,27,20,.22) 100%
  );
}
.hero-background-content{
  position:relative;
  z-index:2;
  width:100%;
  padding:100px 64px 105px;
}
.hero-copy{max-width:720px}
.hero-copy .eyebrow{color:var(--gold-light)}
.hero-copy h1{
  margin:8px 0 22px;
  max-width:750px;
  color:#fff;
  font-size:clamp(4rem,7vw,7rem);
  line-height:.91;
  letter-spacing:-.035em;
  text-shadow:0 4px 20px rgba(0,0,0,.18);
}
.hero-copy p{
  max-width:640px;
  margin:0;
  color:rgba(255,255,255,.94);
  font-size:1.12rem;
  line-height:1.7;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:30px;
}
.hero-background-caption{
  display:inline-flex;
  margin-top:22px;
  padding:8px 12px;
  border:1px solid rgba(255,255,255,.2);
  border-radius:999px;
  color:#fff;
  background:rgba(43,27,20,.5);
  font-size:.8rem;
  font-weight:700;
}

/* CATEGORY CARDS */
.menu-discovery{background:linear-gradient(180deg,#fff 0%,#fbf7f2 100%)}
.category-card-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}
.category-card{
  position:relative;
  min-height:330px;
  overflow:hidden;
  border-radius:26px;
  background:var(--cream-2);
  box-shadow:var(--shadow);
  transform:translateY(0);
  transition:transform .25s ease,box-shadow .25s ease;
}
.category-card:hover{transform:translateY(-5px);box-shadow:0 24px 58px rgba(43,27,20,.14)}
.category-card-media,.category-card-overlay{
  position:absolute;
  inset:0;
}
.category-card-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .4s ease;
}
.category-card:hover img{transform:scale(1.045)}
.category-card-overlay{
  background:linear-gradient(180deg,rgba(43,27,20,.04) 30%,rgba(43,27,20,.76) 100%);
}
.category-card-content{
  position:absolute;
  z-index:2;
  left:22px;
  right:22px;
  bottom:20px;
  color:#fff;
}
.category-card-content span{
  display:block;
  color:var(--gold-light);
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.15em;
  text-transform:uppercase;
}
.category-card-content h3{
  margin:2px 0 0;
  color:#fff;
  font-size:2.25rem;
  line-height:1;
}

/* PRODUCTS */
.product-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}
.product-card{
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:22px;
  background:#fff;
  box-shadow:0 10px 30px rgba(43,27,20,.055);
  transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
}
.product-card:hover{
  transform:translateY(-5px);
  border-color:#d6c18b;
  box-shadow:var(--shadow);
}
.product-image{
  aspect-ratio:4/3;
  overflow:hidden;
  background:var(--cream-2);
}
.product-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .35s ease;
}
.product-card:hover .product-image img{transform:scale(1.035)}
.product-body{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:7px 12px;
  padding:18px;
}
.product-body h3{
  margin:2px 0 0;
  color:var(--brown);
  font-family:"Poppins","Segoe UI",Arial,sans-serif;
  font-size:1.08rem;
  line-height:1.35;
}
.product-body>strong{color:#947027;font-size:1.1rem}
.product-body p{
  grid-column:1/-1;
  margin:5px 0 0;
  color:var(--muted);
  font-size:.9rem;
}
.product-category{
  color:#987326;
  font-size:.68rem;
  font-weight:800;
  letter-spacing:.11em;
  text-transform:uppercase;
}

/* EXPERIENCE */
.experience-section{
  background:radial-gradient(circle at 88% 25%,rgba(200,162,74,.10),transparent 28%),#fff;
}
.split{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:52px;
  align-items:center;
}
.split p{color:var(--muted);font-size:1.04rem}
.info-panel{
  display:flex;
  flex-direction:column;
  gap:16px;
  padding:32px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:var(--cream);
  box-shadow:var(--shadow);
}
.info-panel>span{
  color:#967226;
  font-size:.73rem;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.info-panel>strong{color:var(--brown);font-size:1.22rem}

/* GALLERY HOMEPAGE */
.instagram-grid{
  display:grid;
  grid-template-columns:1.2fr .9fr .9fr;
  grid-auto-rows:220px;
  gap:14px;
}
.instagram-card{
  position:relative;
  overflow:hidden;
  border-radius:20px;
  background:var(--cream-2);
  box-shadow:0 10px 28px rgba(43,27,20,.07);
}
.instagram-feature{grid-row:span 2}
.instagram-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .35s ease;
}
.instagram-card:hover img{transform:scale(1.04)}
.instagram-card-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:flex-end;
  padding:15px;
  background:linear-gradient(180deg,transparent 45%,rgba(43,27,20,.65) 100%);
  opacity:0;
  transition:opacity .2s ease;
}
.instagram-card:hover .instagram-card-overlay{opacity:1}
.instagram-card-overlay span{
  padding:7px 11px;
  border-radius:999px;
  background:rgba(255,255,255,.94);
  color:var(--brown);
  font-size:.78rem;
  font-weight:700;
}

/* ALL INNER-PAGE HEROES */
.page-hero-background{
  position:relative;
  min-height:430px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:linear-gradient(135deg,var(--brown),var(--brown-deep));
  isolation:isolate;
}
.page-hero-bg-media{
  position:absolute;
  inset:0;
  z-index:0;
  overflow:hidden;
}
.page-hero-bg-media img,
.page-hero-bg-media video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
.page-hero-bg-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(90deg,rgba(43,27,20,.84),rgba(43,27,20,.48));
}
.page-hero-bg-content{
  position:relative;
  z-index:2;
  width:100%;
  padding-top:86px;
  padding-bottom:86px;
}
.page-hero-bg-content .eyebrow{color:var(--gold-light)}
.page-hero-bg-content h1{
  margin:4px 0 14px;
  max-width:850px;
  color:#fff;
  font-size:clamp(3.7rem,7vw,6.5rem);
  line-height:.94;
  letter-spacing:-.03em;
  text-shadow:0 4px 20px rgba(0,0,0,.2);
}
.page-hero-bg-content p{
  max-width:700px;
  margin:0;
  color:rgba(255,255,255,.94);
  font-size:1.08rem;
}
.page-hero-caption{
  display:inline-flex;
  margin-top:18px;
  padding:7px 11px;
  border:1px solid rgba(255,255,255,.2);
  border-radius:999px;
  background:rgba(43,27,20,.55);
  color:#fff;
  font-size:.78rem;
  font-weight:700;
}

/* MENU FILTER */
.category-strip{
  display:flex;
  gap:9px;
  overflow:auto;
  padding:2px 0 10px;
  scrollbar-width:thin;
}
.category-pill{
  flex:0 0 auto;
  padding:9px 15px;
  border:1px solid #ddd2c5;
  border-radius:999px;
  background:#fff;
  color:#494039;
  font-size:.9rem;
  font-weight:600;
}
.category-pill:hover,.category-pill.active{
  color:#775818;
  border-color:var(--gold);
  background:#fff9e9;
}
.sticky-cats{
  position:sticky;
  top:var(--header-h);
  z-index:30;
  margin:0 0 24px;
  padding:13px 0;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(10px);
}

/* PRODUCT DETAIL */
.product-detail{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:58px;
  align-items:center;
}
.detail-image{
  overflow:hidden;
  aspect-ratio:1;
  border:1px solid var(--line);
  border-radius:28px;
  background:var(--cream-2);
  box-shadow:var(--shadow);
}
.detail-image img{width:100%;height:100%;object-fit:cover}
.product-detail h1{
  margin:8px 0 12px;
  color:var(--brown);
  font-size:clamp(3.4rem,6vw,5.6rem);
  line-height:.94;
}
.detail-price{
  margin:18px 0;
  color:#987326;
  font-size:1.7rem;
  font-weight:800;
}
.lead{color:var(--muted);font-size:1.04rem}
.ingredient-list{display:flex;flex-wrap:wrap;gap:8px;margin:0 0 28px}
.ingredient-list span{
  padding:7px 11px;
  border:1px solid #e2d8ca;
  border-radius:999px;
  background:var(--cream);
  color:#665a50;
}

/* GALLERY PAGE */
.gallery-grid{columns:3 280px;column-gap:18px}
.gallery-grid figure{
  break-inside:avoid;
  overflow:hidden;
  margin:0 0 18px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  box-shadow:0 8px 26px rgba(43,27,20,.055);
}
.gallery-grid figure img{width:100%;height:auto}
.gallery-grid figcaption{padding:10px 14px;color:var(--muted)}
.empty-state{
  padding:48px;
  border:1px dashed #d8cdbf;
  border-radius:20px;
  background:var(--cream);
  color:var(--muted);
  text-align:center;
}

/* CONTACT */
.contact-section{padding:80px 0 96px;background:#fff}
.contact-layout{
  display:grid;
  grid-template-columns:minmax(0,.84fr) minmax(0,1.16fr);
  gap:36px;
  align-items:start;
}
.contact-intro{
  margin:0 0 20px;
  color:var(--muted);
  font-size:1rem;
}
.contact-info-card,.contact-form-card{
  border:1px solid var(--line);
  border-radius:26px;
  background:#fff;
  box-shadow:var(--shadow);
}
.contact-info-card{padding:28px}
.contact-form-card{padding:32px;background:linear-gradient(180deg,#fff,#fdf9f4)}
.contact-info-card h2,.contact-form-card h2{
  margin:5px 0 20px;
  color:var(--brown);
  font-size:clamp(2rem,3vw,2.7rem);
  line-height:1;
}
.contact-form-lead{margin:-6px 0 22px;color:var(--muted)}
.contact-detail-row{
  display:grid;
  grid-template-columns:44px minmax(0,1fr);
  gap:13px;
  align-items:center;
  padding:15px 0;
  border-bottom:1px solid #eee5dc;
  color:var(--brown);
}
.contact-detail-row:hover{color:#8b6720}
.contact-detail-icon{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border-radius:13px;
  background:var(--cream);
  color:#967126;
  font-weight:800;
}
.contact-detail-row span:last-child,.contact-hours-heading>div{
  display:flex;
  flex-direction:column;
  min-width:0;
}
.contact-detail-row small,.contact-hours-heading small{
  color:#8a7d72;
  font-size:.7rem;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.contact-detail-row strong{overflow-wrap:anywhere}
.contact-hours{margin-top:20px}
.contact-hours-heading{
  display:flex;
  align-items:center;
  gap:13px;
  margin-bottom:11px;
}
.opening-hours-list{display:grid;gap:0}
.opening-hours-row{
  display:flex;
  justify-content:space-between;
  gap:18px;
  padding:8px 0;
  border-bottom:1px solid #eee5dc;
}
.opening-hours-row strong{text-align:right}
.contact-form-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  margin-bottom:20px;
}
.contact-form label{display:flex;flex-direction:column;gap:7px;min-width:0}
.contact-form label.full{grid-column:1/-1}
.contact-form label>span{color:#46382f;font-size:.85rem;font-weight:800}
.contact-form input,.contact-form select,.contact-form textarea{
  width:100%;
  min-height:49px;
  padding:12px 13px;
  border:1px solid #ddd2c7;
  border-radius:12px;
  background:#fff;
  color:var(--brown);
}
.contact-form textarea{min-height:140px;resize:vertical}
.contact-form input:focus,.contact-form select:focus,.contact-form textarea:focus{
  outline:none;
  border-color:#b99346;
  box-shadow:0 0 0 4px rgba(185,147,70,.12);
}
.form-message{
  margin:0 0 18px;
  padding:11px 13px;
  border-radius:11px;
  font-weight:700;
}
.form-message.success{background:#eef8ef;color:#2f6436}
.form-message.error{background:#fff0ef;color:#8c2d25}

/* FOOTER */
.site-footer{
  padding:58px 0 24px;
  background:linear-gradient(180deg,var(--brown),var(--brown-deep));
  color:#fff;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.1fr 1fr .7fr;
  gap:42px;
}
.footer-brand-logo{
  width:190px;
  max-height:76px;
  object-fit:contain;
  object-position:left center;
  margin-bottom:14px;
}
.site-footer h3{margin:0 0 8px;color:#fff;font-size:2rem}
.site-footer h4{
  margin:0 0 10px;
  color:var(--gold-light);
  font-family:"Poppins","Segoe UI",Arial,sans-serif;
  font-size:.88rem;
  letter-spacing:.05em;
}
.site-footer p{margin:0 0 12px;color:rgba(255,255,255,.72)}
.site-footer a:hover{color:var(--gold-light)}
.site-footer .opening-hours-row{
  padding:5px 0;
  border-bottom-color:rgba(255,255,255,.1);
  color:rgba(255,255,255,.72);
  font-size:.83rem;
}
.footer-hours-title{margin-top:20px!important}
.social-links{display:flex;flex-direction:column;gap:8px}
.copyright{
  display:flex;
  justify-content:space-between;
  gap:20px;
  margin-top:34px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.1);
  color:rgba(255,255,255,.55);
  font-size:.82rem;
}
.site-credit a{color:var(--gold-light);font-weight:700}

/* MOBILE */
@media(max-width:900px){
  :root{--header-h:80px}
  .brand img{width:130px;height:66px}
  .nav-toggle{display:block}
  .main-nav{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    flex-direction:column;
    align-items:flex-start;
    gap:4px;
    padding:18px 24px 22px;
    background:var(--brown);
    border-top:1px solid rgba(255,255,255,.08);
  }
  .main-nav.open{display:flex}
  .main-nav a{width:100%;padding:10px 0}
  .hero-background-content{padding:90px 38px}
  .hero-copy h1{font-size:clamp(3.7rem,10vw,5.7rem)}
  .category-card-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .product-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .split,.product-detail,.contact-layout{grid-template-columns:1fr}
  .instagram-grid{grid-template-columns:1fr 1fr}
  .instagram-feature{grid-column:1/-1;grid-row:auto;min-height:360px}
  .footer-grid{grid-template-columns:1fr 1fr}
}

@media(max-width:620px){
  .container{width:min(100% - 32px,1180px)}
  :root{--header-h:74px}
  .nav-wrap{min-height:74px}
  .brand img{width:112px;height:60px}
  .section{padding:60px 0}
  .section-head{align-items:flex-start;flex-direction:column}
  .hero-background-media{min-height:590px}
  .hero-background-content{padding:74px 24px 78px}
  .hero-copy h1{font-size:clamp(3.3rem,15vw,4.8rem)}
  .hero-copy p{font-size:1rem}
  .page-hero-background{min-height:350px}
  .page-hero-bg-content{padding-top:68px;padding-bottom:68px}
  .page-hero-bg-content h1{font-size:clamp(3.2rem,14vw,4.8rem)}
  .category-card-grid,.product-grid,.instagram-grid,.contact-form-grid{grid-template-columns:1fr}
  .category-card{min-height:290px}
  .instagram-grid{grid-auto-rows:250px}
  .instagram-feature{grid-column:auto;min-height:300px}
  .gallery-grid{columns:1}
  .contact-info-card,.contact-form-card{padding:21px;border-radius:21px}
  .contact-form label.full{grid-column:auto}
  .footer-grid{grid-template-columns:1fr}
  .copyright{flex-direction:column}
}

@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{scroll-behavior:auto!important;transition:none!important}
}


/* Navigation: centered links with CTA on the right */
.nav-wrap{
  position:relative;
  display:grid;
  grid-template-columns:180px minmax(0,1fr) 180px;
  align-items:center;
  gap:24px;
}
.brand{justify-self:start}
.main-nav{
  justify-self:center;
  justify-content:center;
}
.nav-actions{
  justify-self:end;
  display:flex;
  align-items:center;
  gap:10px;
}
.nav-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:9px 17px;
  border-radius:999px;
  background:var(--gold);
  color:var(--brown);
  font-size:.82rem;
  font-weight:800;
  white-space:nowrap;
  transition:transform .18s ease,background .18s ease;
}
.nav-cta:hover{
  background:var(--gold-light);
  transform:translateY(-1px);
  color:var(--brown);
}

/* Footer: no hours block */
.footer-hours-title,
.site-footer .opening-hours-list{
  display:none !important;
}

/* Contact: both cards begin at exactly the same level */
.contact-layout{
  align-items:stretch;
}
.contact-info-column{
  display:flex;
}
.contact-info-card,
.contact-form-card{
  width:100%;
  margin:0;
  align-self:stretch;
}
.contact-intro{
  margin:0 0 18px;
}

/* Menu: single horizontal category slider + in-page filtering */
.menu-slider-shell{
  position:sticky;
  top:var(--header-h);
  z-index:40;
  display:grid;
  grid-template-columns:42px minmax(0,1fr) 42px;
  align-items:center;
  gap:8px;
  margin:0 0 28px;
  padding:12px 0;
  background:rgba(255,255,255,.97);
  backdrop-filter:blur(12px);
}
.menu-category-slider{
  display:flex;
  gap:10px;
  overflow-x:auto;
  overflow-y:hidden;
  scroll-behavior:smooth;
  scrollbar-width:none;
  overscroll-behavior-x:contain;
  padding:2px;
}
.menu-category-slider::-webkit-scrollbar{display:none}
.menu-category-slider .category-pill{
  appearance:none;
  cursor:pointer;
  white-space:nowrap;
}
.menu-slider-arrow{
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  border:1px solid #ddd2c5;
  border-radius:50%;
  background:#fff;
  color:var(--brown);
  font-size:1.5rem;
  line-height:1;
  cursor:pointer;
  box-shadow:0 7px 20px rgba(43,27,20,.07);
}
.menu-slider-arrow:hover{
  border-color:var(--gold);
  color:#8b6720;
}
.menu-product[hidden]{
  display:none !important;
}

@media(max-width:1050px){
  .nav-wrap{
    grid-template-columns:150px minmax(0,1fr) auto;
    gap:16px;
  }
  .main-nav{gap:18px;font-size:.87rem}
  .nav-cta{padding:8px 13px;font-size:.76rem}
}

@media(max-width:900px){
  .nav-wrap{
    display:flex;
    justify-content:space-between;
  }
  .main-nav{
    justify-self:auto;
  }
  .nav-actions{margin-left:auto}
  .nav-cta{display:none}
  .contact-layout{align-items:start}
}

@media(max-width:620px){
  .menu-slider-shell{
    grid-template-columns:34px minmax(0,1fr) 34px;
  }
  .menu-slider-arrow{
    width:32px;
    height:32px;
    font-size:1.2rem;
  }
}


/* === INNER PAGE REPAIR START === */

/* Shared inner hero */
.inner-hero{
  position:relative;
  min-height:430px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:linear-gradient(135deg,#2b1b14,#21130e);
  isolation:isolate;
}
.inner-hero-media{
  position:absolute;
  inset:0;
  z-index:0;
}
.inner-hero-media img,
.inner-hero-media video{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
.inner-hero-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(90deg,rgba(43,27,20,.84) 0%,rgba(43,27,20,.58) 54%,rgba(43,27,20,.28) 100%);
}
.inner-hero-content{
  position:relative;
  z-index:2;
  width:100%;
  padding-top:90px;
  padding-bottom:90px;
}
.inner-hero-content .eyebrow{color:#e4c469}
.inner-hero-content h1{
  margin:6px 0 14px;
  max-width:880px;
  color:#fff!important;
  font-size:clamp(3.7rem,7vw,6.3rem);
  line-height:.94;
  letter-spacing:-.03em;
  text-shadow:0 4px 20px rgba(0,0,0,.2);
}
.inner-hero-content p{
  max-width:720px;
  margin:0;
  color:rgba(255,255,255,.94);
  font-size:1.08rem;
}
.inner-hero-caption{
  display:inline-flex;
  margin-top:18px;
  padding:8px 12px;
  border:1px solid rgba(255,255,255,.2);
  border-radius:999px;
  color:#fff;
  background:rgba(43,27,20,.52);
  font-size:.78rem;
  font-weight:700;
}

/* Shared inner content */
.inner-section{
  padding:78px 0 96px;
  background:#fff;
}
.inner-content-card{
  max-width:980px;
  padding:38px;
  border:1px solid #e8ded4;
  border-radius:26px;
  background:#fff;
  color:#62584f;
  box-shadow:0 16px 44px rgba(43,27,20,.07);
}
.inner-content-card h2,
.inner-content-card h3{
  color:#2b1b14;
}
.inner-content-card a{
  color:#936e21;
  font-weight:700;
}

/* Contact rebuilt */
.contact-two-column{
  display:grid;
  grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
  gap:34px;
  align-items:stretch;
}
.contact-card{
  width:100%;
  padding:32px;
  border:1px solid #e8ded4;
  border-radius:26px;
  background:#fff;
  box-shadow:0 18px 52px rgba(43,27,20,.08);
}
.contact-card h2{
  margin:5px 0 18px;
  color:#2b1b14;
  font-size:clamp(2.1rem,3.4vw,3rem);
  line-height:1;
}
.contact-intro-clean{
  margin-bottom:16px;
  color:#756960;
}
.contact-item-clean{
  display:grid;
  grid-template-columns:44px minmax(0,1fr);
  gap:13px;
  align-items:center;
  padding:14px 0;
  border-bottom:1px solid #eee5dc;
  color:#2b1b14;
}
.contact-item-clean:hover{color:#8f6a1d}
.contact-icon-clean{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border-radius:13px;
  background:#faf6f0;
  color:#936e21;
  font-weight:800;
}
.contact-item-clean>span:last-child,
.hours-heading-clean>span:last-child{
  display:flex;
  flex-direction:column;
  min-width:0;
}
.contact-item-clean small,
.hours-heading-clean small{
  color:#8a7d72;
  font-size:.7rem;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.contact-item-clean strong{overflow-wrap:anywhere}
.hours-clean{margin-top:20px}
.hours-heading-clean{
  display:flex;
  align-items:center;
  gap:13px;
  margin-bottom:10px;
}
.contact-card .opening-hours-row{
  display:flex;
  justify-content:space-between;
  gap:18px;
  padding:7px 0;
  border-bottom:1px solid #eee5dc;
  color:#655a52;
}
.contact-card .opening-hours-row strong{
  color:#2b1b14;
  text-align:right;
}
.contact-directions-btn{margin-top:22px}
.contact-form-card-clean{
  background:linear-gradient(180deg,#fff,#fdf9f4);
}
.contact-form-lead-clean{
  margin:-4px 0 22px;
  color:#756960;
}
.contact-form-grid-clean{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  margin-bottom:20px;
}
.contact-form-clean label{
  display:flex;
  flex-direction:column;
  gap:7px;
  min-width:0;
}
.contact-form-clean label.full{grid-column:1/-1}
.contact-form-clean label>span{
  color:#46382f;
  font-size:.85rem;
  font-weight:800;
}
.contact-form-clean input,
.contact-form-clean select,
.contact-form-clean textarea{
  width:100%;
  min-height:49px;
  padding:12px 13px;
  border:1px solid #ddd2c7;
  border-radius:12px;
  background:#fff;
  color:#2b1b14;
}
.contact-form-clean textarea{min-height:140px;resize:vertical}
.contact-form-clean input:focus,
.contact-form-clean select:focus,
.contact-form-clean textarea:focus{
  outline:none;
  border-color:#b99346;
  box-shadow:0 0 0 4px rgba(185,147,70,.12);
}

/* Menu rebuilt */
.menu-section-clean{background:#fff}
.menu-intro-clean{
  max-width:880px;
  margin:0 0 24px;
  color:#756960;
}
.menu-slider-clean{
  position:sticky;
  top:var(--header-h);
  z-index:60;
  display:grid;
  grid-template-columns:42px minmax(0,1fr) 42px;
  gap:8px;
  align-items:center;
  margin-bottom:28px;
  padding:12px 0;
  background:rgba(255,255,255,.97);
  backdrop-filter:blur(12px);
}
.menu-category-track{
  display:flex;
  gap:10px;
  overflow-x:auto;
  scrollbar-width:none;
  scroll-behavior:smooth;
  padding:2px;
}
.menu-category-track::-webkit-scrollbar{display:none}
.menu-category-btn{
  flex:0 0 auto;
  appearance:none;
  padding:9px 15px;
  border:1px solid #ddd2c5;
  border-radius:999px;
  background:#fff;
  color:#494039;
  font-weight:700;
  cursor:pointer;
}
.menu-category-btn.active,
.menu-category-btn:hover{
  border-color:#c8a24a;
  background:#fff8e7;
  color:#805f1d;
}
.menu-arrow-clean{
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  border:1px solid #ddd2c5;
  border-radius:50%;
  background:#fff;
  color:#2b1b14;
  font-size:1.4rem;
  cursor:pointer;
}
.menu-product-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}
.menu-product-card{
  overflow:hidden;
  border:1px solid #e8ded4;
  border-radius:22px;
  background:#fff;
  box-shadow:0 10px 30px rgba(43,27,20,.055);
  transition:transform .22s ease,box-shadow .22s ease;
}
.menu-product-card:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 46px rgba(43,27,20,.11);
}
.menu-product-card[hidden]{display:none!important}
.menu-product-image{
  aspect-ratio:4/3;
  overflow:hidden;
  background:#f4ede4;
}
.menu-product-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.menu-product-copy{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:7px 12px;
  padding:18px;
}
.menu-product-copy h3{
  margin:2px 0 0;
  color:#2b1b14;
  font-family:"Poppins","Segoe UI",Arial,sans-serif;
  font-size:1.05rem;
}
.menu-product-copy>strong{
  color:#947027;
  font-size:1.08rem;
}
.menu-product-copy p{
  grid-column:1/-1;
  margin:4px 0 0;
  color:#756960;
  font-size:.9rem;
}
.menu-product-category{
  color:#987326;
  font-size:.67rem;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.menu-empty-clean{
  padding:44px;
  border:1px dashed #d8cdbf;
  border-radius:20px;
  color:#756960;
  background:#faf6f0;
  text-align:center;
}

/* Gallery rebuilt */
.gallery-intro-clean{
  max-width:880px;
  margin-bottom:26px;
  color:#756960;
}
.gallery-grid-clean{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.gallery-card-clean{
  margin:0;
  overflow:hidden;
  border:1px solid #e8ded4;
  border-radius:20px;
  background:#fff;
  box-shadow:0 10px 30px rgba(43,27,20,.055);
}
.gallery-card-clean img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
}
.gallery-card-clean figcaption{
  padding:11px 14px;
  color:#655a52;
  font-weight:600;
}

/* Product page rebuilt */
.product-detail-section-clean{padding-top:72px}
.product-detail-clean{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:58px;
  align-items:center;
}
.product-detail-image-clean{
  overflow:hidden;
  aspect-ratio:1;
  border:1px solid #e8ded4;
  border-radius:28px;
  background:#f4ede4;
  box-shadow:0 18px 52px rgba(43,27,20,.08);
}
.product-detail-image-clean img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.product-detail-copy-clean h1{
  margin:7px 0 12px;
  color:#2b1b14;
  font-size:clamp(3.5rem,6vw,5.7rem);
  line-height:.94;
}
.product-detail-price-clean{
  margin:15px 0 20px;
  color:#987326;
  font-size:1.65rem;
  font-weight:800;
}
.product-detail-lead-clean{
  color:#756960;
  font-size:1.04rem;
}
.product-ingredients-clean{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:22px 0 28px;
}
.product-ingredients-clean span{
  padding:7px 11px;
  border:1px solid #e2d8ca;
  border-radius:999px;
  background:#faf6f0;
  color:#665a50;
}
.product-detail-actions-clean{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.btn-outline-dark{
  border-color:#2b1b14;
  background:#fff;
  color:#2b1b14;
}
.btn-outline-dark:hover{
  background:#2b1b14;
  color:#fff;
}

/* Responsive */
@media(max-width:900px){
  .contact-two-column,
  .product-detail-clean{
    grid-template-columns:1fr;
  }
  .menu-product-grid,
  .gallery-grid-clean{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media(max-width:620px){
  .inner-hero{min-height:350px}
  .inner-hero-content{padding-top:70px;padding-bottom:70px}
  .inner-hero-content h1{font-size:clamp(3.2rem,14vw,4.8rem)}
  .inner-section{padding:56px 0 72px}
  .inner-content-card,
  .contact-card{padding:22px;border-radius:21px}
  .contact-form-grid-clean,
  .menu-product-grid,
  .gallery-grid-clean{
    grid-template-columns:1fr;
  }
  .contact-form-clean label.full{grid-column:auto}
  .menu-slider-clean{
    grid-template-columns:34px minmax(0,1fr) 34px;
  }
  .menu-arrow-clean{width:32px;height:32px}
}

/* === INNER PAGE REPAIR END === */


/* Inner page hero: add more left spacing */
.inner-hero-content{
    padding-left: clamp(40px, 6vw, 96px) !important;
    padding-right: clamp(24px, 4vw, 48px) !important;
}

@media (max-width:620px){
    .inner-hero-content{
        padding-left:24px !important;
        padding-right:24px !important;
    }
}


/* Mobile navigation functional fix */
@media(max-width:900px){
  .site-header{overflow:visible !important}
  .nav-wrap{position:relative !important}

  .nav-toggle{
    display:grid !important;
    place-items:center !important;
    width:44px !important;
    height:44px !important;
    padding:0 !important;
    border:1px solid rgba(255,255,255,.14) !important;
    border-radius:12px !important;
    background:rgba(255,255,255,.06) !important;
    color:#fff !important;
    cursor:pointer !important;
    z-index:1002 !important;
  }

  .nav-toggle span{
    display:block !important;
    font-size:1.55rem !important;
    line-height:1 !important;
    pointer-events:none !important;
  }

  .main-nav{
    display:none !important;
    position:absolute !important;
    top:100% !important;
    left:16px !important;
    right:16px !important;
    width:auto !important;
    margin:0 !important;
    padding:16px !important;
    flex-direction:column !important;
    align-items:stretch !important;
    gap:4px !important;
    border:1px solid rgba(255,255,255,.10) !important;
    border-radius:0 0 18px 18px !important;
    background:#2b1b14 !important;
    box-shadow:0 18px 45px rgba(0,0,0,.28) !important;
    z-index:1001 !important;
  }

  .main-nav.open{display:flex !important}

  .main-nav a{
    display:block !important;
    width:100% !important;
    padding:12px 10px !important;
    border-radius:10px !important;
    color:#fff !important;
  }

  .main-nav a:hover{
    background:rgba(255,255,255,.07) !important;
    color:#e4c469 !important;
  }

  .main-nav a::after{display:none !important}
}

/* Store module */
.store-intro{max-width:850px;margin-bottom:26px;color:#756960}
.store-layout{display:grid;grid-template-columns:minmax(0,1fr) 350px;gap:32px;align-items:start}
.store-heading h2{margin:2px 0 22px;color:#2b1b14;font-size:clamp(2.5rem,4vw,4rem);line-height:.95}
.store-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px}
.store-card{overflow:hidden;border:1px solid #e8ded4;border-radius:22px;background:#fff;box-shadow:0 10px 30px rgba(43,27,20,.055)}
.store-card-image{aspect-ratio:4/3;overflow:hidden;background:#f4ede4}
.store-card-image img{width:100%;height:100%;object-fit:cover}
.store-card-body{padding:17px}.store-card-body>span{color:#987326;font-size:.67rem;font-weight:800;text-transform:uppercase;letter-spacing:.1em}
.store-card-body h3{margin:3px 0 14px;color:#2b1b14;font-family:"Poppins",sans-serif;font-size:1.02rem}
.store-card-body>div{display:flex;justify-content:space-between;align-items:center;gap:12px}
.store-card-body strong{color:#947027}
.store-add{border:1px solid #c8a24a;border-radius:999px;padding:7px 14px;background:#c8a24a;color:#2b1b14;font-weight:800;cursor:pointer}
.store-cart-box{position:sticky;top:calc(var(--header-h) + 18px);padding:24px;border:1px solid #e8ded4;border-radius:24px;background:linear-gradient(180deg,#fff,#fdf9f4);box-shadow:0 18px 50px rgba(43,27,20,.08)}
.store-cart-box h2{margin:3px 0 17px;color:#2b1b14;font-size:2.15rem;line-height:1}
.cart-row{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:10px;align-items:center;padding:10px 0;border-bottom:1px solid #eee5dc}
.cart-row>div:first-child{display:flex;flex-direction:column}.cart-row small{color:#8a7d72}
.cart-controls{display:flex;align-items:center;gap:7px}.cart-controls button{width:28px;height:28px;border:1px solid #ddd2c7;border-radius:50%;background:#fff;cursor:pointer}
.cart-total{display:flex;justify-content:space-between;padding:16px 0;color:#2b1b14}
.store-form{display:grid;gap:11px}.store-form label{display:grid;gap:5px;font-size:.83rem;font-weight:800;color:#4b3c32}
.store-form input,.store-form textarea{width:100%;padding:10px 11px;border:1px solid #ddd2c7;border-radius:10px;background:#fff}
.store-form .btn{width:100%}.cart-empty{color:#8a7d72}.store-unavailable{padding:60px;border-radius:24px;background:#faf6f0;text-align:center}
@media(max-width:950px){.store-layout{grid-template-columns:1fr}.store-cart-box{position:static}}
@media(max-width:620px){.store-grid{grid-template-columns:1fr}}

/* Store cart navigation */
.nav-cart{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:6px;
  min-height:42px;
  padding:8px 11px;
  border:1px solid rgba(255,255,255,.15);
  border-radius:999px;
  color:#fff;
  background:rgba(255,255,255,.06);
  font-size:.82rem;
  font-weight:800;
}
.nav-cart:hover{color:#e4c469;border-color:rgba(228,196,105,.55)}
.nav-cart-icon{font-size:1rem;line-height:1}
.nav-cart-count{
  min-width:21px;height:21px;padding:0 5px;display:grid;place-items:center;
  border-radius:999px;background:#c8a24a;color:#2b1b14;font-size:.7rem;font-weight:900
}
.nav-cart-count.is-empty{opacity:.72}
.store-payment-note{display:block;margin-top:5px;color:#7a6c61;font-size:.73rem;line-height:1.45}
.store-success-card{
  max-width:680px;margin:20px auto;padding:50px 36px;text-align:center;
  border:1px solid #e8ded4;border-radius:28px;background:#fff;box-shadow:0 18px 52px rgba(43,27,20,.08)
}
.store-success-card h1{color:#2b1b14;font-size:clamp(3rem,6vw,5rem);margin:10px 0}
.store-success-icon{
  width:64px;height:64px;margin:0 auto;display:grid;place-items:center;border-radius:50%;
  background:#e8f6ea;color:#2f6536;font-size:2rem;font-weight:900
}
@media(max-width:900px){
  .nav-cart-label{display:none}
  .nav-cart{padding:8px}
}

/* Menu variant prices */
.menu-variant-price{display:inline-block;margin-right:10px}.store-variant{max-width:160px;padding:7px 9px;border:1px solid #ddd2c7;border-radius:9px;background:#fff;color:#2b1b14;font-weight:700}


/* Coffee variant UI cleanup */
.menu-variant-price{
  display:inline-block;
  margin:0 !important;
}
.menu-variant-separator{
  display:inline-block;
  margin:0 7px;
  color:#9a8d83;
}
.product-variant-picker{
  max-width:240px;
  margin:10px 0 12px;
}
.product-variant-picker label{
  display:block;
  margin-bottom:7px;
  color:#4a3a31;
  font-size:.85rem;
  font-weight:800;
}
.product-variant-select{
  width:100%;
  min-height:46px;
  padding:10px 12px;
  border:1px solid #ddd2c7;
  border-radius:11px;
  background:#fff;
  color:#2b1b14;
  font-weight:700;
}
.store-variant-prices{
  display:flex;
  align-items:center;
  gap:7px;
  color:#947027;
  font-weight:800;
}
.store-variant{
  margin-left:auto;
  max-width:110px;
  padding:6px 8px;
  border:1px solid #ddd2c7;
  border-radius:9px;
  background:#fff;
  color:#2b1b14;
  font-weight:700;
}

/* Final coffee card pricing */
.menu-card-price{
  display:flex;
  align-items:center;
  gap:7px;
  white-space:nowrap;
}
.menu-variant-price{
  display:inline-block !important;
  margin:0 !important;
}
.menu-variant-separator{
  display:inline-block;
  margin:0 !important;
  color:#9a8d83;
}


/* Product ingredients placement */
.product-ingredients-clean{
  margin:18px 0 18px;
}
.product-ingredients-clean h3{
  margin:0 0 10px;
  color:#2b1b14;
  font-family:"Poppins","Segoe UI",Arial,sans-serif;
  font-size:.9rem;
  font-weight:800;
  letter-spacing:.04em;
}
.product-ingredients-list{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.product-ingredients-list span{
  display:inline-flex;
  align-items:center;
  padding:7px 11px;
  border:1px solid #e2d8ca;
  border-radius:999px;
  background:#faf6f0;
  color:#665a50;
  font-size:.86rem;
  font-weight:600;
}

/* Plain ingredients text */
.product-ingredients-text{margin:0;padding:0;color:#665a50;font-size:.92rem;font-weight:400;line-height:1.65}
