/* ==========================================================================
   SAUS — design tokens (from the Figma design system)
   ========================================================================== */
:root {
  /* Colour styles */
  --pure-dark: #00000a;
  --dark-grey: #47433e;
  --light-grey: #bdb5ac;
  --red: #e73239;
  --red-deep: #c4222a;
  --secondary-cream: #fef6e9;
  --secondary-cream-light: #fffbf4;
  --light-green: #c6f2b1;
  --light-red: #f6838a;
  --vivid-yellow: #f4e477;
  --soft-yellow: #efe18e;
  --light-pink: #f9e4e3;
  --light-orange: #ffe0ad;
  --vivid-orange: #feae35;

  /* Text styles */
  --font-display: "Oswald", "Arial Narrow", Impact, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --heading-xl: clamp(4rem, 9.6vw, 9.25rem);   /* 148px */
  --heading-lg: clamp(2.75rem, 5.4vw, 4.375rem); /* 70px */
  --heading-md: 1.5rem;                          /* 24px */
  --body-xl: clamp(1.25rem, 1.8vw, 1.75rem);     /* 28px */
  --body-lg: clamp(1.0625rem, 1.3vw, 1.25rem);   /* 20px */
  --body-md: 1.125rem;                           /* 18px */
  --body-sm: 1rem;                               /* 16px */

  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 32px;
  --gutter: clamp(16px, 4vw, 48px);
  --maxw: 1320px;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --nav-h: 76px;
}

/* ==========================================================================
   Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--body-sm);
  line-height: 1.6;
  color: var(--pure-dark);
  background: var(--pure-dark);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
@supports (overflow: clip) { html, body { overflow-x: clip; } }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); text-transform: uppercase; line-height: 1.02; letter-spacing: -.005em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid var(--vivid-orange); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--red); color: #fff; }

.container { width: 100%; max-width: calc(var(--maxw) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(80px, 11vw, 160px); position: relative; }
.section--cream { background: var(--secondary-cream); }
.section--cream-light { background: var(--secondary-cream-light); }
.section--dark { background: var(--pure-dark); color: var(--secondary-cream); }
.section--red { background: var(--red); color: var(--secondary-cream-light); }

.skip-link { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--vivid-yellow); color: var(--pure-dark); padding: 10px 16px; border-radius: 10px; font-weight: 600; }
.skip-link:focus { top: 12px; }

.h-lg { font-size: var(--heading-lg); font-weight: 600; line-height: 1; }
.red { color: var(--red); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: .8125rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--red);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.eyebrow--light { color: var(--vivid-orange); }
.hero .eyebrow::before { display: none; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  --bg: var(--pure-dark); --fg: var(--secondary-cream-light);
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px; border: 2px solid var(--bg);
  background: var(--bg); color: var(--fg);
  font-family: var(--font-body); font-weight: 600; font-size: var(--body-sm); line-height: 1.2;
  text-decoration: none; white-space: nowrap; cursor: pointer;
  transition: transform .35s var(--ease-spring), box-shadow .35s var(--ease-out), color .3s, border-color .3s;
}
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--hover, var(--pure-dark));
  transform: translateY(101%); transition: transform .45s var(--ease-out); border-radius: inherit;
}
.btn:hover { transform: translateY(-2px); }
.btn:hover::after { transform: translateY(0); }
.btn:active { transform: translateY(0) scale(.98); }
.btn__arrow { display: inline-block; transition: transform .35s var(--ease-spring); }
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn--sm { padding: 10px 18px; font-size: .9375rem; }
.btn--lg { padding: 18px 30px; font-size: var(--body-md); }
.btn--red { --bg: var(--red); --fg: #fff; --hover: var(--red-deep); box-shadow: 0 10px 30px -10px rgba(231, 50, 57, .7); }
.btn--red:hover { box-shadow: 0 16px 40px -12px rgba(231, 50, 57, .85); }
.btn--dark { --bg: var(--pure-dark); --fg: var(--secondary-cream-light); --hover: var(--dark-grey); }
.btn--cream { --bg: var(--secondary-cream-light); --fg: var(--pure-dark); --hover: var(--vivid-yellow); }
.btn--ghost { --bg: transparent; --fg: var(--secondary-cream-light); --hover: var(--secondary-cream-light); border-color: rgba(254, 246, 233, .35); }
.btn--ghost:hover { color: var(--pure-dark); border-color: var(--secondary-cream-light); }

/* ==========================================================================
   Nav
   ========================================================================== */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 100; height: var(--nav-h);
  color: var(--secondary-cream-light);
  transition: background-color .4s, backdrop-filter .4s, box-shadow .4s, transform .5s var(--ease-out);
}
.nav.is-scrolled { background: rgba(0, 0, 10, .9); -webkit-backdrop-filter: blur(16px) saturate(1.4); backdrop-filter: blur(16px) saturate(1.4); box-shadow: 0 1px 0 rgba(254, 246, 233, .08); }
.nav.is-hidden { transform: translateY(-100%); }
.nav__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo {
  position: relative; display: inline-block;
  font-family: var(--font-display); font-weight: 700; font-size: 2rem; letter-spacing: .02em; line-height: 1;
  text-decoration: none; color: inherit;
}
.logo__drip {
  position: absolute; right: -12px; top: 3px; width: 9px; height: 9px; border-radius: 50%;
  background: var(--red);
}
.logo__drip::after { content: ""; position: absolute; left: 2.5px; top: 6px; width: 4px; height: 10px; border-radius: 0 0 4px 4px; background: var(--red); transform-origin: top; animation: drip 3.2s var(--ease-out) infinite; }
@keyframes drip { 0%, 55% { transform: scaleY(0); } 75% { transform: scaleY(1); } 100% { transform: scaleY(1); opacity: 0; } }
.logo--xl { font-size: clamp(3.5rem, 8vw, 5.5rem); }
.logo--xl .logo__drip { width: 18px; height: 18px; right: -26px; top: 8px; }
.logo--xl .logo__drip::after { left: 5px; top: 12px; width: 8px; height: 20px; border-radius: 0 0 8px 8px; }

