/* ============================================================
   BANH MI DELI — design system
   Warm paper / deep herb green / chili red / baguette gold
   ============================================================ */
:root {
  --paper: #f6f1e4;
  --paper-2: #eae2cc;
  --ink: #122620;
  --ink-soft: #46584e;
  --green: #14533a;
  --green-deep: #0a2a1d;
  --chili: #1b6a44;        /* brand emerald — primary accent */
  --chili-soft: #2e8a5c;
  --gold: #d8b56a;         /* champagne gold — secondary highlight */
  --cream: #fdfaf1;
  --radius: 18px;
  --font-display: 'Playfair Display', 'Times New Roman', serif;
  --font-body: 'Jost', system-ui, sans-serif;
  --font-hand: 'Playfair Display', serif;
  --nav-h: 76px;
  --shadow: 0 18px 45px -18px rgba(10, 42, 29, .32);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html:has(.mmenu.is-open) { overflow: hidden; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--gold); color: var(--green-deep); }

/* film grain overlay */
.grain {
  position: fixed; inset: 0; z-index: 80; pointer-events: none; opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* custom cursor (pointer:fine only) */
.cursor-dot, .cursor-ring { display: none; }
@media (pointer: fine) {
  .cursor-dot, .cursor-ring { display: block; position: fixed; top: 0; left: 0; pointer-events: none; z-index: 99; border-radius: 50%; }
  .cursor-dot { width: 8px; height: 8px; background: var(--chili); transform: translate(-50%,-50%); }
  .cursor-ring { width: 38px; height: 38px; border: 1.5px solid rgba(226,60,31,.55); transform: translate(-50%,-50%); transition: width .25s, height .25s, background .25s; }
  .cursor-ring.is-hover { width: 60px; height: 60px; background: rgba(226,60,31,.08); }
}

/* ============ LOADER ============ */
.loader {
  position: fixed; inset: 0; z-index: 200; background: var(--green-deep);
  display: grid; place-items: center; color: var(--paper);
}
.loader__word { font-family: var(--font-display); font-size: clamp(3rem, 12vw, 7rem); letter-spacing: .04em; display: flex; }
.loader__word span { display: inline-block; transform: translateY(120%); }
.loader__bar { width: min(260px, 50vw); height: 3px; background: rgba(255,255,255,.15); margin: 1.6rem auto 0; border-radius: 99px; overflow: hidden; }
.loader__bar-fill { width: 0%; height: 100%; background: var(--gold); border-radius: 99px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 600; font-size: .88rem; text-decoration: none;
  text-transform: uppercase; letter-spacing: .14em;
  padding: .85rem 1.7rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; position: relative; overflow: hidden; white-space: nowrap;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), background .25s, color .25s, border-color .25s;
}
.btn--lg { padding: 1.05rem 2.2rem; font-size: 1.05rem; }
.btn--solid { background: linear-gradient(120deg, #1f7a4e, #14533a 55%, #2e8a5c); background-size: 180% 100%; color: var(--cream); box-shadow: 0 10px 25px -10px rgba(20,83,58,.7); }
.btn--solid:hover { background-position: 100% 0; color: var(--gold); }
.btn--ghost { border-color: rgba(18,38,32,.55); color: var(--ink); background: transparent; }
.btn--ghost:hover { background: var(--green-deep); border-color: var(--green-deep); color: var(--gold); }
.btn--invert { background: linear-gradient(120deg, #d8b56a, #c9a050); color: var(--green-deep); }
.btn--invert:hover { background: var(--cream); }
.btn__label { position: relative; z-index: 1; }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s, box-shadow .35s, transform .4s;
}
.nav.is-scrolled { background: rgba(250,244,232,.88); backdrop-filter: blur(14px); box-shadow: 0 4px 24px -12px rgba(30,42,30,.25); }
.nav.is-hidden { transform: translateY(-100%); }
.nav__inner { max-width: 1280px; margin: 0 auto; height: var(--nav-h); padding: 0 clamp(1rem, 4vw, 2.5rem); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav__logo { display: flex; align-items: center; gap: .65rem; text-decoration: none; }
.nav__logo img { width: 62px; height: 62px; border-radius: 50%; transition: width .35s ease, height .35s ease; }
.nav.is-scrolled .nav__logo img { width: 44px; height: 44px; }
.nav__logo-text { font-family: 'Cinzel', var(--font-display); font-size: 1.25rem; letter-spacing: .06em; text-transform: uppercase; }
.nav__logo-text em { font-style: normal; color: var(--chili); }
.nav__links { display: flex; gap: clamp(.8rem, 2vw, 1.8rem); }
.nav__link { text-decoration: none; font-weight: 600; font-size: .92rem; position: relative; padding: .3rem 0; }
.nav__link::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: var(--chili); transform: scaleX(0); transform-origin: right; transition: transform .3s; }
.nav__link:hover::after, .nav__link--active::after { transform: scaleX(1); transform-origin: left; }
.nav__actions { display: flex; align-items: center; gap: .9rem; }
.nav__status { display: inline-flex; align-items: center; gap: .4rem; font-size: .8rem; font-weight: 700; color: var(--ink-soft); }
.nav__status-dot { width: 9px; height: 9px; border-radius: 50%; background: #b6b6b6; }
.nav__status.is-open .nav__status-dot { background: #2bb24c; box-shadow: 0 0 0 0 rgba(43,178,76,.7); animation: livePulse 1.8s ease-out infinite; }
.nav__status.is-closed .nav__status-dot { background: var(--chili); }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(43,178,76,0); } 100% { box-shadow: 0 0 0 0 rgba(43,178,76,0); } }
.nav__burger { display: none; width: 44px; height: 44px; border: none; background: none; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 7px; }
.nav__burger span { display: block; width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .35s, opacity .35s; }
html:has(.mmenu.is-open) .nav__logo-text { color: var(--paper); }
html:has(.mmenu.is-open) .nav__burger span { background: var(--paper); }
html:has(.mmenu.is-open) .nav.is-scrolled { background: transparent; box-shadow: none; backdrop-filter: none; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(4.75px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4.75px) rotate(-45deg); }

/* mobile menu */
.mmenu {
  position: fixed; inset: 0; z-index: 95; background: var(--green-deep); color: var(--paper);
  display: flex; flex-direction: column; justify-content: center; gap: 3rem; padding: 6rem 2rem 3rem;
  clip-path: circle(0% at calc(100% - 3rem) 2.4rem); visibility: hidden;
  transition: clip-path .6s cubic-bezier(.77,0,.18,1), visibility 0s .6s;
}
.mmenu.is-open { clip-path: circle(150% at calc(100% - 3rem) 2.4rem); visibility: visible; transition: clip-path .6s cubic-bezier(.77,0,.18,1); }
.mmenu__links { display: flex; flex-direction: column; gap: .4rem; }
.mmenu__link { font-family: var(--font-display); font-size: clamp(2.2rem, 9vw, 3.4rem); text-transform: uppercase; text-decoration: none; letter-spacing: .02em; opacity: 0; transform: translateY(24px); transition: color .25s; }
.mmenu__link:hover { color: var(--gold); }
.mmenu.is-open .mmenu__link { opacity: 1; transform: none; transition: opacity .5s, transform .5s; }
.mmenu.is-open .mmenu__link:nth-child(1){transition-delay:.15s}.mmenu.is-open .mmenu__link:nth-child(2){transition-delay:.22s}.mmenu.is-open .mmenu__link:nth-child(3){transition-delay:.29s}.mmenu.is-open .mmenu__link:nth-child(4){transition-delay:.36s}.mmenu.is-open .mmenu__link:nth-child(5){transition-delay:.43s}
.mmenu__foot { display: flex; flex-direction: column; gap: 1rem; font-size: .95rem; opacity: .9; }

/* ============ TYPE / SECTIONS ============ */
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.section__inner { max-width: 1280px; margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 2.5rem); }
.eyebrow { font-weight: 600; font-size: .8rem; text-transform: uppercase; letter-spacing: .28em; color: var(--chili); margin-bottom: .9rem; display: flex; align-items: center; gap: .8rem; }
.eyebrow::before { content: ""; width: 38px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); flex-shrink: 0; }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { content: ""; width: 38px; height: 1px; background: linear-gradient(270deg, var(--gold), transparent); flex-shrink: 0; }
.h2 { font-family: var(--font-display); font-size: clamp(2.2rem, 5.5vw, 4rem); line-height: 1.05; text-transform: uppercase; letter-spacing: .015em; margin-bottom: 1.4rem; }
.h2 em { font-style: italic; background: linear-gradient(110deg, #0f4d32, #2e8a5c 50%, #14533a); -webkit-background-clip: text; background-clip: text; color: transparent; }
.menu .h2 em, .bigcta .h2 em { background: linear-gradient(110deg, #9a7332, #d8b56a 50%, #c9a050); -webkit-background-clip: text; background-clip: text; }
.h2--center { text-align: center; }

/* serif display weight */
.hero__title, .h2, .chero__title, .bigcta__title, .loader__word, .footer__name,
.nav__logo-text, .stat__num, .dish__price, .mmenu__link, .pack h3, .how__num { font-weight: 700; }

/* reveal defaults (animated in by GSAP; visible if JS fails) */
[data-reveal] { will-change: transform, opacity; }

/* ============ HERO ============ */
.hero {
  min-height: 100svh; display: grid; align-items: center;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  max-width: 1280px; margin: 0 auto; padding: calc(var(--nav-h) + 2rem) clamp(1.1rem, 4vw, 2.5rem) 4rem;
  gap: 2rem; position: relative;
}
.hero__bg { position: absolute; inset: 0; z-index: -1; overflow: visible; }
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.hero__blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .5; }
.hero__blob--1 { width: 46vw; height: 46vw; background: #ecd9ad; top: -10%; right: -8%; }
.hero__blob--2 { width: 30vw; height: 30vw; background: #cfe0cf; bottom: -5%; left: -10%; }
.hero__kicker { display: inline-flex; align-items: center; gap: .55rem; font-weight: 700; font-size: .88rem; text-transform: uppercase; letter-spacing: .14em; color: var(--green); margin-bottom: 1.4rem; }
.hero__kicker-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--chili); animation: pulse 2s infinite; }
.hero__title { font-family: var(--font-display); font-size: clamp(3.2rem, 9vw, 7.4rem); line-height: 1.04; letter-spacing: .01em; text-transform: uppercase; margin-bottom: 1.6rem; }
.hero__line { display: block; overflow: hidden; padding: .06em .04em .1em 0; margin: -.04em 0; }
.hero__word { display: inline-block; }
.hero__word--outline { color: transparent; -webkit-text-stroke: 1.5px var(--chili); }
.hero__word--accent { font-style: italic; background: linear-gradient(110deg, #0f4d32, #2e8a5c 40%, #14533a 65%, #d8b56a 110%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__sub { font-size: clamp(1rem, 1.5vw, 1.2rem); color: var(--ink-soft); max-width: 46ch; margin-bottom: 2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.hero__meta { display: flex; align-items: center; gap: 1rem; font-size: .92rem; font-weight: 600; color: var(--ink-soft); }
.hero__meta-item strong { color: var(--ink); }
.hero__meta-sep { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

.hero__visual { position: relative; align-self: center; }
.hero__img-wrap {
  border-radius: 48% 52% 55% 45% / 50% 46% 54% 50%;
  overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 1; max-width: 560px; margin-inline: auto;
  animation: blobmorph 12s ease-in-out infinite;
}
@keyframes blobmorph {
  0%,100% { border-radius: 48% 52% 55% 45% / 50% 46% 54% 50%; }
  50% { border-radius: 54% 46% 44% 56% / 44% 56% 46% 54%; }
}
.hero__img-wrap img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); }
.hero__sticker, .story__card figcaption, .story__scribble { font-style: italic; font-weight: 600; }
.hero__sticker {
  position: absolute; font-family: var(--font-hand); font-size: 1.02rem; line-height: 1.25;
  border: 1px solid rgba(176,136,64,.4);
  background: var(--cream); color: var(--green-deep); padding: .65rem 1rem; border-radius: 14px;
  box-shadow: var(--shadow); rotate: -6deg; text-align: center;
  animation: stickerFloat 5s ease-in-out infinite;
}
.hero__sticker--1 { top: 6%; left: -4%; }
.hero__sticker--2 { bottom: 10%; right: -2%; rotate: 5deg; animation-duration: 6.4s; animation-delay: -1.6s; }
/* stickers gently float & breathe, echoing the morphing hero image */
@keyframes stickerFloat { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-12px) scale(1.03); } }
.hero__badge { position: absolute; top: -5%; right: 4%; width: 110px; height: 110px; }
.hero__badge svg { width: 100%; height: 100%; animation: spin 14s linear infinite; fill: var(--green); }
.hero__badge text { font-size: 10px; font-weight: 600; letter-spacing: .14em; font-family: var(--font-body); }
.hero__badge > span { position: absolute; inset: 0; display: grid; place-items: center; font-size: 1.6rem; color: var(--chili); }
@keyframes spin { to { transform: rotate(360deg); } }
.hero__scrollhint { position: absolute; bottom: 1.6rem; left: 50%; translate: -50%; width: 26px; height: 42px; border: 2px solid var(--ink-soft); border-radius: 14px; opacity: .55; }
.hero__scrollhint span { position: absolute; top: 7px; left: 50%; translate: -50%; width: 4px; height: 8px; border-radius: 4px; background: var(--chili); animation: scrollhint 1.8s ease-in-out infinite; }
@keyframes scrollhint { 0%{transform:translateY(0);opacity:1} 70%{transform:translateY(14px);opacity:0} 100%{opacity:0} }

/* ============ MARQUEE ============ */
.marquee { background: var(--green-deep); color: var(--paper); overflow: hidden; padding: 1.1rem 0; rotate: -1.2deg; scale: 1.0 1; }
.marquee__track { display: flex; align-items: center; gap: 2.4rem; width: max-content; will-change: transform; }
.marquee__item { font-family: var(--font-display); font-size: clamp(1.2rem, 2.4vw, 1.8rem); text-transform: uppercase; letter-spacing: .05em; white-space: nowrap; }
.marquee__item--o { color: transparent; -webkit-text-stroke: 1px var(--gold); }
.marquee__star { color: var(--chili-soft); font-size: 1.2rem; }

/* ============ STORY ============ */
.story__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.story__copy p { margin-bottom: 1.1rem; color: var(--ink-soft); max-width: 56ch; }
.story__copy strong { color: var(--ink); }
.story__pills { list-style: none; display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.4rem; }
.story__pills li { background: var(--cream); border: 1.5px solid var(--paper-2); padding: .5rem 1rem; border-radius: 999px; font-weight: 600; font-size: .88rem; box-shadow: 0 6px 18px -12px rgba(30,42,30,.35); }
.story__visual { position: relative; display: grid; }
/* the 4 foods sit in a 2x2 grid; bánh mì overlays dead-centre, in front */
.story__quad { grid-area: 1 / 1; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(.8rem, 1.8vw, 1.4rem); }
.story__card--feature { grid-area: 1 / 1; place-self: center; width: 46%; z-index: 5; box-shadow: 0 26px 60px -22px rgba(10,42,29,.5); }
.story__card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--cream); }
.story__card:nth-child(odd) { rotate: -1.6deg; }
.story__card:nth-child(even) { rotate: 1.6deg; }
.story__card img { display: block; width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; }
.story__card figcaption { font-family: var(--font-hand); font-size: 1.02rem; padding: .6rem 1rem; color: var(--green-deep); letter-spacing: .04em; }
.story__scribble { position: absolute; bottom: -1.8rem; left: 6%; font-family: var(--font-hand); font-size: 1.15rem; color: var(--chili); rotate: -5deg; }

.stats { max-width: 1100px; margin: clamp(3.5rem, 7vw, 6rem) auto 0; padding: 0 1.5rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.stat__num { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.6rem); color: var(--chili); display: block; line-height: 1; }
.stat__num small { font-size: .6em; }
.stat__label { font-size: .85rem; font-weight: 600; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .1em; }

/* ============ MENU ============ */
.menu { background: var(--green-deep); color: var(--paper); position: relative; }
.menu .eyebrow { color: var(--gold); }
.menu .h2 em { color: var(--gold); }
.menu__head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 2.2rem; }
.menu__note { font-size: .9rem; opacity: .75; }
.live-dot {
  display: inline-block; width: .6em; height: .6em; margin-right: .5em;
  border-radius: 50%; background: #2bb24c; vertical-align: middle; position: relative;
  box-shadow: 0 0 0 0 rgba(43, 178, 76, .7); animation: livePulse 1.8s ease-out infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(43, 178, 76, .7); }
  70%  { box-shadow: 0 0 0 .55em rgba(43, 178, 76, 0); }
  100% { box-shadow: 0 0 0 0 rgba(43, 178, 76, 0); }
}
@media (prefers-reduced-motion: reduce) { .live-dot { animation: none; } }
.menu__tabs { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.2rem; }
.menu__tab {
  font-family: var(--font-body); font-weight: 700; font-size: .9rem; letter-spacing: .04em;
  background: transparent; color: var(--paper); border: 1.5px solid rgba(250,244,232,.35);
  padding: .6rem 1.3rem; border-radius: 999px; cursor: pointer; text-transform: uppercase;
  transition: background .25s, color .25s, border-color .25s, transform .2s;
}
.menu__tab:hover { border-color: var(--gold); transform: translateY(-2px); }
.menu__tab.is-active { background: var(--gold); color: var(--green-deep); border-color: var(--gold); }
.menu__tab--soldout {
  opacity: .42; cursor: not-allowed;
  border-style: dashed; border-color: rgba(250,244,232,.22);
}
.menu__tab--soldout:hover { border-color: rgba(250,244,232,.22); transform: none; }
.menu__panel { display: none; }
.menu__panel.is-active { display: block; }
.menu__panel-body { display: grid; grid-template-columns: minmax(220px, 340px) 1fr; gap: clamp(1.4rem, 3.5vw, 3rem); align-items: start; }
.menu__panel-img { position: sticky; top: calc(var(--nav-h) + 1.5rem); border-radius: var(--radius); overflow: hidden; box-shadow: 0 22px 50px -20px rgba(0,0,0,.55); border: 1px solid rgba(216,181,106,.25); }
.menu__panel-img img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; height: auto; }
.menu__panel-img figcaption { font-family: var(--font-display); font-weight: 700; font-style: italic; font-size: 1.05rem; padding: .7rem 1.1rem; color: var(--gold); background: rgba(250,244,232,.05); text-transform: uppercase; letter-spacing: .06em; }
.menu__panel-desc { font-size: 1.02rem; opacity: .8; max-width: 64ch; margin-bottom: 1.8rem; font-style: italic; }
.menu__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1rem; }
.dish {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: rgba(250,244,232,.06); border: 1px solid rgba(250,244,232,.12);
  border-radius: 16px; padding: 1.05rem 1.3rem; transition: background .25s, transform .25s, border-color .25s;
}
.dish:hover { background: rgba(250,244,232,.12); border-color: rgba(216,181,106,.55); transform: translateY(-3px); }
.dish__name { font-weight: 700; font-size: 1.05rem; display: flex; align-items: center; gap: .45rem; flex-wrap: wrap; }
.dish__badge { font-size: .85rem; }
.dish__dots { flex: 1; border-bottom: 2px dotted rgba(250,244,232,.25); margin: 0 .2rem; min-width: 18px; }
.dish__price { font-family: var(--font-display); font-size: 1.25rem; color: var(--gold); white-space: nowrap; }
.dish--unavail { opacity: .45; }
.dish--unavail .dish__price { font-size: .8rem; font-family: var(--font-body); font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: .08em; }
.menu__cta { margin-top: 2.6rem; text-align: center; }
.menu__skeleton { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1rem; }
.menu__skeleton span { height: 68px; border-radius: 16px; background: linear-gradient(100deg, rgba(250,244,232,.06) 40%, rgba(250,244,232,.14) 50%, rgba(250,244,232,.06) 60%); background-size: 200% 100%; animation: shimmer 1.4s infinite; }
@keyframes shimmer { to { background-position: -200% 0; } }
.menu__error { padding: 2rem; text-align: center; opacity: .8; }

