/* =========================================================
   BURGER X BURGER — Landing redesign
   Cream-first, premium readable layout. Built on BxB tokens
   with refinements for spacious editorial composition.
   ========================================================= */

@font-face {
  font-family: "FC Subject Rounded";
  src: url("fonts/FCSubjectRounded-Regular.otf") format("opentype"),
       url("fonts/FCSubjectRounded-Regular.ttf") format("truetype");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "FC Subject Rounded";
  src: url("fonts/FCSubjectRounded-Bold.otf") format("opentype"),
       url("fonts/FCSubjectRounded-Bold.ttf") format("truetype");
  font-weight: 700; font-style: normal; font-display: swap;
}
@import url("https://fonts.googleapis.com/css2?family=Bagel+Fat+One&family=Caveat:wght@600;700&family=Archivo:wght@400;500;600;700;800;900&display=swap");

:root {
  /* Brand CI — exact hex from brief */
  --bxb-red:       #EB3420;
  --bxb-red-hover: #C72514;
  --bxb-red-deep:  #8A1107;
  --bxb-yellow:    #FFB810;
  --bxb-yellow-hover: #E29C00;
  --bxb-cream:     #EFE7D6;
  --bxb-cream-2:   #E6DBC4;   /* slightly deeper cream for contrast */
  --bxb-cream-3:   #F7F0E0;   /* lifted cream for cards */
  --bxb-ink:       #2E170E;   /* deep brown */
  --bxb-ink-2:     #1A0C07;   /* near-black brown for footer */
  --bxb-ink-3:     #43251A;   /* warm brown for muted text */
  --bxb-bone:      #FAF4E6;
  --bxb-fog:       #B8A892;   /* light muted brown on dark */
  --bxb-mute:      #6E4F3F;   /* muted body brown on cream */
  --bxb-hairline-cream: rgba(46,23,14,0.12);
  --bxb-hairline-dark:  rgba(255,234,200,0.10);

  /* Type */
  --font-display: "Bagel Fat One", "FC Subject Rounded", "Archivo", system-ui, sans-serif;
  --font-brand:   "FC Subject Rounded", "Archivo", system-ui, sans-serif;
  --font-body:    "FC Subject Rounded", "Archivo", system-ui, -apple-system, sans-serif;
  --font-script:  "Caveat", cursive;

  /* Scale — larger, more editorial */
  --fs-hero:    clamp(64px, 11vw, 168px);
  --fs-display: clamp(48px, 7.5vw, 116px);
  --fs-h1:      clamp(40px, 6vw, 88px);
  --fs-h2:      clamp(30px, 4vw, 56px);
  --fs-h3:      clamp(22px, 2.4vw, 30px);
  --fs-h4:      20px;
  --fs-lead:    19px;
  --fs-body:    16px;
  --fs-small:   14px;
  --fs-micro:   12px;
  --fs-eyebrow: 12px;

  /* Spacing */
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 24px;
  --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px; --s-10: 128px;

  /* Radii */
  --r-sm: 8px; --r-md: 14px; --r-lg: 22px; --r-xl: 32px; --r-pill: 999px;

  /* Shadows */
  --shadow-pop: 4px 4px 0 0 var(--bxb-ink);
  --shadow-pop-lg: 8px 8px 0 0 var(--bxb-ink);
  --shadow-pop-xl: 12px 12px 0 0 var(--bxb-ink);
  --shadow-soft: 0 18px 50px -18px rgba(46,23,14,0.30);

  /* Motion */
  --ease-pop: cubic-bezier(.34,1.56,.64,1);
  --ease-out: cubic-bezier(.22,1,.36,1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { color-scheme: light; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--bxb-ink);
  background: var(--bxb-cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
button { font: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--bxb-yellow); color: var(--bxb-ink); }

/* ---------- Container ---------- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 640px) { .container { padding: 0 20px; } }
.container--narrow { max-width: 980px; }

/* ---------- Sections ---------- */
.section { padding: var(--s-9) 0; position: relative; }
@media (max-width: 720px) { .section { padding: var(--s-7) 0; } }

.section--ink {
  background: var(--bxb-ink);
  color: var(--bxb-bone);
}
.section--ink-deep {
  background: var(--bxb-ink-2);
  color: var(--bxb-bone);
}

/* ---------- Type primitives ---------- */
.eyebrow {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bxb-red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: ""; width: 28px; height: 2px;
  background: currentColor; display: inline-block;
}
.section--ink .eyebrow { color: var(--bxb-yellow); }

.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--fs-display);
  line-height: 0.92;
  letter-spacing: -0.015em;
  margin: 0;
}
.h-section {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--fs-h1);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin: 0;
}
.h-sub {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: var(--fs-h3);
  line-height: 1.15;
  margin: 0;
}
.lead {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--bxb-ink-3);
  max-width: 58ch;
}
.section--ink .lead { color: var(--bxb-fog); }
.script {
  font-family: var(--font-script);
  font-weight: 700;
  color: var(--bxb-red);
  font-size: 1.4em;
  line-height: 0.9;
}

/* ---------- Sticker buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  border: 2px solid var(--bxb-ink);
  color: var(--bxb-ink);
  background: transparent;
  box-shadow: var(--shadow-pop);
  cursor: pointer;
  transition: transform 160ms var(--ease-pop), box-shadow 160ms ease, background-color 160ms ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translate(-2px,-2px); box-shadow: var(--shadow-pop-lg); }
.btn:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 0 var(--bxb-ink); }
.btn svg { width: 17px; height: 17px; flex: none; }

.btn--primary { background: var(--bxb-red); color: #fff; }
.btn--primary:hover { background: var(--bxb-red-hover); }
.btn--secondary { background: var(--bxb-yellow); color: var(--bxb-ink); }
.btn--secondary:hover { background: var(--bxb-yellow-hover); }
.btn--ink { background: var(--bxb-ink); color: var(--bxb-cream); }
.btn--ink:hover { background: var(--bxb-ink-2); }
.btn--cream { background: var(--bxb-cream); color: var(--bxb-ink); border-color: var(--bxb-ink); }
.btn--ghost { background: transparent; box-shadow: none; border-color: var(--bxb-ink); }
.btn--ghost:hover { background: var(--bxb-ink); color: var(--bxb-cream); box-shadow: var(--shadow-pop); }

.section--ink .btn--ghost { border-color: var(--bxb-cream); color: var(--bxb-cream); box-shadow: none; }
.section--ink .btn--ghost:hover { background: var(--bxb-cream); color: var(--bxb-ink); }

.btn--lg { padding: 18px 30px; font-size: 16px; }
.btn--sm { padding: 10px 18px; font-size: 12px; }

/* Glow CTA — used for primary hero CTA. */
.btn--glow { box-shadow: var(--shadow-pop), 0 0 0 0 rgba(255,184,16,0); }
.btn--glow:hover {
  box-shadow: var(--shadow-pop-lg), 0 0 0 8px rgba(255,184,16,0.18);
}