.nav__links { display: flex; gap: clamp(18px, 2.4vw, 36px); }
.nav__links a { position: relative; text-decoration: none; font-weight: 500; font-size: .9375rem; opacity: .85; transition: opacity .2s; padding-block: 6px; }
.nav__links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease-out); }
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__actions { display: flex; align-items: center; gap: 12px; }
.bag {
  position: relative; display: inline-flex; align-items: center; gap: 10px; height: 46px; padding: 0 20px 0 16px; border-radius: 999px;
  background: rgba(254, 246, 233, .08); border: 1px solid rgba(254, 246, 233, .16); cursor: pointer;
  font-weight: 600; font-size: .9375rem; white-space: nowrap;
  transition: background .3s, border-color .3s, transform .35s var(--ease-spring);
}
.bag:hover { background: rgba(254, 246, 233, .16); }
.bag.has-items { background: var(--red); border-color: var(--red); color: #fff; box-shadow: 0 10px 30px -10px rgba(231, 50, 57, .7); }
.bag.has-items:hover { background: var(--red-deep); }
.bag__total { display: none; font-family: var(--font-display); font-size: 1.0625rem; font-weight: 600; padding-left: 10px; border-left: 1px solid rgba(255, 255, 255, .35); }
.bag.has-items .bag__total { display: inline; }
.bag__count {
  position: absolute; top: -4px; right: -4px; min-width: 20px; height: 20px; padding: 0 5px; border-radius: 999px;
  background: var(--vivid-yellow); color: var(--pure-dark); font-size: .6875rem; font-weight: 700; line-height: 20px; text-align: center;
  transform: scale(0); transition: transform .4s var(--ease-spring);
}
.bag.has-items .bag__count { transform: scale(1); }
.bag.bump { animation: bump .5s var(--ease-spring); }
@keyframes bump { 40% { transform: scale(1.22) rotate(-8deg); } }

.burger-toggle { display: none; width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(254, 246, 233, .16); background: rgba(254, 246, 233, .08); cursor: pointer; position: relative; }
.burger-toggle span { position: absolute; left: 13px; right: 13px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .4s var(--ease-out), opacity .3s; }
.burger-toggle span:nth-child(1) { top: 16px; }
.burger-toggle span:nth-child(2) { top: 22px; }
.burger-toggle span:nth-child(3) { top: 28px; }
.burger-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0; z-index: 99; overflow-y: auto; background: var(--pure-dark); color: var(--secondary-cream-light);
  display: flex; flex-direction: column; gap: 4px; padding: 24px var(--gutter) 40px;
  animation: menuIn .45s var(--ease-out);
}
.mobile-menu a:not(.btn) { font-family: var(--font-display); text-transform: uppercase; font-size: 2.5rem; font-weight: 600; text-decoration: none; padding-block: 8px; border-bottom: 1px solid rgba(254, 246, 233, .1); }
.mobile-menu .btn { margin-top: 24px; }
@keyframes menuIn { from { opacity: 0; transform: translateY(-12px); } }

/* ==========================================================================
   Hero — the flying burger
   ========================================================================== */
.hero { position: relative; height: 230vh; background: var(--pure-dark); color: var(--secondary-cream-light); }
.hero__sticky { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; display: flex; align-items: center; }
.hero__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(38vmax 34vmax at 72% 52%, rgba(254, 174, 53, .20), transparent 70%),
    radial-gradient(30vmax 30vmax at 76% 60%, rgba(231, 50, 57, .22), transparent 70%),
    radial-gradient(60vmax 40vmax at 10% 110%, rgba(71, 67, 62, .45), transparent 70%);
}
.hero__glow::after { /* floor reflection like the Figma reference */
  content: ""; position: absolute; left: 50%; right: -10%; bottom: 0; height: 26%;
  background: linear-gradient(to top, rgba(254, 174, 53, .10), transparent);
  filter: blur(20px);
}
.hero__bgword {
  position: absolute; right: -2vw; bottom: -6vw; pointer-events: none; user-select: none;
  font-family: var(--font-display); font-weight: 700; font-size: 38vw; line-height: .8;
  color: transparent; -webkit-text-stroke: 1px rgba(254, 246, 233, .06);
}
.hero__grid { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: clamp(24px, 4vw, 64px); padding-top: var(--nav-h); }