/* ============ REVIEWS ============ */
.reviews { overflow: hidden; }
.reviews__rating { text-align: center; font-weight: 600; color: var(--ink-soft); display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .7rem; margin-bottom: 2.6rem; }
.reviews__stars { color: var(--gold); font-size: 1.3rem; letter-spacing: .12em; }
.reviews__rail-wrap { overflow: hidden; scrollbar-width: thin; scrollbar-color: var(--gold) transparent; position: relative; }
.reviews__rail-wrap::before, .reviews__rail-wrap::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: clamp(30px, 6vw, 90px); z-index: 2; pointer-events: none;
}
.reviews__rail-wrap::before { left: 0; background: linear-gradient(90deg, var(--paper), transparent); }
.reviews__rail-wrap::after { right: 0; background: linear-gradient(270deg, var(--paper), transparent); }
.reviews__rail { display: flex; gap: 1.4rem; width: max-content; padding: .5rem 0 1.5rem; will-change: transform; cursor: grab; touch-action: pan-y; user-select: none; -webkit-user-select: none; }
.reviews__rail.is-dragging { cursor: grabbing; }
.reviews__rail .review__link { -webkit-user-drag: none; }
.reviews__rail img { -webkit-user-drag: none; user-drag: none; pointer-events: none; }
.review {
  width: clamp(280px, 30vw, 380px); flex-shrink: 0; background: var(--cream); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: 0 14px 32px -18px rgba(30,42,30,.3); border: 1.5px solid var(--paper-2);
  display: flex; flex-direction: column; gap: .8rem;
}
.review__head { display: flex; align-items: center; gap: .8rem; }
.review__avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; background: var(--paper-2); }
.review__who strong { display: block; font-size: .98rem; }
.review__who span { font-size: .8rem; color: var(--ink-soft); }
.review__stars { color: var(--gold); letter-spacing: .1em; }
.review__text { font-size: .95rem; color: var(--ink-soft); display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; }
.review__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: .6rem; }
.review__g { font-size: .75rem; font-weight: 700; color: var(--ink-soft); opacity: .7; }
.review__link {
  display: inline-flex; align-items: center; gap: .15rem; white-space: nowrap;
  font-size: .75rem; font-weight: 700; text-decoration: none; color: var(--green-deep);
  background: rgba(216,181,106,.18); border: 1px solid rgba(216,181,106,.5);
  padding: .35rem .7rem; border-radius: 999px; transition: background .2s, transform .2s;
}
.review__link:hover { background: rgba(216,181,106,.34); transform: translateY(-1px); }
.reviews__loading { padding: 2rem; color: var(--ink-soft); }

