/* ==========================================================================
   HUNCHOS HALAL SPOT - DESIGN SYSTEM
   Primary brand orange sampled directly from the official logo: #F4821F
   ========================================================================== */

/* ---------- 1. TOKENS ---------- */
:root {
  /* Brand core */
  --hu-orange:      #F4821F;
  --hu-orange-600:  #DC6E0C;
  --hu-orange-700:  #B85806;
  --hu-orange-100:  #FDEBD8;
  --hu-ember:       #E23B14;
  --hu-green:       #16874F;

  /* Neutrals */
  --hu-ink:         #0B0B0D;
  --hu-ink-2:       #141418;
  --hu-ink-3:       #1E1E24;
  --hu-cream:       #FFF7EC;
  --hu-paper:       #FFFFFF;

  /* Semantic - LIGHT THEME */
  --bg:             #FFFDF9;
  --bg-elev:        #FFFFFF;
  --bg-sunken:      #F6F1E9;
  --bg-invert:      #0B0B0D;
  --fg:             #14141A;
  --fg-muted:       #5C5A57;
  --fg-faint:       #6E6A63;
  --fg-invert:      #FFF7EC;
  --line:           #E7DFD3;
  --line-strong:    #D3C8B7;
  --accent:         #DC6E0C;
  --accent-strong:  #B85806; /* 4.5:1+ on white, for small orange text */
  --accent-fg:      #FFFFFF;
  --ring:           #F4821F;
  --shadow-sm:      0 1px 2px rgba(20,16,10,.06), 0 1px 3px rgba(20,16,10,.05);
  --shadow-md:      0 4px 14px rgba(20,16,10,.08), 0 2px 4px rgba(20,16,10,.04);
  --shadow-lg:      0 24px 60px rgba(20,16,10,.14), 0 6px 16px rgba(20,16,10,.07);
  --pattern-ink:    rgba(11,11,13,.055);

  /* Type scale */
  --font-display: 'Anton', 'Archivo Black', 'Haettenschweiler', 'Impact', system-ui, sans-serif;
  --font-body: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: ui-monospace, 'SFMono-Regular', 'Menlo', monospace;

  /* Rhythm */
  --radius:      14px;
  --radius-lg:   22px;
  --radius-pill: 999px;
  --nav-h:       68px;

  color-scheme: light;
}

.dark {
  --bg:          #0B0B0D;
  --bg-elev:     #15151A;
  --bg-sunken:   #101014;
  --bg-invert:   #FFF7EC;
  --fg:          #F6F1E8;
  --fg-muted:    #A5A099;
  --fg-faint:    #8F8A82;
  --fg-invert:   #0B0B0D;
  --line:        #26262E;
  --line-strong: #3A3A45;
  --accent:      #F4821F;
  --accent-strong: #F4821F;
  --accent-fg:   #14100A;
  --shadow-sm:   0 1px 2px rgba(0,0,0,.5);
  --shadow-md:   0 6px 18px rgba(0,0,0,.5);
  --shadow-lg:   0 28px 70px rgba(0,0,0,.65), 0 8px 20px rgba(0,0,0,.4);
  --pattern-ink: rgba(255,247,236,.06);
  color-scheme: dark;
}

/* ---------- 2. RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
img, video, svg { max-width: 100%; height: auto; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--ring); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--hu-orange); color: #fff; }
hr { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* ---------- 3. TYPOGRAPHY ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: .88;
  letter-spacing: -.015em;
  font-feature-settings: "kern" 1;
}
.eyebrow {
  font-size: .6875rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--fg-faint);
}
.lede { font-size: 1.0625rem; line-height: 1.65; color: var(--fg-muted); }
.num { font-variant-numeric: tabular-nums; }

.h-hero  { font-size: clamp(2.75rem, 10.5vw, 6rem); }
.h-sec   { font-size: clamp(2rem, 7.2vw, 4.25rem); }
.h-sub   { font-size: clamp(1.35rem, 4.6vw, 2.1rem); }

/* Orange text that survives both themes */
.txt-brand { color: var(--accent); }
/* Small orange text (links, prices) needs the deeper shade to hit 4.5:1 in light mode */
a.txt-brand { color: var(--accent-strong); }

