/* ============================================================================
   Uncle Giuseppe's "Lil Bit a Brooklyn" — site/v1
   CONCEPT: the Brooklyn corner red-sauce joint — subway tile + checkered cloth +
   neon awning + the Brooklyn Bridge (straight out of the logo). Charcoal night
   grounds, tile-cream panels, checkered-cloth tomato as the one action, brass
   hairlines, a thin Italian-flag green. Oswald (neon-sign caps) + DM Sans.
   The bridge-cable SVG is the recurring divider between every band.

   Mechanics are FROZEN: nav.js / menu-nav.js / gallery.js / reviews.js /
   order.js / connect.js / menu-picker.js are copied verbatim; this file is the
   additive concept LOOK over the same data-hooks + base CSS contracts.
   ============================================================================ */

/* ---------- Tokens (one system) ---------- */
:root {
  /* palette — all pairs AA-verified with web-ui-kit/contrast.py */
  --paper:      #F4ECDE;   /* subway-tile cream (page + light panels)            */
  --paper-2:    #EBE0CC;   /* raised cream (cards, sheet cover)                  */
  --night:      #1C1816;   /* charcoal night — the corner at dusk               */
  --night-2:    #2A2421;   /* raised charcoal panel                             */
  --ink:        #241F1D;   /* body text on cream (13.9:1)                       */
  --ink-soft:   #4A4039;
  --ink-faint:  #5E5247;   /* muted/caption on cream (6.45:1)                   */
  --paper-dim:  #C9BCA8;   /* muted/caption on charcoal (9.43:1)                */

  --cta:        #C8321F;   /* checkered-cloth tomato — the ONE action           */
  --cta-hover:  #A42716;   /* darker on hover (7.29:1)                          */
  --cta-ink:    #FFFFFF;   /* CTA label (5.34:1 on tomato)                      */
  --accent:     #C8321F;   /* prices / active states (use --accent-deep as text-on-cream heading) */
  --accent-deep:#A42716;   /* tomato as a heading on cream (6.21:1)             */
  --accent-warm:#E2563F;   /* tomato as text on charcoal (4.73:1)              */

  --brass:      #C79A4E;   /* hairlines + eyebrow on dark (6.85:1)             */
  --brass-ink:  #7A5A1E;   /* eyebrow TEXT on cream (5.41:1)                   */
  --flag-green: #2E6B41;   /* thin Italian-flag green (5.43:1 on cream)        */
  --star:       #F2C14E;   /* review stars on charcoal (10.5:1)               */

  --line:       rgba(36,31,29,.16);
  --line-soft:  rgba(36,31,29,.08);
  --line-dark:  rgba(244,236,222,.18);

  /* type */
  --display: "Oswald", "Arial Narrow", system-ui, sans-serif;
  --sans:    "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --fs-hero: clamp(2.9rem, 8.5vw, 6rem);
  --fs-h2:   clamp(1.9rem, 5vw, 3.1rem);
  --fs-h3:   clamp(1.15rem, 2.4vw, 1.45rem);
  --fs-lede: clamp(1.05rem, 1.9vw, 1.3rem);
  --fs-body: 1.05rem;

  --section-y: clamp(3.4rem, 8vw, 6rem);
  --gap:       clamp(1rem, 3vw, 1.5rem);
  --wrap:      1160px;
  --gutter:    clamp(1.15rem, 5vw, 2.75rem);
  --radius:    14px;

  --header-h:  64px;      /* mobile single-row default; stacked desktop overrides below */
  --menu-measure: 880px;
  --price-col:   4.4rem;
  --price-col-3: 3.6rem;
  --price-col-1: 2.8rem;

  --shadow:   0 18px 44px -26px rgba(15,11,9,.55);
  --shadow-lg:0 30px 70px -34px rgba(15,11,9,.7);
  --ph-ease:  .28s ease;
  --bp-nav:   720px;      /* matches site-nav */
  --bp-stack: 880px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;            /* belt-and-suspenders against narrow overflow */
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; line-height: 1.04;
  letter-spacing: .01em; text-transform: uppercase; }
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.icon { flex: 0 0 auto; }

.eyebrow { font-family: var(--display); font-weight: 600; text-transform: uppercase;
  letter-spacing: .26em; font-size: .82rem; color: var(--brass-ink); }
.on-dark .eyebrow, .eyebrow--dark { color: var(--brass); }

/* ---------- Buttons — concept: a deli order-ticket / awning button ---------- */
.btn {
  --_bg: var(--cta); --_ink: var(--cta-ink);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 48px; padding: .7rem 1.5rem;
  font-family: var(--display); font-weight: 600; font-size: .98rem;
  text-transform: uppercase; letter-spacing: .06em; text-decoration: none;
  border: 0; border-radius: 8px; cursor: pointer; background: var(--_bg); color: var(--_ink);
  -webkit-tap-highlight-color: transparent;
  transition: background .16s ease, transform .12s ease, box-shadow .16s ease;
}
.btn .icon { width: 1.15em; height: 1.15em; }
.btn--primary { background: var(--cta); color: var(--cta-ink);
  box-shadow: 0 10px 26px -14px rgba(200,50,31,.85); }
.btn--primary:hover { background: var(--cta-hover); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink);
  border: 1.6px solid var(--ink); box-shadow: none; }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.on-dark .btn--ghost, .btn--ghost.on-dark { color: var(--paper); border-color: rgba(244,236,222,.6); }
.on-dark .btn--ghost:hover, .btn--ghost.on-dark:hover { background: var(--paper); color: var(--ink); }
.btn:focus-visible { outline: 3px solid var(--brass); outline-offset: 3px; }

/* =====================================================================
   site-nav — base contract (verbatim structure) + nav-stacked + slide-up
   ===================================================================== */
.site-header { position: sticky; top: 0; z-index: 50;
  background: var(--night); color: var(--paper);
  border-bottom: 1px solid var(--line-dark); }
/* the awning brass hairline under the header — concept accent */
.site-header::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--brass) 18%, var(--brass) 82%, transparent); opacity: .55; }
.header__inner { display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: var(--header-h); }
.wordmark { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; color: inherit; }
/* The emblem ships a baked-in white square border; round it and ring it in brass
   so it reads as a deliberate badge on the charcoal header, not a stuck-on tile. */