.hero__copy { max-width: 620px; }
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--light-green); box-shadow: 0 0 0 0 rgba(198, 242, 177, .7); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(198, 242, 177, 0); } 100% { box-shadow: 0 0 0 0 rgba(198, 242, 177, 0); } }
.hero__title { font-size: var(--heading-xl); font-weight: 600; line-height: .9; margin-bottom: 28px; }
.hero__title .line { display: block; overflow: hidden; padding-bottom: .04em; }
.hero__title .line > span { display: inline-block; transform: translateY(105%); animation: rise 1s var(--ease-out) forwards; }
.hero__title .line:nth-child(2) > span { animation-delay: .1s; }
.hero__title .line:nth-child(3) > span { animation-delay: .2s; }
@keyframes rise { to { transform: translateY(0); } }
.hero__title .outline { color: transparent; -webkit-text-stroke: 2px var(--secondary-cream); }
.hero__lead { font-size: var(--body-lg); color: rgba(254, 246, 233, .72); max-width: 30em; margin-bottom: 36px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: clamp(20px, 3vw, 44px); }
.hero__meta li { display: flex; flex-direction: column; padding-left: 16px; border-left: 2px solid rgba(254, 246, 233, .14); }
.hero__meta strong { font-family: var(--font-display); font-size: 1.75rem; font-weight: 600; line-height: 1.1; }
.hero__meta span { font-size: .875rem; color: rgba(254, 246, 233, .55); }
.hero__copy > :not(h1) { opacity: 0; animation: fadeUp .9s var(--ease-out) forwards; }
.hero__copy > .eyebrow { animation-delay: .05s; }
.hero__lead { animation-delay: .35s !important; }
.hero__ctas { animation-delay: .45s !important; }
.hero__meta { animation-delay: .55s !important; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.hero__stage { position: relative; display: grid; place-items: center end; height: min(88svh, 860px); padding-right: clamp(0px, 2vw, 32px); }

/* The burger box = the assembled burger (481 × 414 in Figma units).
   Layers are positioned with the exact Figma coordinates; JS only moves them on Y. */
.burger {
  --bw: min(460px, 33vw, 50svh);
  --p: 0;              /* 0 = exploded, 1 = stacked */
  position: relative; width: var(--bw); aspect-ratio: 481 / 414;
  opacity: 0; animation: burgerIn 1.2s var(--ease-out) .25s forwards;
}
@keyframes burgerIn { from { opacity: 0; transform: translateY(40px) scale(.94); } to { opacity: 1; transform: none; } }
.layer { position: absolute; will-change: transform; }
.layer img { width: 100%; height: auto; filter: drop-shadow(0 18px 22px rgba(0, 0, 0, .55)); }
.layer--bun-bottom { left: 0;      top: 55.07%; width: 100%; }
.layer--patty      { left: 11.85%; top: 43.72%; width: 76.51%; }
.layer--cheese     { left: 2.08%;  top: 46.14%; width: 95.84%; }
.layer--tomato     { left: 8.94%;  top: 38.41%; width: 82.12%; }
.layer--lettuce    { left: 1.87%;  top: 33.57%; width: 96.05%; }
.layer--bun-top    { left: 5.41%;  top: 0;      width: 89.4%; }

.burger__shadow {
  position: absolute; left: 8%; right: 8%; top: 118%; height: 14%;
  border-radius: 50%; background: radial-gradient(closest-side, rgba(0, 0, 0, .85), transparent);
  filter: blur(6px);
  transform: scale(calc(.7 + .3 * var(--p))); opacity: calc(.45 + .5 * var(--p));
}

.callout {
  position: absolute; top: 50%; white-space: nowrap; pointer-events: none;
  font-size: .8125rem; font-weight: 600; letter-spacing: .04em; color: var(--secondary-cream);
  display: flex; align-items: center; gap: 10px;
  opacity: calc(1 - var(--p) * 2.4);
  transform: translateY(-50%);
}
.callout::before, .callout::after { content: ""; flex: none; }
.callout--r { left: calc(100% + 6px); }
.callout--r::before { width: clamp(20px, 3vw, 44px); height: 1px; background: rgba(254, 246, 233, .45); }
.callout--l { right: calc(100% + 6px); flex-direction: row-reverse; }
.callout--l::before { width: clamp(20px, 3vw, 44px); height: 1px; background: rgba(254, 246, 233, .45); }
.callout::after { width: 7px; height: 7px; border-radius: 50%; background: var(--vivid-orange); box-shadow: 0 0 0 4px rgba(254, 174, 53, .2); order: -1; }
.callout--l::after { order: 1; }

.seed {
  position: absolute; left: var(--x); top: var(--y); width: calc(14px * var(--s)); height: calc(9px * var(--s));
  border-radius: 50%; background: radial-gradient(circle at 35% 35%, #fffbf4, #d9c9a8);
  opacity: calc(.9 - var(--p) * .9);
  animation: seed 5s ease-in-out infinite; animation-delay: calc(var(--s) * -4s);
}
@keyframes seed { 50% { translate: 0 -16px; rotate: 40deg; } }

.burger__tag {
  position: absolute; right: -6%; top: -8%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 120px; height: 120px; border-radius: 50%; text-align: center;
  background: var(--vivid-yellow); color: var(--pure-dark);
  font-family: var(--font-display); text-transform: uppercase; line-height: 1.05;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, .6);
  opacity: 0; transform: scale(.4) rotate(-30deg);
  transition: opacity .4s, transform .6s var(--ease-spring);
}
.burger__tag span { font-size: .8125rem; font-weight: 500; max-width: 80px; }
.burger__tag strong { font-size: 1.625rem; font-weight: 700; }
.burger.is-stacked .burger__tag { opacity: 1; transform: scale(1) rotate(12deg); }

.hero__hint {
  position: absolute; left: 50%; bottom: 26px; translate: -50% 0;
  display: flex; align-items: center; gap: 14px;
  font-size: .75rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(254, 246, 233, .55);
  transition: opacity .4s;
}
.hero__progress { width: 90px; height: 2px; background: rgba(254, 246, 233, .15); border-radius: 2px; overflow: hidden; }
.hero__progress span { display: block; height: 100%; width: 100%; background: var(--red); transform-origin: left; transform: scaleX(0); }

/* ==========================================================================
   Marquee
   ========================================================================== */
.marquee { position: relative; z-index: 2; background: var(--red); color: #fff; overflow: hidden; padding-block: 22px; transform: rotate(-1.4deg) scale(1.02); margin-block: -18px; box-shadow: 0 20px 40px -20px rgba(0, 0, 0, .4); }
.marquee__track { display: flex; align-items: center; gap: 36px; width: max-content; animation: marquee 32s linear infinite; }
.marquee span { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; font-size: clamp(1.5rem, 3vw, 2.5rem); line-height: 1; white-space: nowrap; }
.marquee i { font-style: normal; color: var(--vivid-yellow); font-size: 1.25rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==========================================================================
   Section head
   ========================================================================== */
.section-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px 48px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head__lead { max-width: 30em; font-size: var(--body-lg); color: var(--dark-grey); }

/* ==========================================================================
   Menu
   ========================================================================== */
.tabs { display: flex; gap: 10px; margin-bottom: 40px; overflow-x: auto; scrollbar-width: none; padding: 4px; margin-inline: -4px; }
.tabs::-webkit-scrollbar { display: none; }
.tab {
  flex: none; cursor: pointer; padding: 12px 22px; border-radius: 999px;
  border: 1.5px solid rgba(0, 0, 10, .14); background: transparent;
  font-weight: 600; font-size: .9375rem; color: var(--dark-grey);
  transition: background .3s, color .3s, border-color .3s, transform .3s var(--ease-spring);
}
.tab:hover { border-color: var(--pure-dark); color: var(--pure-dark); transform: translateY(-2px); }
.tab[aria-selected="true"] { background: var(--pure-dark); border-color: var(--pure-dark); color: var(--secondary-cream-light); }

.menu-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 2vw, 28px); }
.card {
  position: relative; display: flex; flex-direction: column; overflow: hidden;
  background: var(--secondary-cream-light); border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(0, 0, 10, .04), 0 20px 40px -30px rgba(71, 67, 62, .5);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.card.is-hidden { display: none; }
.card.is-entering { animation: cardIn .7s var(--ease-out) both; animation-delay: calc(var(--i, 0) * 80ms); }
@keyframes cardIn { from { opacity: 0; transform: translateY(30px) scale(.97); } }
.card:hover { transform: translateY(-8px); box-shadow: 0 1px 0 rgba(0, 0, 10, .04), 0 40px 60px -30px rgba(71, 67, 62, .65); }
.card__media { position: relative; aspect-ratio: 5 / 4; overflow: hidden; background: var(--dark-grey); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-out), filter .6s; }
.card:hover .card__media img { transform: scale(1.08); filter: saturate(1.12) contrast(1.04); }
.card__media::after { content: ""; position: absolute; inset: auto 0 0; height: 40%; background: linear-gradient(to top, rgba(0, 0, 10, .35), transparent); opacity: 0; transition: opacity .5s; }
.card:hover .card__media::after { opacity: 1; }

.badge { position: absolute; top: 16px; left: 16px; padding: 6px 12px; border-radius: 999px; font-size: .75rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--pure-dark); background: var(--secondary-cream-light); }
.badge--yellow { background: var(--vivid-yellow); }
.badge--orange { background: var(--light-orange); }
.badge--red { background: var(--red); color: #fff; }
.badge--green { background: var(--light-green); }

.card__body { display: flex; flex-direction: column; gap: 10px; padding: 22px 22px 20px; flex: 1; }
.card__top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.card__title { font-size: var(--heading-md); font-weight: 500; line-height: 1.15; }
.card__price { font-family: var(--font-display); font-weight: 600; font-size: 1.375rem; color: var(--red); white-space: nowrap; }
.card__desc { color: var(--dark-grey); font-size: .9375rem; line-height: 1.55; }
.card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 10px; }
.card__kcal { font-size: .8125rem; font-weight: 500; color: #8a8178; }

.add {
  position: relative; width: 46px; height: 46px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--pure-dark); color: #fff; font-size: 1.5rem; line-height: 1;
  display: grid; place-items: center;
  transition: background .3s, transform .4s var(--ease-spring);
}
.add span { display: block; transition: transform .4s var(--ease-spring); }
.card:hover .add, .add:hover { background: var(--red); }
.add:hover span { transform: rotate(90deg); }
.add:active { transform: scale(.9); }
.add[data-qty]::before {
  content: attr(data-qty); position: absolute; top: -6px; right: -6px; min-width: 20px; height: 20px; padding: 0 5px;
  border-radius: 999px; background: var(--vivid-yellow); color: var(--pure-dark);
  font-size: .6875rem; font-weight: 700; line-height: 20px; text-align: center; box-shadow: 0 0 0 2px var(--secondary-cream-light);
}
.add.is-added { background: #2f8a3b; }
.add.is-added span { transform: scale(0); }
.add.is-added::after { content: "✓"; position: absolute; font-size: 1.25rem; animation: pop .4s var(--ease-spring); }
@keyframes pop { from { transform: scale(0); } }

.menu__foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(0, 0, 10, .1); color: var(--dark-grey); }

