/* Reggae Vibes Takeaway — v5 "island neo-brutalism"
   Brand identity DNA (slab type, hard shadows, 3px lines, corrugation, sun-rays,
   flag ribbon, dancehall stacking) fused with a modern ordering UX.
   Bold gold / green / container-black blocks — nothing plain, nothing template. */

:root {
  --gold: #FED100;
  --gold-deep: #E0A900;
  --green: #009B3A;
  --green-deep: #00702B;
  --green-dark: #06451F;
  --green-bright: #0BBF4D;
  --black: #14110B;
  --ink: #1E1A12;
  --cream: #FFFBEF;
  --red: #CE1126;
  --muted: #6E6552;

  --font-display: 'Alfa Slab One', 'Rockwell', serif;
  --font-body: 'Archivo', system-ui, sans-serif;
  --font-script: 'Yellowtail', cursive;

  --border: 3px solid var(--black);
  --sh: 5px 5px 0 var(--black);
  --sh-sm: 3px 3px 0 var(--black);
  --sh-lg: 8px 8px 0 var(--black);
  --r: 14px;
  --r-sm: 10px;
  --ease: cubic-bezier(.2,.7,.3,1);
  --navh: 75px;

  --corrugation: repeating-linear-gradient(90deg,
    rgba(0,0,0,.14) 0 3px, rgba(255,255,255,.045) 3px 6px, transparent 6px 26px);
  --ribbon: repeating-linear-gradient(-45deg,
    var(--black) 0 14px, var(--gold) 14px 26px,
    var(--black) 26px 40px, var(--green) 40px 52px);
  --sunrays: repeating-conic-gradient(from 8deg,
    rgba(20,17,11,.08) 0 7deg, transparent 7deg 14deg);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  font-family: var(--font-body);
  background: var(--gold);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--green-deep); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Reveal */
.rv { opacity: 0; transform: translateY(16px); }
.rv.on { opacity: 1; transform: none; transition: opacity .5s var(--ease), transform .5s var(--ease); }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1 !important; transform: none !important; }
  .marquee-track, .hero-bg img, .hero-bg::after,
  .hero-status .dot { animation: none !important; }
  .hero-bg img { transform: scale(1.05) !important; }
  * { transition: none !important; }
}

/* ---------- Jamaican flag elements ---------- */
.flag-band { height: 13px; background: var(--ribbon); border-bottom: 2px solid var(--black); }
.flag-svg { display: inline-block; width: 26px; height: auto; border: 2px solid var(--black); border-radius: 3px; flex: none; }

/* ---------- Buttons: bordered, hard shadow, tactile press ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 800; font-size: 14.5px;
  letter-spacing: .04em; text-transform: uppercase; text-decoration: none;
  padding: 14px 24px; border-radius: var(--r-sm); cursor: pointer;
  border: var(--border); box-shadow: var(--sh-sm); color: var(--black);
  transition: transform .12s var(--ease), box-shadow .12s var(--ease), background .15s;
}
.btn:hover { transform: translate(-1px,-1px); box-shadow: 4px 4px 0 var(--black); }
.btn:active { transform: translate(3px,3px); box-shadow: 0 0 0 var(--black); }
.btn-gold { background: var(--gold); }
.btn-gold:hover { background: #ffdb33; }
.btn-black { background: var(--black); color: var(--gold); box-shadow: 5px 5px 0 rgba(20,17,11,.35); }
.btn-black:hover { color: var(--gold); }
.btn-cream { background: var(--cream); }
.btn-cream:hover { background: #fff; }
.btn-green { background: var(--green); color: var(--cream); }
.btn-green:hover { background: var(--green-deep); color: var(--cream); }
.btn-big { font-size: 16px; padding: 17px 30px; }

/* ---------- Nav (transparent over the photo hero, black once scrolled) ---------- */
.nav {
  position: sticky; top: 0; z-index: 70;
  background: transparent;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px;
  padding: 12px 30px;
  border-bottom: 3px solid transparent;
  transition: background .3s, border-color .3s, transform .34s var(--ease), box-shadow .3s;
}
/* over the hero photo the bar is invisible; once you scroll past the hero it
   drops in solid, hides on the way down and pops back on the way up */
.nav.scrolled {
  background: var(--black); border-bottom-color: var(--gold);
  box-shadow: 0 12px 34px rgba(0,0,0,.4);
}
.nav.tucked { transform: translateY(-118%); }
body.nav-tucked { --stick: 0px; }
.nav-brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.nav-logo { width: 48px; height: 48px; border-radius: 50%; filter: drop-shadow(0 2px 8px rgba(0,0,0,.5)); }
.brand-word { font-family: var(--font-display); font-size: 17px; line-height: 1.02; color: var(--cream); display: flex; flex-direction: column; text-transform: uppercase; transition: color .25s; text-shadow: 0 2px 10px rgba(0,0,0,.6); }
.brand-word em { font-style: normal; font-family: var(--font-body); font-weight: 800; font-size: 9.5px; letter-spacing: .3em; color: var(--gold); transition: color .25s; }
.nav.scrolled .brand-word { color: var(--cream); }
.nav.scrolled .brand-word em { color: var(--green-bright); }
.nav-links { display: flex; gap: 30px; justify-self: center; }
.nav-actions { display: flex; align-items: center; gap: 14px; justify-self: end; }
.nav-links a { font-weight: 800; font-size: 13.5px; letter-spacing: .05em; text-transform: uppercase; color: var(--cream); text-decoration: none; border-bottom: 3px solid transparent; padding-bottom: 2px; transition: color .25s; text-shadow: 0 2px 10px rgba(0,0,0,.65); }
.nav-links a:hover { border-bottom-color: currentColor; }
.nav.scrolled .nav-links a { color: var(--cream); }
.cart-btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: var(--r-sm);
  border: 2.5px solid var(--cream); color: var(--cream);
  background: rgba(9,12,8,.45); -webkit-backdrop-filter: blur(7px); backdrop-filter: blur(7px);
  cursor: pointer;
  transition: transform .12s var(--ease), background .18s, border-color .18s, color .18s;
}
.cart-btn:hover { transform: translateY(-1px); background: rgba(9,12,8,.7); border-color: var(--gold); color: var(--gold); }
.cart-btn:active { transform: translateY(1px); }
.cart-btn.has-items { background: var(--gold); border-color: var(--gold); color: var(--black); }
.cart-btn.has-items:hover { background: #ffdb33; color: var(--black); }
.cart-count {
  position: absolute; top: -8px; right: -8px;
  min-width: 22px; height: 22px; padding: 0 5px;
  background: var(--red); color: #fff; border: 2px solid var(--black);
  border-radius: 999px; font-size: 12px; font-weight: 800;
  display: none; align-items: center; justify-content: center;
}
.cart-count.show { display: inline-flex; }
.nav-cta { padding: 12px 20px; font-size: 13.5px; }
.nav-burger { display: none; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; z-index: 90; }
.nav-burger span { display: block; width: 26px; height: 4px; margin: 5px auto; background: var(--cream); box-shadow: 0 1px 6px rgba(0,0,0,.5); transition: transform .25s var(--ease), background .25s; }
.nav.scrolled .nav-burger span { background: var(--cream); }
.nav-burger.open span { background: var(--gold); }
.nav-burger.open span:first-child { transform: translateY(4.5px) rotate(45deg); }
.nav-burger.open span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

/* ---------- Hero: full-bleed graded photo of the real stand ---------- */
.hero {
  position: relative; overflow: hidden; isolation: isolate;
  background: #090C08;
  min-height: calc(100svh - 13px);
  margin-top: calc(-1 * var(--navh));
  padding: calc(var(--navh) + 44px) 0 128px;
  display: flex; align-items: center;
}
/* the hero runs a little wider than the rest of the site so the copy
   sits closer to the frame edge instead of stranding a black gutter */
.hero > .container { width: 100%; max-width: 1360px; position: relative; z-index: 4; }
.hero-inner { position: relative; }
.hero-copy { max-width: 640px; }

/* the photograph */
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg picture, .hero-bg img { display: block; width: 100%; height: 100%; }
.hero-bg img {
  object-fit: cover; object-position: 50% 32%;
  filter: contrast(1.06) saturate(1.26) brightness(1.02);
  transform: scale(1.02);
  animation: hero-drift 42s var(--ease) infinite alternate;
  will-change: transform;
}
@keyframes hero-drift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to   { transform: scale(1.075) translate3d(-1.1%, -.8%, 0); }
}
/* sun bloom, breathing */
.hero-bg::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(30% 34% at 46% 11%, rgba(255,228,155,.8), rgba(255,196,90,.2) 52%, transparent 74%);
  mix-blend-mode: screen;
  animation: sun-breathe 9s ease-in-out infinite alternate;
}
@keyframes sun-breathe { from { opacity: .72; } to { opacity: 1; } }