/* ---------- Chips ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  border: 2px solid var(--bxb-ink);
  border-radius: var(--r-pill);
  background: var(--bxb-cream);
  color: var(--bxb-ink);
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.chip--yellow { background: var(--bxb-yellow); }
.chip--red { background: var(--bxb-red); color: #fff; }
.chip--ink { background: var(--bxb-ink); color: var(--bxb-cream); border-color: var(--bxb-cream); }
.chip__dot { width: 8px; height: 8px; border-radius: var(--r-pill); background: #2EA04E; box-shadow: 0 0 0 4px rgba(46,160,78,0.20); }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(239,231,214,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--bxb-hairline-cream);
}
.nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
}
.nav__left, .nav__right { display: flex; align-items: center; gap: 28px; }
.nav__right { justify-content: flex-end; }
.nav__center {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--bxb-ink);
  padding: 4px 8px;
}
.nav__center .x { color: var(--bxb-red); margin: 0 2px; }
.nav__center img { width: 54px; height: 54px; border-radius: var(--r-pill); padding: 0; display: block; object-fit: contain; }
.nav__link {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bxb-ink);
  position: relative;
  padding: 6px 0;
  transition: color 160ms ease;
}
.nav__link::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--bxb-red);
  transform: scaleX(0); transform-origin: left;
  transition: transform 220ms var(--ease-out);
}
.nav__link:hover { color: var(--bxb-red); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__menu-btn {
  display: none;
  width: 42px; height: 42px;
  border-radius: var(--r-pill);
  border: 2px solid var(--bxb-ink);
  background: var(--bxb-cream);
  align-items: center; justify-content: center;
  color: var(--bxb-ink);
}
@media (max-width: 920px) {
  .nav__inner { grid-template-columns: auto 1fr auto; }
  .nav__left, .nav__right .nav__link { display: none; }
  .nav__menu-btn { display: inline-flex; }
}
/* Language toggle */
.nav__lang-btn {
  font-family: var(--font-brand);
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  background: transparent;
  border: 1.5px solid var(--bxb-ink);
  color: var(--bxb-ink);
  border-radius: var(--r-pill);
  padding: 4px 10px;
  cursor: pointer;
  transition: background .15s, color .15s;
  flex-shrink: 0;
}
.nav__lang-btn:hover { background: var(--bxb-ink); color: var(--bxb-cream); }
.nav__lang-btn--mobile {
  display: block; width: 100%; text-align: left;
  padding: 14px 0; border: none;
  border-bottom: 1px solid var(--bxb-rule); border-radius: 0;
  font-size: 15px; letter-spacing: .04em; margin-bottom: 4px;
  background: transparent; color: var(--bxb-ink); cursor: pointer;
}
/* Mobile drawer — slides in from the right, leaves the page visible. */
.nav__backdrop {
  position: fixed; inset: 0;
  background: rgba(46,23,14,0.45);
  backdrop-filter: blur(4px);
  z-index: 45;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms var(--ease-out);
}
.nav__backdrop[data-open="true"] { opacity: 1; pointer-events: auto; }

.nav__mobile {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(340px, 88vw);
  background: var(--bxb-cream);
  border-left: 2px solid var(--bxb-ink);
  z-index: 46;
  padding: 96px 28px 28px;
  transform: translateX(100%);
  transition: transform 360ms var(--ease-out);
  display: flex; flex-direction: column; gap: 4px;
  box-shadow: -16px 0 40px -8px rgba(46,23,14,0.25);
  overflow-y: auto;
}
.nav__mobile[data-open="true"] { transform: translateX(0); }
.nav__mobile a {
  font-family: var(--font-display);
  font-size: 28px;
  padding: 14px 0;
  border-bottom: 1px solid var(--bxb-hairline-cream);
  color: var(--bxb-ink);
}
.nav__mobile a:hover { color: var(--bxb-red); }
.nav__mobile .btn { margin-top: 20px; align-self: stretch; justify-content: center; }
.nav__mobile-close {
  position: absolute; top: 22px; right: 22px;
  width: 42px; height: 42px;
  border-radius: var(--r-pill);
  border: 2px solid var(--bxb-ink);
  background: var(--bxb-yellow);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--bxb-ink);
  box-shadow: var(--shadow-pop);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: var(--s-8) 0 var(--s-9);
  overflow: hidden;
  border-bottom: 2px solid var(--bxb-red);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
  align-items: center;
  position: relative;
}
@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; gap: var(--s-6); }
}
.hero__copy { position: relative; z-index: 2; }
.hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  line-height: 0.88;
  letter-spacing: -0.02em;
  margin: 16px 0 28px;
  text-wrap: balance;
}
.hero__title .row { display: block; }
.hero__title .row--out { white-space: nowrap; }
.hero__title .row--red { color: var(--bxb-red); }
.hero__title .row--out {
  -webkit-text-stroke: 2px var(--bxb-ink);
  color: transparent;
}
.hero__title .word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  animation: wordRise 900ms var(--ease-out) forwards;
}
.hero__lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--bxb-ink-3);
  max-width: 50ch;
  margin: 0 0 32px;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hero__proof {
  display: flex; align-items: center; gap: 20px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--bxb-hairline-cream);
  flex-wrap: wrap;
}
.hero__avatars { display: flex; }
.hero__avatar {
  width: 38px; height: 38px;
  border-radius: var(--r-pill);
  border: 2px solid var(--bxb-cream);
  margin-left: -10px;
  background-size: cover; background-position: center;
}
.hero__avatar:first-child { margin-left: 0; }
.hero__avatar--label {
  background: var(--bxb-red);
  color: #fff;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 11px;
  display: flex; align-items: center; justify-content: center;
}
.hero__rating {
  display: flex; flex-direction: column; gap: 2px;
}
.hero__rating-num {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1;
  color: var(--bxb-ink);
}
.hero__rating-num small { color: var(--bxb-yellow); font-size: 16px; margin-left: 4px; }
.hero__rating-lbl {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bxb-mute);
  font-weight: 700;
}

.hero__art {
  position: relative;
  min-height: 560px;
  display: flex; align-items: center; justify-content: center;
}
@media (max-width: 920px) {
  .hero__art { min-height: 440px; }
}

/* The hero burger photo — primary visual */
.hero__photo {
  position: relative;
  width: min(560px, 100%);
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 3px solid var(--bxb-ink);
  background: var(--bxb-cream-3);
  box-shadow: var(--shadow-pop-xl);
  overflow: hidden;
  animation: floatY 6s ease-in-out infinite;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__photo-label {
  position: absolute;
  top: -8px; left: 50%; transform: translateX(-50%);
  background: var(--bxb-ink);
  color: var(--bxb-yellow);
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  border: 2px solid var(--bxb-ink);
  z-index: 3;
  white-space: nowrap;
}

/* Decorative sticker — "Made Fresh by Order" */
.hero__sticker {
  position: absolute;
  width: 168px; height: 168px;
  border-radius: 50%;
  background: var(--bxb-yellow);
  border: 2px solid var(--bxb-ink);
  box-shadow: var(--shadow-pop);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-script);
  font-weight: 700;
  text-align: center;
  font-size: 22px;
  color: var(--bxb-ink);
  line-height: 1;
  z-index: 3;
  animation: spinSlow 18s linear infinite;
}
.hero__sticker--tl { top: 4%; left: -2%; }
.hero__sticker--br {
  bottom: 6%; right: -3%;
  background: #3a7d44; color: #e8f5e0;
  font-size: 18px;
  letter-spacing: 0.06em;
}
  font-family: var(--font-brand);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px;
  line-height: 1.2;
}
@media (max-width: 920px) {
  .hero__sticker { width: 120px; height: 120px; font-size: 17px; }
  .hero__sticker--br { font-size: 9px; }
}