.wordmark__logo { height: clamp(40px, 8vw, 54px); width: auto; display: block;
  border-radius: 9px;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--brass) 60%, transparent); }
.wordmark__txt { display: none; }    /* logo carries the mark; text reserved for fallback */

:where(section[id], [id].menu-section) { scroll-margin-top: calc(var(--header-h) + 12px); }

.nav a:not(.btn) { color: var(--paper); text-decoration: none; font-family: var(--display);
  font-weight: 500; text-transform: uppercase; letter-spacing: .12em; font-size: .92rem; }
.nav a:not(.btn):hover { color: var(--brass); }
.nav a.btn--primary { color: var(--cta-ink); }

.nav-toggle { display: none; appearance: none; background: none; border: 0; padding: 0;
  cursor: pointer; color: var(--paper); line-height: 0; -webkit-tap-highlight-color: transparent; }
.nav-toggle .icon { width: 1.7rem; height: 1.7rem; }
.nav-toggle__close { display: none; }
.nav-close { display: none; }
.site-header[data-open] .nav-toggle__open  { display: none; }
.site-header[data-open] .nav-toggle__close { display: inline-block; }

[data-nav-panel]:focus { outline: none; }
.nav a, .nav-toggle, .nav .btn { -webkit-tap-highlight-color: transparent; }
.nav a:focus:not(:focus-visible), .nav .btn:focus:not(:focus-visible),
.nav-toggle:focus:not(:focus-visible) { outline: none; }
.nav a:focus-visible, .nav-toggle:focus-visible { outline: 3px solid var(--brass); outline-offset: 3px; }

html.nav-locked, html.nav-locked body { overflow: hidden; }
.site-header[data-nav-lock][data-open] { backdrop-filter: none; filter: none; }

@media (min-width: 721px) {
  .nav { display: flex; align-items: center; gap: 1.5rem; }
  /* nav-stacked: logo over a centered row (awning masthead) */
  .site-header[data-nav-layout="stacked"] { --header-h: 104px; }
  .site-header[data-nav-layout="stacked"] .header__inner {
    display: flex; flex-direction: column; align-items: center; gap: .55rem;
    padding-top: .7rem; padding-bottom: .8rem; }
  .site-header[data-nav-layout="stacked"] .nav { display: flex; align-items: center;
    justify-content: center; gap: 1.6rem; flex-wrap: wrap; }
}

@media (max-width: 720px) {
  .nav-enhanced .nav-toggle { display: inline-flex; align-items: center; justify-content: center;
    min-width: 44px; min-height: 44px; }
  .nav-enhanced .nav a { display: flex; align-items: center; min-height: 44px; width: 100%; }

  /* slide-up: full-viewport cover rising from the bottom (thumb zone) */
  .site-header[data-nav-anim="slide-up"] .nav {
    position: fixed; inset: 0; z-index: 60; overflow-y: auto; -webkit-overflow-scrolling: touch;
    flex-direction: column; align-items: stretch; justify-content: flex-end; gap: 0;
    padding: 1.4rem var(--gutter) calc(1.6rem + env(safe-area-inset-bottom, 0px));
    background: var(--night);          /* solid, page-distinct cover */
    transform: translateY(100%); visibility: hidden;
    transition: transform .26s cubic-bezier(.32,.72,0,1), visibility 0s linear .26s; }
  .site-header[data-nav-anim="slide-up"][data-open] .nav {
    display: flex; transform: translateY(0); visibility: visible;
    transition: transform .28s cubic-bezier(.32,.72,0,1); }
  .site-header[data-nav-anim="slide-up"] .nav::before {
    content: ""; align-self: center; width: 40px; height: 4px; border-radius: 4px;
    background: var(--brass); opacity: .6; margin: 0 0 1rem; }
  .site-header[data-nav-anim="slide-up"] .nav a:not(.btn) {
    padding: 1rem 0; border-bottom: 1px solid var(--line-dark); font-size: 1.15rem; letter-spacing: .14em; }
  .site-header[data-nav-anim="slide-up"] .nav .btn { margin-top: 1.1rem; }
  .site-header[data-nav-anim="slide-up"][data-open] .nav-toggle { display: none; }
  .site-header[data-nav-anim="slide-up"] .nav-close {
    position: absolute; top: 14px; right: var(--gutter); width: 44px; height: 44px;
    align-items: center; justify-content: center; z-index: 2; appearance: none;
    background: none; border: 0; padding: 0; cursor: pointer; color: var(--paper); line-height: 0; }
  .site-header[data-nav-anim="slide-up"][data-open] .nav-close { display: inline-flex; }
  .nav-close .icon { width: 1.7rem; height: 1.7rem; }
}
@media (prefers-reduced-motion: reduce) {
  .site-header[data-nav-anim="slide-up"] .nav { transition: none; }
}

/* =====================================================================
   Bridge divider — the recurring concept MOTIF between bands (never <hr>)
   ===================================================================== */
.bridge-rule { position: relative; height: 56px; display: block; overflow: hidden;
  color: var(--brass); }
.bridge-rule svg { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: min(560px, 92%); height: 46px; display: block; }
.bridge-rule--cream { background: var(--paper); }
.bridge-rule--night { background: var(--night); }
.bridge-rule--tight { height: 40px; }
/* a slim flag-stripe rule (green/cream/red) used at section heads */
.flag-rule { display: inline-block; width: 56px; height: 4px; border-radius: 2px;
  background: linear-gradient(90deg, var(--flag-green) 0 33%, #F4ECDE 33% 66%, var(--cta) 66% 100%); }

/* =====================================================================
   full-bleed-stack layout — alternating poster panels
   ===================================================================== */
.panel { width: 100%; padding: var(--section-y) 0; position: relative; }
.panel__inner { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); position: relative; }
.panel--cream { background: var(--paper); color: var(--ink); }
.panel--night { background: var(--night); color: var(--paper); }
.panel--night .eyebrow { color: var(--brass); }
.section-head { text-align: center; max-width: 46rem; margin: 0 auto clamp(2rem,5vw,3rem); }
.section-head .flag-rule { margin: .9rem auto 0; }
.section-head h2 { font-size: var(--fs-h2); margin-top: .5rem; }
.panel--cream .section-head h2 { color: var(--accent-deep); }
.panel--night .section-head h2 { color: var(--paper); }
.section-head p { margin-top: .8rem; color: var(--ink-faint); font-size: var(--fs-lede);
  font-family: var(--sans); text-transform: none; line-height: 1.55; }
.panel--night .section-head p { color: var(--paper-dim); }

/* =====================================================================
   HERO — full-bleed, neon-sign name, bridge underline
   ===================================================================== */
.hero { position: relative; min-height: 92vh; display: flex; align-items: flex-end;
  color: #fff; background: var(--night); overflow: hidden; }
.hero__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero__scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to top,
    rgba(12,9,8,.86) 0%, rgba(12,9,8,.5) 34%, rgba(12,9,8,.12) 62%, rgba(12,9,8,.5) 100%); }