/* colour grade — warm highlights, deep teal shadows */
.hero-grade {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  mix-blend-mode: overlay;
  background:
    radial-gradient(58% 52% at 46% 10%, rgba(255,208,110,.55), transparent 66%),
    linear-gradient(198deg, rgba(255,180,64,.26) 0%, rgba(0,36,54,.26) 82%);
}

/* darkening scrim — carries the type */
.hero-scrim {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(92deg, rgba(6,9,6,.93) 0%, rgba(6,9,6,.84) 27%, rgba(6,9,6,.44) 50%, rgba(6,9,6,.04) 74%, rgba(6,9,6,.18) 100%),
    linear-gradient(to top, var(--black) 0%, rgba(9,12,8,.58) 10%, transparent 32%),
    radial-gradient(130% 110% at 46% 40%, transparent 50%, rgba(0,0,0,.40) 100%);
}

/* film grain */
.hero-grain {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  opacity: .11; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* chips row: origin + live open/closed */
.hero-chips { display: flex; align-items: center; gap: 11px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-chip {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--red); color: var(--cream);
  border: 2.5px solid var(--black);
  font-weight: 800; font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase;
  padding: 8px 15px; border-radius: 7px;
  transform: rotate(-1deg); box-shadow: var(--sh-sm);
}
.hero-status {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(9,12,8,.66); -webkit-backdrop-filter: blur(7px); backdrop-filter: blur(7px);
  border: 2.5px solid var(--cream); color: var(--cream);
  font-weight: 800; font-size: 12.5px; letter-spacing: .09em; text-transform: uppercase;
  padding: 8px 15px; border-radius: 7px; transform: rotate(1deg);
}
.hero-status[hidden] { display: none; }
.hero-status .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green-bright); flex: none; animation: dot-pulse 2.2s ease-out infinite; }
.hero-status.is-closed { border-color: rgba(255,251,239,.55); }
.hero-status.is-closed .dot { background: var(--red); animation: none; }
@keyframes dot-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(11,191,77,.75); }
  70%  { box-shadow: 0 0 0 9px rgba(11,191,77,0); }
  100% { box-shadow: 0 0 0 0 rgba(11,191,77,0); }
}

.rasta-bar { display: flex; width: 200px; height: 12px; border: 2.5px solid var(--black); box-shadow: var(--sh-sm); transform: skewX(-16deg); margin: 20px 0 0; }
.rasta-bar span { flex: 1; }
.rasta-bar span:nth-child(1) { background: var(--red); }
.rasta-bar span:nth-child(2) { background: var(--gold-deep); }
.rasta-bar span:nth-child(3) { background: var(--green); }

.hero-title { font-family: var(--font-display); text-transform: uppercase; line-height: .96; }
.hero-title .ht-top {
  display: block; font-size: clamp(30px, 3.7vw, 48px); color: var(--cream);
  text-shadow: 3px 3px 0 rgba(9,12,8,.75), 0 6px 26px rgba(0,0,0,.55);
}
.hero-title .ht-big {
  display: block; font-size: clamp(54px, 7.2vw, 100px);
  color: var(--gold); -webkit-text-stroke: 3px var(--black);
  text-shadow: 7px 7px 0 var(--green), 14px 14px 30px rgba(0,0,0,.55);
}
.hero-sub {
  margin: 24px 0 30px; font-size: 16.5px; line-height: 1.6; font-weight: 600;
  color: rgba(255,251,239,.92); max-width: 46ch;
  text-shadow: 0 2px 14px rgba(0,0,0,.75);
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-meta { display: flex; gap: 24px; flex-wrap: wrap; }
.hero-meta span {
  display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 800;
  color: var(--cream); text-shadow: 0 2px 12px rgba(0,0,0,.8);
}
.hero-meta svg { flex: none; color: var(--gold); }

.hero-onelove {
  position: absolute; z-index: 4; right: 6.5%; top: calc(var(--navh) + 26px);
  font-family: var(--font-script); font-size: clamp(50px, 5.6vw, 86px);
  color: var(--red); transform: rotate(-7deg); pointer-events: none;
  text-shadow: 3px 3px 0 var(--cream), 0 10px 30px rgba(0,0,0,.5);
}

.hero-credit {
  position: absolute; z-index: 4; left: 24px; bottom: 30px;
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,251,239,.7); text-shadow: 0 2px 10px rgba(0,0,0,.8);
}
.hero-credit svg { color: var(--gold); flex: none; }


