/* ==========================================================================
   Ember & Oak — Design tokens
   ========================================================================== */
:root{
  --ink:        #120D0A;
  --charcoal:   #1E1712;
  --charcoal-2: #2A2019;
  --charcoal-3: #3A2C22;
  --ember:      #E8541E;
  --ember-2:    #FF7A3D;
  --amber:      #F0A93E;
  --cream:      #F7EEE0;
  --cream-dim:  #C9BBA8;
  --smoke:      #A89A8C;
  --good:       #6FB98F;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  --container: 1180px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 26px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

html, body{ overflow-x: hidden; width: 100%; }
body{
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea{ font: inherit; color: inherit; }
ul{ margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4,p{ margin: 0; }

.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;
}

.skip-link{
  position: absolute; left: 1rem; top: -60px;
  background: var(--ember); color: var(--ink); padding: .7rem 1.2rem;
  border-radius: var(--radius-sm); z-index: 999; font-weight: 600;
  transition: top .2s var(--ease);
}
.skip-link:focus{ top: 1rem; }

:focus-visible{
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

h1,h2,h3{ font-family: var(--font-display); font-weight: 700; line-height: 1.1; color: var(--cream); }
.eyebrow{
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .14em;
  font-size: .78rem; color: var(--amber); margin: 0 0 .8rem;
}

.section-head{ max-width: 640px; margin: 0 auto 3rem; text-align: center; }
.section-head h2{ font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: .7rem; }
.section-sub{ color: var(--cream-dim); font-size: 1.02rem; }

section{ padding: 5.5rem 1.4rem; }
section > *{ max-width: var(--container); margin-left: auto; margin-right: auto; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .8rem 1.5rem; border-radius: 999px; font-weight: 600; font-size: .95rem;
  transition: transform .18s var(--ease), background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease);
  white-space: nowrap; border: 1.5px solid transparent;
}
.btn:hover{ transform: translateY(-2px); }
.btn-solid{
  background: linear-gradient(135deg, var(--ember), var(--ember-2));
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(232,84,30,.6);
}
.btn-solid:hover{ box-shadow: 0 12px 30px -6px rgba(232,84,30,.75); }
.btn-outline{
  border-color: rgba(247,238,224,.4); color: var(--cream);
}
.btn-outline:hover{ border-color: var(--amber); color: var(--amber); }
.btn-ghost{ color: var(--cream); }
.btn-ghost:hover{ color: var(--amber); }
.btn-lg{ padding: 1rem 2rem; font-size: 1rem; }

.text-link{
  color: var(--ember-2); font-weight: 600; display: inline-block; margin-top: .5rem;
  border-bottom: 1.5px solid transparent; transition: border-color .18s var(--ease);
}
.text-link:hover{ border-color: var(--ember-2); }

/* ==========================================================================
   Nav
   ========================================================================== */
.site-nav{
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-nav.is-scrolled{
  background: rgba(18,13,10,.92);
  backdrop-filter: blur(10px);
  border-bottom-color: rgba(247,238,224,.08);
  box-shadow: 0 8px 30px -10px rgba(0,0,0,.5);
}
.nav-inner{
  max-width: var(--container); margin: 0 auto; padding: 1rem 1.4rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand{ display: flex; align-items: center; gap: .55rem; }
.brand-mark{ color: var(--ember-2); display: inline-flex; }
.brand-word{ font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; color: var(--cream); letter-spacing: .01em; }
.brand-amp{ color: var(--amber); font-style: italic; }

.nav-links{ display: none; align-items: center; gap: 1.8rem; }
.nav-links a{
  font-size: .92rem; font-weight: 500; color: var(--cream-dim);
  position: relative; padding: .2rem 0; transition: color .18s var(--ease);
}
.nav-links a:hover{ color: var(--cream); }
.nav-links a::after{
  content: ""; position: absolute; left: 0; right: 100%; bottom: -4px; height: 2px;
  background: var(--ember); transition: right .25s var(--ease);
}
.nav-links a:hover::after{ right: 0; }
.nav-links a[aria-current="page"]{ color: var(--amber); }
.nav-links a[aria-current="page"]::after{ right: 0; background: var(--amber); }
.nav-mobile-panel a[aria-current="page"]{ color: var(--amber); }

.nav-cta{ display: none; align-items: center; gap: .7rem; }

.hamburger{
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; padding: 8px; border-radius: 8px;
}
.hamburger span{ display: block; height: 2px; background: var(--cream); border-radius: 2px; transition: transform .25s var(--ease), opacity .25s var(--ease); }
.hamburger[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-panel{
  position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 84vw); z-index: 199;
  background: var(--charcoal); border-left: 1px solid rgba(247,238,224,.08);
  padding: 6rem 1.6rem 2rem; display: flex; flex-direction: column; gap: 2rem;
  transform: translateX(100%); transition: transform .35s var(--ease);
  box-shadow: -20px 0 50px rgba(0,0,0,.4);
}
.nav-mobile-panel.is-open{ transform: translateX(0); }
.nav-mobile-panel nav{ display: flex; flex-direction: column; gap: 1.3rem; }
.nav-mobile-panel nav a{ font-family: var(--font-display); font-size: 1.4rem; color: var(--cream); }
.nav-mobile-cta{ display: flex; flex-direction: column; gap: .8rem; }
.nav-mobile-cta .btn{ width: 100%; }

@media (min-width: 900px){
  .nav-links{ display: flex; }
  .nav-cta{ display: flex; }
  .hamburger{ display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 7rem 1.4rem 4rem;
  background:
    radial-gradient(120% 90% at 50% 100%, rgba(232,84,30,.28), transparent 60%),
    radial-gradient(80% 60% at 80% 0%, rgba(240,169,62,.14), transparent 55%),
    linear-gradient(180deg, #0d0a08 0%, var(--ink) 55%, #150f0b 100%);
}
/* These layers are full-bleed backgrounds for .hero — override the sitewide
   `section > * { max-width: var(--container) }` rule so they reach both edges
   on screens wider than the container instead of pillarboxing. */
.hero-photo, .hero-scrim, #emberCanvas, .hero-glow{ max-width: none; margin-left: 0; margin-right: 0; }

.hero-photo{
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
  opacity: 0; transition: opacity .6s var(--ease);
}
.hero-photo.is-loaded{ opacity: .55; }
.hero-scrim{
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(18,13,10,.35) 0%, rgba(18,13,10,.68) 60%, var(--ink) 100%);
}
#emberCanvas{ position: absolute; inset: 0; width: 100%; height: 100%; z-index: 2; }
.hero-glow{
  position: absolute; left: 50%; bottom: -10%; width: 140%; height: 60%;
  transform: translateX(-50%); z-index: 1; pointer-events: none;
  background: radial-gradient(closest-side, rgba(232,84,30,.35), transparent 70%);
  filter: blur(10px);
}
.hero-content{ position: relative; z-index: 3; max-width: 780px; text-align: center; margin: 0 auto; }
.hero .eyebrow{ justify-content: center; }
.hero-title{
  font-size: clamp(2.4rem, 6.5vw, 4.4rem); color: var(--cream);
  text-wrap: balance;
}
.hero-title em{ color: var(--ember-2); font-style: italic; }
.hero-sub{
  margin: 1.5rem auto 0; max-width: 560px; color: var(--cream-dim); font-size: 1.1rem;
}
.hero-actions{ margin-top: 2.4rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   Offers ticker
   ========================================================================== */
.offers{ padding-left: 0; padding-right: 0; background: var(--charcoal); border-top: 1px solid rgba(247,238,224,.06); border-bottom: 1px solid rgba(247,238,224,.06); }
.offers-head{ text-align: center; max-width: var(--container); margin: 0 auto 2.4rem; padding: 0 1.4rem; }
.offers-head h2{ font-size: clamp(1.7rem, 3.5vw, 2.2rem); margin-bottom: .5rem; }
.offers-head p{ color: var(--cream-dim); }

.ticker-wrap{
  overflow: hidden; width: 100%; max-width: none; margin-left: 0; margin-right: 0;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.ticker-track{
  display: flex; width: max-content;
  will-change: transform; backface-visibility: hidden;
}
/* Motion is driven by JS (a continuous requestAnimationFrame loop, see
   createMarquee in script.js) rather than a CSS @keyframes infinite
   animation — this avoids the visible hitch some browsers show right at
   the animation-iteration restart point. JS also handles the hover-pause
   (real pointers only) and skips entirely under prefers-reduced-motion. */
@media (prefers-reduced-motion: reduce){
  .ticker-track{ overflow-x: auto; }
}

.coupon{
  position: relative; flex: 0 0 300px; margin-right: 1.4rem; background: var(--ink);
  border: 1.5px dashed rgba(240,169,62,.4); border-radius: var(--radius-md);
  padding: 1.4rem 1.5rem 1.3rem; display: flex; flex-direction: column; gap: .6rem;
}
.coupon::before, .coupon::after{
  content: ""; position: absolute; top: 50%; width: 22px; height: 22px;
  background: var(--charcoal); border-radius: 50%; transform: translateY(-50%);
}
.coupon::before{ left: -11px; }
.coupon::after{ right: -11px; }
.coupon-top{ display: flex; align-items: center; justify-content: space-between; gap: .6rem; }
.coupon-tag{
  font-family: var(--font-mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em;
  color: var(--ink); background: var(--amber); padding: .25rem .55rem; border-radius: 999px; font-weight: 700;
}
.coupon-expiry{ font-family: var(--font-mono); font-size: .72rem; color: var(--smoke); }
.coupon h3{ font-size: 1.15rem; color: var(--cream); }
.coupon p{ color: var(--cream-dim); font-size: .9rem; }
.coupon-bottom{
  margin-top: .4rem; display: flex; align-items: center; justify-content: space-between;
  border-top: 1px dashed rgba(247,238,224,.18); padding-top: .8rem;
}
.coupon-code{ font-family: var(--font-mono); font-weight: 700; color: var(--ember-2); letter-spacing: .04em; }
.copy-btn{
  display: inline-flex; align-items: center; gap: .35rem; font-size: .78rem; font-weight: 600;
  color: var(--cream); border: 1px solid rgba(247,238,224,.3); padding: .4rem .7rem; border-radius: 999px;
  transition: border-color .18s var(--ease), color .18s var(--ease), background .18s var(--ease);
}
.copy-btn:hover{ border-color: var(--amber); color: var(--amber); }
.copy-btn.is-copied{ background: var(--good); border-color: var(--good); color: var(--ink); }

/* ==========================================================================
   About
   ========================================================================== */
.about-grid{ display: grid; gap: 2.6rem; align-items: center; }
.about-media{ position: relative; }
.about-media img{ border-radius: var(--radius-lg); width: 100%; aspect-ratio: 16/10; object-fit: cover; box-shadow: 0 30px 60px -20px rgba(0,0,0,.6); }
.about-media-tag{
  position: absolute; left: 1.2rem; bottom: -1.2rem; background: var(--ink);
  border: 1px solid rgba(240,169,62,.35); color: var(--amber); font-family: var(--font-mono);
  font-size: .78rem; padding: .6rem 1rem; border-radius: var(--radius-sm); max-width: calc(100% - 2.4rem);
}
.about-copy h2{ font-size: clamp(1.9rem, 4vw, 2.6rem); margin: .3rem 0 1.1rem; }
.about-copy p{ color: var(--cream-dim); margin-bottom: 1rem; }

@media (min-width: 860px){
  .about-grid{ grid-template-columns: .85fr 1fr; }
  .about-media img{ aspect-ratio: 4/5; }
}

/* ==========================================================================
   Stats
   ========================================================================== */
.stats{ background: linear-gradient(135deg, var(--charcoal-2), var(--charcoal)); }
.stats-grid{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem 1.2rem; text-align: center; }
.stat-number{
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.2rem); color: var(--ember-2);
  font-variant-numeric: tabular-nums;
}
.stat-label{ display: block; margin-top: .4rem; color: var(--cream-dim); font-size: .92rem; }
@media (min-width: 760px){ .stats-grid{ grid-template-columns: repeat(4, 1fr); } }

/* ==========================================================================
   Menu
   ========================================================================== */
.menu-tabs{
  display: flex; gap: .6rem; overflow-x: auto; padding-bottom: .6rem; margin-bottom: 2.6rem;
  scrollbar-width: none; justify-content: flex-start;
}
.menu-tabs::-webkit-scrollbar{ display: none; }
.menu-tab{
  flex: 0 0 auto; padding: .7rem 1.3rem; border-radius: 999px; font-weight: 600; font-size: .9rem;
  border: 1.5px solid rgba(247,238,224,.16); color: var(--cream-dim);
  transition: all .2s var(--ease);
}
.menu-tab:hover{ border-color: rgba(240,169,62,.5); color: var(--cream); }
.menu-tab.is-active{
  background: linear-gradient(135deg, var(--ember), var(--ember-2)); border-color: transparent; color: #fff;
}
@media (min-width: 700px){ .menu-tabs{ justify-content: center; } }

.menu-panel{ display: none; }
.menu-panel.is-active{ display: block; }
.menu-grid{ display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 640px){ .menu-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px){ .menu-grid{ grid-template-columns: repeat(3, 1fr); } }

.menu-item{
  display: flex; gap: 1rem; background: var(--charcoal); border: 1px solid rgba(247,238,224,.07);
  border-radius: var(--radius-md); padding: 1rem; transition: transform .22s var(--ease), border-color .22s var(--ease), background .22s var(--ease);
}
.menu-item:hover{ transform: translateY(-4px); border-color: rgba(240,169,62,.35); background: var(--charcoal-2); }
.menu-item-photo{ flex: 0 0 84px; width: 84px; height: 84px; border-radius: var(--radius-sm); overflow: hidden; }
.menu-item-photo img{ width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.menu-item:hover .menu-item-photo img{ transform: scale(1.08); }
.menu-item-body{ flex: 1; min-width: 0; }
.menu-item-top{ display: flex; justify-content: space-between; align-items: baseline; gap: .6rem; }
.menu-item-top h3{ font-size: 1.05rem; color: var(--cream); }
.menu-item-price{ font-family: var(--font-mono); font-weight: 700; color: var(--amber); white-space: nowrap; }
.menu-item-desc{ color: var(--cream-dim); font-size: .88rem; margin-top: .3rem; }
.menu-badges{ display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .6rem; }
.badge{
  font-family: var(--font-mono); font-size: .64rem; text-transform: uppercase; letter-spacing: .06em;
  padding: .2rem .5rem; border-radius: 5px; font-weight: 700;
}
.badge-pick{ background: rgba(240,169,62,.15); color: var(--amber); border: 1px solid rgba(240,169,62,.4); }
.badge-spicy{ background: rgba(232,84,30,.15); color: var(--ember-2); border: 1px solid rgba(232,84,30,.4); }
.badge-veg{ background: rgba(111,185,143,.15); color: var(--good); border: 1px solid rgba(111,185,143,.4); }

.menu-item-drink{ padding: 1.1rem 1.2rem; }
.menu-item-drink .menu-item-top h3{ font-size: 1rem; }

/* ==========================================================================
   Chefs
   ========================================================================== */
.chefs-wrap{
  overflow: hidden; width: 100%; max-width: none; margin-left: 0; margin-right: 0;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.chefs-track{
  display: flex; width: max-content; padding: .5rem 0 1.4rem;
  will-change: transform; backface-visibility: hidden;
}
@media (prefers-reduced-motion: reduce){
  .chefs-track{ overflow-x: auto; }
}
.chef-card{
  flex: 0 0 min(300px, 78vw); margin-right: 1.6rem;
  text-align: center; background: var(--charcoal); border: 1px solid rgba(247,238,224,.07);
  border-radius: var(--radius-lg); padding: 2rem 1.6rem 1.8rem; transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.chef-card:hover{ transform: translateY(-6px); border-color: rgba(232,84,30,.4); }
.chef-photo{
  width: 118px; height: 118px; margin: 0 auto 1.1rem; border-radius: 50%; overflow: hidden;
  border: 3px solid var(--amber); box-shadow: 0 0 0 6px rgba(240,169,62,.12);
}
.chef-photo img{ width: 100%; height: 100%; object-fit: cover; }
.chef-card h3{ font-size: 1.25rem; }
.chef-title{ color: var(--ember-2); font-weight: 600; font-size: .88rem; margin-top: .25rem; }
.chef-specialty{ color: var(--cream-dim); font-size: .85rem; margin-top: .5rem; }
.chef-quote{ margin-top: .9rem; font-family: var(--font-display); font-style: italic; color: var(--cream); font-size: 1rem; }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery-grid{ display: grid; gap: .8rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px){ .gallery-grid{ grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 980px){ .gallery-grid{ grid-template-columns: repeat(4, 1fr); } }
.gallery-item{
  position: relative; border-radius: var(--radius-md); overflow: hidden; cursor: pointer;
  aspect-ratio: 1/1; border: 0; padding: 0; display: block; width: 100%;
}
.gallery-item img{ width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-item:hover img{ transform: scale(1.12); }
.gallery-item::after{
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(18,13,10,.75), transparent 55%);
  opacity: 0; transition: opacity .25s var(--ease);
}
.gallery-item:hover::after{ opacity: 1; }
.gallery-item span{
  position: absolute; left: .8rem; bottom: .7rem; right: .8rem; color: var(--cream);
  font-size: .82rem; font-weight: 600; opacity: 0; transform: translateY(6px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.gallery-item:hover span{ opacity: 1; transform: translateY(0); }

.lightbox{
  position: fixed; inset: 0; z-index: 500; background: rgba(9,7,5,.94);
  display: flex; align-items: center; justify-content: center; padding: 4rem 1.4rem;
}
.lightbox[hidden]{ display: none; }
.lightbox img{ max-width: min(900px, 90vw); max-height: 74vh; border-radius: var(--radius-md); box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lightbox-caption{ position: absolute; bottom: 1.6rem; left: 0; right: 0; text-align: center; color: var(--cream-dim); font-size: .9rem; }
.lightbox-close{
  position: absolute; top: 1.2rem; right: 1.4rem; font-size: 2rem; color: var(--cream); line-height: 1; padding: .3rem .6rem;
}
.lightbox-nav{
  position: absolute; top: 50%; transform: translateY(-50%); font-size: 2.4rem; color: var(--cream);
  width: 52px; height: 52px; border-radius: 50%; background: rgba(247,238,224,.06);
  display: flex; align-items: center; justify-content: center;
}
.lightbox-nav:hover{ background: rgba(247,238,224,.14); color: var(--amber); }
.lightbox-prev{ left: 1rem; }
.lightbox-next{ right: 1rem; }

/* ==========================================================================
   Reviews
   ========================================================================== */
.reviews{ background: var(--charcoal); }
.reviews-wrap{
  overflow: hidden; width: 100%; max-width: none; margin-left: 0; margin-right: 0;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.reviews-track{
  display: flex; width: max-content; padding: .5rem 0 1rem;
  will-change: transform; backface-visibility: hidden;
}
@media (prefers-reduced-motion: reduce){
  .reviews-track{ overflow-x: auto; }
}
.review-card{
  flex: 0 0 min(360px, 84vw); margin-right: 1.2rem; background: var(--ink);
  border: 1px solid rgba(247,238,224,.08); border-radius: var(--radius-lg); padding: 1.7rem;
}
.review-stars{ color: var(--amber); letter-spacing: .1em; font-size: 1rem; }
.review-text{ margin: .9rem 0 1.2rem; color: var(--cream); font-size: .98rem; }
.review-person{ display: flex; align-items: center; gap: .7rem; }
.review-person img{ width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.review-person strong{ display: block; font-size: .92rem; }
.review-person span{ display: block; font-size: .78rem; color: var(--smoke); }

/* ==========================================================================
   Delivery
   ========================================================================== */
.delivery{ background: linear-gradient(180deg, var(--ink), #170f0a); }
.delivery-steps{ display: grid; gap: 1.4rem; grid-template-columns: 1fr; margin-bottom: 3rem; }
@media (min-width: 760px){ .delivery-steps{ grid-template-columns: repeat(3, 1fr); } }
.delivery-step{
  background: var(--charcoal); border: 1px solid rgba(247,238,224,.07); border-radius: var(--radius-lg);
  padding: 1.8rem; position: relative;
}
.step-num{ font-family: var(--font-mono); color: var(--ember-2); font-size: 1.6rem; font-weight: 700; }
.delivery-step h3{ margin: .6rem 0 .5rem; font-size: 1.2rem; }
.delivery-step p{ color: var(--cream-dim); font-size: .92rem; }

.delivery-meta{
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.6rem;
  background: var(--charcoal); border-radius: var(--radius-lg); padding: 1.8rem; border: 1px solid rgba(247,238,224,.07);
}
.delivery-eta{ display: flex; flex-direction: column; }
.eta-number{ font-family: var(--font-display); font-size: 2.2rem; color: var(--amber); font-weight: 700; }
.eta-label{ color: var(--cream-dim); font-size: .85rem; }
.delivery-partners p{ color: var(--cream-dim); font-size: .82rem; margin-bottom: .5rem; }
.partner-badges{ display: flex; flex-wrap: wrap; gap: .6rem; }
.partner-badge{
  display: inline-flex; align-items: center; gap: .4rem; font-size: .82rem; font-weight: 600;
  color: var(--cream); border: 1px solid rgba(247,238,224,.16); padding: .45rem .8rem; border-radius: 999px;
}
.partner-badge svg{ color: var(--amber); }

/* ==========================================================================
   Contact / reservation
   ========================================================================== */
.contact-grid{ display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 940px){ .contact-grid{ grid-template-columns: 1.1fr .9fr; } }

.reservation-form{
  background: var(--charcoal); border: 1px solid rgba(247,238,224,.08); border-radius: var(--radius-lg);
  padding: 1.8rem; display: flex; flex-direction: column; gap: 1.1rem;
}
.form-row{ display: flex; flex-direction: column; gap: .4rem; min-width: 0; }
.form-row-split{ display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-row-split > div{ display: flex; flex-direction: column; gap: .4rem; min-width: 0; }
.form-row label{ font-size: .85rem; font-weight: 600; color: var(--cream-dim); }
.optional{ font-weight: 400; color: var(--smoke); }
.form-row input, .form-row select, .form-row textarea{
  width: 100%; min-width: 0; background: var(--ink); border: 1.5px solid rgba(247,238,224,.14); border-radius: var(--radius-sm);
  padding: .7rem .85rem; color: var(--cream); transition: border-color .18s var(--ease);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus{ border-color: var(--amber); outline: none; }
.form-row input.is-touched:invalid, .form-row select.is-touched:invalid{ border-color: var(--ember); }
.form-submit{ margin-top: .4rem; }
.form-confirm{
  font-size: .88rem; color: var(--good); background: rgba(111,185,143,.1);
  border: 1px solid rgba(111,185,143,.3); padding: .7rem .9rem; border-radius: var(--radius-sm);
}

.contact-info{ display: flex; flex-direction: column; gap: 1.4rem; }
.hours-card, .address-card{
  background: var(--charcoal); border: 1px solid rgba(247,238,224,.08); border-radius: var(--radius-lg); padding: 1.6rem;
}
.hours-head{ display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .6rem; margin-bottom: 1rem; }
.hours-head h3{ font-size: 1.15rem; }
.open-indicator{ display: inline-flex; align-items: center; gap: .45rem; font-size: .8rem; font-weight: 600; color: var(--cream-dim); }
.open-indicator .dot{ width: 8px; height: 8px; border-radius: 50%; background: var(--smoke); }
.open-indicator.is-open{ color: var(--good); }
.open-indicator.is-open .dot{ background: var(--good); box-shadow: 0 0 0 4px rgba(111,185,143,.2); }
.open-indicator.is-closed{ color: var(--ember-2); }
.open-indicator.is-closed .dot{ background: var(--ember-2); box-shadow: 0 0 0 4px rgba(232,84,30,.2); }
.hours-list li{ display: flex; justify-content: space-between; padding: .5rem 0; border-top: 1px solid rgba(247,238,224,.07); font-size: .9rem; color: var(--cream-dim); }
.hours-list li:first-child{ border-top: 0; }

.address-card h3{ font-size: 1.15rem; margin-bottom: .8rem; }
.address-card p{ color: var(--cream-dim); margin-bottom: .5rem; font-size: .92rem; }
.address-card a:hover{ color: var(--amber); }
.social-row{ display: flex; gap: .7rem; margin-top: 1rem; }
.social-icon{
  width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(247,238,224,.16); color: var(--cream-dim); transition: all .18s var(--ease);
}
.social-icon:hover{ color: var(--ink); background: var(--amber); border-color: var(--amber); }

.map-embed{ border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(247,238,224,.08); }
.map-embed iframe{ width: 100%; height: 220px; border: 0; display: block; filter: grayscale(.3) invert(.92) contrast(.9); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{ background: var(--ink); border-top: 1px solid rgba(247,238,224,.08); padding: 4rem 1.4rem 1.6rem; }
.footer-grid{
  max-width: var(--container); margin: 0 auto; display: grid; gap: 2.4rem;
  grid-template-columns: 1fr; padding-bottom: 2.4rem; border-bottom: 1px solid rgba(247,238,224,.08);
}
@media (min-width: 760px){ .footer-grid{ grid-template-columns: 1.3fr .8fr 1fr .6fr; } }
.footer-brand p{ color: var(--cream-dim); font-size: .9rem; margin-top: .8rem; max-width: 320px; }
.footer-nav h4, .footer-newsletter h4, .footer-social h4{ font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--amber); margin-bottom: 1rem; font-family: var(--font-mono); }
.footer-nav{ display: flex; flex-direction: column; }
.footer-nav a{ color: var(--cream-dim); font-size: .92rem; padding: .32rem 0; transition: color .18s var(--ease); }
.footer-nav a:hover{ color: var(--cream); }
.footer-newsletter p{ color: var(--cream-dim); font-size: .87rem; margin-bottom: 1rem; }
.newsletter-form{ display: flex; gap: .5rem; }
.newsletter-form input{
  flex: 1; min-width: 0; background: var(--charcoal); border: 1.5px solid rgba(247,238,224,.14); border-radius: var(--radius-sm);
  padding: .65rem .8rem; color: var(--cream);
}
.newsletter-form input:focus{ border-color: var(--amber); outline: none; }
.footer-newsletter .form-confirm{ margin-top: .8rem; }
.footer-bottom{
  max-width: var(--container); margin: 0 auto; padding-top: 1.4rem; display: flex; flex-wrap: wrap;
  justify-content: space-between; gap: .6rem; color: var(--smoke); font-size: .8rem;
}

/* ==========================================================================
   Chatbot
   ========================================================================== */
.chatbot{ position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 300; }
.chatbot-bubble{
  width: 58px; height: 58px; border-radius: 50%; background: linear-gradient(135deg, var(--ember), var(--ember-2));
  color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(232,84,30,.7); transition: transform .2s var(--ease);
  position: relative;
}
.chatbot-bubble:hover{ transform: translateY(-3px) scale(1.04); }
.icon-close{ display: none; }
.chatbot-bubble[aria-expanded="true"] .icon-chat{ display: none; }
.chatbot-bubble[aria-expanded="true"] .icon-close{ display: block; }

.chatbot-panel{
  position: absolute; right: 0; bottom: 72px; width: min(340px, 88vw); height: min(480px, 70vh);
  background: var(--charcoal); border: 1px solid rgba(247,238,224,.1); border-radius: var(--radius-lg);
  display: flex; flex-direction: column; overflow: hidden; box-shadow: 0 30px 70px rgba(0,0,0,.55);
  animation: panelIn .22s var(--ease);
}
.chatbot-panel[hidden]{ display: none; }
@keyframes panelIn{ from{ opacity: 0; transform: translateY(12px) scale(.98); } to{ opacity: 1; transform: none; } }
.chatbot-head{
  padding: 1rem 1.1rem; background: linear-gradient(135deg, var(--ember), var(--ember-2)); color: #fff;
  display: flex; align-items: center; gap: .6rem;
}
.chatbot-head strong{ display: block; font-size: .95rem; }
.chatbot-head span{ display: block; font-size: .72rem; opacity: .9; }
.chatbot-messages{ flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: .7rem; }
.chat-msg{ max-width: 84%; padding: .6rem .85rem; border-radius: 14px; font-size: .87rem; line-height: 1.45; }
.chat-msg.bot{ align-self: flex-start; background: var(--ink); border: 1px solid rgba(247,238,224,.08); border-bottom-left-radius: 4px; }
.chat-msg.user{ align-self: flex-end; background: var(--ember); color: #fff; border-bottom-right-radius: 4px; }
.chat-typing{ align-self: flex-start; display: flex; gap: 4px; padding: .7rem .9rem; background: var(--ink); border-radius: 14px; border-bottom-left-radius: 4px; }
.chat-typing span{ width: 6px; height: 6px; border-radius: 50%; background: var(--smoke); animation: typingDot 1.2s infinite ease-in-out; }
.chat-typing span:nth-child(2){ animation-delay: .15s; }
.chat-typing span:nth-child(3){ animation-delay: .3s; }
@keyframes typingDot{ 0%, 60%, 100%{ transform: translateY(0); opacity: .5; } 30%{ transform: translateY(-4px); opacity: 1; } }

.chatbot-suggestions{ display: flex; gap: .4rem; flex-wrap: wrap; padding: 0 1rem .7rem; }
.chatbot-suggestions.is-hidden{ display: none; }
.chip{
  font-size: .74rem; padding: .38rem .7rem; border-radius: 999px; border: 1px solid rgba(247,238,224,.16);
  color: var(--cream-dim); transition: all .18s var(--ease);
}
.chip:hover{ border-color: var(--amber); color: var(--amber); }

.chatbot-input-row{ display: flex; border-top: 1px solid rgba(247,238,224,.08); }
.chatbot-input-row input{
  flex: 1; min-width: 0; background: var(--ink); border: 0; padding: .9rem 1rem; color: var(--cream);
}
.chatbot-input-row input:focus{ outline: none; }
.chatbot-input-row button{ width: 52px; display: flex; align-items: center; justify-content: center; color: var(--amber); }
.chatbot-input-row button:hover{ color: var(--ember-2); }

/* ==========================================================================
   Sub-page header / CTA banner / teasers
   ========================================================================== */
.page-header{
  padding: 9rem 1.4rem 3.5rem; text-align: center;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(232,84,30,.2), transparent 60%),
    linear-gradient(180deg, #0d0a08 0%, var(--ink) 100%);
  border-bottom: 1px solid rgba(247,238,224,.06);
}
.page-header .eyebrow{ display: flex; justify-content: center; }
.page-header h1{ font-size: clamp(2.2rem, 5.5vw, 3.4rem); max-width: 720px; margin: 0 auto; }
.page-header p{ color: var(--cream-dim); max-width: 560px; margin: 1rem auto 0; font-size: 1.05rem; }

.cta-banner{
  text-align: center; background: linear-gradient(135deg, var(--charcoal-2), var(--charcoal));
  border: 1px solid rgba(247,238,224,.08); border-radius: var(--radius-lg);
  padding: 3.2rem 1.6rem;
}
.cta-banner h2{ font-size: clamp(1.7rem, 4vw, 2.3rem); margin-bottom: .7rem; }
.cta-banner p{ color: var(--cream-dim); max-width: 480px; margin: 0 auto 1.6rem; }
.cta-banner .hero-actions{ margin-top: 0; }

.section-link-row{ text-align: center; margin-top: 2.6rem; }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal{ opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible{ opacity: 1; transform: none; }
.stagger .reveal:nth-child(1){ transition-delay: 0s; }
.stagger .reveal:nth-child(2){ transition-delay: .08s; }
.stagger .reveal:nth-child(3){ transition-delay: .16s; }
.stagger .reveal:nth-child(4){ transition-delay: .24s; }
.stagger .reveal:nth-child(5){ transition-delay: .32s; }
.stagger .reveal:nth-child(6){ transition-delay: .4s; }

@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1; transform: none; transition: none; }
}