.hero__inner { position: relative; z-index: 2; width: 100%; max-width: var(--wrap);
  margin-inline: auto; padding: 0 var(--gutter) clamp(2.6rem, 7vw, 5rem); }
.hero__eyebrow { font-family: var(--display); font-weight: 600; text-transform: uppercase;
  letter-spacing: .3em; font-size: clamp(.78rem,2vw,.95rem); color: var(--star);
  display: inline-flex; align-items: center; gap: .6rem; }
.hero__eyebrow .flag-rule { width: 40px; }
/* the neon-sign name */
.hero h1 { font-size: var(--fs-hero); margin: .5rem 0 .1rem; line-height: .94;
  letter-spacing: .005em; text-shadow: 0 2px 24px rgba(0,0,0,.5); }
.hero h1 .neon { color: #fff; }
.hero h1 .neon--tomato { color: var(--accent-warm);
  text-shadow: 0 0 18px rgba(226,86,63,.55), 0 2px 18px rgba(0,0,0,.4); }
.hero__bridge { width: min(440px, 80%); height: 30px; margin: .2rem 0 1rem; color: var(--brass); display: block; }
.hero__lede { font-family: var(--sans); text-transform: none; font-size: var(--fs-lede);
  max-width: 40ch; color: #f3ece2; line-height: 1.5; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.5rem; }
.hero__chip { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.3rem;
  font-family: var(--sans); font-size: .9rem; color: #f0e7da; }
.hero__chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--flag-green);
  box-shadow: 0 0 0 3px rgba(46,107,65,.3); }
@media (max-width: 600px) { .hero { min-height: 90vh; } }

/* =====================================================================
   KNOWN-FOR — deli order-TICKET cards (concept-carrying item cards)
   ===================================================================== */
.tickets { display: grid; gap: clamp(1.1rem, 3vw, 1.6rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); }
.tickets > * { min-width: 0; }
.ticket { position: relative; background: var(--paper-2); border: 1.6px solid var(--ink);
  border-radius: 6px; padding: 1.5rem 1.35rem 1.3rem; display: flex; flex-direction: column;
  box-shadow: var(--shadow); }
/* the tomato corner-tab — the order-ticket stub */
.ticket::before { content: ""; position: absolute; top: -1px; left: 1.3rem; width: 2.6rem; height: 6px;
  background: var(--cta); border-radius: 0 0 3px 3px; }
/* perforated bottom edge — a torn ticket */
.ticket::after { content: ""; position: absolute; left: .8rem; right: .8rem; bottom: .55rem; height: 0;
  border-bottom: 2px dotted var(--line); }
.ticket__no { font-family: var(--display); font-weight: 600; letter-spacing: .2em; font-size: .72rem;
  color: var(--brass-ink); }
.ticket__row { display: flex; align-items: baseline; gap: .5rem; margin: .35rem 0 .2rem; }
.ticket__row h3 { font-size: var(--fs-h3); color: var(--ink); flex: 0 1 auto; }
.ticket__dots { flex: 1; border-bottom: 2px dotted var(--line); transform: translateY(-.25em); min-width: 1.5rem; }
.ticket__price { font-family: var(--sans); font-weight: 700; color: var(--accent-deep);
  font-variant-numeric: tabular-nums; white-space: nowrap; font-size: 1.05rem; }
.ticket p { font-family: var(--sans); text-transform: none; color: var(--ink-soft);
  font-size: .96rem; line-height: 1.5; margin-bottom: 1rem; }
.ticket__foot { margin-top: auto; font-family: var(--display); font-weight: 500;
  text-transform: uppercase; letter-spacing: .12em; font-size: .74rem; color: var(--brass-ink);
  display: inline-flex; align-items: center; gap: .4rem; padding-top: .3rem; }

/* the featured-from-menu teaser strip (single-sourced prices) lives in a ticket too */
.featured-note { text-align: center; margin-top: 1.6rem; font-family: var(--sans);
  font-size: .95rem; color: var(--ink-faint); }
.featured-note a { color: var(--accent-deep); font-weight: 600; }

/* =====================================================================
   STORY — Giacomo + family, two-column on a night panel
   ===================================================================== */
.story__grid { display: grid; gap: clamp(1.6rem, 5vw, 3.5rem); align-items: center;
  grid-template-columns: 1fr; }
@media (min-width: 880px) { .story__grid { grid-template-columns: 1.05fr 1fr; } }
.story__media { position: relative; }
.story__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); }
.story__media figcaption { margin-top: .7rem; font-family: var(--sans); font-size: .85rem;
  color: var(--paper-dim); text-align: center; }
/* a brass corner frame echoing the awning */
.story__media::before { content: ""; position: absolute; inset: -10px -10px auto auto; width: 64px; height: 64px;
  border-top: 3px solid var(--brass); border-right: 3px solid var(--brass); border-radius: 0 var(--radius) 0 0; opacity: .8; }
.story__body h2 { font-size: var(--fs-h2); color: var(--paper); margin: .5rem 0 .2rem; }
.story__body .flag-rule { margin-bottom: 1.1rem; }
.story__body p { font-family: var(--sans); text-transform: none; color: var(--paper-dim);
  font-size: 1.08rem; line-height: 1.7; margin-bottom: 1rem; max-width: 46ch; }
.story__pull { font-family: var(--display); text-transform: none; font-weight: 500; font-style: normal;
  font-size: clamp(1.3rem, 3vw, 1.7rem); color: var(--star); line-height: 1.25;
  border-left: 3px solid var(--cta); padding-left: 1.1rem; margin: 1.3rem 0; max-width: 30ch; }