/* ---------- Marquee ---------- */
.marquee {
  position: relative; background: var(--black);
  border-top: var(--border); border-bottom: var(--border);
  overflow: hidden; padding: 15px 0 13px;
}
.marquee::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 5px;
  background: var(--ribbon); background-size: auto 5px; opacity: .9;
}
.marquee::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, var(--black), transparent 9%, transparent 91%, var(--black));
}
.marquee-track { display: flex; align-items: center; gap: 30px; width: max-content; animation: marquee 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--font-display); font-size: 19px; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
.marquee-track span:nth-child(4n+3) { color: var(--cream); }
.marquee-track i { color: var(--red); font-style: normal; font-size: 14px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- How it works (green zone starts) ---------- */
.how { background: var(--corrugation), var(--green); padding: 64px 0 0; }
.how-head { margin-bottom: 26px; }
.how-head .script-eyebrow { color: var(--gold); }
.how-head h2 {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(24px, 3.1vw, 34px); color: var(--cream);
  text-shadow: 3px 3px 0 rgba(20,17,11,.5);
}
.how-grid {
  position: relative;
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px;
}
/* dashed rasta thread linking the three steps */
.how-grid::before {
  content: ""; position: absolute; top: 44px; left: 14%; right: 14%; height: 3px;
  background: repeating-linear-gradient(90deg,
    var(--gold) 0 13px, transparent 13px 24px);
  opacity: .5;
}
.how-card {
  position: relative; overflow: hidden;
  background: var(--cream); border: var(--border); border-radius: var(--r);
  box-shadow: var(--sh); padding: 22px 22px 24px;
  display: flex; flex-direction: column; gap: 9px;
  transition: transform .16s var(--ease), box-shadow .16s var(--ease);
}
.how-card:nth-child(1) { transform: rotate(-.6deg); }
.how-card:nth-child(3) { transform: rotate(.6deg); }
.how-card:hover { transform: translate(-3px,-3px) rotate(0deg); box-shadow: var(--sh-lg); }
.how-ghost {
  position: absolute; top: -16px; right: 6px;
  font-family: var(--font-display); font-size: 84px; line-height: 1;
  color: rgba(20,17,11,.07); pointer-events: none;
}
.how-card .hno {
  width: 42px; height: 42px; border-radius: 10px; border: 2.5px solid var(--black);
  background: var(--gold); color: var(--black);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-sm);
}
.how-card h3 { font-family: var(--font-display); font-size: 16.5px; text-transform: uppercase; }
.how-card p { font-size: 14.5px; line-height: 1.55; color: var(--ink); font-weight: 500; }

/* ---------- Section heads ---------- */
.section { padding: 76px 0; }
.script-eyebrow { font-family: var(--font-script); font-size: clamp(26px, 2.8vw, 32px); color: var(--red); display: block; margin-bottom: 4px; }
.section-head h2 { font-family: var(--font-display); font-size: clamp(30px, 4.2vw, 46px); text-transform: uppercase; line-height: 1.02; letter-spacing: .01em; }
.section-head .section-sub { margin-top: 12px; font-size: 16px; line-height: 1.6; max-width: 58ch; font-weight: 600; }

/* ---------- Menu (green corrugated) ---------- */
#menu { background: var(--corrugation), var(--green); padding-top: 56px; }
#menu .script-eyebrow { color: var(--gold); }
#menu .section-head h2 { color: var(--cream); text-shadow: 4px 4px 0 rgba(20,17,11,.55); }
#menu .section-sub { color: #DFF2E2; }
.menu-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 24px; }
.price-note {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cream); border: var(--border); box-shadow: var(--sh-sm);
  color: var(--black); font-weight: 800; font-size: 13px;
  padding: 10px 16px; border-radius: 9px; transform: rotate(-1deg);
}
.price-note.on { transform: rotate(-1deg); }
/* sticky order bar — rides just under the nav, and rises when the nav tucks away */
.menu-bar {
  position: sticky; top: calc(var(--stick, var(--navh)) + 12px); z-index: 40;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 10px; margin-bottom: 30px;
  /* slightly see-through + blurred so it reads as a toolbar floating over the
     food, not a card that happens to be sitting on top of it */
  background: rgba(12,16,11,.93);
  -webkit-backdrop-filter: blur(9px) saturate(1.1); backdrop-filter: blur(9px) saturate(1.1);
  border: var(--border); border-radius: var(--r);
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
  transition: top .34s var(--ease);
}
.menu-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.tab {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-body); font-weight: 800; font-size: 13.5px;
  letter-spacing: .04em; text-transform: uppercase;
  padding: 10px 17px; border-radius: 9px; cursor: pointer;
  background: transparent; color: var(--cream);
  border: 2.5px solid rgba(255,251,239,.28); box-shadow: none;
  transition: background .15s, color .15s, border-color .15s;
}
.tab em {
  font-style: normal; font-size: 11px; font-weight: 900;
  padding: 2px 6px; border-radius: 999px;
  background: rgba(255,251,239,.14); color: inherit;
}
.tab:hover { border-color: var(--gold); color: var(--gold); }
.tab.active { background: var(--gold); color: var(--black); border-color: var(--gold); }
.tab.active em { background: rgba(20,17,11,.22); }

/* 1-up / 2-up layout switch — phones only */
.grid-toggle { display: none; gap: 4px; padding: 3px; border: 2.5px solid rgba(255,251,239,.28); border-radius: 9px; }
.grid-toggle .gt {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 28px; border: 0; border-radius: 6px; cursor: pointer;
  background: transparent; color: rgba(255,251,239,.6);
  transition: background .15s, color .15s;
}
.grid-toggle .gt.active { background: var(--gold); color: var(--black); }

.menu-cart {
  margin-left: auto; display: inline-flex; align-items: center; gap: 9px;
  background: var(--green); color: var(--cream); cursor: pointer;
  border: 2.5px solid var(--green-bright); border-radius: 9px;
  font-family: var(--font-body); font-weight: 800; font-size: 13px;
  letter-spacing: .04em; text-transform: uppercase; padding: 10px 16px;
  transition: background .15s;
}
.menu-cart[hidden] { display: none; }
.menu-cart:hover { background: var(--green-deep); }
.menu-cart b { color: var(--gold); }