/* Outlined display type - used for oversized decorative headers */
.txt-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--line-strong);
}

/* ---------- 4. LAYOUT ---------- */
.wrap { width: 100%; max-width: 1240px; margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2.5rem); }
.wrap-narrow { width: 100%; max-width: 860px; margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2.5rem); }
.section { padding-block: clamp(3.5rem, 9vw, 7.5rem); position: relative; }
.section-tight { padding-block: clamp(2.25rem, 5vw, 3.5rem); }
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr)); gap: .75rem; }
.table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.stack-sep > * + * { border-top: 1px solid var(--line); }

/* ---------- 5. BRAND PATTERNS ---------- */

/* 5a. Chevron - the fry-box / packaging pattern */
.pat-chevron {
  background-image: repeating-linear-gradient(
    -45deg,
    var(--hu-orange) 0 10px,
    transparent 10px 20px
  );
  opacity: .12;
}

/* 5b. Halftone dot grid */
.pat-dots {
  background-image: radial-gradient(var(--pattern-ink) 1.4px, transparent 1.5px);
  background-size: 16px 16px;
}
.pat-dots-lg { background-size: 26px 26px; }

/* 5c. Geometric star tessellation - a nod to the halal heritage of the brand */
.pat-geo {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%23F4821F' stroke-width='1.1'%3E%3Cpath d='M40 6 48 22 66 22 55 36 62 54 40 45 18 54 25 36 14 22 32 22Z'/%3E%3Cpath d='M40 18 45 28 56 28 49 37 52 48 40 42 28 48 31 37 24 28 35 28Z'/%3E%3Cpath d='M0 0h80v80H0z' stroke='none'/%3E%3Cpath d='M0 40h80M40 0v80' stroke-opacity='.3'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
  opacity: .13;
}
.dark .pat-geo { opacity: .16; }

/* 5d. Diagonal hazard stripes - used on deal/urgency edges */
.pat-stripe {
  background-image: repeating-linear-gradient(
    135deg,
    var(--hu-ink) 0 8px,
    var(--hu-orange) 8px 16px
  );
}

/* Layer helper for patterns */
.pat-layer { position: absolute; inset: 0; pointer-events: none; }

/* ---------- 6. COMPONENTS ---------- */