.story__stats { display: flex; flex-wrap: wrap; gap: 1.6rem 2.4rem; margin-top: 1.4rem; }
.story__stat { display: flex; flex-direction: column; }
.story__stat b { font-family: var(--display); font-size: 1.9rem; color: var(--paper); line-height: 1; }
.story__stat span { font-family: var(--sans); font-size: .8rem; text-transform: uppercase;
  letter-spacing: .12em; color: var(--brass); margin-top: .25rem; }

/* =====================================================================
   ORDER band — primary CTA + "also on" delivery strip
   ===================================================================== */
.order-band__inner { text-align: center; }
.order-band h2 { font-size: var(--fs-h2); color: var(--accent-deep); }
.order-band .flag-rule { margin: .9rem auto 0; }
.order-band p { font-family: var(--sans); text-transform: none; color: var(--ink-faint);
  font-size: var(--fs-lede); max-width: 40rem; margin: .9rem auto 0; }
.order-band__actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 1.5rem; }
.order-strip { display: flex; align-items: center; gap: 1rem; justify-content: center; flex-wrap: wrap;
  margin-top: 2rem; }
.order-strip__label { flex: 0 0 auto; margin: 0; font-family: var(--display); font-size: .78rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--brass-ink); }
.order-strip__track { display: flex; gap: .6rem; margin: 0; padding: .25rem; list-style: none;
  overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: none; max-width: 100%; }
.order-strip__track::-webkit-scrollbar { display: none; }
.order-strip__track li { scroll-snap-align: start; }
.order-strip__track a { display: inline-flex; align-items: center; gap: .45rem; white-space: nowrap;
  padding: .5rem .9rem; border-radius: 999px; border: 1px solid var(--line); text-decoration: none;
  color: var(--ink); font-family: var(--sans); font-weight: 600; font-size: .88rem; background: var(--paper-2); }
.order-strip__track a:hover { border-color: var(--cta); color: var(--cta-hover); }
.order-strip__track .brand-ico { width: 18px; height: 18px; }

/* =====================================================================
   ordering-options — bottom-sheet (base contract + brand rows)
   ===================================================================== */
html.order-locked { overflow: hidden; }
.order-sheet { position: fixed; inset: 0; z-index: 80; display: flex; align-items: flex-end;
  justify-content: center; visibility: hidden; }
.order-sheet[data-open] { visibility: visible; }
.order-sheet__scrim { position: absolute; inset: 0; background: rgba(10,7,6,.6); opacity: 0;
  transition: opacity .22s ease; }
.order-sheet[data-open] .order-sheet__scrim { opacity: 1; }
.order-sheet__panel { position: relative; width: min(34rem, 100%); max-height: 86vh;
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--paper); color: var(--ink);
  border-radius: 18px 18px 0 0; border-top: 4px solid var(--cta);
  transform: translateY(100%); transition: transform .24s cubic-bezier(.4,0,.2,1); }
.order-sheet[data-open] .order-sheet__panel { transform: translateY(0); }
@media (min-width: 640px) {
  .order-sheet { align-items: center; }
  .order-sheet__panel { border-radius: 16px; border-top: 4px solid var(--cta);
    transform: translateY(12px) scale(.98); opacity: 0;
    transition: transform .2s ease, opacity .2s ease; }
  .order-sheet[data-open] .order-sheet__panel { transform: none; opacity: 1; }
}
.order-sheet__head { flex: 0 0 auto; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: clamp(1.1rem,4vw,1.6rem) clamp(1.1rem,4vw,1.6rem) .8rem; }
.order-sheet__title { font-family: var(--display); text-transform: uppercase; letter-spacing: .04em;
  font-size: 1.35rem; margin: 0; color: var(--ink); }