/* ==========================================================================
   Featured
   ========================================================================== */
.featured { overflow: hidden; }
.featured__grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(32px, 6vw, 96px); }
.featured__media { position: relative; }
.featured__media picture { display: block; border-radius: var(--radius-lg); overflow: hidden; }
.featured__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 9 / 11; transition: transform 1.4s var(--ease-out); }
.featured__media:hover img { transform: scale(1.05); }
.featured__media::before { content: ""; position: absolute; inset: 10% -10% -10% 10%; background: radial-gradient(closest-side, rgba(231, 50, 57, .35), transparent); filter: blur(40px); z-index: -1; }

.sticker { position: absolute; right: -28px; top: -28px; width: 140px; height: 140px; display: grid; place-items: center; background: var(--red); color: #fff; border-radius: 50%; box-shadow: 0 20px 40px -10px rgba(231, 50, 57, .6); }
.sticker svg { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 14s linear infinite; }
.sticker text { font-family: var(--font-body); font-weight: 700; font-size: 9.5px; fill: #fff; }
.sticker > span { font-family: var(--font-display); font-weight: 700; font-size: 1.875rem; }
@keyframes spin { to { transform: rotate(360deg); } }

.featured__lead { font-size: var(--body-lg); color: rgba(254, 246, 233, .72); margin-block: 24px 36px; max-width: 34em; }
.stack-list { display: grid; gap: 2px; margin-bottom: 40px; }
.stack-list li { display: flex; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid rgba(254, 246, 233, .1); font-size: var(--body-md); font-weight: 500; transition: padding-left .4s var(--ease-out), color .3s; }
.stack-list li:hover { padding-left: 10px; color: #fff; }
.dot { width: 14px; height: 14px; border-radius: 50%; background: var(--c); box-shadow: 0 0 18px var(--c); flex: none; }
.featured__buy { display: flex; flex-wrap: wrap; align-items: center; gap: 24px 36px; }
.featured__btns { display: flex; flex-wrap: wrap; gap: 12px; }
.featured__quote { margin: -8px 0 28px; padding: 18px 22px; border-left: 3px solid var(--red); border-radius: 0 16px 16px 0; background: rgba(254, 246, 233, .05); }
.featured__quote blockquote { margin: 0; }
.featured__quote p { font-size: var(--body-md); font-style: italic; color: var(--secondary-cream-light); }
.featured__quote figcaption { margin-top: 8px; font-size: .8125rem; color: var(--vivid-orange); font-weight: 600; }
.price-big span { display: block; font-family: var(--font-display); font-weight: 600; font-size: 3.5rem; line-height: 1; color: var(--vivid-yellow); }
.price-big small { font-size: .875rem; color: rgba(254, 246, 233, .55); }

/* ==========================================================================
   Why people love SAUS (reviews)
   ========================================================================== */
.love__grid { display: grid; grid-template-columns: minmax(280px, 380px) minmax(0, 1fr); gap: clamp(16px, 2vw, 28px); align-items: stretch; }

.rating-card {
  position: relative; overflow: hidden; isolation: isolate;
  display: flex; flex-direction: column; gap: 6px;
  padding: clamp(28px, 3vw, 40px); border-radius: var(--radius-lg);
  background: var(--pure-dark); color: var(--secondary-cream-light);
}
.rating-card::before { content: ""; position: absolute; z-index: -1; right: -30%; top: -30%; width: 90%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(closest-side, rgba(231, 50, 57, .45), transparent); }
.rating-card__label { font-size: .8125rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--vivid-orange); }
.rating-card__score { font-family: var(--font-display); font-weight: 600; font-size: clamp(5.5rem, 10vw, 8rem); line-height: .95; }
.rating-card__score span { font-size: .3em; color: rgba(254, 246, 233, .5); margin-left: 6px; }
.stars { position: relative; display: inline-block; width: fit-content; font-size: 1.875rem; letter-spacing: 4px; line-height: 1; }
.stars__base { color: rgba(254, 246, 233, .18); }
.stars__fill { position: absolute; inset: 0 auto 0 0; overflow: hidden; white-space: nowrap; color: var(--vivid-yellow); }
.rating-card__count { color: rgba(254, 246, 233, .7); margin-top: 6px; }
.rating-card__count strong { color: #fff; }
.rating-card__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; padding-top: 28px; }
.rating-card__feature {
  display: flex; align-items: center; gap: 12px; margin-top: 18px; padding: 12px 14px; border-radius: 16px;
  background: rgba(254, 246, 233, .06); border: 1px solid rgba(254, 246, 233, .12);
  text-decoration: none; font-size: .875rem; color: rgba(254, 246, 233, .8); transition: background .3s, border-color .3s;
}
.rating-card__feature:hover { background: rgba(254, 246, 233, .12); border-color: rgba(254, 246, 233, .3); }
.rating-card__feature strong { color: #fff; }
.rating-card__play { flex: none; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; font-size: .75rem; color: #fff; background: linear-gradient(135deg, #f58529, #dd2a7b 50%, #8134af); }

.rating-card__most { margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(254, 246, 233, .12); font-size: .9375rem; color: rgba(254, 246, 233, .7); }
.rating-card__most strong { color: var(--vivid-yellow); font-weight: 600; }

.reviews { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(14px, 1.6vw, 20px); }
.review {
  position: relative; margin: 0; display: flex; flex-direction: column; gap: 14px;
  padding: 24px 24px 20px; border-radius: var(--radius); background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 10, .04), 0 20px 40px -32px rgba(71, 67, 62, .5);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.review::before { content: "“"; position: absolute; right: 18px; top: 4px; font-family: var(--font-display); font-size: 5rem; line-height: 1; color: var(--light-pink); pointer-events: none; }
.review:hover { transform: translateY(-5px); box-shadow: 0 1px 0 rgba(0, 0, 10, .04), 0 34px 50px -30px rgba(71, 67, 62, .6); }
.review__tag { position: relative; width: fit-content; padding: 5px 11px; border-radius: 999px; background: var(--secondary-cream); font-size: .75rem; font-weight: 700; letter-spacing: .02em; color: var(--dark-grey); }
.review__text { margin: 0; flex: 1; }
.review__text p { font-size: 1rem; line-height: 1.6; color: var(--pure-dark); }
.review__by { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid rgba(0, 0, 10, .07); }
.review__by strong { display: block; font-weight: 600; line-height: 1.3; }
.review__by small { display: block; font-size: .8125rem; color: #8a8178; }
.review__avatar { flex: none; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; font-family: var(--font-display); font-weight: 600; font-size: 1.125rem; color: var(--pure-dark); }
.review__avatar--yellow { background: var(--vivid-yellow); }
.review__avatar--orange { background: var(--light-orange); }
.review__avatar--green { background: var(--light-green); }
.review__avatar--pink { background: var(--light-pink); }

.quote-strip { display: flex; overflow: hidden; margin-block: clamp(28px, 3vw, 44px); -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent); }
.quote-strip__track { flex: none; display: flex; gap: 14px; padding-right: 14px; animation: marquee-single 48s linear infinite; }
.quote-strip:hover .quote-strip__track { animation-play-state: paused; }
.quote-strip li { flex: none; display: flex; align-items: baseline; gap: 10px; padding: 14px 20px; border-radius: 999px; background: var(--pure-dark); color: var(--secondary-cream-light); white-space: nowrap; }
.quote-strip__q { font-weight: 500; }
.quote-strip__n { font-size: .8125rem; color: var(--vivid-orange); }
@keyframes marquee-single { to { transform: translateX(-100%); } }

.perks { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(12px, 1.6vw, 20px); }
.perks li { display: flex; align-items: center; gap: 14px; padding: 18px 20px; border-radius: var(--radius); background: var(--secondary-cream); border: 1px solid rgba(0, 0, 10, .06); }
.perks li > span { flex: none; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: var(--secondary-cream-light); font-size: 1.5rem; box-shadow: 0 6px 16px -10px rgba(0, 0, 10, .35); }
.perks strong { display: block; font-weight: 600; line-height: 1.3; }
.perks small { display: block; color: #8a8178; font-size: .8125rem; }

/* ==========================================================================
   Story
   ========================================================================== */
.story { overflow: hidden; }
.story__media { position: absolute; inset: 0 0 0 auto; width: 62%; pointer-events: none; }
.story__media picture, .story__media img { width: 100%; height: 100%; }
.story__media img { object-fit: cover; object-position: 50% 50%; -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 38%); mask-image: linear-gradient(to right, transparent 0%, #000 38%); opacity: .95; }
.story__inner { position: relative; }
.story__copy { max-width: 560px; }
.story__lead { font-size: var(--body-lg); color: rgba(254, 246, 233, .72); margin-block: 24px 48px; }
.pillars { display: grid; gap: 28px; margin-bottom: 56px; }
.pillars li { display: flex; gap: 22px; }
.pillars__n { font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--red); padding-top: 4px; min-width: 28px; }
.pillars h3 { font-size: var(--heading-md); font-weight: 500; margin-bottom: 4px; }
.pillars p { color: rgba(254, 246, 233, .6); }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding-top: 32px; border-top: 1px solid rgba(254, 246, 233, .12); }
.stats strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: clamp(2.25rem, 4vw, 3.5rem); line-height: 1; color: var(--vivid-yellow); }
.stats strong::after { content: attr(data-suffix); }
.stats span { font-size: .875rem; color: rgba(254, 246, 233, .6); }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery { padding-bottom: clamp(80px, 10vw, 140px); overflow: hidden; }
.gallery__rail { --edge: max(var(--gutter), calc((100vw - var(--maxw)) / 2)); display: grid; grid-auto-flow: column; grid-auto-columns: clamp(240px, 26vw, 380px); gap: 18px; overflow-x: auto; padding: 8px var(--edge) 56px; scroll-padding-inline: var(--edge); scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: var(--red) transparent; }
.shot { position: relative; margin: 0; aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; scroll-snap-align: start; background: var(--dark-grey); }
.shot:nth-child(even) { translate: 0 28px; }
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.shot figcaption {
  position: absolute; inset: auto 0 0; padding: 40px 20px 18px;
  background: linear-gradient(to top, rgba(0, 0, 10, .8), transparent);
  color: #fff; font-family: var(--font-display); font-size: 1.5rem; text-transform: uppercase; font-weight: 500;
  transform: translateY(100%); transition: transform .5s var(--ease-out);
}
.shot:hover img { transform: scale(1.08) rotate(1deg); }
.shot:hover figcaption { transform: none; }

/* ==========================================================================
   Locations / CTA
   ========================================================================== */
.locations { overflow: hidden; }
.locations::before { content: "SAUS"; position: absolute; left: -2vw; top: -4vw; font-family: var(--font-display); font-weight: 700; font-size: 30vw; line-height: 1; color: rgba(0, 0, 10, .07); pointer-events: none; }
.cta { position: relative; display: grid; grid-template-columns: 1.1fr 1fr; align-items: end; gap: 32px 64px; margin-bottom: clamp(56px, 7vw, 96px); }
.cta__title { font-size: var(--heading-xl); font-weight: 600; line-height: .88; color: var(--secondary-cream-light); }
.cta__side p { font-size: var(--body-lg); color: rgba(255, 251, 244, .9); margin-bottom: 28px; max-width: 30em; }
.cta__buttons { display: flex; flex-wrap: wrap; gap: 14px; }
.visit { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr); gap: clamp(14px, 2vw, 24px); }
.loc__address { font-style: normal; color: var(--dark-grey); margin: 6px 0 22px; line-height: 1.55; }
.loc dd a { color: inherit; text-decoration: none; }
.loc dd a:hover { color: var(--red); }
.loc__muted { color: #8a8178; font-weight: 500; }
.map { border-radius: var(--radius); overflow: hidden; min-height: 380px; background: var(--secondary-cream-light); box-shadow: 0 30px 50px -30px rgba(0, 0, 10, .45); }
.map iframe { display: block; width: 100%; height: 100%; min-height: 380px; border: 0; }
.menu__foot a:not(.btn) { color: var(--pure-dark); font-weight: 600; }
.footer__text { display: block; color: rgba(254, 246, 233, .72); padding-block: 5px; }
.loc { background: var(--secondary-cream-light); color: var(--pure-dark); border-radius: var(--radius); padding: 28px; transition: transform .5s var(--ease-out), box-shadow .5s; }
.loc:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -25px rgba(0, 0, 10, .45); }
.loc__tag { display: inline-block; padding: 5px 12px; border-radius: 999px; font-size: .75rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; background: var(--light-pink); color: var(--red-deep); margin-bottom: 18px; }
.loc__tag--green { background: var(--light-green); color: #2c5c1a; }
.loc__tag--yellow { background: var(--vivid-yellow); color: #5e4c00; }
.loc h3 { font-size: 2.25rem; font-weight: 600; }
.loc > p { color: var(--dark-grey); margin-bottom: 18px; }
.loc dl { display: grid; grid-template-columns: auto 1fr; gap: 6px 18px; margin: 0 0 22px; font-size: .9375rem; }
.loc dt { color: #8a8178; }
.loc dd { margin: 0; font-weight: 600; text-align: right; }
.loc__link { font-weight: 600; text-decoration: none; color: var(--red); background: linear-gradient(currentColor, currentColor) 0 100% / 0 2px no-repeat; transition: background-size .4s var(--ease-out); padding-bottom: 2px; }
.loc__link:hover { background-size: 100% 2px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { position: relative; overflow: hidden; padding-block: clamp(64px, 8vw, 110px) 0; }
.footer__top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid rgba(254, 246, 233, .1); }
.footer__brand p { max-width: 26em; margin-top: 18px; color: rgba(254, 246, 233, .6); }
.newsletter { flex: 1 1 380px; max-width: 520px; }
.newsletter__label { display: block; font-family: var(--font-display); text-transform: uppercase; font-size: var(--heading-md); font-weight: 500; margin-bottom: 14px; }
.newsletter__row { display: flex; gap: 8px; padding: 6px; border-radius: 999px; background: rgba(254, 246, 233, .06); border: 1px solid rgba(254, 246, 233, .14); transition: border-color .3s; }
.newsletter__row:focus-within { border-color: var(--vivid-orange); }
.newsletter input { flex: 1; min-width: 0; border: 0; background: transparent; color: var(--secondary-cream-light); font: inherit; padding: 0 18px; outline: none; }
.newsletter input::placeholder { color: rgba(254, 246, 233, .4); }
.newsletter__msg { min-height: 1.6em; margin-top: 10px; font-size: .875rem; color: var(--light-green); }
.newsletter__msg.is-error { color: var(--light-red); }

.footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding-block: 56px; }
.footer__cols h4 { font-size: .8125rem; font-family: var(--font-body); letter-spacing: .14em; color: var(--vivid-orange); margin-bottom: 16px; font-weight: 600; }
.footer__cols a { display: block; width: fit-content; text-decoration: none; color: rgba(254, 246, 233, .72); padding-block: 5px; transition: color .2s, transform .3s var(--ease-out); }
.footer__cols a:hover { color: #fff; transform: translateX(4px); }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-block: 24px; border-top: 1px solid rgba(254, 246, 233, .1); font-size: .8125rem; color: rgba(254, 246, 233, .45); position: relative; z-index: 1; }
.footer__bottom a { color: rgba(254, 246, 233, .7); }
.footer__word { font-family: var(--font-display); font-weight: 700; font-size: 34vw; line-height: .75; text-align: center; color: transparent; -webkit-text-stroke: 1px rgba(254, 246, 233, .08); margin-top: -2vw; margin-bottom: -4vw; user-select: none; }


/* ==========================================================================
   Order drawer (dine-in → WhatsApp)
   ========================================================================== */
.drawer-backdrop { position: fixed; inset: 0; z-index: 180; background: rgba(0, 0, 10, .55); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); opacity: 0; transition: opacity .4s var(--ease-out); }
.drawer-backdrop.is-open { opacity: 1; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 190;
  width: min(460px, 100%); display: flex; flex-direction: column;
  background: var(--secondary-cream-light); color: var(--pure-dark);
  box-shadow: -30px 0 60px -20px rgba(0, 0, 10, .45);
  transform: translateX(104%); transition: transform .45s var(--ease-out);
}
.drawer.is-open { transform: none; }
.drawer__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 22px 24px 14px; }
.drawer__eyebrow { font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: 4px; }
.drawer__head h2 { font-size: 2.25rem; font-weight: 600; }
.drawer__close { flex: none; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(0, 0, 10, .12); background: transparent; cursor: pointer; transition: background .2s, transform .35s var(--ease-spring); }
.drawer__close:hover { background: rgba(0, 0, 10, .06); transform: rotate(90deg); }

.drawer__status { margin: 0 24px 6px; padding: 9px 14px; border-radius: 12px; font-size: .8125rem; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.drawer__status::before { content: ""; flex: none; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.drawer__status.is-open { background: var(--light-green); color: #24561a; }
.drawer__status.is-closed { background: var(--light-orange); color: #7a4a00; }

.drawer__body { flex: 1; overflow-y: auto; overscroll-behavior: contain; padding: 8px 24px 24px; }
.drawer__empty { text-align: center; padding: 48px 8px; }
.drawer__empty-icon { display: block; font-size: 3.5rem; margin-bottom: 12px; }
.drawer__empty h3 { font-size: 1.75rem; font-weight: 600; margin-bottom: 8px; }
.drawer__empty p { color: var(--dark-grey); margin: 0 auto 24px; max-width: 30ch; }

.order-list { display: grid; }
.order-item { display: grid; grid-template-columns: minmax(0, 1fr) auto 64px; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid rgba(0, 0, 10, .08); animation: fadeUp .35s var(--ease-out); }
.order-item__name { display: block; font-weight: 600; line-height: 1.3; }
.order-item__unit { font-size: .8125rem; color: #8a8178; }
.order-item__total { text-align: right; font-family: var(--font-display); font-weight: 600; font-size: 1.125rem; }
.qty { display: inline-flex; align-items: center; gap: 2px; padding: 3px; border-radius: 999px; background: var(--secondary-cream); border: 1px solid rgba(0, 0, 10, .08); }
.qty__btn { width: 32px; height: 32px; border: 0; border-radius: 50%; background: transparent; cursor: pointer; font-size: 1.125rem; line-height: 1; transition: background .2s, color .2s; }
.qty__btn:hover { background: var(--pure-dark); color: #fff; }
.qty__n { min-width: 22px; text-align: center; font-weight: 700; font-variant-numeric: tabular-nums; }

.order-form { margin-top: 24px; display: grid; gap: 14px; }
.order-form h3 { font-size: 1.25rem; font-weight: 500; }
.field { display: grid; gap: 6px; }
.field label { font-size: .8125rem; font-weight: 600; color: var(--dark-grey); }
.field label span { font-weight: 400; color: #8a8178; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--pure-dark);
  padding: 12px 14px; border-radius: 12px; border: 1.5px solid rgba(0, 0, 10, .14); background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 64px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--pure-dark); box-shadow: 0 0 0 4px rgba(254, 174, 53, .35); }
.field input[aria-invalid="true"] { border-color: var(--red); }
.field__error { min-height: 0; font-size: .8125rem; color: var(--red-deep); font-weight: 500; }
.field__error:empty { display: none; }
.field-row { display: grid; grid-template-columns: 1fr 1.6fr; gap: 12px; }

.drawer__foot { padding: 16px 24px calc(18px + env(safe-area-inset-bottom)); border-top: 1px solid rgba(0, 0, 10, .1); background: var(--secondary-cream-light); display: grid; gap: 12px; }
.drawer__total { display: flex; align-items: baseline; justify-content: space-between; }
.drawer__total span { font-weight: 600; }
.drawer__total small { font-weight: 500; color: #8a8178; font-size: .875rem; }
.drawer__total strong { font-family: var(--font-display); font-size: 2rem; font-weight: 600; line-height: 1; }
.drawer__sent { padding: 10px 14px; border-radius: 12px; background: var(--light-green); color: #24561a; font-size: .875rem; }
.btn--whatsapp { --bg: #25d366; --fg: #06301a; --hover: #1ebe5b; width: 100%; box-shadow: 0 12px 30px -12px rgba(37, 211, 102, .8); }
.drawer__alt { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px; font-size: .875rem; }
.drawer__alt a { color: var(--pure-dark); font-weight: 600; text-decoration: none; }
.drawer__alt a:hover { color: var(--red); }
.drawer__clear { border: 0; background: none; padding: 0; cursor: pointer; font-size: .875rem; color: #8a8178; text-decoration: underline; text-underline-offset: 3px; }
.drawer__clear:hover { color: var(--red-deep); }
.drawer__note { font-size: .75rem; color: #8a8178; text-align: center; }

/* Sticky order bar (phones & tablets) */
.order-bar {
  position: fixed; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); z-index: 120;
  display: flex; align-items: center; gap: 12px; padding: 14px 20px; border: 0; border-radius: 999px; cursor: pointer;
  background: var(--red); color: #fff; font-weight: 600; box-shadow: 0 16px 40px -10px rgba(231, 50, 57, .75);
  animation: barIn .5s var(--ease-spring);
}
.order-bar__count { padding: 3px 10px; border-radius: 999px; background: rgba(0, 0, 10, .2); font-size: .8125rem; }
.order-bar__label { flex: 1; text-align: left; }
.order-bar__total { font-family: var(--font-display); font-size: 1.125rem; }
@keyframes barIn { from { transform: translateY(160%); } }
.order-bar:hover { background: var(--red-deep); }
body.has-order-bar .toast { bottom: 96px; }
@media (min-width: 900px) {
  .order-bar { left: auto; right: 28px; bottom: 28px; padding: 12px 14px 12px 12px; gap: 14px; }
  .order-bar__label { flex: none; }
}

/* ==========================================================================
   Toast
   ========================================================================== */
.toast {
  position: fixed; left: 50%; bottom: 24px; z-index: 150; translate: -50% 0;
  display: flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px; background: var(--secondary-cream-light); color: var(--pure-dark);
  font-weight: 600; box-shadow: 0 20px 50px -10px rgba(0, 0, 10, .45);
  opacity: 0; transform: translateY(20px) scale(.96); pointer-events: none;
  transition: opacity .35s, transform .5s var(--ease-spring);
  width: max-content; max-width: calc(100vw - 32px);
}
.toast::before { content: "✓"; display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--red); color: #fff; font-size: .8125rem; flex: none; }
.toast.is-visible { opacity: 1; transform: none; }

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */
.js .reveal { opacity: 0; transform: translateY(36px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); transition-delay: var(--d, 0s); }
.js .reveal.is-in { opacity: 1; transform: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
  .nav__links { display: none; }
  .burger-toggle { display: block; }
  .menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .love__grid { grid-template-columns: 1fr; }
  .rating-card__actions { margin-top: 0; }
  .perks { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .featured__grid { grid-template-columns: 1fr; }
  .featured__media img { aspect-ratio: 4 / 3; }
  .featured__media { max-width: 760px; }
  .cta { grid-template-columns: 1fr; }
  .visit { grid-template-columns: 1fr; }
  .story__media { width: 75%; opacity: .55; }
  .card.is-last-odd { grid-column: 1 / -1; flex-direction: row; }
  .card.is-last-odd .card__media { flex: 0 0 calc(50% - clamp(8px, 1vw, 14px)); aspect-ratio: auto; min-height: 260px; }
  .card.is-last-odd .card__body { justify-content: center; padding: 28px; }
}

@media (max-width: 1180px) {
  .callout { display: none; }
}

@media (max-width: 899px) {
  body.has-order-bar { padding-bottom: 84px; }
  .hero { height: 200vh; }
  .hero__grid { grid-template-columns: 1fr; align-content: center; gap: 0; height: 100%; padding-top: var(--nav-h); padding-bottom: 20px; }
  .hero__copy { max-width: none; text-align: center; display: flex; flex-direction: column; align-items: center; order: 2; }
  .hero__stage { order: 1; height: auto; min-height: 0; place-items: center; padding: calc(min(56vw, 27svh) * .3) 0 calc(min(56vw, 27svh) * .36); }
  .burger { --bw: min(56vw, 27svh); }
  .hero .eyebrow { margin-bottom: 10px; font-size: .75rem; }
  .hero__title { font-size: clamp(3rem, 13.5vw, 5.5rem); margin-bottom: 14px; }
  .hero__title .line { display: inline; }
  .hero__title .line + .line::before { content: " "; }
  .hero__lead { margin-bottom: 20px; font-size: 1rem; max-width: 26em; }
  .hero__ctas { justify-content: center; margin-bottom: 0; }
  .hero__meta { display: none; }
  .hero__bgword { font-size: 60vw; bottom: auto; top: 12vh; right: -8vw; }
  .hero__glow { background: radial-gradient(60vmax 40vmax at 50% 28%, rgba(254, 174, 53, .2), transparent 70%), radial-gradient(50vmax 36vmax at 50% 34%, rgba(231, 50, 57, .22), transparent 70%); }
  .hero__hint { display: none; }
  .callout { display: none; }
  .burger__tag { width: 92px; height: 92px; right: -14%; }
  .burger__tag span { font-size: .6875rem; max-width: 64px; }
  .burger__tag strong { font-size: 1.25rem; }

  .story { padding-top: 0; }
  .story__media { position: relative; width: 100%; height: auto; opacity: 1; }
  .story__media img { aspect-ratio: 4 / 5; max-height: 70vh; object-position: 50% 50%; -webkit-mask-image: linear-gradient(to bottom, #000 60%, transparent); mask-image: linear-gradient(to bottom, #000 60%, transparent); }
  .story__inner { margin-top: -8vh; }
}

@media (max-width: 700px) {
  .hero__title .line { display: block; }
  .hero__title .line + .line::before { content: none; }
  .hero__title { line-height: .92; }
  .btn--lg { padding: 15px 24px; font-size: 1rem; }
  .hero__ctas { flex-wrap: nowrap; gap: 10px; }
  .hero__ctas .btn--lg { padding: 14px 18px; font-size: .9375rem; }
  .bag { width: 46px; padding: 0; justify-content: center; }
  .bag__label, .bag.has-items .bag__total { display: none; }
  .drawer__head h2 { font-size: 1.875rem; }
  .field-row { grid-template-columns: 1fr 1.4fr; }
  .menu-grid, .perks { grid-template-columns: 1fr; }
  .reviews { grid-auto-flow: column; grid-template-columns: none; grid-auto-columns: 86%; overflow-x: auto; scroll-snap-type: x mandatory; margin-inline: calc(var(--gutter) * -1); padding: 4px var(--gutter) 16px; scroll-padding-inline: var(--gutter); scrollbar-width: none; }
  .reviews::-webkit-scrollbar { display: none; }
  .review { scroll-snap-align: start; }
  .loc dl { grid-template-columns: 1fr; gap: 0; }
  .loc dd { text-align: left; margin-bottom: 10px; }
  .map, .map iframe { min-height: 300px; }
  .card.is-last-odd { flex-direction: column; }
  .card.is-last-odd .card__media { flex: none; aspect-ratio: 5 / 4; min-height: 0; }
  .card.is-last-odd .card__body { padding: 22px 22px 20px; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .sticker { width: 104px; height: 104px; right: -8px; top: -20px; }
  .sticker > span { font-size: 1.375rem; }
  .stats { grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
  .stats span { font-size: .75rem; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .newsletter__row { flex-direction: column; border-radius: 22px; }
  .newsletter input { padding: 12px 14px; }
  .shot:nth-child(even) { translate: none; }
  .gallery__rail { grid-auto-columns: 72vw; }
  .price-big span { font-size: 2.75rem; }
}

@media (max-height: 700px) and (max-width: 899px) {
  .hero .eyebrow { display: none; }
}

@media (max-height: 700px) and (min-width: 900px) {
  .hero__title { font-size: clamp(3.5rem, 12vh, 7rem); }
  .hero__meta { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .marquee__track, .quote-strip__track { animation: none; }
  .quote-strip { overflow-x: auto; }
  .hero { height: auto; }
  .hero__sticky { position: relative; min-height: 100svh; height: auto; }
  .hero__hint { display: none; }
  .js .reveal { opacity: 1; transform: none; }
}