/* 6a. Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .8125rem 1.375rem; border-radius: var(--radius-pill);
  font-weight: 700; font-size: .875rem; letter-spacing: .01em;
  transition: transform .16s cubic-bezier(.2,.8,.3,1), background-color .16s, box-shadow .16s, border-color .16s, color .16s;
  white-space: nowrap; text-align: center; border: 1.5px solid transparent;
}
.btn:active { transform: translateY(1px) scale(.985); }
.btn-lg { padding: 1.0625rem 1.875rem; font-size: .9375rem; }
.btn-sm { padding: .5rem .875rem; font-size: .8125rem; min-height: 44px; }
.tap-44 { min-height: 44px; min-width: 44px; }
.btn-block { width: 100%; }

.btn-primary { background: var(--hu-orange); color: #14100A; box-shadow: 0 6px 20px rgba(244,130,31,.32); }
.btn-primary:hover { background: #FF9130; box-shadow: 0 10px 30px rgba(244,130,31,.45); }

.btn-ink { background: var(--bg-invert); color: var(--fg-invert); }
.btn-ink:hover { background: var(--hu-orange); color: #14100A; }

.btn-outline { border-color: var(--line-strong); color: var(--fg); }
.btn-outline:hover { border-color: var(--hu-orange); color: var(--accent); background: color-mix(in srgb, var(--hu-orange) 8%, transparent); }

.btn-ghost { color: var(--fg-muted); }
.btn-ghost:hover { color: var(--fg); background: var(--bg-sunken); }

/* 6b. Chips / pills */
.chip {
  display: inline-flex; align-items: center; gap: .375rem;
  padding: .3125rem .6875rem; border-radius: var(--radius-pill);
  font-size: .6875rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  border: 1px solid var(--line); background: var(--bg-elev); color: var(--fg-muted);
  white-space: nowrap;
}
.chip-brand { background: var(--hu-orange); border-color: var(--hu-orange); color: #14100A; }
.chip-halal { background: color-mix(in srgb, var(--hu-green) 14%, transparent); border-color: color-mix(in srgb, var(--hu-green) 45%, transparent); color: var(--hu-green); }
.dark .chip-halal { color: #4FD68F; }
.chip-live { background: color-mix(in srgb, var(--hu-green) 14%, transparent); border-color: color-mix(in srgb, var(--hu-green) 40%, transparent); color: var(--hu-green); }
.dark .chip-live { color: #4FD68F; }
.chip-closed { background: color-mix(in srgb, var(--hu-ember) 12%, transparent); border-color: color-mix(in srgb, var(--hu-ember) 40%, transparent); color: var(--hu-ember); }
.dark .chip-closed { color: #FF7A55; }

/* 6c. Surfaces */
.card {
  background: var(--bg-elev); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  transition: transform .22s cubic-bezier(.2,.8,.3,1), box-shadow .22s, border-color .22s;
}
.card-hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--line-strong); }

/* Receipt / ticket edge - packaging cue */
.ticket { position: relative; }
.ticket::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 8px;
  background-image: radial-gradient(circle at 5px -1px, transparent 5px, var(--bg-elev) 5px);
  background-size: 12px 10px; background-repeat: repeat-x;
}

/* 6d. Marquee ticker */
.marquee { display: flex; overflow: hidden; user-select: none; gap: 0; }
.marquee__track {
  display: flex; align-items: center; gap: 2rem; flex-shrink: 0;
  min-width: 100%; padding-right: 2rem;
  animation: marquee-scroll 34s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-100%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }
.marquee__item {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(1rem, 2.6vw, 1.5rem); letter-spacing: .02em; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 2rem;
}

/* 6e. Media frames */
.media { position: relative; overflow: hidden; background: var(--bg-sunken); }
.media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.8,.3,1); }
.media-zoom:hover img { transform: scale(1.06); }
.ratio-1 { aspect-ratio: 1 / 1; }
.ratio-45 { aspect-ratio: 4 / 5; }
.ratio-916 { aspect-ratio: 9 / 16; }
.ratio-32 { aspect-ratio: 3 / 2; }
.ratio-169 { aspect-ratio: 16 / 9; }

/* Video that sits over a still image inside a .media frame; the image is the reduced-motion fallback */
.media-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (prefers-reduced-motion: reduce) { .media-video { display: none; } }

/* Skeleton shimmer while images decode */
.media::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, transparent 20%, var(--pattern-ink) 40%, transparent 60%);
  background-size: 220% 100%; animation: shimmer 1.4s linear infinite; opacity: 1;
  transition: opacity .4s; pointer-events: none;
}
.media.is-loaded::before { opacity: 0; animation: none; }
@keyframes shimmer { from { background-position: 180% 0; } to { background-position: -80% 0; } }

/* 6f. Price tag */
.price {
  font-family: var(--font-display); font-size: 1.0625rem; letter-spacing: .01em;
  font-variant-numeric: tabular-nums;
}
.price.txt-brand { color: var(--accent-strong); }

/* 6g. Field */
.field {
  width: 100%; padding: .8125rem 1rem; border-radius: var(--radius);
  background: var(--bg); border: 1.5px solid var(--line); color: var(--fg);
  transition: border-color .16s, box-shadow .16s;
}
.field::placeholder { color: var(--fg-faint); }
.field:focus { outline: none; border-color: var(--hu-orange); box-shadow: 0 0 0 4px color-mix(in srgb, var(--hu-orange) 18%, transparent); }
.field[aria-invalid="true"] { border-color: var(--hu-ember); }