.order-sheet__close { width: 42px; height: 42px; border: 0; border-radius: 999px; background: transparent;
  color: var(--ink); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.order-sheet__close:hover { background: var(--line-soft); }
.order-toggle { flex: 0 0 auto; display: flex; gap: .25rem; padding: .25rem;
  margin: 0 clamp(1.1rem,4vw,1.6rem) .9rem; background: var(--line-soft); border-radius: 999px; }
.order-toggle__tab { flex: 1; padding: .6rem 1rem; border: 0; border-radius: 999px; cursor: pointer;
  background: transparent; color: var(--ink-faint); font: inherit; font-weight: 700;
  font-family: var(--display); text-transform: uppercase; letter-spacing: .06em; font-size: .9rem; }
.order-toggle__tab[aria-selected="true"] { background: var(--cta); color: var(--cta-ink);
  box-shadow: 0 2px 8px -4px rgba(200,50,31,.7); }
.order-list { flex: 1 1 auto; overflow-y: auto; -webkit-overflow-scrolling: touch; list-style: none; margin: 0;
  padding: .25rem clamp(1.1rem,4vw,1.6rem) calc(1.4rem + env(safe-area-inset-bottom)); display: flex;
  flex-direction: column; gap: .5rem; }
.order-row__link { display: flex; align-items: center; gap: .85rem; padding: .7rem .85rem;
  border: 1px solid var(--line); border-radius: 12px; text-decoration: none; color: inherit; background: var(--paper-2); }
.order-row__link:hover { border-color: var(--cta); background: #fff; }
.order-row__icon { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 11px; background: #fff;
  color: var(--brand, #555); border: 1px solid var(--line); display: inline-flex; align-items: center;
  justify-content: center; overflow: hidden; }
.order-row__icon svg { width: auto; height: auto; max-width: 64%; max-height: 64%; }
.order-row__body { display: flex; flex-direction: column; gap: .12rem; min-width: 0; }
.order-row__name { font-family: var(--display); text-transform: uppercase; letter-spacing: .03em;
  font-weight: 600; font-size: 1rem; }
.order-row__meta { font-family: var(--sans); font-size: .85rem; color: var(--ink-faint); }
@media (prefers-reduced-motion: reduce) { .order-sheet__panel, .order-sheet__scrim { transition: none; } }

/* =====================================================================
   reviews — carousel dressed as a NEON "what the neighborhood says" board
   ===================================================================== */
.reviews-band { background: var(--night); }
.reviews-band .section-head h2 { color: var(--paper); }
.reviews-band .section-head .neon-says { color: var(--star);
  text-shadow: 0 0 16px rgba(242,193,78,.4); }
.reviews { --review-card: clamp(280px, 82vw, 440px); --review-lines: 6; }
.reviews__viewport { overflow: hidden; }
.reviews__track { display: flex; align-items: stretch; gap: var(--gap); margin: 0; padding: .25rem;
  list-style: none; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: .25rem; scrollbar-width: none; }
.reviews__track::-webkit-scrollbar { display: none; }
.review { scroll-snap-align: start; flex: 0 0 var(--review-card); max-width: 100%;
  display: flex; flex-direction: column;
  background: var(--night-2); border: 1px solid var(--line-dark); border-radius: 14px;
  padding: clamp(1.3rem, 3vw, 1.9rem); box-shadow: 0 22px 48px -30px rgba(0,0,0,.8);
  position: relative; }
/* a brass quotemark + a checkered top edge — the neon-board frame */
.review::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  border-radius: 14px 14px 0 0;
  background: repeating-linear-gradient(90deg, var(--cta) 0 10px, var(--night-2) 10px 20px); opacity: .8; }
.review__stars { color: var(--star); display: inline-flex; gap: .15em; margin-top: .3rem; }
.review__star { width: 1.1em; height: 1.1em; }
.review__quote { font-family: var(--sans); text-transform: none; font-size: 1.12rem; line-height: 1.5;
  color: var(--paper); margin: .8rem 0 1rem;
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: var(--review-lines); overflow: hidden; }
.review__by { margin-top: auto; font-family: var(--sans); font-size: .85rem; color: var(--paper-dim);
  display: flex; gap: .5rem; align-items: baseline; }
.review__author { font-family: var(--display); text-transform: uppercase; letter-spacing: .06em;
  font-weight: 600; color: var(--star); }
.review__src { color: var(--paper-dim); }
.reviews__controls { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 1.5rem; }
.reviews__btn { width: 46px; height: 46px; border-radius: 999px; border: 1.5px solid var(--brass);
  background: transparent; color: var(--brass); cursor: pointer; display: inline-flex; align-items: center;
  justify-content: center; transition: background .15s ease, color .15s ease, opacity .15s ease; }
.reviews__btn:hover:not(:disabled) { background: var(--brass); color: var(--night); }
.reviews__btn:focus-visible { outline: 3px solid var(--star); outline-offset: 3px; }
.reviews__btn:disabled { opacity: .35; cursor: default; }
.reviews__dots { display: flex; gap: .5rem; }
.reviews__dot { width: 9px; height: 9px; padding: 0; border-radius: 999px; border: 0; cursor: pointer;
  background: rgba(199,154,78,.4); }
.reviews__dot.is-active { background: var(--star); }
@media (prefers-reduced-motion: reduce) { .reviews__track { scroll-behavior: auto; } }

/* =====================================================================
   photo-gallery — base contract + polaroid-scatter (the family wall)
   ===================================================================== */
.marquee { position: relative; overflow: hidden; }
.marquee--static { overflow-x: auto; scrollbar-width: thin; }
.marquee__track { display: flex; gap: var(--gap); margin: 0; padding: 0; list-style: none; width: max-content; }
.marquee--animated .marquee__track { animation: ph-marquee var(--marquee-speed, 60s) linear infinite; }
.marquee--animated:hover .marquee__track,
.marquee--animated:focus-within .marquee__track { animation-play-state: paused; }
.marquee__item { flex: 0 0 auto; }
@keyframes ph-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee--animated .marquee__track { animation: none; } }

.ph-btn { display: block; padding: 0; border: 0; background: none; cursor: zoom-in; }

/* polaroid-scatter — a real grid underneath (no holes, multi-col on mobile);
   the static tilt + white mat are the family-snapshot personality */
.gx-scatter .section-head { margin-bottom: clamp(1.6rem,4vw,2.4rem); }
.scatter { display: grid; gap: clamp(1.2rem, 3vw, 2rem);
  grid-template-columns: repeat(auto-fit, minmax(clamp(150px, 24vw, 210px), 1fr));
  margin: 0; padding: 0; list-style: none; align-items: start; }
.snap { margin: 0; background: #fbf7ef; padding: .55rem .55rem 2rem; border-radius: 3px;
  box-shadow: 0 16px 32px -20px rgba(10,7,6,.6); transition: box-shadow var(--ph-ease); }
.scatter > li:nth-child(4n+1) .snap { transform: rotate(-2.4deg); }
.scatter > li:nth-child(4n+2) .snap { transform: rotate(1.8deg); }
.scatter > li:nth-child(4n+3) .snap { transform: rotate(-1deg); }
.scatter > li:nth-child(4n+4) .snap { transform: rotate(2.2deg); }
.snap:hover { box-shadow: 0 26px 44px -18px rgba(10,7,6,.7); }
.snap .ph-btn img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; border-radius: 1px; }
.snap__cap { position: relative; display: block; margin-top: .5rem; text-align: center;
  font-family: var(--sans); font-style: normal; font-weight: 600; font-size: .82rem;
  letter-spacing: .02em; color: #4a4039; }
/* a tiny pin on each snapshot */
.snap::before { content: ""; position: absolute; top: -7px; left: 50%; transform: translateX(-50%);
  width: 12px; height: 12px; border-radius: 50%; background: var(--cta);
  box-shadow: 0 2px 4px rgba(0,0,0,.35), inset 0 -2px 3px rgba(0,0,0,.25); z-index: 2; }
@media (prefers-reduced-motion: reduce) { .scatter .snap { transform: none; } }
@media (max-width: 600px) { .scatter { gap: 1.15rem; } .snap { padding: .45rem .45rem 1.7rem; } }

/* lightbox (built by gallery.js) */
html.ph-lock, html.ph-lock body { overflow: hidden; }
.ph-lightbox[aria-hidden="true"] { display: none; }
.ph-lightbox { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; }
.ph-lightbox__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.9); }
.ph-lightbox__dialog { position: relative; display: flex; align-items: center; justify-content: center;
  gap: .5rem; max-width: min(94vw, 1100px); }