/* Hero stars in corners */
.hero__star {
  position: absolute;
  color: var(--bxb-red);
  animation: spinSlow 22s linear infinite;
  pointer-events: none;
}
.hero__star--1 { top: 4%; right: 38%; width: 36px; height: 36px; }
.hero__star--2 { bottom: 12%; left: 44%; width: 28px; height: 28px; animation-direction: reverse; }

/* Burger sub-images that flank the hero */
.hero__chip {
  position: absolute;
  width: 130px; height: 130px;
  border-radius: 50%;
  border: 2px solid var(--bxb-ink);
  overflow: hidden;
  box-shadow: var(--shadow-pop);
  background-size: cover; background-position: center;
  z-index: 2;
}
.hero__chip--tl { top: 18%; left: 8%; }
.hero__chip--br { bottom: 8%; right: 12%; width: 100px; height: 100px; }
@media (max-width: 920px) {
  .hero__chip { display: none; }
}

@keyframes wordRise {
  to { transform: translateY(0); opacity: 1; }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes spinSlow {
  to { transform: rotate(360deg); }
}

/* ---------- Story / About ---------- */
.story {
  position: relative;
  border-top: 2px solid var(--bxb-red);
  border-bottom: 2px solid var(--bxb-red);
}
.story__head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--s-7);
  align-items: end;
  margin-bottom: 60px;
}
@media (max-width: 820px) { .story__head { grid-template-columns: 1fr; gap: var(--s-5); } }

.story__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 820px) { .story__pillars { grid-template-columns: 1fr; } }

.pillar {
  background: var(--bxb-cream-3);
  border: 2px solid var(--bxb-ink);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-pop);
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
  transition: transform 220ms var(--ease-pop), box-shadow 220ms ease;
}
.pillar:hover { transform: translate(-2px,-2px); box-shadow: var(--shadow-pop-lg); }
.pillar__num {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 0.9;
  color: var(--bxb-red);
}
.pillar__title {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 22px;
}
.pillar__copy { color: var(--bxb-mute); font-size: 15px; line-height: 1.55; }

/* ---------- Story mascot strip ---------- */
.story__mascot {
  margin-top: 56px;
  text-align: center;
}
.story__mascot img {
  max-width: min(860px, 100%);
  height: auto;
  display: inline-block;
  mix-blend-mode: multiply;
}

/* ---------- Featured Menu (Beefian-inspired left card + right photo) ---------- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 820px) { .feature { grid-template-columns: 1fr; } }

.feature__panel {
  background: var(--bxb-ink);
  color: var(--bxb-cream);
  border: 2px solid var(--bxb-ink);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-pop-lg);
  padding: 36px;
  display: flex; flex-direction: column; gap: 20px;
}
.feature__panel .eyebrow { color: var(--bxb-yellow); }
.feature__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  color: var(--bxb-cream);
}
.feature__list { display: flex; flex-direction: column; gap: 0; margin-top: 6px; }
.feature__row {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid var(--bxb-hairline-dark);
  cursor: pointer;
  transition: padding-left 200ms var(--ease-out);
}
.feature__row:last-child { border-bottom: 0; }
.feature__row:hover { padding-left: 8px; }
.feature__row--lead .feature__name { color: var(--bxb-yellow); }
.feature__row--lead .feature__desc { color: var(--bxb-bone); }
.feature__name {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 18px;
  color: var(--bxb-cream);
}
.feature__desc {
  font-size: 13px;
  color: var(--bxb-fog);
  margin-top: 6px;
  line-height: 1.5;
  max-width: 42ch;
}
.feature__price {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 16px;
  color: var(--bxb-yellow);
}
.feature__panel .btn--secondary {
  background: #fff;
  color: var(--bxb-ink);
}
.feature__panel .btn--secondary:hover {
  background: var(--bxb-cream);
}

/* Inline minimal menu links — sit beside the primary CTA */
.feature__menu-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--bxb-fog);
}
.feature__menu-links a {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--bxb-cream);
  border-bottom: 1px solid rgba(255,234,200,0.35);
  padding-bottom: 2px;
  transition: color 160ms ease, border-color 160ms ease;
}
.feature__menu-links a:hover {
  color: var(--bxb-yellow);
  border-color: var(--bxb-yellow);
}
  border-radius: var(--r-lg);
  border: 2px solid var(--bxb-ink);
  overflow: hidden;
  background: var(--bxb-cream-2);
  box-shadow: var(--shadow-pop-lg);
  min-height: 420px;
}
.feature__photo img { width: 100%; height: 100%; object-fit: cover; }

/* Category tabs above feature */
.cat-tabs {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.cat-tab {
  padding: 10px 20px;
  border-radius: var(--r-pill);
  border: 2px solid var(--bxb-ink);
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  background: transparent;
  color: var(--bxb-ink);
  transition: all 200ms ease;
}
.cat-tab:hover { background: var(--bxb-ink); color: var(--bxb-cream); }
.cat-tab[aria-selected="true"] {
  background: var(--bxb-red);
  color: #fff;
  border-color: var(--bxb-ink);
  box-shadow: var(--shadow-pop);
}

.cat-meta {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cat-meta__copy { max-width: 48ch; color: var(--bxb-mute); font-size: 16px; line-height: 1.55; }

/* ---------- Newest items radial layout ---------- */
.radial {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  align-items: center;
  min-height: 520px;
}
@media (max-width: 920px) {
  .radial { grid-template-columns: 1fr; gap: 40px; }
}
.radial__col { display: flex; flex-direction: column; gap: 32px; }
.radial__col--left { text-align: right; align-items: flex-end; }
.radial__col--right { text-align: left; }
@media (max-width: 920px) {
  .radial__col--left, .radial__col--right { text-align: left; align-items: flex-start; }
}
.radial__item {
  max-width: 280px;
  position: relative;
  padding: 4px 0;
}
.radial__item-head {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--bxb-ink);
  margin-bottom: 8px;
}
.radial__col--left .radial__item-head { justify-content: flex-end; flex-direction: row-reverse; }
@media (max-width: 920px) {
  .radial__col--left .radial__item-head { justify-content: flex-start; flex-direction: row; }
}
.radial__item-head .arr {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r-pill);
  border: 2px solid var(--bxb-ink);
  background: var(--bxb-cream);
  transition: transform 200ms var(--ease-pop), background 200ms;
}
.radial__item:hover .arr { transform: rotate(-25deg); background: var(--bxb-yellow); }
.radial__item-copy { font-size: 14px; color: var(--bxb-mute); line-height: 1.5; }