.menu-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 26px; }
.dish-card {
  background: var(--cream); border: var(--border); border-radius: var(--r);
  overflow: hidden; box-shadow: var(--sh);
  display: flex; flex-direction: column;
  transition: transform .16s var(--ease), box-shadow .16s var(--ease);
}
.dish-card:hover { transform: translate(-3px,-3px); box-shadow: var(--sh-lg); }
.dish-img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; border-bottom: var(--border); }
.dish-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s var(--ease); }
.dish-card:hover .dish-img img { transform: scale(1.06); }
/* all image chips live in one row so they can never stack on top of each other */
.dish-chips {
  position: absolute; top: 12px; left: 12px; right: 12px; z-index: 2;
  display: flex; flex-wrap: wrap; gap: 6px; align-items: flex-start;
}
.spicy-chip, .ask-chip, .star-chip {
  display: inline-flex; align-items: center; gap: 6px;
  border: 2.5px solid var(--black); border-radius: 8px;
  font-size: 11.5px; font-weight: 900; letter-spacing: .06em;
  padding: 5px 10px; box-shadow: var(--sh-sm); white-space: nowrap;
}
.spicy-chip { background: var(--red); color: var(--cream); transform: rotate(-2deg); }
.spicy-chip img { width: 14px; height: 14px; }
.star-chip { background: var(--gold); color: var(--black); transform: rotate(-2deg); }
.star-chip svg { color: var(--black); }
.dish-body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.dish-body h3 { font-family: var(--font-display); font-size: 17.5px; text-transform: uppercase; letter-spacing: .01em; }
/* two clamped lines everywhere so the cards line up across a row */
.dish-body > p:not(.ask-line) {
  font-size: 14px; line-height: 1.5; color: #4A4438; font-weight: 500;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; min-height: calc(2 * 1.5em);
}
.dish-body .dish-foot { margin-top: auto; }
.dish-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 12px; }
.dish-note {
  font-size: 10.5px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
  color: var(--green-deep); background: rgba(0,155,58,.1);
  border: 2px solid rgba(0,155,58,.4); border-radius: 999px; padding: 5px 10px;
}
/* satisfying "it's in the order" state */
.dish-card.in-cart { border-color: var(--green-deep); }
.dish-card.in-cart .dish-img::after {
  content: "In your order";
  position: absolute; top: 12px; right: 12px;
  background: var(--green); color: var(--cream);
  border: 2.5px solid var(--black); border-radius: 8px;
  padding: 5px 10px; font-size: 10.5px; font-weight: 900;
  letter-spacing: .07em; text-transform: uppercase;
  box-shadow: var(--sh-sm); transform: rotate(2deg);
}

.add-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold); color: var(--black);
  border: var(--border); box-shadow: var(--sh-sm); cursor: pointer;
  font-family: var(--font-body); font-weight: 900; font-size: 13.5px;
  letter-spacing: .04em; text-transform: uppercase;
  padding: 9px 16px; border-radius: 9px;
  transition: transform .12s var(--ease), box-shadow .12s var(--ease), background .15s;
}
.add-btn:hover { transform: translate(-1px,-1px); box-shadow: 4px 4px 0 var(--black); background: #ffdb33; }
.add-btn:active { transform: translate(3px,3px); box-shadow: none; }
.stepper {
  display: none; align-items: center; gap: 4px;
  background: var(--black); border-radius: 999px; padding: 4px; border: 2.5px solid var(--black);
}
.stepper button {
  width: 31px; height: 31px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--gold); color: var(--black); font-size: 17px; font-weight: 900;
}
.stepper button:hover { background: #ffdb33; }
.stepper .qty { min-width: 30px; text-align: center; font-weight: 900; font-size: 15px; color: var(--gold); }
.in-cart .add-btn { display: none; }
.in-cart .stepper { display: inline-flex; }

.menu-sub {
  font-family: var(--font-display); font-size: 21px; text-transform: uppercase;
  color: var(--cream); text-shadow: 3px 3px 0 rgba(20,17,11,.55);
  margin: 46px 0 16px; display: flex; align-items: center; gap: 14px;
}
.menu-sub::after { content: ""; flex: 1; height: 3px; background: rgba(20,17,11,.35); border-radius: 2px; }
/* sides & soups read as a printed menu board with dotted leaders */
.menu-board {
  background: var(--cream); border: var(--border); border-radius: var(--r);
  box-shadow: var(--sh); padding: 6px 26px 10px;
}
.row-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0 44px; }
.dish-row {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 0; border-bottom: 2px dotted rgba(20,17,11,.16);
  transition: color .14s;
}
.row-grid .dish-row:nth-last-child(-n+2) { border-bottom: 0; }
.dish-row .rname { font-weight: 800; font-size: 15.5px; flex: none; }
.dish-row .lead {
  flex: 1; min-width: 18px; align-self: flex-end;
  border-bottom: 2px dotted rgba(20,17,11,.3); margin-bottom: 7px;
}
.dish-row.in-cart .rname { color: var(--green-deep); }
.dish-row .add-btn { padding: 8px 14px; font-size: 12.5px; }
.dish-row .stepper button { width: 28px; height: 28px; }
/* "ask first" — dishes that aren't cooked every day */
.ask-chip {
  background: var(--gold); color: var(--black);
  text-transform: uppercase; transform: rotate(2deg);
}
.dish-card.in-cart .ask-chip { display: none; }
.ask-line {
  font-size: 12px !important; font-weight: 700 !important;
  color: var(--green-deep) !important; flex: none !important;
  border-left: 3px solid var(--gold-deep); padding-left: 9px;
}