.ph-lightbox__figure { margin: 0; }
.ph-lightbox__prev, .ph-lightbox__next { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; }
.ph-lightbox__prev { left: .5rem; } .ph-lightbox__next { right: .5rem; }
.ph-lightbox__img { max-width: 84vw; max-height: 80vh; width: auto; height: auto; border-radius: 8px; display: block; }
.ph-lightbox__cap { color: #fff; font-family: var(--sans); font-size: .9rem; text-align: center; margin-top: .7rem; opacity: .92; }
.ph-lightbox__btn { background: rgba(255,255,255,.14); color: #fff; border: 0; cursor: pointer; width: 46px; height: 46px;
  border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; }
.ph-lightbox__btn:hover { background: rgba(255,255,255,.26); }
.ph-lightbox__btn svg { width: 1.4rem; height: 1.4rem; }
.ph-lightbox__close { position: absolute; top: -3.2rem; right: 0; }
@media (max-width: 600px) { .ph-lightbox__close { top: -2.8rem; } .ph-lightbox__img { max-width: 92vw; } }

/* =====================================================================
   connect — photo-backed "join the family" panel
   ===================================================================== */
.connect-panel { position: relative; isolation: isolate; overflow: hidden;
  background-image: var(--bg); background-size: cover; background-position: center; }
.connect-panel__scrim { position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,7,6,.42), rgba(10,7,6,.78)); }
.connect-panel__inner { color: #fff; padding: clamp(2.8rem,8vw,5.5rem) var(--gutter);
  max-width: var(--wrap); margin-inline: auto; }
.connect-panel .eyebrow { color: var(--star); }
.connect-panel h2 { font-family: var(--display); font-size: clamp(1.9rem,5vw,3rem); margin: .4rem 0 .2rem;
  text-wrap: balance; }
.connect-panel .flag-rule { margin: .6rem 0 1rem; }
.connect-panel p { font-family: var(--sans); text-transform: none; max-width: 44ch; color: #f1e8dc; font-size: var(--fs-lede); }
.connect__actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.6rem; }
.connect__btn { display: inline-flex; align-items: center; gap: .55rem; padding: .8rem 1.2rem;
  border: 1px solid rgba(255,255,255,.5); border-radius: 999px; background: rgba(255,255,255,.12);
  color: #fff; font-family: var(--display); text-transform: uppercase; letter-spacing: .06em;
  font-weight: 500; font-size: .92rem; text-decoration: none; cursor: pointer; backdrop-filter: blur(4px); }
.connect__btn:hover, .connect__btn:focus-visible { background: #fff; color: var(--ink); border-color: #fff; }
.connect__btn:focus-visible { outline: 3px solid var(--star); outline-offset: 3px; }
.connect__btn .icon { width: 1.2em; height: 1.2em; }
.connect__done { font-size: .8rem; color: rgba(255,255,255,.9); text-transform: none; letter-spacing: 0; }

/* =====================================================================
   VISIT — hours + contact + map, on cream
   ===================================================================== */
.visit__grid { display: grid; gap: clamp(1.6rem,4vw,2.6rem);
  grid-template-columns: 1fr; align-items: start; }
@media (min-width: 880px) { .visit__grid { grid-template-columns: 1.1fr 1fr; } }
.visit__card { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.4rem,4vw,2rem); box-shadow: var(--shadow); }
.visit__card h3 { font-size: 1.3rem; color: var(--accent-deep); display: flex; align-items: center; gap: .5rem; }
.visit__card h3 .icon { width: 1.1em; height: 1.1em; color: var(--cta); }
.hours { list-style: none; margin: 1.1rem 0 0; padding: 0; }
.hours li { display: flex; justify-content: space-between; gap: 1rem; padding: .5rem 0;
  border-bottom: 1px solid var(--line-soft); font-family: var(--sans); }
.hours li:last-child { border-bottom: 0; }
.hours li.is-today { font-weight: 700; color: var(--ink); }
.hours li.is-today .hours__day::after { content: " · Today"; color: var(--cta); font-weight: 700; }
.hours__day { text-transform: none; color: var(--ink-soft); }
.hours li.is-today .hours__day { color: var(--ink); }
.hours__time { font-variant-numeric: tabular-nums; color: var(--ink-soft); }
.hours li.is-closed .hours__time { color: var(--ink-faint); }
.contact-rows { list-style: none; margin: 1rem 0 0; padding: 0; }
.contact-rows li { display: flex; align-items: flex-start; gap: .7rem; padding: .45rem 0; font-family: var(--sans); }
.contact-rows .icon { width: 1.2em; height: 1.2em; color: var(--cta); margin-top: .15rem; }
.contact-rows a { color: var(--ink); text-decoration: none; }
.contact-rows a:hover { color: var(--cta-hover); }
.visit__actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.3rem; }
.visit__map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow); }
.visit__map img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4/3; }
.visit__storefront { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: var(--radius);
  box-shadow: var(--shadow); }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: #14110F; color: var(--paper-dim); padding: clamp(2.4rem,6vw,3.6rem) 0 2rem; }
.footer__top { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; align-items: flex-start; }
.footer__brand { display: flex; flex-direction: column; gap: .6rem; max-width: 22rem; }
.footer__brand img { height: 56px; width: auto; align-self: flex-start; object-fit: contain; }
/* match the header .wordmark__logo: round + brass-ring the baked-in white border
   so the footer mark reads as a deliberate badge on the dark footer, not a sticker. */
.footer__logo { height: 56px; width: auto; display: block; margin-bottom: .9rem;
  border-radius: 9px;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--brass) 60%, transparent); }
.footer__brand p { font-family: var(--sans); font-size: .92rem; line-height: 1.6; }
.footer__bridge { width: 220px; height: 24px; color: var(--brass); opacity: .7; margin-top: .4rem; }
.footer__col h4 { font-size: .95rem; color: var(--paper); letter-spacing: .14em; margin-bottom: .7rem; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .45rem; }
.footer__col a { color: var(--paper-dim); text-decoration: none; font-family: var(--sans); font-size: .92rem; }
.footer__col a:hover { color: var(--brass); }
.footer__social { display: flex; gap: .6rem; margin-top: .3rem; }
.footer__social a { width: 42px; height: 42px; border-radius: 999px; border: 1px solid var(--line-dark);
  display: inline-flex; align-items: center; justify-content: center; color: var(--paper-dim); }