/* letter avatar for curated reviews (Google-style initial) */
.review__avatar--letter { display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 1.2rem; line-height: 1; flex-shrink: 0; }

/* "Read all on Google" link in the reviews header */
.reviews__google { display: inline-flex; align-items: center; gap: .4rem; font-size: .85rem; font-weight: 600; text-decoration: none; color: var(--green-deep); background: rgba(216,181,106,.18); border: 1px solid rgba(216,181,106,.5); padding: .42rem .95rem; border-radius: 999px; transition: background .2s, transform .2s; }
.reviews__google:hover { background: rgba(216,181,106,.34); transform: translateY(-1px); }
.reviews__google strong { color: var(--chili); }

/* ============ VISIT ============ */
.visit { background: var(--paper-2); }
.visit__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.visit__list { list-style: none; display: flex; flex-direction: column; }
.visit__list li { display: grid; grid-template-columns: 110px 1fr; gap: 1rem; padding: 1.05rem 0; border-bottom: 1.5px solid rgba(30,42,30,.12); align-items: baseline; }
.visit__label { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--chili); }
.visit__list a { font-weight: 600; text-decoration-color: var(--gold); text-underline-offset: 4px; }
.visit__map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); rotate: 1deg; transition: rotate .4s; }
.visit__map:hover { rotate: 0deg; }
.visit__map iframe { width: 100%; height: 460px; border: 0; display: block; }