/* "call and ask what's left" — pots run out through the day */
.call-band {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 26px;
  margin: 48px 0 0; padding: 26px 30px;
  background: var(--cream); border: var(--border); border-radius: var(--r);
  box-shadow: var(--sh-lg);
}
.call-ring {
  width: 68px; height: 68px; flex: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold); color: var(--black);
  border: var(--border); box-shadow: var(--sh-sm);
  animation: call-pulse 2.6s ease-out infinite;
}
@keyframes call-pulse {
  0%   { box-shadow: var(--sh-sm), 0 0 0 0 rgba(206,17,38,.5); }
  70%  { box-shadow: var(--sh-sm), 0 0 0 16px rgba(206,17,38,0); }
  100% { box-shadow: var(--sh-sm), 0 0 0 0 rgba(206,17,38,0); }
}
/* beats #menu .script-eyebrow — gold on cream is too washed out here */
#menu .call-copy .script-eyebrow { color: var(--red); font-size: 25px; margin-bottom: 0; }
.call-copy h3 {
  font-family: var(--font-display); font-size: clamp(20px, 2.5vw, 27px);
  text-transform: uppercase; line-height: 1.1; margin-bottom: 7px;
}
.call-copy p { font-size: 14.5px; line-height: 1.55; font-weight: 500; color: #4A4438; max-width: 54ch; }
.call-actions { display: flex; flex-direction: column; gap: 10px; flex: none; }
.call-actions .btn { justify-content: center; white-space: nowrap; }

/* signature strip — his own menu highlight */
.signature {
  display: grid; grid-template-columns: 1.1fr .9fr; align-items: stretch;
  margin: 52px 0 0; overflow: hidden;
  background: var(--black); color: var(--cream);
  border: var(--border); border-radius: var(--r); box-shadow: var(--sh-lg);
}
.signature img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; filter: saturate(1.06); }
.signature-body { padding: 34px 36px; display: flex; flex-direction: column; justify-content: center; gap: 12px; align-items: flex-start; }
.signature-eyebrow { font-family: var(--font-script); font-size: 26px; color: var(--red); text-shadow: 1px 1px 0 rgba(255,251,239,.25); }
.signature-body h3 { font-family: var(--font-display); font-size: clamp(28px, 3.4vw, 40px); text-transform: uppercase; color: var(--gold); text-shadow: 4px 4px 0 rgba(0,0,0,.5); }
.signature-body p { font-size: 15.5px; line-height: 1.55; font-weight: 600; color: #D8D2BF; }
.signature-body .btn { margin-top: 6px; }

/* the real board from the stand */
.board-strip {
  display: grid; grid-template-columns: .58fr 1fr; gap: 40px; align-items: center;
  margin: 56px 0 0;
}
.board-poster {
  position: relative; display: block; justify-self: start;
  background: var(--cream); padding: 12px 12px 14px;
  border: 3px solid var(--black); box-shadow: 10px 10px 0 rgba(20,17,11,.85);
  transform: rotate(-1.4deg); transition: transform .2s var(--ease);
}
.board-poster:hover { transform: rotate(0deg) scale(1.02); }
.board-poster img { width: 100%; display: block; }
.board-tape {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%) rotate(-3deg);
  width: 92px; height: 26px; background: rgba(254,209,0,.85);
  border: 2px solid rgba(20,17,11,.5);
}
.board-copy .script-eyebrow { color: var(--gold); }
.board-copy h3 { font-family: var(--font-display); font-size: clamp(22px, 2.8vw, 32px); text-transform: uppercase; color: var(--cream); text-shadow: 3px 3px 0 rgba(20,17,11,.5); margin-bottom: 12px; }
.board-copy p { font-size: 15.5px; line-height: 1.6; font-weight: 600; color: #DFF2E2; max-width: 46ch; }
.board-quote { font-family: var(--font-script); font-size: 26px; color: var(--gold); margin-top: 16px; }

.menu-footnote { text-align: center; margin: 46px 0 8px; font-family: var(--font-script); font-size: clamp(26px, 3vw, 32px); color: var(--gold); text-shadow: 2px 2px 0 rgba(20,17,11,.4); }

/* ---------- Stand (black corrugated, full-bleed photo band) ---------- */
.stand { background: var(--corrugation), var(--black); color: var(--cream); padding: 76px 0; }
.stand .script-eyebrow { color: var(--red); text-shadow: 1px 1px 0 rgba(255,251,239,.3); }
.stand .section-head h2 { color: var(--cream); }

.stand-band {
  position: relative; margin: 34px 0 0;
  width: 100vw; margin-left: calc(50% - 50vw);
  height: clamp(260px, 38vw, 470px); overflow: hidden;
  border-top: var(--border); border-bottom: var(--border);
}
.stand-band img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 62%;
  filter: contrast(1.05) saturate(1.15);
}
.stand-band::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to top, rgba(9,12,8,.85), transparent 42%),
    linear-gradient(to bottom, rgba(9,12,8,.5), transparent 30%);
}
.stand-band figcaption {
  position: absolute; z-index: 2; bottom: 20px;
  left: max(24px, calc(50% - 576px)); transform: rotate(-1.5deg);
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cream); color: var(--ink);
  border: 2.5px solid var(--black); box-shadow: var(--sh); border-radius: 8px;
  padding: 8px 13px; white-space: nowrap;
  font-size: 11px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase;
}
.stand-band figcaption svg { color: var(--red); flex: none; }

.stand-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: start; margin-top: 48px; }
.stand-copy p { color: #D8D2BF; line-height: 1.65; font-size: 16px; font-weight: 500; margin-bottom: 22px; }
.stand-points { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 26px; }
.stand-points li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; font-size: 15.5px; }
.stand-points svg { flex: none; margin-top: 2px; color: var(--gold); }
.stand-quote { font-family: var(--font-script); font-size: 27px; color: var(--gold); transform: rotate(-1deg); display: inline-block; }

.stand-side { display: flex; flex-direction: column; gap: 26px; }
.stand-facts { display: grid; gap: 12px; }
.fact {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,251,239,.05); border: 2.5px solid rgba(254,209,0,.3);
  border-radius: 12px; padding: 13px 18px;
  transition: border-color .18s, background .18s;
}
.fact:hover { border-color: var(--gold); background: rgba(254,209,0,.08); }
.fact b {
  font-family: var(--font-display); font-size: 32px; line-height: 1; color: var(--gold);
  display: inline-flex; align-items: baseline; gap: 4px; flex: none; min-width: 92px;
}
.fact b span { font-family: var(--font-body); font-size: 13px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; color: var(--cream); }
.fact .fact-l { font-size: 13.5px; font-weight: 700; color: #C9C3B0; line-height: 1.4; }

.stand-snaps { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.taped { background: var(--cream); padding: 9px 9px 11px; border: 2px solid var(--black); box-shadow: 6px 6px 0 rgba(254,209,0,.9); transition: transform .18s var(--ease); }
.stand-snaps .sm1 { transform: rotate(-1.6deg); }
.stand-snaps .sm2 { transform: rotate(1.4deg); }
.stand-snaps .taped:hover { transform: rotate(0deg) scale(1.03); }
.stand-snaps img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

/* ---------- Find us (gold) ---------- */
#findus { background: var(--gold); }
#findus .script-eyebrow { color: var(--red); }
.findus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: stretch; margin-top: 22px; }
.info-cards { display: grid; gap: 18px; align-content: start; }
.map-col { display: flex; flex-direction: column; gap: 18px; }
.info-card {
  background: var(--cream); border: var(--border); border-radius: var(--r);
  padding: 18px 20px; box-shadow: var(--sh-sm);
  display: flex; gap: 15px; align-items: flex-start;
}
.info-icon {
  width: 42px; height: 42px; flex: none; border-radius: 10px;
  border: 2.5px solid var(--black); background: var(--gold);
  display: flex; align-items: center; justify-content: center; color: var(--black);
}
.info-card h3 { font-family: var(--font-display); font-size: 14.5px; text-transform: uppercase; margin-bottom: 4px; }
.info-card p { font-size: 14.5px; line-height: 1.55; font-weight: 600; color: #3D3416; overflow-wrap: anywhere; }
.info-card a { color: var(--black); font-weight: 800; }
.info-card a:hover { color: var(--green-deep); }
/* live weekly hours, today highlighted */
.hours-card { align-items: flex-start; }
.hours-card > div { flex: 1; }
.hours-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 10px; }
.hours-head h3 { margin-bottom: 0; }
.hero-status.is-light,
.hero-status.footer-status {
  background: var(--black); border-color: var(--black);
  font-size: 10.5px; letter-spacing: .08em; padding: 6px 11px; transform: none;
  -webkit-backdrop-filter: none; backdrop-filter: none;
}
.hero-status.is-light.is-closed .dot, .hero-status.footer-status.is-closed .dot { background: var(--red); }
.hours-list { list-style: none; display: flex; flex-direction: column; }
.hours-list li {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 0; font-size: 14px; font-weight: 700; color: #4A4438;
}
.hours-list li .lead { flex: 1; align-self: flex-end; border-bottom: 2px dotted rgba(20,17,11,.22); margin-bottom: 5px; }
.hours-list li b { font-weight: 800; font-variant-numeric: tabular-nums; }
.hours-list li.is-shut { color: var(--muted); }
.hours-list li.today {
  color: var(--black); background: rgba(254,209,0,.4);
  margin: 0 -10px; padding: 6px 10px; border-radius: 7px;
}
.hours-list li.today::after {
  content: "Today"; font-size: 9.5px; font-weight: 900; letter-spacing: .08em;
  text-transform: uppercase; background: var(--black); color: var(--gold);
  border-radius: 999px; padding: 3px 8px; margin-left: 4px;
}

.hours-delivery {
  display: flex; gap: 9px; align-items: flex-start;
  margin-top: 12px; padding-top: 12px;
  border-top: 2px dotted rgba(20,17,11,.22);
  font-size: 13.5px !important; line-height: 1.45; font-weight: 600; color: #4A4438;
}
.hours-delivery svg { color: var(--green-deep); flex: none; margin-top: 1px; }
.hours-delivery strong { color: var(--black); }

.cart-delivery {
  display: flex; gap: 8px; align-items: flex-start;
  background: var(--cream); border: 2.5px solid var(--black); border-radius: 10px;
  padding: 10px 12px; font-size: 12.5px; font-weight: 700; line-height: 1.4; color: var(--ink);
}
.cart-delivery svg { color: var(--green-deep); flex: none; margin-top: 1px; }

.map-wrap { position: relative; border: var(--border); border-radius: var(--r); box-shadow: var(--sh); overflow: hidden; flex: 1; min-height: 420px; background: var(--cream); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; filter: saturate(1.08) contrast(1.02); }
.map-pin-note {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--black); color: var(--cream);
  border: 2.5px solid var(--gold); border-radius: 8px; padding: 7px 12px;
  font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
}
.map-pin-note svg { color: var(--gold); flex: none; }
.map-cta { justify-content: center; }