.radial__center {
  position: relative;
  width: 420px; max-width: 100%;
  aspect-ratio: 3/4;
  border-radius: 50%;
  border: 3px solid var(--bxb-ink);
  overflow: hidden;
  background: var(--bxb-cream-3);
  box-shadow: var(--shadow-pop-xl);
  justify-self: center;
}
.radial__center img { width: 100%; height: 100%; object-fit: cover; }
.radial__center::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(46,23,14,0.25), transparent 60%);
  pointer-events: none;
}

/* ---------- Atmosphere (full bleed photo) ---------- */
.atmosphere {
  padding: 0 0 var(--s-9);
}
.atmosphere__head {
  text-align: center;
  margin-bottom: var(--s-7);
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.atmosphere__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 820px) { .atmosphere__grid { grid-template-columns: 1fr; } }

.atmosphere__photo {
  position: relative;
  height: clamp(360px, 44vw, 520px);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--bxb-ink);
  border: 3px solid var(--bxb-ink);
  box-shadow: var(--shadow-pop-lg);
  transition: transform 260ms var(--ease-pop), box-shadow 260ms;
}
.atmosphere__photo:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow-pop-xl); }
.atmosphere__city-tag {
  position: absolute; top: 18px; left: 18px;
  display: flex; align-items: center; gap: 10px;
  z-index: 2;
}
.atmosphere__photo img { width: 100%; height: 100%; object-fit: cover; }
.atmosphere__photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(46,23,14,0.85) 0%, rgba(46,23,14,0.45) 35%, rgba(46,23,14,0.15) 60%, transparent 100%);
  pointer-events: none;
}
.atmosphere__caption {
  position: absolute; left: 28px; right: 28px; bottom: 24px;
  color: #fff;
  display: flex; align-items: end; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  z-index: 2;
}
.atmosphere__caption h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1; margin: 0;
  color: #fff;
}
.atmosphere__caption p {
  color: rgba(255,234,200,0.9);
  font-size: 14px;
  max-width: 32ch;
  line-height: 1.5;
  margin: 0;
}
.atmosphere__blurb {
  margin-top: 10px !important;
  color: rgba(255,255,255,0.92) !important;
  max-width: 40ch !important;
}

/* ---------- BRANCHES ---------- */
.branches-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 820px) { .branches-grid { grid-template-columns: 1fr; } }
.branch {
  background: var(--bxb-cream-3);
  border: 2px solid var(--bxb-ink);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-pop-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 260ms var(--ease-pop), box-shadow 260ms;
}
.branch:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow-pop-xl); }
.branch__map {
  height: 260px;
  border-bottom: 2px solid var(--bxb-ink);
  position: relative;
  overflow: hidden;
  background: var(--bxb-cream-2);
}
.branch__map iframe { width: 100%; height: 100%; border: 0; filter: saturate(0.85) contrast(1.05); }
.branch__map-overlay {
  position: absolute; top: 14px; right: 14px;
  display: flex; gap: 8px;
}
.branch__body { padding: 28px 28px 26px; display: flex; flex-direction: column; gap: 16px; flex: 1; }
.branch__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.branch__name {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1;
  margin: 0;
  color: var(--bxb-ink);
}
.branch__code {
  font-family: var(--font-brand);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--bxb-mute);
  text-transform: uppercase;
  margin-top: 4px;
}
.branch__rows { display: flex; flex-direction: column; gap: 10px; }
.branch__row {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14px; color: var(--bxb-ink-3); line-height: 1.5;
}
.branch__row svg { width: 17px; height: 17px; color: var(--bxb-red); flex: none; margin-top: 2px; }
.branch__row b { color: var(--bxb-ink); }
.branch__ctas { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px; }

/* ---------- Reviews ---------- */
.reviews {
  position: relative;
}
.reviews__scroller {
  display: flex; gap: 20px;
  overflow-x: auto;
  padding: 8px calc(50% - 50vw + max(32px, (100vw - 1280px)/2)) 24px;
  margin: 0 calc(50% - 50vw);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-padding-left: max(32px, calc((100vw - 1280px)/2 + 32px));
}
.reviews__scroller::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 360px;
  background: var(--bxb-ink);
  color: var(--bxb-cream);
  border: 2px solid var(--bxb-ink);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-pop-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  scroll-snap-align: start;
  position: relative;
}
.review-card--alt { background: var(--bxb-yellow); color: var(--bxb-ink); }
.review-card--alt .review-card__rating { color: var(--bxb-ink); }
.review-card--alt .review-card__quote { color: var(--bxb-ink); }
.review-card--alt .review-card__author small { color: var(--bxb-ink); opacity: 0.75; }
.review-card--red { background: var(--bxb-red); color: #fff; border-color: var(--bxb-ink); }
.review-card--red .review-card__rating { color: var(--bxb-yellow); }
.review-card__rating { color: var(--bxb-yellow); font-size: 18px; letter-spacing: 4px; }
.review-card__quote { font-size: 16px; line-height: 1.55; flex: 1; }
.review-card__quote::before { content: "\201C"; font-family: var(--font-display); font-size: 60px; line-height: 0.3; vertical-align: top; margin-right: 4px; color: currentColor; opacity: 0.4; }
.review-card__author { display: flex; align-items: center; gap: 12px; }
.review-card__avatar {
  width: 44px; height: 44px;
  border-radius: var(--r-pill);
  border: 2px solid currentColor;
  background-size: cover; background-position: center;
  flex: none;
}
.review-card__author strong { font-family: var(--font-brand); font-weight: 700; font-size: 14px; display: block; }
.review-card__author small { font-size: 12px; opacity: 0.7; }

.reviews__controls {
  display: flex; gap: 10px; justify-content: center;
  margin-top: 32px;
}
.reviews__btn {
  width: 52px; height: 52px;
  border-radius: var(--r-pill);
  border: 2px solid var(--bxb-ink);
  background: var(--bxb-cream);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-pop);
  transition: transform 160ms var(--ease-pop), box-shadow 160ms, background 160ms;
  color: var(--bxb-ink);
}
.reviews__btn:hover { background: var(--bxb-yellow); transform: translate(-1px,-1px); box-shadow: var(--shadow-pop-lg); }
.reviews__btn:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 0 var(--bxb-ink); }