/* ============ BIG CTA ============ */
.bigcta { background: radial-gradient(120% 160% at 50% 0%, #11402c, var(--green-deep) 65%); color: var(--cream); padding: clamp(4.5rem, 9vw, 7.5rem) 1.5rem; text-align: center; clip-path: polygon(0 6%, 100% 0, 100% 100%, 0 100%); }
.bigcta__title { color: var(--gold); }
.bigcta__inner { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.3rem; align-items: center; }
.bigcta__title { font-family: var(--font-display); font-size: clamp(2.6rem, 7vw, 5rem); text-transform: uppercase; line-height: 1; }
.bigcta p { font-size: 1.1rem; opacity: .92; max-width: 48ch; }

/* ============ FAQ ============ */
.faq__list { max-width: 840px; margin: clamp(2rem, 5vw, 3.2rem) auto 0; display: flex; flex-direction: column; gap: 1rem; }
.faq__item { background: var(--cream); border: 1.5px solid var(--paper-2); border-radius: 16px; box-shadow: 0 10px 28px -20px rgba(30,42,30,.3); transition: border-color .3s, box-shadow .3s; }
.faq__item[open] { border-color: rgba(216,181,106,.6); box-shadow: 0 16px 38px -20px rgba(30,42,30,.4); }
.faq__q { cursor: pointer; list-style: none; display: flex; align-items: flex-start; justify-content: space-between; gap: 1.2rem; padding: 1.2rem 1.4rem; font-family: var(--font-display); font-weight: 700; font-size: clamp(1.02rem, 2vw, 1.22rem); line-height: 1.3; color: var(--green-deep); transition: color .25s; }
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--chili); }
.faq__icon { position: relative; flex-shrink: 0; width: 18px; height: 18px; margin-top: .2em; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--chili); border-radius: 2px; transition: transform .35s ease, opacity .3s; }
.faq__icon::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.faq__icon::after { left: 50%; top: 0; width: 2px; height: 100%; transform: translateX(-50%); }
.faq__item[open] .faq__icon::after { transform: translateX(-50%) scaleY(0); opacity: 0; }
.faq__a { padding: 0 1.4rem 1.3rem; }
.faq__a p { color: var(--ink-soft); margin-bottom: .8rem; max-width: 70ch; }
.faq__a p:last-child { margin-bottom: 0; }
.faq__a strong { color: var(--ink); font-weight: 700; }
.faq__a a { color: var(--chili); font-weight: 700; text-decoration-color: var(--gold); text-underline-offset: 3px; }
.faq__item[open] .faq__a { animation: faqReveal .4s ease; }
@keyframes faqReveal { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
/* auto-scrolling review strip inside an FAQ answer */
.faq__reviews { position: relative; margin-top: 1.2rem; overflow: hidden; }
.faq__reviews::before, .faq__reviews::after { content: ""; position: absolute; top: 0; bottom: 0; width: 44px; z-index: 2; pointer-events: none; }
.faq__reviews::before { left: 0; background: linear-gradient(90deg, var(--cream), transparent); }
.faq__reviews::after { right: 0; background: linear-gradient(270deg, var(--cream), transparent); }
.faq__reviews-rail { display: flex; align-items: center; gap: 1rem; width: max-content; padding: .3rem 0 .5rem; will-change: transform; cursor: grab; touch-action: pan-y; user-select: none; -webkit-user-select: none; }
.faq__reviews-rail.is-dragging { cursor: grabbing; }
.faq__rev { flex-shrink: 0; width: clamp(300px, 86vw, 520px); background: #fff; border: 1.5px solid var(--paper-2); border-radius: 14px; padding: .55rem; box-shadow: 0 12px 28px -18px rgba(30,42,30,.3); }
.faq__rev img { width: 100%; height: auto; display: block; border-radius: 8px; pointer-events: none; -webkit-user-drag: none; }

/* ============ FOOTER ============ */
.footer { background: var(--green-deep); color: var(--paper); padding: clamp(3.5rem, 7vw, 5.5rem) 1.5rem 1.8rem; }
.footer__inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr .8fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer__brand img { border-radius: 50%; margin-bottom: .9rem; }
.footer__name { font-family: var(--font-display); font-size: 1.5rem; text-transform: uppercase; }
.footer__name em { font-style: normal; color: var(--gold); }
.footer__tag { font-size: .9rem; opacity: .7; margin-top: .4rem; }
.footer__col h3 { font-size: .8rem; text-transform: uppercase; letter-spacing: .16em; color: var(--gold); margin-bottom: 1rem; }
.footer__col p { font-size: .95rem; opacity: .85; margin-bottom: .55rem; }
.footer__col a { text-decoration: none; }
.footer__col a:hover { color: var(--gold); }
.footer__legal { max-width: 1280px; margin: 0 auto; padding-top: 1.6rem; border-top: 1px solid rgba(250,244,232,.15); font-size: .82rem; opacity: .6; }

/* ============ CATERING PAGE ============ */
.chero { padding: calc(var(--nav-h) + clamp(3rem, 8vw, 6rem)) 0 0; text-align: center; }
.chero__inner { max-width: 880px; margin: 0 auto; padding: 0 1.5rem; display: flex; flex-direction: column; align-items: center; }
.chero__title { font-family: var(--font-display); font-size: clamp(3rem, 9.5vw, 7rem); line-height: 1.04; text-transform: uppercase; margin: 0 0 1.5rem; }
.chero .hero__cta { justify-content: center; }
.chero__strip { display: flex; gap: 1.2rem; justify-content: center; padding: clamp(2.5rem, 6vw, 4.5rem) 1.5rem 0; flex-wrap: nowrap; overflow: hidden; }
.chero__strip figure { width: clamp(130px, 16vw, 210px); flex-shrink: 0; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); }
.chero__strip figure:nth-child(odd) { rotate: -3deg; translate: 0 14px; }
.chero__strip figure:nth-child(even) { rotate: 3deg; }
.chero__strip img { aspect-ratio: 1; object-fit: cover; }

.packs__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 1.4rem; margin-top: 2.4rem; }
.pack { background: var(--cream); border-radius: var(--radius); overflow: hidden; box-shadow: 0 14px 32px -18px rgba(30,42,30,.28); border: 1.5px solid var(--paper-2); position: relative; display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s; }
.pack:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pack figure { overflow: hidden; }
.pack img { aspect-ratio: 4/3; object-fit: cover; width: 100%; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.pack:hover img { transform: scale(1.06); }
.pack h3 { font-family: var(--font-display); font-size: 1.35rem; text-transform: uppercase; letter-spacing: .02em; padding: 1.1rem 1.3rem .4rem; }
.pack p { padding: 0 1.3rem 1.3rem; font-size: .92rem; color: var(--ink-soft); }
.pack__tag { position: absolute; top: .9rem; left: .9rem; background: var(--green-deep); color: var(--gold); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: .35rem .8rem; border-radius: 999px; }

.how { background: var(--paper-2); }
.how__steps { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.4rem; margin-top: 2.4rem; counter-reset: step; }
.how__step { background: var(--cream); border-radius: var(--radius); padding: 1.8rem; box-shadow: 0 12px 28px -18px rgba(30,42,30,.3); }
.how__num { font-family: var(--font-display); font-size: 2.6rem; color: var(--gold); display: block; line-height: 1; margin-bottom: .8rem; }
.how__step h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.how__step p { font-size: .92rem; color: var(--ink-soft); }

.book__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.book__copy p { color: var(--ink-soft); margin-bottom: 1rem; }
.book__copy a { font-weight: 700; }
.form { background: var(--cream); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--shadow); border: 1.5px solid var(--paper-2); display: flex; flex-direction: column; gap: 1.1rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form__field { display: flex; flex-direction: column; gap: .35rem; }
.form__field label { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); }
.form__field input, .form__field select, .form__field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--paper); border: 1.5px solid var(--paper-2); border-radius: 12px; padding: .8rem 1rem;
  transition: border-color .25s, box-shadow .25s; width: 100%;
}
.form__field input:focus, .form__field select:focus, .form__field textarea:focus { outline: none; border-color: var(--chili); box-shadow: 0 0 0 3px rgba(226,60,31,.15); }
.form__field input.is-invalid { border-color: #b3471d; }
.form__submit { align-self: flex-start; }

/* menu picker */
.picker { display: flex; flex-direction: column; gap: .7rem; max-height: 460px; overflow-y: auto; padding-right: .3rem; scrollbar-width: thin; scrollbar-color: var(--chili) transparent; }
.picker__loading { color: var(--ink-soft); font-style: italic; }
.picker__cat { border: 1.5px solid var(--paper-2); border-radius: 14px; background: var(--paper); overflow: hidden; flex-shrink: 0; }
.picker__cat summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; text-transform: uppercase; letter-spacing: .05em;
  padding: .85rem 1.1rem; color: var(--green); transition: background .25s;
}
.picker__cat summary::-webkit-details-marker { display: none; }
.picker__cat summary:hover { background: var(--paper-2); }
.picker__chev { width: 9px; height: 9px; border-right: 2px solid var(--chili); border-bottom: 2px solid var(--chili); transform: rotate(45deg); transition: transform .3s; flex-shrink: 0; }
.picker__cat[open] .picker__chev { transform: rotate(-135deg); }
.picker__items { padding: .2rem .9rem .8rem; display: flex; flex-direction: column; }
.picker__row { display: grid; grid-template-columns: 1fr auto auto; gap: .8rem; align-items: center; padding: .55rem 0; border-top: 1px dashed rgba(18,38,32,.12); }
.picker__row:first-child { border-top: 0; }
.picker__name { font-weight: 500; font-size: .95rem; }
.picker__name em { font-style: normal; font-size: .85em; }
.picker__price { font-weight: 600; color: var(--green); font-size: .92rem; white-space: nowrap; }
.picker__price small { color: var(--ink-soft); font-weight: 500; }
.qty { display: inline-flex; align-items: center; gap: .25rem; }
.qty__btn {
  width: 32px; height: 32px; flex-shrink: 0; border-radius: 50%; border: 1.5px solid var(--chili); background: transparent;
  color: var(--chili); font-size: 1.05rem; line-height: 1; cursor: pointer; transition: background .2s, color .2s, transform .15s;
}
.qty__btn:hover { background: var(--chili); color: var(--cream); }
.qty__btn:active { transform: scale(.9); }
.qty__input { width: 44px; text-align: center; border: 1.5px solid var(--paper-2); border-radius: 9px; padding: .35rem .2rem; font-family: var(--font-body); font-size: .95rem; background: var(--cream); -moz-appearance: textfield; appearance: textfield; }
.qty__input::-webkit-outer-spin-button, .qty__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty__input:focus { outline: none; border-color: var(--chili); }