/* 6h. Signature overlay cards */
.sig-card {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden;
  border-radius: var(--radius-lg); background: var(--bg-sunken);
  box-shadow: var(--shadow-sm);
  transition: transform .22s cubic-bezier(.2,.8,.3,1), box-shadow .22s;
}
.sig-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.sig-card > img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.8,.3,1);
}
.sig-card:hover > img { transform: scale(1.05); }
@media (prefers-reduced-motion: reduce) {
  .sig-card, .sig-card > img { transition: none; }
  .sig-card:hover { transform: none; }
  .sig-card:hover > img { transform: none; }
}
.sig-scrim {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(11,11,13,0) 34%, rgba(11,11,13,.46) 62%, rgba(11,11,13,.88) 100%);
}
.sig-tag { position: absolute; top: .75rem; left: .75rem; box-shadow: 0 2px 10px rgba(0,0,0,.3); }
.sig-meta { position: absolute; left: 0; right: 0; bottom: 0; padding: .875rem; }
@media (min-width: 768px) { .sig-meta { padding: 1.125rem; } }
.sig-name {
  color: var(--hu-cream); font-size: clamp(1rem, 2.6vw, 1.35rem);
  line-height: .95; letter-spacing: .01em;
  text-shadow: 0 1px 12px rgba(0,0,0,.4);
}
.sig-price { color: var(--hu-orange); font-size: 1.125rem; text-shadow: 0 1px 8px rgba(0,0,0,.5); }

/* ---------- 7. NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  height: var(--nav-h);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background-color .25s, box-shadow .25s;
}
.nav.is-stuck { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.nav-link {
  position: relative; font-size: .8125rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--fg-muted); padding: .5rem .125rem;
  transition: color .18s;
}
.nav-link:hover { color: var(--fg); }
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--hu-orange); transform: scaleX(0); transform-origin: left;
  transition: transform .24s cubic-bezier(.2,.8,.3,1);
}
.nav-link.is-active { color: var(--fg); }
.nav-link.is-active::after { transform: scaleX(1); }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 70; display: grid; grid-template-rows: 1fr;
  background: var(--bg); opacity: 0; pointer-events: none; transition: opacity .28s;
}
.drawer.is-open { opacity: 1; pointer-events: auto; }
.drawer-link {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(1.75rem, 9vw, 3rem); line-height: 1; letter-spacing: -.01em;
  padding-block: .375rem; transform: translateY(14px); opacity: 0;
  transition: transform .4s cubic-bezier(.2,.8,.3,1), opacity .4s, color .18s;
}
.drawer.is-open .drawer-link { transform: none; opacity: 1; }
.drawer-link:hover { color: var(--accent); }

/* Hamburger */
.burger-line { display: block; width: 22px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .28s cubic-bezier(.2,.8,.3,1), opacity .2s; }
.burger.is-open .burger-line:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.is-open .burger-line:nth-child(2) { opacity: 0; }
.burger.is-open .burger-line:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- 8. HERO ---------- */
.hero { position: relative; padding-top: calc(var(--nav-h) + clamp(1.5rem, 5vw, 3.5rem)); overflow: hidden; }