/* ---------- Merch ---------- */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 1000px) { .merch-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .merch-grid { grid-template-columns: 1fr; } }
.merch-card {
  background: var(--bxb-cream-3);
  border: 2px solid var(--bxb-ink);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-pop);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 240ms var(--ease-pop), box-shadow 240ms;
}
.merch-card:hover { transform: translate(-2px,-2px); box-shadow: var(--shadow-pop-lg); }
.merch-card__img {
  aspect-ratio: 4/5;
  background: var(--bxb-cream-2);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 2px solid var(--bxb-ink);
  position: relative;
  overflow: hidden;
}
.merch-card__img img { width: 100%; height: 100%; object-fit: cover; }
.merch-card__img--ink { background: var(--bxb-ink); }
.merch-card__img--red { background: var(--bxb-red); }
.merch-card__img--yellow { background: var(--bxb-yellow); }
.merch-card__tag {
  position: absolute; top: 12px; left: 12px;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  border: 2px solid var(--bxb-ink);
  background: var(--bxb-yellow);
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bxb-ink);
}
.merch-card__body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.merch-card__name { font-family: var(--font-brand); font-weight: 700; font-size: 17px; }
.merch-card__desc { font-size: 13px; color: var(--bxb-mute); flex: 1; line-height: 1.5; }
.merch-card__foot { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; }
.merch-card__price { font-family: var(--font-display); font-size: 24px; color: var(--bxb-red); }
.merch-card__buy {
  width: 38px; height: 38px;
  border-radius: var(--r-pill);
  border: 2px solid var(--bxb-ink);
  background: var(--bxb-yellow);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 200ms var(--ease-pop), background 200ms;
}
.merch-card__buy:hover { transform: rotate(-15deg); background: var(--bxb-red); color: #fff; }

/* ---------- Order / Contact ---------- */
.order-card {
  background: var(--bxb-cream-3);
  color: var(--bxb-ink);
  border: 2px solid var(--bxb-ink);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-pop-xl);
  padding: 56px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 920px) {
  .order-card { grid-template-columns: 1fr; padding: 36px; gap: 32px; }
}
.order-card__copy { display: flex; flex-direction: column; gap: 20px; }
.order-links { display: flex; flex-wrap: wrap; gap: 12px; }
.order-link {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  border: 2px solid var(--bxb-ink);
  border-radius: var(--r-md);
  background: #fff;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 14px;
  color: var(--bxb-ink);
  box-shadow: var(--shadow-pop);
  transition: transform 200ms var(--ease-pop), box-shadow 200ms;
}
.order-link:hover { transform: translate(-2px,-2px); box-shadow: var(--shadow-pop-lg); }
.order-link__icon {
  width: 36px; height: 36px;
  border-radius: var(--r-pill);
  background: var(--bxb-ink);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  flex: none;
  font-family: var(--font-display);
  font-size: 14px;
}
.order-link__icon--line { background: #06C755; }
.order-link__icon--grab { background: #00B14F; }
.order-link__icon--man { background: #FF6F00; }
.order-link__icon--panda { background: #D70F64; }
.order-link__icon--shopee { background: #EE4D2D; }
.order-link__icon--phone { background: var(--bxb-red); }
.order-link__icon--mail { background: var(--bxb-ink); }
.order-link__sub { font-size: 11px; color: var(--bxb-mute); font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; }

/* Main email — featured full-width, highlighted so it reads as the primary contact */
.order-link--main {
  flex-basis: 100%;
  order: -1;
  background: var(--bxb-yellow);
  border-color: var(--bxb-ink);
  box-shadow: var(--shadow-pop-lg);
}
.order-link--main .order-link__sub {
  color: var(--bxb-ink);
  text-transform: none;
  font-size: 13px;
  letter-spacing: 0.02em;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bxb-ink-2);
  color: var(--bxb-fog);
  padding: var(--s-9) 0 var(--s-5);
  position: relative;
  overflow: hidden;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (max-width: 820px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 520px) { .footer__top { grid-template-columns: 1fr; } }
.footer__brand h3 {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
  color: var(--bxb-cream);
  margin: 0 0 14px;
}
.footer__brand h3 .x { color: var(--bxb-red); }
.footer__brand p { color: var(--bxb-fog); max-width: 30ch; line-height: 1.55; }
.footer h5 {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bxb-cream);
  margin: 0 0 16px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a { color: var(--bxb-fog); font-size: 14px; transition: color 160ms ease; }
.footer a:hover { color: var(--bxb-yellow); }

.footer__bottom {
  border-top: 1px solid var(--bxb-hairline-dark);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  font-size: 12px;
  color: var(--bxb-fog);
}
.footer__socials { display: flex; gap: 10px; }
.footer__social {
  width: 40px; height: 40px;
  border-radius: var(--r-pill);
  border: 1px solid var(--bxb-hairline-dark);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--bxb-fog);
  transition: all 160ms ease;
}
.footer__social:hover { background: var(--bxb-yellow); color: var(--bxb-ink); border-color: var(--bxb-yellow); }

/* Large footer wordmark */
.footer__giant {
  font-family: var(--font-display);
  font-size: clamp(80px, 18vw, 280px);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 2px var(--bxb-ink-3);
  letter-spacing: -0.02em;
  margin: 60px 0 32px;
  white-space: nowrap;
  overflow: hidden;
  text-align: center;
}
.footer__giant .x { -webkit-text-stroke-color: var(--bxb-red); }

/* ---------- Scroll reveal system ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal="up"] { transform: translateY(40px); }
[data-reveal="fade"] { transform: none; }
[data-reveal="scale"] { transform: scale(0.94); }
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero__title .word { opacity: 1 !important; transform: none !important; animation: none !important; }
  .hero__photo, .hero__sticker, .hero__star { animation: none !important; }
}

/* ---------- Helpers ---------- */
.center-text { text-align: center; }
.center-text .eyebrow { justify-content: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.divider {
  height: 1px;
  background: var(--bxb-hairline-cream);
  margin: 0;
  border: 0;
}
.section--ink .divider { background: var(--bxb-hairline-dark); }

/* Decorative noise overlay */
.noise {
  position: relative;
}
.noise::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.7'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* Decorative wave divider */
.wave-divider {
  display: block; width: 100%; height: 32px;
  background: var(--bxb-ink);
  --wave: 24px;
  -webkit-mask: radial-gradient(var(--wave) at 50% 0%, transparent 98%, #000) 50% / calc(var(--wave) * 2) 100%;
          mask: radial-gradient(var(--wave) at 50% 0%, transparent 98%, #000) 50% / calc(var(--wave) * 2) 100%;
}

/* =============================================================
   CNX THE CRUNCHY — branch exclusive section
   ============================================================= */
.cnx-crunchy { position: relative; }

.crunchy {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  min-height: 600px;
}
@media (max-width: 980px) {
  .crunchy { grid-template-columns: 1fr; gap: 28px; }
}

.crunchy__col { display: flex; flex-direction: column; gap: 24px; }
.crunchy__col--left { text-align: right; align-items: flex-end; }
.crunchy__col--right { text-align: left; }
@media (max-width: 980px) {
  .crunchy__col--left, .crunchy__col--right { text-align: left; align-items: flex-start; }
}
.crunchy__detail { max-width: 300px; }
.crunchy__detail-head {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bxb-red);
  margin-bottom: 8px;
}
.crunchy__col--left .crunchy__detail-head { flex-direction: row-reverse; }
@media (max-width: 980px) {
  .crunchy__col--left .crunchy__detail-head { flex-direction: row; }
}
.crunchy__detail p {
  font-size: 15px;
  color: var(--bxb-ink-3);
  line-height: 1.55;
  margin: 0;
}

/* CENTRE — circular burger photo + badge stacked below */
.crunchy__center-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 24px;
  justify-self: center;
  position: relative;
}
.crunchy__center {
  position: relative;
  width: 440px; max-width: 100%;
  aspect-ratio: 3/4;
  border-radius: 50%;
  border: 3px solid var(--bxb-ink);
  overflow: hidden;
  background: var(--bxb-ink-2);
  box-shadow: var(--shadow-pop-xl);
}
.crunchy__center img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.05);
}
.crunchy__center::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(46,23,14,0) 60%, rgba(46,23,14,0.20) 100%);
  pointer-events: none;
}

/* CNX THE CRUNCHY badge — sits below the photo */
.crunchy__badge {
  position: static;
  transform: none;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  pointer-events: none;
  margin-top: 4px;
}
.crunchy__badge-pill {
  background: var(--bxb-red);
  color: #fff;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.22em;
  padding: 7px 22px;
  border-radius: var(--r-pill);
  border: 2px solid var(--bxb-ink);
  box-shadow: var(--shadow-pop);
}
.crunchy__badge-name {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.9;
  color: var(--bxb-ink);
  letter-spacing: 0;
  text-align: center;
  text-shadow: none;
}
.crunchy__badge-swoosh {
  display: block;
  width: 160px;
  height: 10px;
  background: var(--bxb-red);
  border: 2px solid var(--bxb-ink);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  transform: rotate(-2deg);
  box-shadow: 2px 2px 0 0 var(--bxb-ink);
}

/* 5-star rating centred above the burger photo */
.crunchy__stars {
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; gap: 4px;
  color: var(--bxb-red);
}

/* Corner labels — "Beef Version" / "Pork Version" check chips */
.crunchy__corner {
  position: absolute;
  z-index: 3;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: var(--bxb-yellow);
  color: var(--bxb-ink);
  border: 2px solid var(--bxb-ink);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-pop);
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.crunchy__corner--tl { top: 6%; left: 4%; }
.crunchy__corner--tr { top: 6%; right: 4%; background: var(--bxb-cream); }

.crunchy__cta {
  display: flex; justify-content: center; gap: 14px; flex-wrap: wrap;
  margin-top: 48px;
}
/* =============================================================
   VEGGIE — clean centered banner (rebuilt)
   ============================================================= */
.vbanner {
  width: 100%;
  background: #4F8E3A;
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.06) 0 14px, transparent 14px 28px);
  border: 3px solid var(--bxb-ink);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-pop-xl);
  color: #fff;
  padding: 44px 32px 38px;
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transform: rotate(-0.6deg);
  margin-bottom: 16px;
}
.vbanner::before, .vbanner::after {
  content: "★";
  position: absolute;
  font-family: var(--font-display);
  color: var(--bxb-yellow);
  opacity: 0.16;
  font-size: 100px;
  line-height: 1;
  pointer-events: none;
}
.vbanner::before { left: 24px; top: -8px; transform: rotate(-14deg); }
.vbanner::after  { right: 24px; bottom: -24px; transform: rotate(14deg); }