.footer__social a:hover { color: var(--night); background: var(--brass); border-color: var(--brass); }
.footer__social .icon { width: 1.2rem; height: 1.2rem; }
.footer__bottom { margin-top: 2.2rem; padding-top: 1.4rem; border-top: 1px solid var(--line-dark);
  display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between; align-items: center;
  font-family: var(--sans); font-size: .82rem; color: var(--paper-dim); }
.footer__bottom .flag-rule { width: 44px; }

/* =====================================================================
   MENU pages — menu-zebra + multi-price columns + picker tabs
   ===================================================================== */
.menu-tabs { position: sticky; top: var(--header-h); z-index: 40; display: flex; gap: .4rem;
  padding: .6rem var(--gutter); overflow-x: auto; scrollbar-width: none;
  background: var(--night); border-bottom: 1px solid var(--line-dark); }
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tabs a { flex: 0 0 auto; white-space: nowrap; padding: .55rem 1rem; border-radius: 999px;
  text-decoration: none; color: var(--paper-dim); font-family: var(--display); font-weight: 500;
  text-transform: uppercase; letter-spacing: .08em; font-size: .9rem; border: 1px solid transparent;
  min-height: 44px; display: inline-flex; align-items: center; }
.menu-tabs a:hover { color: var(--paper); }
.menu-tabs a[aria-current="page"] { color: var(--cta-ink); background: var(--cta); }
.menu-tabs a:focus-visible { outline: 3px solid var(--star); outline-offset: 2px; }

/* sticky category chips — under the header + tabs strip */
.menu-nav { position: sticky; top: calc(var(--header-h) + 57px); z-index: 38;
  background: color-mix(in srgb, var(--paper) 95%, transparent); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line); padding: .55rem 0; }
.menu-nav .wrap { display: flex; gap: .4rem; overflow-x: auto; scrollbar-width: none; }
.menu-nav .wrap::-webkit-scrollbar { display: none; }
.menu-nav a { flex: 0 0 auto; white-space: nowrap; padding: .4em 1em; border-radius: 999px;
  text-decoration: none; font-family: var(--display); font-weight: 500; text-transform: uppercase;
  letter-spacing: .06em; font-size: .82rem; color: var(--ink-faint);
  min-height: 44px; display: inline-flex; align-items: center; }
.menu-nav a:hover { background: color-mix(in srgb, var(--cta) 12%, transparent); color: var(--ink); }
.menu-nav a:focus-visible { outline: 3px solid var(--cta); outline-offset: 2px; }
.menu-nav a.is-active { background: var(--cta); color: var(--cta-ink); }
.menu-nav__arrow { flex: 0 0 auto; width: 44px; height: 44px; display: none; align-items: center;
  justify-content: center; align-self: center; margin: 0 var(--gutter);
  border: 1px solid var(--line); border-radius: 999px; background: var(--paper-2); color: var(--cta);
  cursor: pointer; -webkit-tap-highlight-color: transparent; }
.menu-nav--scrollable { display: flex; align-items: stretch; }
.menu-nav--scrollable .wrap { flex: 1 1 auto; min-width: 0; order: 0; }
.menu-nav--scrollable .menu-nav__arrow { display: inline-flex; }
.menu-nav__arrow--prev { order: -1; margin-right: .35rem; }
.menu-nav__arrow--next { order: 1; margin-left: .35rem; }
.menu-nav__arrow svg { width: 22px; height: 22px; }
.menu-nav__arrow:hover:not(:disabled) { background: color-mix(in srgb, var(--cta) 14%, var(--paper)); }
.menu-nav__arrow:focus-visible { outline: 3px solid var(--cta); outline-offset: 2px; }
.menu-nav__arrow:disabled { opacity: .3; cursor: default; }
@media (prefers-reduced-motion: reduce) { .menu-nav .wrap { scroll-behavior: auto; } }

/* menu intro head + body */
.menu-intro { background: var(--night); color: var(--paper); padding: clamp(2rem,5vw,3rem) 0 clamp(1.6rem,4vw,2.4rem);
  text-align: center; }
.menu-intro .eyebrow { color: var(--brass); }
.menu-intro h1 { font-size: clamp(2.2rem,6vw,3.4rem); color: var(--paper); margin: .4rem 0 .1rem; }
.menu-intro h1 .neon--tomato { color: var(--accent-warm); }
.menu-intro .flag-rule { margin: .8rem auto 0; }
.menu-intro .avail { font-family: var(--sans); font-style: italic; color: var(--paper-dim); margin-top: .8rem; }
.menu-intro .intro-copy { font-family: var(--sans); color: var(--paper-dim); max-width: 44rem;
  margin: .8rem auto 0; line-height: 1.6; }

.menu-body { padding: clamp(1.6rem,5vw,3rem) 0 4rem; }
.menu-section { scroll-margin-top: calc(var(--header-h) + 57px + var(--menu-nav-h, 56px) + .6rem);
  margin-bottom: var(--section-y); }
/* CENTERED menu (lesson 0048): plain section heads + the list read centered
   like a printed menu. The fill-rule becomes a short centered underline. */
.menu-section__head { display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: .45rem; margin: 0 auto 1.2rem;
  max-width: var(--menu-measure); }
.menu-section__head h2 { font-size: var(--fs-h2); color: var(--accent-deep); white-space: nowrap; min-width: 0; }
.menu-section__head .rule { flex: none; width: 64px; height: 2px; background: var(--line); }
/* --cols heads carry right-aligned price-column labels (SM/LG…) that must stay
   over their price columns, so they keep the baseline row + fill-rule. */
.menu-section__head--cols, .menu-section__head:has(.menu-cols) {
  flex-direction: row; align-items: baseline; text-align: left; gap: 1rem;
  max-width: var(--menu-measure); }
.menu-section__head--cols .rule, .menu-section__head:has(.menu-cols) .rule {
  flex: 1; width: auto; }
.menu-section__note { max-width: var(--menu-measure); margin: -.6rem auto 1rem; font-family: var(--sans);
  font-style: italic; color: var(--ink-faint); font-size: .92rem; text-align: center; }