/* ---------- Finale (black, dancehall) ---------- */
.finale {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--corrugation), var(--black);
  text-align: center; padding: 92px 24px 84px; color: var(--cream);
}
.finale-rays {
  position: absolute; z-index: 0; left: 50%; top: 46%;
  width: min(1100px, 150vw); aspect-ratio: 1; transform: translate(-50%,-50%);
  background: repeating-conic-gradient(from 8deg,
    rgba(254,209,0,.13) 0 7deg, transparent 7deg 14deg);
  -webkit-mask: radial-gradient(circle, #000 24%, transparent 62%);
  mask: radial-gradient(circle, #000 24%, transparent 62%);
  pointer-events: none;
}
.finale-mark {
  position: absolute; z-index: 0; right: -70px; bottom: -70px;
  width: 320px; opacity: .06; pointer-events: none;
}
.finale-inner { position: relative; z-index: 2; }
.finale .script-eyebrow { color: var(--red); text-shadow: 1px 1px 0 rgba(255,251,239,.3); }
.finale-title { margin: 4px 0 32px; }
.finale-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.finale-onelove {
  display: block; margin-top: 30px;
  font-family: var(--font-script); font-size: clamp(34px, 4vw, 46px);
  color: var(--red); transform: rotate(-3deg);
  text-shadow: 2px 2px 0 rgba(255,251,239,.25);
}
.finale-title .ft-outline {
  display: block; font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(58px, 11vw, 120px); line-height: 1;
  color: var(--gold); -webkit-text-stroke: 3px var(--black);
  text-shadow: 7px 7px 0 var(--green);
}
.finale-title .ft-sub { display: block; margin-top: 16px; font-family: var(--font-body); font-weight: 700; font-size: clamp(15px, 2vw, 19px); color: #D8D2BF; }

/* ---------- Footer ---------- */
.footer { background: var(--black); color: #B9B29F; padding: 0; }
.footer::before { content: ""; display: block; height: 12px; background: var(--ribbon); }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; padding: 48px 24px 36px; }
.footer-brand { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.footer-brand .nav-logo { width: 60px; height: 60px; }
.footer-brand p { font-size: 14.5px; line-height: 1.6; max-width: 34ch; font-weight: 500; }
.footer h4 { color: var(--gold); font-family: var(--font-display); font-size: 14px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 14px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: #D8D2BF; text-decoration: none; font-weight: 700; font-size: 14.5px; }
.footer ul a:hover { color: var(--gold); }
.footer ul li span { font-weight: 600; font-size: 14.5px; }
.footer-links a { display: inline-flex; align-items: center; gap: 9px; }
.footer-links svg { color: var(--gold); flex: none; transition: transform .15s var(--ease); }
.footer-links a:hover svg { transform: translateY(-1px) scale(1.08); }
.footer-status { margin-top: 16px; }
.footer-onelove { font-family: var(--font-script); color: var(--red); font-size: 30px; text-shadow: 1px 1px 0 rgba(255,251,239,.25); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  border-top: 2px solid rgba(254,209,0,.25);
  padding: 18px 24px 26px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 13px; font-weight: 600;
}
.footer-credits { flex-basis: 100%; font-size: 11px; font-weight: 500; color: #7C7666; line-height: 1.5; }
.footer-credits a { color: #9A937F; text-decoration: underline; }
.footer-credits a:hover { color: var(--gold); }

/* ---------- Dish detail popup ---------- */
.dish-card { cursor: pointer; }
.dish-overlay {
  position: fixed; inset: 0; z-index: 96; background: rgba(9,12,8,.72);
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  opacity: 0; pointer-events: none; transition: opacity .22s;
}
.dish-overlay.open { opacity: 1; pointer-events: auto; }
.dish-modal {
  position: fixed; z-index: 97; left: 50%; top: 50%;
  transform: translate(-50%, -48%) scale(.97);
  width: min(880px, calc(100vw - 40px)); max-height: min(88vh, 760px);
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--cream); border: var(--border); border-radius: var(--r);
  box-shadow: 14px 14px 0 rgba(9,12,8,.85), 0 40px 90px rgba(0,0,0,.5);
  overflow: hidden; opacity: 0; pointer-events: none;
  transition: opacity .22s var(--ease), transform .22s var(--ease);
}
.dish-modal[hidden] { display: none; }
.dish-modal.open { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
.dm-media { position: relative; background: var(--black); border-right: var(--border); }
/* direct child only — the chip icons inside .dish-chips keep their own size */
.dm-media > img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dm-close {
  position: absolute; top: 12px; right: 12px; z-index: 4;
  width: 40px; height: 40px; border-radius: 9px; cursor: pointer;
  background: var(--gold); color: var(--black);
  border: var(--border); box-shadow: var(--sh-sm); font-size: 16px; font-weight: 900;
}
.dm-close:active { transform: translate(2px,2px); box-shadow: none; }
.dm-body { padding: 30px 30px 26px; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; }
.dm-body h3 { font-family: var(--font-display); font-size: clamp(24px, 3vw, 32px); text-transform: uppercase; line-height: 1.05; }
.dm-desc { font-size: 15.5px; line-height: 1.55; font-weight: 600; color: #4A4438; }
.dm-block h4 {
  font-size: 11px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase;
  color: var(--green-deep); margin-bottom: 5px;
}
.dm-block p { font-size: 14.5px; line-height: 1.55; font-weight: 600; color: var(--ink); }
.dm-note {
  display: flex; gap: 9px; align-items: flex-start;
  background: rgba(254,209,0,.28); border: 2.5px solid var(--black); border-radius: 10px;
  padding: 10px 12px; font-size: 13px; font-weight: 700; line-height: 1.45; color: var(--ink);
}
.dm-note[hidden] { display: none; }
.dm-note svg { flex: none; margin-top: 1px; }
.dm-foot { display: flex; align-items: center; gap: 12px; margin-top: 6px; flex-wrap: wrap; }
.dm-foot .dm-add { flex: 1; justify-content: center; }
.dm-step { display: none; }
.dish-modal.in-cart .dm-add { display: none; }
.dish-modal.in-cart .dm-step { display: inline-flex; }
.dm-view { display: none; }
.dish-modal.in-cart .dm-view { display: inline-flex; flex: 1; justify-content: center; }
.dm-fine { font-size: 11.5px; font-weight: 600; color: var(--muted); line-height: 1.45; }
.dm-media .dish-chips { top: 14px; left: 14px; right: 64px; }

@media (max-width: 760px) {
  .dish-modal {
    grid-template-columns: 1fr; grid-template-rows: auto 1fr;
    width: 100vw; max-width: 100vw; max-height: 92vh;
    left: 0; top: auto; bottom: 0; transform: translateY(14px);
    border-radius: 18px 18px 0 0; border-bottom: 0;
    box-shadow: 0 -14px 50px rgba(0,0,0,.55);
  }
  .dish-modal.open { transform: translateY(0); }
  .dm-media { border-right: 0; border-bottom: var(--border); height: 200px; }
  .dm-body { padding: 20px 20px 26px; gap: 10px; }
  .dm-foot { gap: 10px; }
}

/* ---------- Cart drawer ---------- */
.cart-overlay { position: fixed; inset: 0; z-index: 90; background: rgba(20,17,11,.55); opacity: 0; pointer-events: none; transition: opacity .25s; }
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 95;
  width: min(430px, 100vw); background: var(--cream);
  border-left: var(--border);
  display: flex; flex-direction: column;
  transform: translateX(103%); transition: transform .3s var(--ease);
}
.cart-drawer.open { transform: none; }
.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; background: var(--corrugation), var(--black); color: var(--gold);
}
.cart-head h3 { font-family: var(--font-display); font-size: 19px; text-transform: uppercase; display: flex; align-items: center; gap: 10px; }
.cart-head-count {
  font-family: var(--font-body); font-size: 10.5px; font-weight: 900;
  letter-spacing: .08em; text-transform: uppercase;
  background: var(--green); color: var(--cream);
  border-radius: 999px; padding: 4px 10px;
}
.cart-head-count[hidden] { display: none; }
.cart-head .flag-svg { border-color: var(--gold); }
.cart-close { background: var(--gold); border: 2.5px solid var(--black); cursor: pointer; width: 38px; height: 38px; border-radius: 9px; font-size: 17px; color: var(--black); box-shadow: var(--sh-sm); }
.cart-close:active { transform: translate(2px,2px); box-shadow: none; }
.cart-items { flex: 1; overflow-y: auto; padding: 18px 22px; display: flex; flex-direction: column; gap: 12px; }
.cart-empty { text-align: center; color: var(--muted); font-weight: 700; margin-top: 40px; line-height: 1.6; }
.cart-item {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border: 2.5px solid var(--black); border-radius: 12px;
  padding: 11px 13px; box-shadow: var(--sh-sm);
}
.cart-item .ci-name { flex: 1; font-weight: 800; font-size: 14.5px; }
.cart-item .stepper { display: inline-flex; }
.ci-remove { background: none; border: 0; cursor: pointer; color: var(--muted); font-size: 16px; padding: 4px; }
.ci-remove:hover { color: var(--red); }
.cart-foot { padding: 16px 22px 20px; border-top: var(--border); display: flex; flex-direction: column; gap: 12px; background: var(--gold); }
.cart-note {
  width: 100%; border: 2.5px solid var(--black); border-radius: 10px;
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  padding: 12px 14px; resize: none; background: var(--cream); color: var(--ink);
}
.cart-note:focus { outline: 3px solid var(--green); outline-offset: -1px; }
.cart-send { width: 100%; background: var(--green); color: var(--cream); }
.cart-send:hover { background: var(--green-deep); color: var(--cream); }
.cart-price-note { font-size: 12.5px; color: #6b5600; font-weight: 700; text-align: center; }

/* Floating cart bar */
.cart-bar {
  position: fixed; left: 50%; bottom: 18px; transform: translateX(-50%) translateY(130px);
  z-index: 60; display: flex; align-items: center; gap: 14px;
  background: var(--black); color: var(--cream);
  border: var(--border); border-radius: 12px; box-shadow: var(--sh);
  padding: 9px 10px 9px 20px; cursor: pointer;
  transition: transform .3s var(--ease);
  font-family: var(--font-body);
}
.cart-bar.show { transform: translateX(-50%); }
.cart-bar .cb-count { font-weight: 900; font-size: 14.5px; color: var(--gold); letter-spacing: .03em; text-transform: uppercase; }
.cart-bar .cb-cta {
  background: var(--gold); color: var(--black); font-weight: 900; font-size: 13.5px;
  letter-spacing: .04em; text-transform: uppercase;
  padding: 10px 16px; border-radius: 8px; border: 2.5px solid var(--black);
}

/* WhatsApp float */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 58;
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #25D366; color: #fff;
  border: var(--border); box-shadow: var(--sh-sm);
  transition: transform .12s var(--ease), box-shadow .12s var(--ease);
}
.wa-float:hover { transform: translate(-1px,-1px); box-shadow: 4px 4px 0 var(--black); color: #fff; }
.wa-float:active { transform: translate(3px,3px); box-shadow: none; }

/* call button sits above WhatsApp — calling is the reliable way to check stock */
.call-float {
  position: fixed; right: 18px; bottom: 86px; z-index: 58;
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold); color: var(--black);
  border: var(--border); box-shadow: var(--sh-sm);
  transition: transform .12s var(--ease), box-shadow .12s var(--ease);
}
.call-float:hover { transform: translate(-1px,-1px); box-shadow: 4px 4px 0 var(--black); color: var(--black); }
.call-float:active { transform: translate(3px,3px); box-shadow: none; }
.call-float .float-tip {
  position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%);
  white-space: nowrap; pointer-events: none;
  background: var(--black); color: var(--gold);
  border: 2.5px solid var(--black); border-radius: 8px; padding: 7px 12px;
  font-size: 11.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  opacity: 0; transition: opacity .18s;
}
.call-float:hover .float-tip { opacity: 1; }
@media (max-width: 820px) { .call-float .float-tip { display: none; } }

.info-tip {
  margin-top: 8px; font-size: 12.5px !important; font-weight: 700 !important;
  color: var(--green-deep) !important;
}
.cart-call {
  display: flex; align-items: center; gap: 9px; text-decoration: none;
  background: var(--black); color: var(--cream);
  border: 2.5px solid var(--black); border-radius: 10px;
  padding: 11px 13px; font-size: 12.5px; font-weight: 700; line-height: 1.35;
}
.cart-call strong { color: var(--gold); white-space: nowrap; }
.cart-call svg { color: var(--gold); flex: none; }
.cart-call:hover { background: #221d13; }

/* ---------- Mobile ---------- */
@media (max-width: 1040px) {
  .menu-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .hero-copy { max-width: 560px; }
  .hero-onelove { font-size: clamp(44px, 6vw, 62px); right: 4%; }
  .stand-grid, .findus-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; max-width: 560px; }
  .how-grid::before { display: none; }
  .map-wrap, .map-wrap iframe { min-height: 340px; }
}
@media (max-width: 820px) {
  .nav { gap: 12px; grid-template-columns: 1fr auto; padding: 12px 18px; }
  .nav-actions { gap: 10px; }
  .nav-links {
    display: none; position: fixed; inset: 0; z-index: 80;
    background: var(--corrugation), var(--black);
    flex-direction: column; justify-content: center; padding: 0 10vw; gap: 26px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-family: var(--font-display); font-size: 30px; color: var(--gold) !important; border: 0; }
  .nav-cta { display: none; }
  .nav-burger { display: block; }
  /* phone hero: copy anchored to the bottom so the roof, flag mural and sun stay visible */
  .hero { align-items: flex-end; padding: calc(var(--navh) + 16px) 0 66px; }
  .hero-bg img { object-position: 50% 42%; }
  .hero-scrim {
    background:
      linear-gradient(to top, rgba(6,9,6,.97) 0%, rgba(6,9,6,.92) 30%, rgba(6,9,6,.55) 58%, rgba(6,9,6,.16) 88%, rgba(6,9,6,.30) 100%),
      linear-gradient(to top, var(--black) 0%, transparent 14%),
      radial-gradient(130% 100% at 50% 40%, transparent 46%, rgba(0,0,0,.5) 100%);
  }
  /* phones get the short version of the hero — one chip, one line of copy, no script */
  .hero-copy { max-width: none; }
  .hero-chips { gap: 8px; margin-bottom: 16px; }
  .hero-chip { display: none; }
  .hero-status { font-size: 11px; letter-spacing: .07em; padding: 8px 13px; gap: 8px; }
  .hero-sub .sub-more { display: none; }
  .hero-meta span:first-child { display: none; }
  .hero-title .ht-top { font-size: clamp(26px, 8vw, 36px); }
  .hero-title .ht-big { font-size: clamp(46px, 14.5vw, 76px); text-shadow: 5px 5px 0 var(--green), 10px 10px 22px rgba(0,0,0,.55); }
  .hero-sub { font-size: 15px; margin: 18px 0 24px; }
  .hero-cta { gap: 11px; margin-bottom: 22px; }
  .hero-cta .btn { flex: 1 1 auto; font-size: 14px; padding: 15px 18px; }
  .hero-meta { gap: 8px 16px; }
  .hero-meta span { font-size: 12.5px; }
  .hero-onelove { display: none; }
  .hero-credit { display: none; }
  .rasta-bar { width: 160px; height: 10px; }
  .menu-grid { grid-template-columns: 1fr; }
  .row-grid { grid-template-columns: 1fr; }
  .menu-bar { top: calc(var(--stick, var(--navh)) + 8px); padding: 8px; gap: 8px; }
  .menu-tabs { flex: 1; overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; }
  .menu-tabs::-webkit-scrollbar { display: none; }
  .tab { flex: none; padding: 9px 11px; font-size: 12px; }
  .tab em { display: none; }             /* counts drop out so all four tabs fit */
  .grid-toggle { display: flex; flex: none; padding: 2px; gap: 2px; }
  .grid-toggle .gt { width: 28px; height: 26px; }
  .menu-cart { margin-left: 0; width: 100%; justify-content: center; }

  /* two-up: tighter cards so both still read */
  body.cols-2 .menu-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
  body.cols-2 .dish-body { padding: 12px 12px 14px; gap: 5px; }
  body.cols-2 .dish-body h3 { font-size: 14px; }
  body.cols-2 .dish-body > p:not(.ask-line) { font-size: 12.5px; line-height: 1.4; min-height: calc(2 * 1.4em); }
  body.cols-2 .ask-line { display: none; }   /* the ASK FIRST chip already says it */
  body.cols-2 .dish-chips { top: 8px; left: 8px; right: 8px; gap: 4px; }
  /* margin-top:auto must survive here or long titles push the Add button down */
  body.cols-2 .dish-foot { flex-direction: column; align-items: stretch; gap: 8px; margin-top: auto; padding-top: 8px; }
  body.cols-2 .dish-body h3 { min-height: 2.1em; display: flex; align-items: flex-start; }
  body.cols-2 .dish-note { text-align: center; font-size: 9.5px; padding: 4px 6px; }
  body.cols-2 .add-btn { justify-content: center; padding: 9px 10px; font-size: 12.5px; }
  body.cols-2 .stepper { justify-content: center; }
  body.cols-2 .spicy-chip, body.cols-2 .ask-chip { font-size: 9.5px; padding: 4px 7px; gap: 4px; }
  body.cols-2 .dish-card.in-cart .dish-img::after { font-size: 9px; padding: 4px 7px; }
  .menu-board { padding: 4px 18px 8px; }
  .signature { grid-template-columns: 1fr; margin-top: 40px; }
  .signature img { min-height: 200px; max-height: 240px; }
  .signature-body { padding: 26px 22px 28px; }
  .board-strip { grid-template-columns: 1fr; gap: 26px; margin-top: 44px; }
  .board-poster { justify-self: center; max-width: 340px; }
  .call-band { grid-template-columns: auto 1fr; gap: 16px 18px; padding: 20px 18px; margin-top: 36px; }
  .call-ring { width: 52px; height: 52px; }
  .call-ring svg { width: 24px; height: 24px; }
  .call-actions { grid-column: 1 / -1; }
  .call-actions .btn { width: 100%; }
  .stand { padding: 60px 0; }
  .stand-band { height: clamp(220px, 54vw, 330px); margin-top: 26px; }
  .stand-grid { margin-top: 34px; gap: 34px; }
  .stand-snaps { gap: 14px; }
  .fact b { min-width: 78px; font-size: 27px; }
  .finale { padding: 68px 20px 62px; }
  .section { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cart-bar { width: calc(100vw - 96px); justify-content: space-between; }
  .marquee-track span { font-size: 15px; }
}