.vbanner__leaf {
  width: 48px; height: 48px;
  border-radius: var(--r-pill);
  background: #fff;
  color: var(--bxb-ink);
  border: 2px solid var(--bxb-ink);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 3px 3px 0 0 var(--bxb-ink);
  margin-bottom: 2px;
  animation: vbannerBob 3.6s ease-in-out infinite;
}
.vbanner__leaf svg { width: 28px !important; height: 28px !important; }

.vbanner__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 120px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.9;
  text-shadow: 4px 4px 0 var(--bxb-ink);
  display: block;
}
.vbanner__sub {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: clamp(11px, 1.1vw, 15px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.95;
  max-width: 56ch;
  line-height: 1.4;
  margin-top: 4px;
}

@media (max-width: 720px) {
  .vbanner { padding: 30px 22px 28px; }
  .vbanner__leaf { width: 40px; height: 40px; }
  .vbanner__leaf svg { width: 24px !important; height: 24px !important; }
  .vbanner__title { font-size: 40px; text-shadow: 3px 3px 0 var(--bxb-ink); }
  .vbanner__sub { font-size: 10px; letter-spacing: 0.16em; }
  .vbanner::before, .vbanner::after { font-size: 64px; }
}

@keyframes vbannerBob {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50%      { transform: translateY(-5px) rotate(4deg); }
}
/* Old banner not used by markup anymore — hide to avoid layout surprises */
.veggie__head-banner { display: none !important; }

.veggie {
  background: linear-gradient(180deg, var(--bxb-cream) 0%, #F7F0E0 100%);
  border-top: 2px solid var(--bxb-red);
  border-bottom: 2px solid var(--bxb-red);
  position: relative;
}
.veggie__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
/* Pre-story — small intro card above the green banner */
.veggie__prestory {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.veggie__prestory .eyebrow { color: #4F8E3A; }
.veggie__prestory p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--bxb-ink-3);
  max-width: 58ch;
  margin: 0;
}
.veggie__prestory p b {
  color: var(--bxb-ink);
  font-weight: 700;
}
.veggie__prestory p em {
  font-family: var(--font-script);
  font-weight: 700;
  font-style: normal;
  color: var(--bxb-red);
  font-size: 1.3em;
  line-height: 0.8;
}

.veggie__head {
  max-width: 100%;
}
.veggie__head-banner {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 28px;
  padding: 36px 28px;
  background: #4F8E3A;
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.06) 0 14px, transparent 14px 28px);
  border: 3px solid var(--bxb-ink);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-pop-xl);
  color: #fff;
  transform: rotate(-0.8deg);
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}
.veggie__head-leaf {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.veggie__head-banner > .veggie__head-leaf:first-of-type { left: 32px; }
.veggie__head-banner > .veggie__head-leaf:last-of-type { right: 32px; }

.veggie__head-banner-text {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  line-height: 1;
  margin: 0 auto;
}
.veggie__head-banner::before, .veggie__head-banner::after {
  content: "★";
  position: absolute;
  font-family: var(--font-display);
  color: var(--bxb-yellow);
  opacity: 0.18;
  font-size: 120px;
  line-height: 1;
  pointer-events: none;
}
.veggie__head-banner::before { left: -10px; top: -30px; transform: rotate(-12deg); }
.veggie__head-banner::after  { right: -10px; bottom: -50px; transform: rotate(12deg); }

.veggie__head-leaf {
  width: 76px; height: 76px;
  border-radius: var(--r-pill);
  background: var(--bxb-yellow);
  color: var(--bxb-ink);
  border: 3px solid var(--bxb-ink);
  display: inline-flex; align-items: center; justify-content: center;
  flex: none;
  box-shadow: 3px 3px 0 0 var(--bxb-ink);
  animation: bxbLeafBob 3.6s ease-in-out infinite;
}
.veggie__head-leaf--alt {
  background: #FFF4DF;
  animation-delay: 1.8s;
}
@keyframes bxbLeafBob {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50%      { transform: translateY(-6px) rotate(4deg); }
}

.veggie__head-banner-text {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  line-height: 1;
}
.veggie__head-banner-text strong {
  font-family: var(--font-display);
  font-size: clamp(72px, 13vw, 180px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  text-shadow: 5px 5px 0 var(--bxb-ink);
  line-height: 0.85;
  white-space: nowrap;
}
.veggie__head-banner-text span {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: clamp(13px, 1.5vw, 20px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.95;
  max-width: 60ch;
  line-height: 1.3;
}

.veggie__head-leaf {
  width: 120px; height: 120px;
}
.veggie__head-leaf svg {
  width: 72px !important; height: 72px !important;
}

@media (max-width: 720px) {
  .veggie__head-banner { padding: 20px 18px; gap: 14px; flex-wrap: wrap; }
  .veggie__head-leaf { width: 64px !important; height: 64px !important; }
  .veggie__head-leaf svg { width: 36px !important; height: 36px !important; }
  .veggie__head-banner-text strong { font-size: 52px; text-shadow: 3px 3px 0 var(--bxb-ink); white-space: normal; }
  .veggie__head-banner-text span { font-size: 11px; letter-spacing: 0.16em; }
}
.veggie__title {
  text-align: center;
  line-height: 0.94;
}
.veggie__title .script {
  font-family: var(--font-script);
  color: #4F8E3A;
  font-size: 0.95em;
  line-height: 0.85;
  display: inline-block;
  -webkit-text-stroke: 0;
}
.veggie .lead { text-align: center; color: var(--bxb-ink-3); }

/* HERO CARD — image left, copy right (Sunrise-style) */
.veggie__hero {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  margin-bottom: 80px;
  background: #fff;
  border: 2px solid var(--bxb-ink);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-pop-xl);
  overflow: hidden;
}
@media (max-width: 820px) {
  .veggie__hero { grid-template-columns: 1fr; }
}
.veggie__hero-photo {
  position: relative;
  min-height: 520px;
  background: var(--bxb-cream-2);
  overflow: hidden;
}
.veggie__hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.veggie__hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(46,23,14,0.55) 100%);
  pointer-events: none;
}
.veggie__hero-script {
  position: absolute;
  left: 24px; bottom: 24px;
  color: #fff;
  font-family: var(--font-script);
  font-weight: 700;
  font-size: 42px;
  line-height: 0.9;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.25);
  z-index: 2;
}
.veggie__hero-script span { font-size: 0.62em; opacity: 0.92; }