/* zebra rows */
.menu-list.menu-zebra { max-width: var(--menu-measure); margin-inline: auto;
  border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.menu-zebra .menu-row { padding: .85rem clamp(.9rem,3vw,1.3rem); border-bottom: 1px solid var(--line); }
.menu-zebra .menu-row:last-child { border-bottom: 0; }
.menu-zebra .menu-row:nth-child(odd) { background: color-mix(in srgb, var(--cta) 5%, var(--paper)); }
.menu-zebra .menu-row__top { display: flex; align-items: baseline; justify-content: space-between; gap: .75rem; }
.menu-zebra .menu-row__name { font-family: var(--display); text-transform: none; font-weight: 600;
  font-size: 1.08rem; color: var(--ink); min-width: 0; }
.menu-zebra .menu-row__price { flex: 0 0 auto; font-family: var(--sans); font-weight: 700; color: var(--accent-deep);
  font-variant-numeric: tabular-nums; white-space: nowrap; }
.menu-zebra .menu-row__desc { margin: .25rem 0 0; font-family: var(--sans); font-size: .92rem; color: var(--ink-soft); }
.menu-zebra .menu-row__prices { flex: 0 0 auto; }
/* a subhead inside a section (e.g. "Grandma Pizza (16x16)") */
.menu-row__sub { max-width: var(--menu-measure); margin: 1.2rem auto .2rem; padding: 0 clamp(.9rem,3vw,1.3rem);
  font-family: var(--display); text-transform: uppercase; letter-spacing: .08em; font-size: .82rem; color: var(--brass-ink); }
/* mixed-mode inline labeled prices (cup/bowl, chicken/veal on a lone multi row) */
.menu-row__price--multi { white-space: nowrap; font-size: .96rem; }
.menu-row__price--multi .price-lab { font-family: var(--display); text-transform: uppercase;
  letter-spacing: .06em; font-size: .66rem; color: var(--brass-ink); font-weight: 600; }

/* multi-price columns */
.menu-row__prices { display: inline-grid; gap: 0 .7rem; text-align: right;
  font-variant-numeric: tabular-nums; align-items: baseline; }
.menu-row__prices--1 { grid-template-columns: minmax(var(--price-col-1), auto); }
.menu-row__prices--2 { grid-template-columns: repeat(2, var(--price-col)); }
.menu-row__prices--3 { grid-template-columns: repeat(3, var(--price-col-3)); }
.menu-row__prices.single { display: inline-block; }
.menu-row__prices .menu-row__price { color: var(--accent-deep); font-weight: 700; }
.menu-cols { display: inline-grid; gap: 0 .7rem; text-align: right; font-family: var(--display);
  font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--brass-ink); }
.menu-cols--2 { grid-template-columns: repeat(2, var(--price-col)); }
.menu-cols--3 { grid-template-columns: repeat(3, var(--price-col-3)); }

/* diet tags */
.tag { display: inline-block; font-family: var(--display); font-size: .58rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; vertical-align: middle; padding: .2em .5em;
  border-radius: 4px; margin-left: .45em; background: color-mix(in srgb, var(--flag-green) 16%, var(--paper));
  color: var(--flag-green); }
.tag-gf { background: color-mix(in srgb, var(--brass) 20%, var(--paper)); color: var(--brass-ink); }

/* a labeled-download chip for the catering PDF / menu PDF */
.menu-download { max-width: var(--menu-measure); margin: 1.4rem auto 0; }
.menu-download a { display: inline-flex; align-items: center; gap: .55rem; padding: .7rem 1.2rem;
  border: 1.5px solid var(--ink); border-radius: 8px; text-decoration: none; color: var(--ink);
  font-family: var(--display); text-transform: uppercase; letter-spacing: .05em; font-weight: 500; font-size: .9rem; }
.menu-download a:hover { background: var(--ink); color: var(--paper); }
.menu-download .icon { width: 1.15em; height: 1.15em; }

/* a compact follow + order bar on the QR landing */
.qr-actions { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 1rem 0; }
.qr-actions .wrap { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; justify-content: center; }
.qr-actions .connect__btn { background: transparent; color: var(--ink); border-color: var(--line);
  backdrop-filter: none; }
.qr-actions .connect__btn:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

@media (max-width: 640px) {
  .menu-section__head h2 { font-size: clamp(1.35rem,5.2vw,1.9rem); white-space: normal; }
}

/* =====================================================================
   menu-picker landing (menus.html) — card grid (the "both" pattern)
   ===================================================================== */
.menu-hub { padding: clamp(2rem,6vw,3.5rem) 0 clamp(3rem,7vw,5rem); }
.menu-hub__head { text-align: center; max-width: 44rem; margin: 0 auto clamp(1.8rem,4vw,2.6rem); }
.menu-hub__head h1 { font-size: clamp(2.2rem,6vw,3.4rem); color: var(--accent-deep); }
.menu-hub__head .flag-rule { margin: .8rem auto 0; }
.menu-hub__head p { font-family: var(--sans); color: var(--ink-faint); font-size: var(--fs-lede); margin-top: .8rem; }
.menu-hub__grid { list-style: none; margin: 0 0 2rem; padding: 0; display: grid; gap: clamp(.9rem,2.5vw,1.3rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); }
.menu-hub__grid > * { min-width: 0; }
.menu-card { position: relative; display: block; aspect-ratio: 4/3; border-radius: var(--radius);
  overflow: hidden; text-decoration: none; color: #fff; box-shadow: var(--shadow);
  border: 1px solid var(--line); }
.menu-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.menu-card:hover img { transform: scale(1.05); }
.menu-card__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,7,6,.82), rgba(10,7,6,.05) 60%); }
.menu-card__label { position: absolute; left: 0; right: 0; bottom: 0; padding: 1rem 1.1rem;
  font-family: var(--display); text-transform: uppercase; letter-spacing: .06em; font-size: 1.3rem; font-weight: 600; }
.menu-card__label small { display: block; font-family: var(--sans); text-transform: none; letter-spacing: 0;
  font-weight: 500; font-size: .8rem; color: #e9dcc9; margin-top: .15rem; }
.menu-card:focus-visible { outline: 3px solid var(--cta); outline-offset: 3px; }
.menu-hub__cta { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }

/* =====================================================================
   Reveal-on-scroll baseline — degrades to fully visible (no-JS == reveal end)
   ===================================================================== */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.is-in { opacity: 1; transform: none; }
}
/* if JS never runs, never leave content hidden: */
.no-js .reveal, html:not(.js) .reveal { opacity: 1 !important; transform: none !important; }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 880px) {
  .menu-list { }
}
@media (max-width: 600px) {
  .footer__top { gap: 1.6rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}