/* Cinematic video hero: full-bleed kitchen footage under an ink scrim */
.hero-cinema {
  display: flex; align-items: flex-end;
  min-height: min(94svh, 1000px);
  padding-top: var(--nav-h);
  background: var(--hu-ink) url('img/brand/hero-poster.webp') center / cover no-repeat;
  color: var(--hu-cream);
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 40% 50%; /* keeps the griddle action in frame on narrow screens */
}
@media (prefers-reduced-motion: reduce) { .hero-video { display: none; } }
.hero-cinema__scrim {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(11,11,13,.78) 0%, rgba(11,11,13,.54) 34%, rgba(11,11,13,.72) 62%, rgba(11,11,13,.96) 100%),
    radial-gradient(130% 100% at 10% 85%, rgba(11,11,13,.75) 0%, transparent 58%);
}
.hero-cinema__content { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.hero-cinema h1 { color: var(--hu-cream); text-shadow: 0 2px 24px rgba(0,0,0,.45); }
.hero-cinema .txt-brand { color: var(--hu-orange); }
.hero-cinema__lede { color: rgba(255,247,236,.82); text-shadow: 0 1px 12px rgba(0,0,0,.5); }
.hero-cinema__lede strong { color: var(--hu-cream); }
.hero-cinema__strip { border-top: 1px solid rgba(255,247,236,.22); }
.hero-cinema__strip .eyebrow { color: rgba(255,247,236,.66); }
.hero-cinema__divider { width: 1px; height: 34px; background: rgba(255,247,236,.22); }

/* Components recolored for use on the video/ink surface */
.chip-on-ink {
  background: rgba(11,11,13,.55); border-color: rgba(255,247,236,.25); color: var(--hu-cream);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.chip-halal.chip-on-ink { color: #4FD68F; border-color: rgba(79,214,143,.4); }
.chip-closed.chip-on-ink, #hero-status.chip-closed { color: #FF9A7B; }
#hero-status.chip-live { color: #4FD68F; }
@media (max-width: 639px) { .chip-grill { display: none; } }
.btn-on-ink { background: var(--hu-cream); color: var(--hu-ink); }
.btn-on-ink:hover { background: var(--hu-orange); color: #14100A; }
.btn-outline-cream { border-color: rgba(255,247,236,.42); color: var(--hu-cream); }
.btn-outline-cream:hover { border-color: var(--hu-orange); color: var(--hu-orange); background: rgba(244,130,31,.1); }

/* Closing CTA: interior photo under an ink wash */
.cta-cinema__scrim {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(11,11,13,.82) 0%, rgba(11,11,13,.55) 50%, rgba(11,11,13,.86) 100%);
}

/* Nav floats transparent over the video until the page is scrolled */
.nav:not(.is-stuck) { background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; color: var(--hu-cream); }
.nav:not(.is-stuck) .nav-link { color: rgba(255,247,236,.78); }
.nav:not(.is-stuck) .nav-link:hover, .nav:not(.is-stuck) .nav-link.is-active { color: var(--hu-cream); }
.nav:not(.is-stuck) .btn-ghost { color: rgba(255,247,236,.85); }
.nav:not(.is-stuck) .btn-ghost:hover { color: var(--hu-cream); background: rgba(255,247,236,.12); }
.hero-badge { filter: drop-shadow(0 12px 34px rgba(244,130,31,.42)); }
.spin-slow { animation: spin 26s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .spin-slow { animation: none; } }
.hero-glow {
  position: absolute; border-radius: 50%; pointer-events: none; filter: blur(90px);
  background: radial-gradient(circle, rgba(244,130,31,.42), transparent 68%);
}

/* ---------- 9. MENU EXPLORER ---------- */
.catbar {
  position: sticky; top: var(--nav-h); z-index: 40;
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-block: 1px solid var(--line);
}
.catbar__scroll {
  display: flex; gap: .375rem; overflow-x: auto; scrollbar-width: none;
  padding-block: .625rem; scroll-behavior: smooth;
}
.catbar__scroll::-webkit-scrollbar { display: none; }
.cat-btn {
  flex-shrink: 0; padding: .5rem .875rem; border-radius: var(--radius-pill);
  min-height: 44px;
  font-size: .78125rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--fg-muted); border: 1.5px solid transparent; transition: all .18s; white-space: nowrap;
}
.cat-btn:hover { color: var(--fg); background: var(--bg-sunken); }
.cat-btn.is-active { background: var(--bg-invert); color: var(--fg-invert); }

.menu-row {
  display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center;
  padding: .875rem; border-radius: var(--radius); transition: background-color .18s;
}
.menu-row:hover { background: var(--bg-sunken); }

/* ---------- 10. MODAL ---------- */
.modal { position: fixed; inset: 0; z-index: 90; display: grid; place-items: end center; }
@media (min-width: 640px) { .modal { place-items: center; } }
.modal__backdrop {
  position: absolute; inset: 0; background: rgba(6,6,8,.72);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  opacity: 0; transition: opacity .26s;
}
.modal__panel {
  position: relative; width: 100%; max-width: 620px; max-height: 92dvh;
  display: flex; flex-direction: column;
  background: var(--bg-elev); border: 1px solid var(--line);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: var(--shadow-lg);
  transform: translateY(28px); opacity: 0;
  transition: transform .3s cubic-bezier(.2,.8,.3,1), opacity .26s;
}
@media (min-width: 640px) { .modal__panel { border-radius: var(--radius-lg); transform: translateY(16px) scale(.97); } }
.modal.is-open .modal__backdrop { opacity: 1; }
.modal.is-open .modal__panel { transform: none; opacity: 1; }
.modal[hidden] { display: none; }

/* Option row inside order flow */
.opt {
  display: flex; align-items: center; gap: .875rem; width: 100%; text-align: left;
  padding: 1rem; border-radius: var(--radius); border: 1.5px solid var(--line);
  background: var(--bg); transition: all .18s;
}
.opt:hover { border-color: var(--hu-orange); background: color-mix(in srgb, var(--hu-orange) 6%, var(--bg)); transform: translateX(2px); }
.opt.is-selected { border-color: var(--hu-orange); background: color-mix(in srgb, var(--hu-orange) 10%, var(--bg)); }
.opt-primary {
  border-color: var(--hu-orange); border-width: 2px;
  background: color-mix(in srgb, var(--hu-orange) 9%, var(--bg));
  box-shadow: 0 4px 18px rgba(244,130,31,.18);
}

/* Step dots */
.step-dot { width: 26px; height: 3px; border-radius: 2px; background: var(--line); transition: background-color .3s; }
.step-dot.is-done { background: var(--hu-orange); }

/* ---------- 11. LIGHTBOX ---------- */
.lightbox { position: fixed; inset: 0; z-index: 95; display: grid; place-items: center; background: rgba(5,5,7,.94); opacity: 0; transition: opacity .26s; }
.lightbox.is-open { opacity: 1; }
.lightbox[hidden] { display: none; }

/* ---------- 12. ACCORDION ---------- */
.acc-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .34s cubic-bezier(.2,.8,.3,1); }
.acc-item.is-open .acc-panel { grid-template-rows: 1fr; }
.acc-panel > div { overflow: hidden; }
.acc-icon { transition: transform .3s cubic-bezier(.2,.8,.3,1); }
.acc-item.is-open .acc-icon { transform: rotate(45deg); }

/* ---------- 13. TOAST ---------- */
.toast-stack { position: fixed; z-index: 100; left: 50%; bottom: 1.25rem; transform: translateX(-50%); display: flex; flex-direction: column; gap: .5rem; align-items: center; pointer-events: none; width: min(94vw, 420px); }
@media (min-width: 768px) { .toast-stack { left: auto; right: 1.5rem; bottom: 1.5rem; transform: none; align-items: flex-end; } }
.toast {
  display: flex; align-items: center; gap: .625rem; padding: .75rem 1rem;
  border-radius: var(--radius-pill); background: var(--bg-invert); color: var(--fg-invert);
  box-shadow: var(--shadow-lg); font-size: .8125rem; font-weight: 600;
  animation: toast-in .3s cubic-bezier(.2,.8,.3,1);
}
.toast.is-out { animation: toast-out .26s forwards; }
@keyframes toast-in { from { opacity: 0; transform: translateY(14px) scale(.96); } }
@keyframes toast-out { to { opacity: 0; transform: translateY(8px) scale(.97); } }

/* ---------- 14. SCROLL REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.8,.3,1), transform .7s cubic-bezier(.2,.8,.3,1); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- 15. MOBILE ORDER BAR ---------- */
.orderbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  padding: .625rem clamp(.75rem, 4vw, 1rem) calc(.625rem + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  transform: translateY(110%); transition: transform .32s cubic-bezier(.2,.8,.3,1);
}
.orderbar.is-visible { transform: none; }
@media (min-width: 1024px) { .orderbar { display: none; } }

/* ---------- 16. UTILITIES ---------- */
.hide-scroll { scrollbar-width: none; -ms-overflow-style: none; }
.hide-scroll::-webkit-scrollbar { display: none; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.snap-x-mand { scroll-snap-type: x mandatory; }
.snap-start { scroll-snap-align: start; }
.text-balance { text-wrap: balance; }
.text-pretty { text-wrap: pretty; }

/* Invert block (dark band inside light theme, stays dark in dark theme) */
.band-ink { background: var(--hu-ink); color: var(--hu-cream); }
.band-ink .eyebrow { color: rgba(255,247,236,.64); }
.band-ink .lede { color: rgba(255,247,236,.78); }
.band-orange { background: var(--hu-orange); color: #14100A; }