.veggie__hero-body {
  padding: 44px 44px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
}
@media (max-width: 640px) { .veggie__hero-body { padding: 28px; } }
.veggie__hero-name {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  color: var(--bxb-ink);
  margin: 0;
  position: relative;
  display: inline-block;
  width: fit-content;
}
.veggie__hero-name .dot { color: var(--bxb-red); }
.veggie__hero-name::after {
  /* Hand-drawn circle around the headline word — like the Sunrise ref */
  content: "";
  position: absolute;
  left: -8px; right: -8px; top: -6px; bottom: -6px;
  border: 3px solid #6BB04A;
  border-radius: 50% / 38%;
  transform: rotate(-2deg);
  pointer-events: none;
  opacity: 0.85;
}
.veggie__hero-desc { color: var(--bxb-mute); font-size: 15px; line-height: 1.6; max-width: 46ch; }
.veggie__addons-label {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bxb-ink);
  margin-bottom: 10px;
}
.veggie__addons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
@media (max-width: 640px) {
  .veggie__addons { grid-template-columns: repeat(3, 1fr); }
}
.veggie__addon {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 12px;
  font-family: var(--font-brand);
  font-weight: 700;
  color: var(--bxb-ink);
  text-align: center;
  border: 0; background: none; cursor: pointer;
}
.veggie__addon-thumb {
  position: relative;
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  border: 2px solid var(--bxb-ink);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  background-size: cover; background-position: center;
}
.veggie__addon-thumb--add {
  background: var(--bxb-cream); color: var(--bxb-mute);
  font-size: 24px;
}
.veggie__addon:hover .veggie__addon-thumb { transform: translateY(-2px); }

/* SIX-STEP RAIL — compact build-your-own list inside the hero body */
.veggie__steprail {
  list-style: none;
  margin: 4px 0 8px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 22px;
}
@media (max-width: 540px) { .veggie__steprail { grid-template-columns: 1fr; } }
.veggie__steprail-item {
  display: flex; align-items: baseline; gap: 10px;
  padding-bottom: 9px;
  border-bottom: 1px dashed rgba(46,23,14,0.22);
}
.veggie__steprail-num {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1;
  color: var(--bxb-red);
  flex: none;
}
.veggie__steprail-title {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 14px;
  color: var(--bxb-ink);
}