/* order summary */
.summary { background: var(--green-deep); color: var(--paper); border-radius: 14px; padding: 1.2rem 1.4rem; }
.summary__title { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; text-transform: uppercase; letter-spacing: .06em; color: var(--gold); margin-bottom: .7rem; }
.summary__list { list-style: none; display: flex; flex-direction: column; gap: .45rem; margin-bottom: .9rem; }
.summary__list li { display: flex; justify-content: space-between; gap: 1rem; font-size: .92rem; border-bottom: 1px dashed rgba(250,244,232,.18); padding-bottom: .45rem; }
.summary__list small { opacity: .65; }
.summary__empty { opacity: .65; font-style: italic; border-bottom: 0 !important; }
.summary__total { display: flex; justify-content: space-between; align-items: baseline; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; font-size: .85rem; }
.summary__total strong { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold); letter-spacing: 0; }
.form__status { font-weight: 600; font-size: .92rem; color: var(--green); min-height: 1.4em; }
/* highlighted "check your spam folder" callout in the booking confirmation */
.form__spam { display: block; margin-top: .6rem; font-weight: 600; color: var(--green-deep); background: rgba(216,181,106,.28); border: 1px solid rgba(216,181,106,.65); padding: .55rem .8rem; border-radius: 10px; }
.form__spam strong { color: #b3471d; }

/* ============ FEEDBACK FORM ============ */
.form__hint { color: var(--ink-soft); font-weight: 500; font-size: .76rem; text-transform: none; letter-spacing: 0; margin-left: .25rem; }
/* honeypot: visually hidden but in the DOM so bots fill it */
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
/* "OK to share" checkbox row */
.form__check { display: flex; align-items: flex-start; gap: .65rem; font-size: .92rem; color: var(--ink-soft); cursor: pointer; padding: .2rem 0; }
.form__check input { width: 18px; height: 18px; accent-color: var(--green); flex-shrink: 0; margin-top: .15rem; cursor: pointer; }

/* 5-star rating */
.rating { display: inline-flex; align-items: center; gap: .15rem; flex-wrap: wrap; }
.rating__star {
  background: none; border: 0; padding: .2rem .25rem; cursor: pointer;
  font-size: 2.2rem; line-height: 1; color: rgba(30,42,30,.18);
  transition: color .18s ease, transform .18s ease;
  -webkit-tap-highlight-color: transparent;
}
.rating__star:hover, .rating__star:focus-visible { color: var(--gold); transform: translateY(-2px); outline: none; }
.rating__star.is-on, .rating__star.is-preview { color: var(--gold); }
.rating__star.is-on { color: #d8a93a; }
.rating__label { margin-left: .65rem; font-size: .9rem; font-weight: 600; color: var(--ink-soft); align-self: center; }

/* dish-selection chips */
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
  background: var(--cream); border: 1.5px solid var(--paper-2); color: var(--ink);
  padding: .5rem 1rem; border-radius: 999px; cursor: pointer; font-weight: 600; font-size: .88rem;
  transition: background .2s, border-color .2s, color .2s, transform .15s;
}
.chip:hover { border-color: var(--chili); transform: translateY(-2px); }
.chip.is-on { background: var(--green-deep); color: var(--cream); border-color: var(--green-deep); }
.chip.is-on:hover { background: var(--green); }

/* highlighted success callout used after submit */
.form__success { display: block; margin-top: .6rem; font-weight: 600; color: var(--green-deep); background: rgba(167,202,177,.32); border: 1px solid rgba(15,74,49,.35); padding: .65rem .85rem; border-radius: 10px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding-top: calc(var(--nav-h) + 3rem); text-align: center; min-height: auto; }
  .hero__kicker, .hero__cta, .hero__meta { justify-content: center; }
  .hero__sub { margin-inline: auto; }
  .hero__visual { max-width: 480px; margin: 1.5rem auto 0; width: 100%; }
  .hero__scrollhint { display: none; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__cta { display: none; }
  .story__grid, .visit__grid, .book__grid { grid-template-columns: 1fr; }
  .story__visual { margin-top: 1rem; gap: .8rem; }
  .story__quad { gap: .8rem; }
  .story__card--feature { width: 46%; }
  .story__card { rotate: 0deg; }
  .story__scribble { display: none; }
  .stats { grid-template-columns: repeat(3, 1fr); gap: 2rem .8rem; }
  .menu__panel-body { grid-template-columns: 1fr; }
  .menu__panel-img { position: static; max-width: 420px; }
  .menu__panel-img img { aspect-ratio: 16/9; }
  .how__steps { grid-template-columns: 1fr; }
  .visit__map iframe { height: 340px; }
}
@media (max-width: 560px) {
  .nav__status { display: none; }
  .hero__sticker--1 { left: 0; }
  .hero__sticker--2 { right: 0; }
  .hero__badge { width: 84px; height: 84px; top: -8%; right: 0; }
  .form__row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; gap: 1.6rem; }
  .picker__row { grid-template-columns: 1fr auto; }
  .picker__price { grid-column: 1; font-size: .85rem; }
  .picker__row .qty { grid-row: 1 / span 2; grid-column: 2; }
  .visit__list li { grid-template-columns: 1fr; gap: .2rem; }
  .review { width: 82vw; }
  .chero__strip figure:nth-child(5) { display: none; }
}

/* ============ MOTION SAFETY ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .grain { display: none; }
}
/* The brand's subtle signature loops stay on even when reduced motion is
   requested (gentle pulse / slow spin / float — not heavy parallax). */
@media (prefers-reduced-motion: reduce) {
  .nav__status.is-open .nav__status-dot,
  .live-dot { animation: livePulse 1.8s ease-out infinite !important; }
  .hero__kicker-dot { animation: pulse 2s infinite !important; }
  .hero__badge svg { animation: spin 14s linear infinite !important; }
  .hero__img-wrap { animation: blobmorph 12s ease-in-out infinite !important; }
  .hero__sticker { animation: stickerFloat 5s ease-in-out infinite !important; }
  .hero__sticker--2 { animation: stickerFloat 6.4s ease-in-out -1.6s infinite !important; }
}