/* PLANT-BASED HAMBURG — smaller signature box under the builder */
.veggie__hamburg {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  background: var(--bxb-cream-3);
  border: 2px solid var(--bxb-ink);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-pop-lg);
  overflow: hidden;
  margin-top: 28px;
  margin-bottom: 80px;
  max-width: none;
  min-height: 320px;
  grid-template-columns: 1.2fr 1fr;
}
@media (max-width: 760px) { .veggie__hamburg { grid-template-columns: 1fr; max-width: none; } }
.veggie__hamburg-photo { position: relative; min-height: 150px; border-right: 2px solid var(--bxb-ink); overflow: hidden; }
@media (max-width: 760px) { .veggie__hamburg-photo { border-right: 0; border-bottom: 2px solid var(--bxb-ink); min-height: 220px; } }
.veggie__hamburg-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.veggie__hamburg-body {
  padding: 16px 32px;
  display: flex; flex-direction: column; gap: 8px;
  justify-content: center;
}
@media (max-width: 640px) { .veggie__hamburg-body { padding: 26px; } }
.veggie__hamburg-name {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 0.98;
  margin: 0;
}
.veggie__hamburg-name .dot { color: var(--bxb-red); }
.veggie__hamburg-name { font-size: clamp(22px, 2.4vw, 30px); }
.veggie__hamburg-desc { color: var(--bxb-mute); font-size: 13px; line-height: 1.45; max-width: 48ch; }
.patty-picker { margin-top: 6px; }
.patty-picker__label {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bxb-mute);
  margin-bottom: 10px;
}
.patty-picker__opts { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.patty-opt {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--bxb-ink);
  border-radius: var(--r-pill);
  background: var(--bxb-cream);
  cursor: pointer;
  user-select: none;
  transition: background 0.15s, color 0.15s, transform 0.1s;
}
.patty-opt input { position: absolute; opacity: 0; pointer-events: none; }
.patty-opt__box {
  width: 16px; height: 16px; flex: none;
  border: 2px solid var(--bxb-ink);
  border-radius: 5px;
  background: #fff;
  position: relative;
}
.patty-opt input:checked + .patty-opt__box { background: #3a7d44; border-color: #3a7d44; }
.patty-opt input:checked + .patty-opt__box::after {
  content: ""; position: absolute; left: 3px; top: 0px;
  width: 5px; height: 9px;
  border: solid #fff; border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.patty-opt__text { font-family: var(--font-brand); font-weight: 700; }
/* Main option — bigger */
.patty-opt--main { padding: 9px 18px; font-size: 15px; }
.patty-opt--main input:checked ~ .patty-opt__text { color: #2f6b3a; }
/* Alt options — smaller */
.patty-opt--alt { padding: 6px 13px; font-size: 12px; }
.patty-opt--alt .patty-opt__box { width: 13px; height: 13px; border-radius: 4px; }
.patty-opt--alt input:checked + .patty-opt__box { background: var(--bxb-ink); border-color: var(--bxb-ink); }
.patty-opt--alt input:checked + .patty-opt__box::after { left: 2px; top: -1px; width: 4px; height: 7px; }
.patty-opt:hover { transform: translateY(-1px); }
.veggie__hamburg-full-photo {
  margin-top: 18px;
  margin-bottom: 80px;
  border: 2px solid var(--bxb-ink);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-pop-lg);
  overflow: hidden;
  aspect-ratio: 16 / 7;
}
.veggie__hamburg-full-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.veggie__hamburg .veggie__addons-label { margin-bottom: 6px; }
.veggie__hamburg .veggie__addon-thumb { width: 40px; height: 40px; }
.veggie__hamburg .veggie__addon { gap: 4px; font-size: 11px; }

/* 6-STEP BUILDER */
.veggie__builder {
  background: var(--bxb-yellow);
  border: 2px solid var(--bxb-ink);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-pop-xl);
  padding: 48px;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 640px) { .veggie__builder { padding: 28px; } }
.veggie__builder::before {
  content: "";
  position: absolute; top: -40px; right: -40px;
  width: 220px; height: 220px;
  background: var(--bxb-red);
  border-radius: 50%;
  border: 2px solid var(--bxb-ink);
  z-index: 0;
}
.veggie__builder-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 32px; flex-wrap: wrap;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.veggie__builder-head .eyebrow { color: var(--bxb-ink); }
.veggie__builder-head .h-sub { color: var(--bxb-ink); max-width: 22ch; }
.veggie__free-side {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
  font-family: var(--font-brand);
  font-weight: 700;
  padding: 8px 4px;
}
.veggie__free-side-num {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 0.95;
}
.veggie__free-side-lbl {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 4px;
}

.veggie__steps {
  background: #FFF4DF;
  border: 2px solid var(--bxb-ink);
  border-radius: var(--r-lg);
  padding: 12px 32px;
  position: relative;
  z-index: 1;
}
@media (max-width: 640px) { .veggie__steps { padding: 12px 20px; } }
.veggie__step {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px dashed rgba(46,23,14,0.25);
}
.veggie__step:last-child { border-bottom: 0; }
@media (max-width: 720px) {
  .veggie__step { grid-template-columns: 1fr; gap: 14px; }
}
.veggie__step-label {
  display: flex; align-items: baseline; gap: 12px;
}
.veggie__step-num {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--bxb-red);
  line-height: 1;
}
.veggie__step-title {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 18px;
  color: var(--bxb-ink);
}
.veggie__step-options {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.veggie__option {
  position: relative;
  padding: 12px 18px;
  border-radius: var(--r-md);
  border: 2px solid var(--bxb-ink);
  box-shadow: 3px 3px 0 0 var(--bxb-ink);
  min-width: 110px;
  text-align: center;
  font-family: var(--font-brand);
  transition: transform 200ms var(--ease-pop), box-shadow 200ms;
}
.veggie__option:hover { transform: translate(-1px,-1px); box-shadow: 5px 5px 0 0 var(--bxb-ink); }
.veggie__option--wide { min-width: 200px; }
.veggie__option-name { font-weight: 700; font-size: 14px; line-height: 1.2; }
.veggie__option-sub { font-size: 11px; opacity: 0.78; margin-top: 4px; line-height: 1.3; }
.veggie__option-badge {
  position: absolute; top: -10px; right: -10px;
  background: var(--bxb-red); color: #fff;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 11px;
  padding: 3px 9px;
  border-radius: var(--r-pill);
  border: 2px solid var(--bxb-ink);
}

/* SIGNATURE TRIO */
.veggie__sig { margin-bottom: 72px; }
.veggie__sig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 820px) { .veggie__sig-grid { grid-template-columns: 1fr; } }
.veggie__sig-card {
  background: var(--bxb-cream-3);
  border: 2px solid var(--bxb-ink);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-pop-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 240ms var(--ease-pop), box-shadow 240ms;
}
.veggie__sig-card:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow-pop-xl); }
.veggie__sig-img {
  aspect-ratio: 4/3;
  background: var(--bxb-cream-2);
  border-bottom: 2px solid var(--bxb-ink);
  overflow: hidden;
}
.veggie__sig-img img { width: 100%; height: 100%; object-fit: cover; }
.veggie__sig-body {
  padding: 26px 28px;
  display: flex; flex-direction: column; gap: 8px;
  flex: 1;
}
.veggie__sig-name {
  font-family: var(--font-script);
  font-weight: 700;
  font-size: 32px;
  line-height: 0.95;
  margin: 0;
}
.veggie__sig-desc { font-size: 14px; line-height: 1.5; opacity: 0.92; }
.veggie__sig-note {
  margin-top: auto;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--font-brand);
  font-weight: 700;
  opacity: 0.7;
}

.veggie__mini-sides {
  margin-top: 28px;
  background: var(--bxb-yellow);
  border: 2px solid var(--bxb-ink);
  border-radius: var(--r-md);
  padding: 18px 24px;
  display: flex; align-items: center; gap: 16px;
  font-family: var(--font-brand);
  color: var(--bxb-ink);
}
.veggie__mini-sides-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-pill);
  background: var(--bxb-ink); color: var(--bxb-yellow);
  display: inline-flex; align-items: center; justify-content: center;
  flex: none;
}
.veggie__mini-sides strong { display: block; font-weight: 700; font-size: 15px; }
.veggie__mini-sides div + div { font-size: 13px; opacity: 0.75; }

/* SELECTIONS */
.veggie__sel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 820px) { .veggie__sel-grid { grid-template-columns: 1fr; } }
.veggie__sel-card {
  background: #fff;
  border: 2px solid var(--bxb-ink);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-pop);
  padding: 26px 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform 200ms var(--ease-pop), box-shadow 200ms;
}
.veggie__sel-card:hover { transform: translate(-2px,-2px); box-shadow: var(--shadow-pop-lg); }
.veggie__sel-head {
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--bxb-hairline-cream);
  padding-bottom: 12px;
}
.veggie__sel-head svg { color: #6BB04A; }
.veggie__sel-head h4 {
  font-family: var(--font-display);
  font-size: 26px;
  margin: 0;
  flex: 1;
  color: var(--bxb-ink);
}
.veggie__sel-note {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bxb-mute);
}
.veggie__sel-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.veggie__sel-list li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  border-bottom: 1px dashed var(--bxb-hairline-cream);
  padding-bottom: 10px;
}
.veggie__sel-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.veggie__sel-name {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 15px;
  color: var(--bxb-ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.veggie__sel-rec {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bxb-red);
  background: transparent;
  border: 0;
  padding: 0;
  line-height: 1.1;
}
.veggie__sel-sub {
  font-size: 12px;
  color: var(--bxb-mute);
  text-align: right;
}

/* Marquee — minimal ticker, cream bg, ink text, subtle */
.marquee {
  background: var(--bxb-cream);
  color: var(--bxb-ink);
  border-top: 1px solid var(--bxb-hairline-cream);
  border-bottom: 1px solid var(--bxb-hairline-cream);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}
.marquee__track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: marquee 33s linear infinite;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bxb-ink);
}
.marquee__track span { display: inline-flex; align-items: center; gap: 36px; }
.marquee__track svg { width: 6px; height: 6px; color: var(--bxb-red); flex: none; opacity: 0.8; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}
