/* =====================================================================
   BBQ Beast — "Butcher & Char"
   Light kraft/butcher-paper ground · near-black charcoal ink · ONE hot
   ember red-orange accent (≤1 per viewport) · smoke-gray secondary.
   Shape signature: "stamped & taped" — FLAT (no box-shadows anywhere),
   2–3px solid charcoal borders, rotated rubber-stamp accents, tape-strip
   section labels, polaroid-on-butcher-paper photo frames.
   Full token spec, computed WCAG pairings, and the five-demo separation
   table live in docs/design-system.md.
   Lockup: Allerta Stencil (the brand IS type — no logo exists).
   Display: Archivo Black (heavy black grotesque) · Body: Barlow.
   ===================================================================== */

/* Weight-clamped import. Allerta Stencil and Archivo Black each ship a
   single cut (registered at 400) — request nothing else, and never set a
   synthetic bold on a --display or --stencil rule. Barlow is clamped to
   the three weights the skeleton actually uses (400/600/700). */
@import url("https://fonts.googleapis.com/css2?family=Allerta+Stencil&family=Archivo+Black&family=Barlow:wght@400;600;700&display=swap");

:root {
  /* palette — Butcher & Char (a sheet of kraft butcher paper under good
     daylight: charcoal ink stamped on it, one ember note where the fire
     shows, smoke-gray where tape and haze sit) */
  --bg:              #EDE4D4;   /* page field — kraft/butcher paper */
  --surface:         #F7F1E3;   /* cards, popup cards, form fields — fresh paper */
  --surface-2:       #E3D9C4;   /* hover / raised / nested surfaces — handled kraft */
  --ink:             #211D19;   /* deep charcoal — body text */
  --ink-muted:       #5A5348;   /* captions / meta — smoke-brown gray */
  --heading:         #171310;   /* near-black char — display headings */
  --primary:         #211D19;   /* charcoal: button fill, active nav, keylines */
  --primary-hover:   #A53017;   /* hover inverts to ember (white text passes 6.47:1) */
  --on-primary:      #FBF7EE;   /* warm paper-white text ON charcoal buttons */
  --link:            #211D19;   /* inline links: ink + underline (print-shop rule) */
  --accent-coral:    #A53017;   /* hot ember red-orange — ≤1 per viewport */
  --ember:           #A53017;   /* semantic alias for the accent */
  --accent-seaglass: #DCD5C5;   /* tape-strip / quiet chip fill (smoke-gray), always with --ink text */
  --brass:           #5A5244;   /* retired medal-brass slot → deep smoke; keylines & markers only */
  --band-bg:         #211D19;   /* charcoal ink-block bands: feature strips + footer */
  --band-text:       #F2EBDC;   /* paper showing through the ink */
  --band-stat:       #D9C9A8;   /* kraft-sand stat numbers + band accents (10.26:1 on the band) */
  --footer-text:     #C9C1B2;   /* footer secondary text */
  --hairline:        #CFC4AD;   /* DECORATIVE dividers only — never input borders */
  --hairline-strong: #6E6558;   /* FUNCTIONAL input/UI borders (≥3:1 non-text) */
  --ribbon-text:     #E8DFCB;   /* demo ribbon text on --band-bg */
  --focus:           #A53017;   /* ember focus ring on the kraft field (4.73:1+) */
  --focus-band:      #F2EBDC;   /* paper ring on the charcoal bands + primary buttons */

  /* type */
  --stencil: "Allerta Stencil", "Archivo Black", "Arial Black", sans-serif;
  --display: "Archivo Black", "Arial Black", "Avenir Next", sans-serif;
  --body: "Barlow", ui-sans-serif, system-ui, sans-serif;
  --step--2: clamp(.72rem, .7rem + .1vw, .8rem);
  --step--1: clamp(.82rem, .79rem + .15vw, .92rem);
  --step-0:  clamp(1rem, .96rem + .25vw, 1.15rem);
  --step-2:  clamp(1.4rem, 1.25rem + .8vw, 1.9rem);
  /* Archivo Black runs wide — the top steps are trimmed vs the skeleton
     so hero lines still break at 12–16ch without clipping */
  --step-4:  clamp(2rem, 1.7rem + 1.6vw, 3rem);
  --step-6:  clamp(2.6rem, 2rem + 3.2vw, 4.6rem);

  --maxw: 72rem;
  /* stamped & taped — hard edges, and FLAT: the shadow token exists only
     so nothing dangles; no rule in this file may set a box-shadow */
  --radius: 0px;
  --shadow: none;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--bg);
  /* kraft grain: one faint smoke wash high on the sheet + paper-noise
     texture — a LIGHT field; the concept is paper, not atmosphere */
  background-image:
    radial-gradient(110% 60% at 85% -15%, color-mix(in srgb, var(--ink) 4%, transparent), transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}
/* Archivo Black ships one cut at nominal 400 — never ask it for bold */
h1, h2, h3 { font-family: var(--display); font-weight: 400; line-height: 1.08; letter-spacing: 0; color: var(--heading); margin: 0 0 .5em; }
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-2); }
p { margin: 0 0 1rem; max-width: 62ch; }
a { color: var(--link); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ember); }
img { max-width: 100%; height: auto; display: block; }
/* generic lede — the (config-gated, OFF) age overlay uses .lede outside
   .hero; contextual rules (.hero .lede) still override */
.lede { font-size: clamp(1.05rem, 1rem + .4vw, 1.3rem); color: var(--ink-muted); }

:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 1rem; top: 1rem; background: var(--band-bg); color: var(--band-text); padding: .5rem .9rem; border-radius: var(--radius); z-index: 50; }

main { max-width: var(--maxw); margin: 0 auto; padding: clamp(2rem, 5vw, 4.5rem) clamp(1.1rem, 4vw, 2rem); }
section + section { margin-top: clamp(2.5rem, 6vw, 5rem); }

/* ---------- header / nav ---------- */
/* Announcement bar (optional) + header stick to the top of the viewport as
   a single unit, so the header always sits cleanly below the bar without
   any fragile top-offset math. The header itself is no longer sticky. */
.site-top { position: sticky; top: 0; z-index: 40; }
.site-header {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .55rem clamp(1.1rem, 4vw, 2rem);
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: blur(10px);
  /* the print-shop rule: a solid charcoal baseline, not a hairline */
  border-bottom: 2px solid var(--ink);
}

/* ---------- sticky announcement bar (interior pages, no motion) ---------- */
/* A slim, single-line strip. Deliberately NOT a marquee: text is static
   (WCAG 2.2.2 — no moving content to pause/stop/hide). Suppressed on home
   via the announcement_bar context processor, where .savedate lives. */
.navbar {
  background: var(--band-bg);
  border-bottom: 2px solid var(--ink);
}
.navbar-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: .4rem clamp(1.1rem, 4vw, 2rem);
  display: flex; align-items: center; gap: .5rem;
}
.navbar-link {
  flex: 1 1 auto;
  display: inline-flex; flex-wrap: wrap; align-items: baseline;
  justify-content: center; gap: .25rem .6rem;
  color: var(--band-text); text-decoration: none; font-weight: 600;
  font-size: var(--step--1); line-height: 1.4;
}
.navbar-link:hover { color: var(--band-text); text-decoration: underline; text-underline-offset: 3px; }
.navbar-close {
  flex: 0 0 auto; background: none; border: 0; cursor: pointer;
  padding: .1rem .4rem; line-height: 1; font-size: 1.3rem;
  color: color-mix(in srgb, var(--band-text) 70%, transparent);
  border-radius: var(--radius);
}
.navbar-close:hover { color: var(--band-text); }
.navbar-tag {
  font-family: var(--body); font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em; font-size: .72rem;
  /* kraft-sand tag on the charcoal bar */
  color: var(--band-stat);
}
.navbar-msg { color: color-mix(in srgb, var(--band-text) 88%, transparent); }
.navbar-cue { color: var(--band-text); }

/* The brand IS the type lockup — no logo exists (engagement deliverable).
   Stencil face, uppercase; the <em> ("Beast") takes the ember. */
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand:hover { color: inherit; }
.brand-lockup {
  font-family: var(--stencil); font-weight: 400; font-size: 1.55rem;
  line-height: 1; letter-spacing: .04em; text-transform: uppercase;
  color: var(--heading); white-space: nowrap;
}
.brand-lockup em { font-style: normal; color: var(--ember); }
@media (max-width: 640px) { .brand-lockup { font-size: 1.3rem; } }

.nav { display: flex; gap: clamp(.6rem, 1.4vw, 1.4rem); align-items: center; flex-wrap: wrap; }
.nav a {
  color: var(--ink); text-decoration: none; font-weight: 600;
  font-size: var(--step--1); letter-spacing: .04em; text-transform: uppercase;
  padding: .25rem 0; position: relative;
}
/* short centered charcoal tick, not a full-width underline-grow */
.nav a::after { content: ""; position: absolute; left: 50%; transform: translateX(-50%); bottom: -2px; width: 0; height: 3px; background: var(--ink); transition: width .2s ease; }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 1.4rem; }
.nav a:hover { color: var(--ink); }

/* CSS-only responsive nav: inline on desktop, checkbox-hack hamburger on
   mobile. (A <details> kept the links hidden on desktop — this is robust.) */
.nav-toggle { position: absolute; left: -9999px; }       /* a11y-hidden checkbox */
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: .55rem .4rem; cursor: pointer; }
.nav-burger span { display: block; width: 26px; height: 3px; background: var(--ink); }

@media (max-width: 820px) {
  .site-header { position: relative; }
  .nav-burger { display: flex; }
  .nav {
    display: none; position: absolute; right: clamp(1.1rem, 4vw, 2rem); top: 100%;
    flex-direction: column; align-items: flex-start; gap: .9rem; background: var(--surface);
    border: 2px solid var(--ink); border-radius: var(--radius);
    padding: 1rem 1.2rem; min-width: 13rem; z-index: 45;
  }
  .nav-toggle:checked ~ .nav { display: flex; }
}

/* ---------- hero ---------- */
.hero {
  position: relative; padding: clamp(2.5rem, 7vw, 5.5rem) 0 clamp(2rem, 5vw, 3.5rem);
  overflow: hidden;
}
.hero::before { /* smoke wisps drifting off the top-right of the sheet —
     three soft smoke-gray puffs, nothing darker than 7% ink */
  content: ""; position: absolute; inset: 0 0 auto auto; width: 70%; height: 100%;
  z-index: -1; opacity: .55;
  background:
    radial-gradient(42% 30% at 78% 16%, color-mix(in srgb, var(--ink) 7%, transparent), transparent 70%),
    radial-gradient(30% 22% at 60% 42%, color-mix(in srgb, var(--ink) 5%, transparent), transparent 70%),
    radial-gradient(24% 16% at 86% 58%, color-mix(in srgb, var(--ink) 4%, transparent), transparent 70%);
  -webkit-mask-image: linear-gradient(to bottom, #000 55%, transparent);
  mask-image: linear-gradient(to bottom, #000 55%, transparent);
}
.hero h1 { font-size: var(--step-6); font-weight: 400; max-width: 16ch; }
.hero .lede { font-size: var(--step-2); font-family: var(--body); font-weight: 400; color: var(--ink-muted); max-width: 32ch; }
.hero p { font-size: 1.1rem; }
/* signature eyebrow: the TAPE STRIP — a smoke-gray chip stuck on at a
   slight angle. Ink text only; never set ember type on the tape. */
.eyebrow {
  display: inline-block; font-family: var(--body); text-transform: uppercase;
  letter-spacing: .14em; font-size: .72rem; font-weight: 700;
  color: var(--ink); background: var(--accent-seaglass);
  padding: .34rem .75rem .3rem;
  transform: rotate(-1deg); transform-origin: left center;
  margin: 0 0 1rem; max-width: none;
}
/* hero CTA row: primary + secondary, wraps cleanly on mobile */
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; }
/* offset in-page anchor jumps so the sticky bar + header don't cover the
   target. Desktop clears a one-line bar + header; on mobile the bar can wrap
   to 2–3 lines, so the offset grows to keep the target fully visible. */
:target { scroll-margin-top: 6.5rem; }
@media (max-width: 820px) { :target { scroll-margin-top: 8.5rem; } }

/* ---------- buttons ---------- */
/* Flat charcoal fill, paper text, 2px border — a rubber stamp, not a pill.
   Hover inverts to ember (paper-on-ember = 6.47:1). No lifts, no shadows. */
.btn, button[type="submit"] {
  display: inline-block; font-family: var(--body); font-weight: 700;
  font-size: var(--step--1); text-transform: uppercase; letter-spacing: .06em;
  background: var(--primary); color: var(--on-primary);
  border: 2px solid var(--primary); border-radius: var(--radius);
  padding: .75rem 1.35rem; text-decoration: none; cursor: pointer;
  box-shadow: none; transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.btn:hover, button[type="submit"]:hover { background: var(--ember); border-color: var(--ember); color: var(--on-primary); }
.btn--ghost { background: transparent; color: var(--primary); border: 2px solid var(--primary); box-shadow: none; }
.btn--ghost:hover { background: var(--primary); border-color: var(--primary); color: var(--on-primary); }

/* ---------- cards / hours / menu ---------- */
/* The stamped frame: fresh-paper surface, 2px solid charcoal border, flat */
.card, .hours, .menu, .booking, .product, .shop, .events {
  background: var(--surface);
  border: 2px solid var(--ink); border-radius: var(--radius);
  padding: clamp(1.3rem, 3vw, 2.2rem); box-shadow: none;
}
.hours ul, .menu-items, .products, .events ul { list-style: none; margin: 0; padding: 0; }
.hours li { display: flex; justify-content: space-between; gap: 1rem; padding: .5rem 0; border-bottom: 1px solid var(--hairline); }
.hours li:last-child { border-bottom: 0; }
/* Subheadings inside the hours card. */
.hours-sub { margin: 1.3rem 0 .2rem; font-family: var(--display); font-weight: 400; font-size: 1rem; color: var(--heading); }
.hours-sub:first-of-type { margin-top: .4rem; }

.menu h2 { color: var(--ink); margin-top: 1.6rem; }
.menu h2::after { content: ""; display: block; width: 3rem; height: 3px; background: currentColor; margin-top: .35rem; }
.menu-items li { padding: .7rem 0; border-bottom: 1px solid var(--hairline); }
.menu-items strong { font-family: var(--display); font-weight: 400; font-size: 1.05rem; color: var(--heading); }
/* prices: plain ink, upright, semibold — grease-pencil on the wrap sheet.
   (All menu prices in this demo are PLACEHOLDERS pending client confirm.) */
.menu-items em { color: var(--ink); font-style: normal; font-weight: 600; }
.menu-items .desc { color: var(--ink-muted); font-size: var(--step--1); margin-top: .15rem; }
.updated { color: var(--ink-muted); font-size: var(--step--1); font-style: italic; }
/* generic de-emphasis utility (e.g. "Details coming soon") */
.muted { color: var(--ink-muted); }

.products { display: grid; grid-template-columns: repeat(auto-fill, minmax(13rem, 1fr)); gap: 1.2rem; }
.products li { background: var(--surface); border: 2px solid var(--ink); border-radius: var(--radius); padding: 1.1rem; }

/* ---------- forms ---------- */
form p { display: flex; flex-direction: column; gap: .35rem; max-width: 34rem; }
label { font-weight: 600; font-size: var(--step--1); color: var(--ink-muted); }
input, textarea, select {
  font: inherit; font-size: var(--step-0); padding: .6rem .75rem;
  /* functional borders ride --hairline-strong (≥3:1 non-text); the
     decorative hairline is allowed to whisper, inputs are not */
  background: var(--surface); border: 2px solid var(--hairline-strong); border-radius: var(--radius); color: var(--ink);
}
input::placeholder, textarea::placeholder { color: var(--ink-muted); }
input:focus, textarea:focus, select:focus { border-color: var(--ink); }

/* ---------- age gate ---------- */
/* Config-gated and OFF: BBQ Beast sells barbecue, not alcohol. The
   machinery stays intact per the skeleton convention. */
.age-gate {
  min-height: 78vh; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 1.2rem;
}
.age-gate h1 { font-size: var(--step-6); font-weight: 400; }
.age-gate form { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.age-gate button[value="no"] { background: transparent; color: var(--ink-muted); border-color: transparent; box-shadow: none; text-decoration: underline; }

/* 21+ overlay — full-viewport, opaque enough that the page is not
   readable behind it; the content stays in the DOM for search engines. */
.age-overlay {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  background: color-mix(in srgb, var(--bg) 97%, var(--ink));
}
.age-overlay-card { text-align: center; max-width: 36rem; }
.age-overlay-card h2 { font-size: var(--step-6); font-weight: 400; }
.age-overlay-card form { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.age-overlay-card button[value="no"] { background: transparent; color: var(--ink-muted); border-color: transparent; box-shadow: none; text-decoration: underline; }
body.age-locked { overflow: hidden; }

/* ---------- footer ---------- */
/* The footer is a charcoal ink-block: the paper ends, the stamp begins. */
.site-footer {
  background: var(--band-bg); color: var(--footer-text);
  border-top: 2px solid var(--ink);
  margin-top: clamp(3rem, 8vw, 6rem); padding: clamp(2rem, 5vw, 3.5rem) clamp(1.1rem, 4vw, 2rem);
  font-size: var(--step--1);
}
.site-footer a { color: var(--band-text); }
.site-footer a:hover { color: var(--band-text); }
.footer-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.6fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.footer-brand .footer-logo { height: 52px; width: auto; margin: 0 0 .7rem; }
/* the footer lockup mirrors the header stencil; on charcoal the <em>
   rides kraft-sand (ember fails contrast on the band — see docs §6) */
.footer-lockup {
  font-family: var(--stencil); font-weight: 400; font-size: 1.45rem;
  line-height: 1; letter-spacing: .04em; text-transform: uppercase;
  color: var(--band-text); margin: 0 0 .7rem;
}
.footer-lockup em { font-style: normal; color: var(--band-stat); }
.footer-tagline { font-family: var(--body); font-weight: 600; font-size: 1.05rem; color: var(--band-text); margin: 0 0 .7rem; }
.footer-meta { margin: .2rem 0; color: var(--footer-text); }
.footer-partner { margin: .8rem 0 0; color: var(--footer-text); font-size: var(--step--1); }
.footer-partner a { color: var(--band-text); }
.footer-col h3 { font-family: var(--display); font-weight: 400; font-size: .95rem; letter-spacing: .02em; color: var(--band-text); margin: 0 0 .75rem; }
.footer-col a { display: block; color: var(--footer-text); text-decoration: none; padding: .25rem 0; }
.footer-col a:hover { color: var(--band-text); text-decoration: underline; }
.footer-connect .footer-subscribe { margin: 0 0 1rem; max-width: none; }
.footer-connect .subscribe-row { justify-content: flex-start; }
.footer-connect .subscribe-row input { max-width: 16rem; }
.footer-social { margin: 0; display: flex; flex-wrap: wrap; gap: .25rem 1.1rem; }
.footer-social a { color: var(--footer-text); text-decoration: none; }
.footer-social a:hover { color: var(--band-text); text-decoration: underline; }
.footer-bottom { max-width: var(--maxw); margin: clamp(1.8rem, 4vw, 2.6rem) auto 0; padding-top: 1.2rem; border-top: 1px solid color-mix(in srgb, var(--band-text) 18%, transparent); display: flex; flex-wrap: wrap; gap: .4rem 1.5rem; justify-content: space-between; align-items: center; font-size: var(--step--2); color: color-mix(in srgb, var(--footer-text) 85%, transparent); }
.footer-bottom p { margin: 0; }
.footer-sublinks { display: flex; gap: 1.2rem; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- motion: staggered page-load reveal ---------- */
@media (prefers-reduced-motion: no-preference) {
  main > section { animation: rise .7s cubic-bezier(.2,.7,.2,1) both; }
  main > section:nth-child(2) { animation-delay: .08s; }
  main > section:nth-child(3) { animation-delay: .16s; }
  main > section:nth-child(4) { animation-delay: .24s; }
  @keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
}

/* ---------- cart / messages (dormant shop machinery — /shop/ is DARK) ---------- */
.messages { list-style: none; margin: 0 0 1.5rem; padding: 0; display: grid; gap: .5rem; }
.msg { padding: .6rem .9rem; border-radius: var(--radius); border: 2px solid var(--ink); font-size: var(--step--1); background: var(--surface); }
.msg--success { background: var(--accent-seaglass); border-color: var(--ink); }
.msg--error { background: color-mix(in srgb, var(--ember) 8%, var(--surface)); border-color: var(--ember); }
.cart-link { font-weight: 700 !important; color: var(--heading) !important; }
.cart-rows { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.cart-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; padding: .9rem 0; border-bottom: 1px dashed var(--hairline-strong); }
.cart-name { font-family: var(--display); font-weight: 400; font-size: 1rem; color: var(--heading); flex: 1 1 12rem; }
.cart-qty { display: flex; align-items: center; gap: .6rem; margin: 0; }
.cart-qty input { width: 4.5rem; }
.cart-qty .link, .cart-qty button[value="remove"] { background: none; border-color: transparent; box-shadow: none; color: var(--link); text-transform: none; letter-spacing: 0; padding: .4rem; text-decoration: underline; }
.cart-total { font-size: 1.3rem; font-family: var(--display); font-weight: 400; }
.add-to-cart { display: flex; align-items: center; gap: .8rem; margin-top: 1rem; }
.add-to-cart input { width: 5rem; }
.notice { color: var(--ink-muted); font-style: italic; }
.product .price { font-family: var(--display); font-weight: 400; font-size: 1.4rem; color: var(--ink); }

/* ---------- real assets (lockup / hero photo / menu image) ---------- */
.brand-mark { height: 52px; width: auto; display: block; }
@media (max-width: 640px) {
  .brand-mark { height: 42px; }
}
/* photo frames: 3px solid charcoal — a print taped to the wrap sheet */
.hero-photo {
  width: 100%; max-height: 460px; object-fit: cover; border-radius: var(--radius);
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
  border: 3px solid var(--ink); box-shadow: none;
}
.menu-photo {
  width: 100%; max-width: 640px; border-radius: var(--radius);
  border: 3px solid var(--ink); margin: 1rem 0 1.5rem;
}
.footer-logo { height: 56px; width: auto; margin-bottom: 1rem; opacity: .95; }

/* ---------- menu item thumbnails ---------- */
.menu-items li.has-thumb { display: flex; gap: 1rem; align-items: center; }
/* upright 3:4 plate-crop thumb, stamped frame */
.item-thumb {
  width: 62px; height: 82px; flex: 0 0 62px; object-fit: cover;
  border-radius: var(--radius); border: 2px solid var(--ink);
}
.item-body { flex: 1; }

/* Sold out / kicked — keep the item listed but stamp it: the rotated
   double-ring rubber stamp in ember (the accent's one standing job). */
.menu-items li.sold-out strong {
  text-decoration: line-through;
  text-decoration-color: var(--ember);
  text-decoration-thickness: 2px;
}
.menu-items li.sold-out .item-thumb { filter: grayscale(1); opacity: .55; }
.menu-items li.sold-out em,
.menu-items li.sold-out .desc { opacity: .55; }
.sold-out-stamp {
  display: inline-block;
  margin-left: .45rem;
  vertical-align: middle;
  transform: rotate(-3deg);
  font-family: var(--body);
  font-weight: 700;
  font-size: .66em;
  letter-spacing: .14em;
  text-transform: uppercase;
  line-height: 1.25;
  white-space: nowrap;
  color: var(--ember);
  border: 4px double var(--ember);
  border-radius: 0;
  padding: .04rem .4rem;
}

.products { grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr)); }
.product-card { text-align: center; padding: 0; overflow: hidden; }
.product-card > a { display: block; text-decoration: none; color: var(--heading); }
.product-thumb {
  width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block;
  /* white mat inside the card so photography keeps its true colors */
  background: #fff; border-bottom: 2px solid var(--ink);
}
.product-thumb--empty {
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: var(--hairline); font-family: var(--display); font-weight: 400;
}
.product-name { display: block; font-family: var(--display); font-weight: 400; font-size: 1rem; padding: .9rem 1rem .2rem; }
.product-price { display: block; padding: 0 1rem 1rem; color: var(--ink); font-weight: 600; }
.product-hero {
  width: 100%; max-width: 420px; aspect-ratio: 1/1; object-fit: cover;
  border-radius: var(--radius); border: 3px solid var(--ink); margin-bottom: 1.2rem;
}

/* ---------- featured menu spot (this week's smoke) ---------- */
.menu-feature {
  display: grid; grid-template-columns: 240px 1fr; gap: clamp(1rem, 3vw, 1.8rem);
  align-items: center; margin: 1rem 0 2rem; padding: clamp(1rem, 3vw, 1.5rem);
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--radius); box-shadow: none;
}
/* No image: let the body span — the 240px figure column otherwise
   squeezes lone text into it. */
.menu-feature--noimg { grid-template-columns: 1fr; }
.menu-feature .feature-figure { margin: 0; }
.menu-feature .feature-figure img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--radius); border: 3px solid var(--ink); display: block;
  transform: rotate(-1deg);
}
.menu-feature figcaption {
  font-size: var(--step--1); color: var(--ink-muted); font-style: italic;
  text-align: center; margin-top: .55rem;
}
.menu-feature .feature-body h2 {
  margin: 0 0 .5rem; border: 0; padding: 0; color: var(--heading);
}
.menu-feature .feature-body h2::after { content: none; }
.menu-feature .feature-body p { margin: 0 0 .6rem; }
.menu-feature .feature-week { font-size: var(--step--1); color: var(--ink-muted); }
@media (max-width: 640px) {
  .menu-feature { grid-template-columns: 1fr; }
  .menu-feature .feature-figure img { aspect-ratio: 16/10; }
}

/* ---------- farm photo gallery (menu page) ---------- */
.menu-gallery-grid {
  list-style: none; margin: 1rem 0 1.5rem; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: .75rem;
}
.menu-gallery-grid li { overflow: visible; border-radius: var(--radius); }
.menu-gallery-grid img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block;
  border-radius: var(--radius); border: 3px solid var(--ink);
}
/* polaroids on the wrap sheet — alternate the lean, keep it slight */
.menu-gallery-grid li:nth-child(odd) img { transform: rotate(-1deg); }
.menu-gallery-grid li:nth-child(even) img { transform: rotate(1deg); }

/* ---------- menu hero banner ---------- */
.menu-hero {
  width: 100%; max-height: 340px; object-fit: cover; border-radius: var(--radius);
  margin-bottom: 1.5rem;
  border: 3px solid var(--ink); box-shadow: none;
}

/* ---------- home amenities grid ---------- */
.amenities { padding: 0; }
.amenity-grid { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); }
.amenity-grid li {
  background: var(--surface); border: 2px solid var(--ink);
  border-radius: var(--radius); padding: 1.1rem 1.2rem;
}
.amenity-grid strong { display: block; font-family: var(--display); font-weight: 400; font-size: 1.05rem; color: var(--heading); }
.amenity-grid span { color: var(--ink-muted); font-size: var(--step--1); }

/* ---------- image + text band ---------- */
.band { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.2rem, 3vw, 2.5rem); align-items: center; }
/* polaroid-on-butcher-paper: 3px charcoal frame + a one-degree lean,
   alternating down the page — print-shop, not scrapbook */
.band img { width: 100%; height: 100%; max-height: 380px; object-fit: cover; border-radius: var(--radius); border: 3px solid var(--ink); box-shadow: none; }
:nth-child(odd of .band) img { transform: rotate(-1deg); }
:nth-child(even of .band) img { transform: rotate(1deg); }
.band-body h2 { margin-top: 0; }
@media (max-width: 720px) {
  .band { grid-template-columns: 1fr; }
}

/* ---------- partner feature (Blue Toad strip) ---------- */
/* the partnership is an asset — a charcoal ink-block, never hidden */
.partner-feature {
  display: grid; grid-template-columns: minmax(200px, 260px) 1fr;
  gap: clamp(1.2rem, 3vw, 2.4rem); align-items: center;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  background: var(--band-bg); color: var(--band-text); border-radius: var(--radius);
  box-shadow: none;
}
.partner-feature .partner-art {
  width: 100%; height: auto; display: block;
  border: 3px solid var(--band-text);
}
/* the tape strip stays light on the ink-block — tape is tape */
.partner-feature .eyebrow { color: var(--ink); }
.partner-feature h2 { margin: .2rem 0 .6rem; color: var(--band-text); }
.partner-feature p { color: color-mix(in srgb, var(--band-text) 88%, transparent); }
.partner-feature strong { color: var(--band-text); }
@media (max-width: 640px) {
  .partner-feature { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .partner-feature .partner-art { max-width: 220px; }
}

/* ---------- save-the-date banner (landing) ---------- */
.savedate {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: .8rem clamp(1.2rem, 4vw, 2.5rem);
  background: var(--band-bg); color: var(--band-text);
  border-radius: var(--radius); box-shadow: none;
  padding: clamp(1rem, 3vw, 1.4rem) clamp(1.2rem, 4vw, 1.8rem);
}
.savedate .eyebrow { color: var(--ink); margin: 0 0 .15rem; }
.savedate-headline { font-family: var(--display); font-weight: 400; font-size: var(--step-2); color: var(--band-text); line-height: 1.1; margin: 0; }
.savedate-body { flex: 1 1 20rem; }
.savedate-cta { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem 1.1rem; margin: 0; }
.savedate-link { color: var(--band-text); text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }
.savedate-link:hover { color: var(--band-text); }
@media (max-width: 640px) { .savedate { justify-content: flex-start; } }

/* ---------- partnership teaser strip (landing) ---------- */
.partner-strip {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1rem clamp(1.2rem, 4vw, 2.5rem);
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--radius); padding: clamp(1.1rem, 3vw, 1.6rem); box-shadow: none;
}
.partner-strip-body { flex: 1 1 22rem; }
.partner-strip-body h2 { margin: .15rem 0 .4rem; }
.partner-strip-body p { margin: 0; }
.partner-strip-cta { display: flex; flex-wrap: wrap; gap: .6rem; margin: 0; }

/* secondary callout reuses the strip layout on the deeper kraft, so two
   strips on the landing page read as distinct moments */
.gift-strip {
  background: var(--surface-2);
  border-color: var(--ink);
}

/* ---------- kids coloring book feature (legacy skeleton surface) ---------- */
.coloring-feature {
  display: grid; grid-template-columns: minmax(200px, 280px) 1fr;
  gap: clamp(1.2rem, 3vw, 2.4rem); align-items: center;
}
.coloring-cover {
  width: 100%; height: auto; display: block; border-radius: var(--radius);
  border: 3px solid var(--ink); box-shadow: none;
}
.coloring-body h2 { margin-top: 0; }
@media (max-width: 640px) {
  .coloring-feature { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .coloring-cover { max-width: 280px; }
}

/* ---------- scavenger-hunt stops (legacy skeleton surface) ---------- */
.family-stops {
  list-style: none; margin: 1rem 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 3vw, 1.6rem);
}
.family-stop {
  background: var(--surface); border: 2px solid var(--ink);
  border-radius: var(--radius); overflow: hidden; box-shadow: none;
}
.family-stop img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
  border-bottom: 2px solid var(--ink);
}
.family-stop-body { padding: .8rem 1rem 1rem; }
.family-stop-body strong {
  display: block; font-family: var(--display); font-weight: 400; font-size: 1.05rem; color: var(--heading);
}
.family-stop-body span { color: var(--ink-muted); font-size: var(--step--1); }
@media (max-width: 640px) { .family-stops { grid-template-columns: 1fr; } }

/* ---------- events gallery (masonry, keeps aspect) ---------- */
.venue-gallery-section .eyebrow { margin-bottom: .2rem; }
.venue-gallery {
  list-style: none; padding: 0; margin: 1.4rem 0 0;
  columns: 3; column-gap: clamp(.7rem, 1.6vw, 1.1rem);
}
.venue-gallery li {
  break-inside: avoid; margin: 0 0 clamp(.7rem, 1.6vw, 1.1rem);
  border-radius: var(--radius); overflow: hidden;
  border: 3px solid var(--ink); box-shadow: none;
}
.venue-gallery img {
  width: 100%; display: block;
  transition: transform .5s cubic-bezier(.2, .7, .2, 1);
}
.venue-gallery li:hover img { transform: scale(1.05); }
@media (prefers-reduced-motion: reduce) { .venue-gallery li:hover img { transform: none; } }
/* large phones / small tablets keep two columns; true phones get one big
   photo per row */
@media (max-width: 720px) { .venue-gallery { columns: 2; } }
@media (max-width: 520px) { .venue-gallery { columns: 1; } }

/* ---------- booking card (details + request form) ---------- */
.hero .hero-actions { margin-top: 1.5rem; }
.booking-card {
  display: grid; grid-template-columns: 1fr;
  gap: clamp(1.6rem, 4vw, 2.8rem);
}
@media (min-width: 760px) {
  .booking-card { grid-template-columns: .82fr 1fr; align-items: start; }
  /* keep the value props in view while the form is filled out */
  .booking-details { position: sticky; top: 6.5rem; }
}
.booking-details .eyebrow { margin-bottom: .3rem; }
.booking-contact { margin: 1.4rem 0 0; color: var(--ink-muted); font-size: var(--step--1); }
.booking-details h2 { margin-bottom: .6rem; }
.venue-facts { list-style: none; margin: 0; padding: 0; }
.venue-facts li { padding: .8rem 0; border-top: 1px solid var(--hairline); }
.venue-facts li:first-child { border-top: 0; padding-top: 0; }
.venue-facts strong {
  display: block; font-family: var(--display); font-weight: 400;
  font-size: 1.05rem; color: var(--heading); line-height: 1.25;
}
.venue-facts span { color: var(--ink-muted); font-size: var(--step--1); }
.booking-request h2 { margin-bottom: .5rem; }
.booking-note { color: var(--ink-muted); margin-bottom: 1.4rem; }
.booking-fineprint {
  color: var(--ink-muted); font-size: var(--step--1);
  font-style: italic; margin: .9rem 0 0;
}

/* tier toggle — CSS-only radio tabs (no JS) */
.evt-toggle > input { position: absolute; left: -9999px; }   /* a11y-hidden radios */
.evt-tabs { display: flex; gap: .5rem; margin: 0 0 1rem; }
.evt-tabs label {
  flex: 1; text-align: center; cursor: pointer;
  padding: .5rem .7rem; border: 2px solid var(--hairline-strong); border-radius: var(--radius);
  font-weight: 600; font-size: var(--step--1); color: var(--ink-muted); background: var(--surface);
}
.evt-tabs label:hover { border-color: var(--ink); color: var(--ink); }
.evt-panel { display: none; }
#evt-partial:checked ~ .evt-tabs label[for="evt-partial"],
#evt-private:checked ~ .evt-tabs label[for="evt-private"] {
  background: var(--primary); color: var(--on-primary); border-color: var(--primary);
}
#evt-partial:focus-visible ~ .evt-tabs label[for="evt-partial"],
#evt-private:focus-visible ~ .evt-tabs label[for="evt-private"] {
  outline: 2px solid var(--focus); outline-offset: 2px;
}
#evt-partial:checked ~ .evt-panel--partial,
#evt-private:checked ~ .evt-panel--private { display: block; }

/* ---------- landing weekend feature ---------- */
.home-supper { padding: 0; }
.home-supper-card {
  display: grid; grid-template-columns: 280px 1fr; gap: clamp(1.2rem, 3vw, 2.4rem);
  align-items: center; text-decoration: none; color: inherit;
  padding: clamp(1.1rem, 3vw, 1.8rem);
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--radius); box-shadow: none;
  transition: transform .15s ease;
}
.home-supper-card:hover { transform: translateY(-2px); }
.home-supper-photo {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--radius); border: 3px solid var(--ink); display: block;
  transform: rotate(-1deg);
}
.home-supper-body h2 { margin: .1rem 0 .5rem; color: var(--heading); }
.home-supper-body p { margin: 0 0 .7rem; }
.home-supper-week { font-size: var(--step--1); color: var(--ink-muted); }
.home-supper-body .btn { margin-top: .3rem; }
@media (max-width: 720px) {
  .home-supper-card { grid-template-columns: 1fr; }
  .home-supper-photo { aspect-ratio: 16/10; }
}

/* paper-outline button for the charcoal bands */
.btn--ghost-light { background: transparent; color: var(--band-text); border: 2px solid var(--band-text); box-shadow: none; }
.btn--ghost-light:hover { background: var(--band-text); border-color: var(--band-text); color: var(--band-bg); }

.intro { text-align: center; }
.intro h1 { max-width: 18ch; margin-inline: auto; }
.intro p { max-width: 60ch; margin-inline: auto; }

/* ---------- events / find the Beast ---------- */
.event-card {
  display: grid; grid-template-columns: 220px 1fr; gap: clamp(1rem, 3vw, 2rem);
  align-items: start; background: var(--surface);
  border: 2px solid var(--ink); border-radius: var(--radius);
  padding: clamp(1.2rem, 3vw, 2rem); box-shadow: none;
}
.event-card + .event-card { margin-top: 1.5rem; }
.event-card:not(:has(.event-photo)) { grid-template-columns: 1fr; }  /* no photo → full-width body, not the 220px photo column */
.event-photo { width: 220px; height: 220px; object-fit: cover; border-radius: var(--radius); border: 3px solid var(--ink); }
.event-when { font-size: var(--step--1); text-transform: uppercase; letter-spacing: .08em; color: var(--ink); font-weight: 700; margin: 0 0 .3rem; }
.event-where { color: var(--ink-muted); font-weight: 500; text-transform: none; letter-spacing: 0; margin-left: .5rem; }
.event-body h2 { margin: 0 0 .4rem; }
/* Event titles linking to their detail pages: keep the heading voice,
   reveal the link on hover. */
.event-title-link { color: inherit; text-decoration: none; }
.event-title-link:hover { color: var(--ember); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.event-performer { font-family: var(--display); font-weight: 400; font-size: 1.05rem; color: var(--heading); margin: 0 0 .4rem; }
.event-performer .muted { color: var(--ink-muted); font-family: var(--body); font-size: var(--step--1); }
.event-bio { color: var(--ink-muted); margin: 0 0 .9rem; }

.socials { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0 0 1rem; }
.social-pill {
  display: inline-block; font-size: var(--step--1); font-weight: 600; text-decoration: none;
  color: var(--ink); background: var(--surface); border: 2px solid var(--ink);
  border-radius: var(--radius); padding: .3rem .8rem;
}
.social-pill:hover { background: var(--primary); color: var(--on-primary); border-color: var(--primary); }

.player { border-top: 1px solid var(--hairline); padding-top: .9rem; }
.player-label { font-size: var(--step--1); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-muted); margin: 0 0 .6rem; }
.track { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: .6rem; }
.track-title { font-family: var(--display); font-weight: 400; font-size: .95rem; color: var(--heading); min-width: 9rem; }
.track audio { height: 38px; flex: 1; min-width: 220px; }
.track audio::-webkit-media-controls-panel { background: var(--surface); }

@media (max-width: 640px) {
  .event-card { grid-template-columns: 1fr; }
  .event-photo { width: 100%; height: 220px; }
}

/* ---------- events month calendar ---------- */
.calendar { padding: clamp(1rem,3vw,1.6rem); background: var(--surface); border: 2px solid var(--ink); border-radius: var(--radius); box-shadow: none; }
.calendar h2 { margin-top: 0; }
.cal-nav { display: flex; align-items: center; justify-content: space-between; gap: .6rem; margin-bottom: .6rem; }
.cal-nav .cal-title { margin: 0; flex: 1; text-align: center; }
.cal-nav-btn { display: inline-flex; align-items: center; justify-content: center; flex: none; width: 2.5rem; height: 2.5rem; border: 2px solid var(--ink); border-radius: var(--radius); background: var(--surface); color: var(--ink); font-size: 1.5rem; line-height: 1; text-decoration: none; transition: background .15s ease, color .15s ease, border-color .15s ease, transform .1s ease; }
.cal-nav-btn:hover { background: var(--primary); color: var(--on-primary); border-color: var(--primary); }
.cal-nav-btn:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; }
.cal-nav-btn:active { transform: scale(.93); }
.cal-today { margin: -.2rem 0 .7rem; text-align: center; font-size: var(--step--1); }
.cal-today a { color: var(--link); text-decoration: none; }
.cal-today a:hover { text-decoration: underline; }
/* Image-tile grid calendar — a visual, scannable month of stops. */
.cal-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: clamp(.8rem, 2vw, 1.3rem); }
.cal-tile { display: flex; flex-direction: column; overflow: hidden; text-decoration: none; color: inherit; background: var(--surface); border: 2px solid var(--ink); border-radius: var(--radius); box-shadow: none; transition: transform .12s ease; }
.cal-tile:hover { transform: translateY(-3px); }
.cal-tile:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; }
.cal-tile-media { position: relative; aspect-ratio: 1 / 1; background: var(--accent-seaglass); }
.cal-tile-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cal-tile-fallback { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; text-align: center; padding: 1rem; box-sizing: border-box; background: var(--band-bg); }
.cal-tile-fallback span { font-family: var(--display); font-weight: 400; font-size: 1.15rem; line-height: 1.2; color: var(--band-text); }
/* date chip: a square paper stamp, not a pill */
.cal-tile-date { position: absolute; top: .6rem; left: .6rem; background: var(--surface); color: var(--heading); font-weight: 700; font-size: .72rem; letter-spacing: .05em; padding: .25rem .55rem; border: 2px solid var(--ink); border-radius: var(--radius); transform: rotate(-1deg); }
.cal-tile-cap { padding: .7rem .8rem .85rem; display: flex; flex-direction: column; gap: .12rem; }
.cal-tile-time { font-size: var(--step--1); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--ink); }
.cal-tile-title { font-family: var(--display); font-weight: 400; font-size: .98rem; line-height: 1.2; color: var(--heading); }
.cal-empty-note { grid-column: 1 / -1; text-align: center; padding: 1.5rem 0; }
@media (max-width: 640px) {
  .cal-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .cal-nav-btn { width: 2.2rem; height: 2.2rem; font-size: 1.3rem; }
}

/* ---------- performer detail ---------- */
.performer-head { display: grid; grid-template-columns: 240px 1fr; gap: clamp(1rem,3vw,2rem); align-items: start; }
.performer-photo { width: 240px; height: 240px; object-fit: cover; border-radius: var(--radius); border: 3px solid var(--ink); }
.performer-head:not(:has(.performer-photo)) { grid-template-columns: 1fr; }  /* no photo → full-width text, not the 240px photo column */
.performer .muted { color: var(--ink-muted); }
.show-row { margin: .3rem 0; }
@media (max-width: 640px) { .performer-head { grid-template-columns: 1fr; } .performer-photo { width: 100%; height: 260px; } }

/* ---------- instagram feed (unused: no Instagram exists in the corpus) ---------- */
.instagram { text-align: center; }
.ig-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: .5rem; margin: 1rem 0 1.5rem; }
.ig-grid a { display: block; overflow: hidden; border-radius: var(--radius); border: 2px solid var(--ink); }
.ig-grid img { width: 100%; aspect-ratio: 1/1; object-fit: cover; transition: transform .3s ease; }
.ig-grid a:hover img { transform: scale(1.06); }

/* ---------- pull-quote ---------- */
.pullquote { text-align: center; padding: clamp(1.5rem,5vw,3.5rem) 1rem; }
.pullquote blockquote { margin: 0 auto; max-width: 24ch; font-family: var(--display); font-weight: 400; font-size: var(--step-4); line-height: 1.12; color: var(--heading); letter-spacing: 0; }
/* the quote marks are the section's single ember note */
.pullquote blockquote::before { content: "“"; color: var(--ember); }
.pullquote blockquote::after { content: "”"; color: var(--ember); }
.pullquote-cite { margin-top: 1rem; font-family: var(--body); text-transform: uppercase; letter-spacing: .18em; font-size: .76rem; font-weight: 700; color: var(--ink-muted); }

/* ---------- band reverse + crew cards ---------- */
.band--reverse img { order: 2; }
.founders { text-align: center; }
.founders-title { margin-bottom: 1.5rem; }
.founder-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); text-align: left; }
.founder { background: var(--surface); border: 2px solid var(--ink); border-radius: var(--radius); box-shadow: none; padding: clamp(1.2rem,3vw,1.8rem); }
.founder h3 { margin: .15rem 0 .6rem; color: var(--heading); font-size: 1.3rem; }
.founder-role { margin: 0; font-family: var(--body); text-transform: uppercase; letter-spacing: .16em; font-size: .72rem; font-weight: 700; color: var(--ink-muted); }
.founder p:last-child { margin-bottom: 0; color: var(--ink-muted); }
@media (max-width: 720px) { .band--reverse img { order: 0; } }

/* ===================================================================
   v2 revenue features
   =================================================================== */

/* demo ribbon */
.demo-ribbon { background: var(--band-bg); color: var(--ribbon-text); text-align: center; font-family: var(--body); font-weight: 700; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; padding: .35rem; }

/* small button variant */
.btn--sm { padding: .45rem .85rem; font-size: var(--step--1); }

/* footer subscribe + links */
.footer-subscribe { margin: 1rem auto; max-width: 32rem; }
.footer-subscribe label { display: block; font-family: var(--body); font-weight: 600; font-size: 1.05rem; margin-bottom: .5rem; color: var(--band-text); }
.subscribe-row { display: flex; gap: .5rem; justify-content: center; }
/* paper field on the charcoal band — charcoal ink in it (14.1:1) */
.subscribe-row input { flex: 1; max-width: 22rem; padding: .55rem .7rem; border: 2px solid var(--band-text); border-radius: var(--radius); background: var(--band-text); color: var(--band-bg); }
.subscribe-row input::placeholder { color: color-mix(in srgb, var(--band-bg) 70%, var(--band-text)); }
.footer-links { margin: 1rem 0; font-size: var(--step--1); opacity: .9; }
.footer-links a { color: var(--band-text); }

/* pricing tiers (reuse .founder card) — catering tiers, not clubs */
.tier { text-align: center; }
.tier h3 { font-size: 2.2rem; }
.tier .per { font-size: 1rem; color: var(--ink-muted); font-family: var(--body); }
.tier--featured { outline: 3px solid var(--ink); outline-offset: 3px; }
.perks { list-style: none; margin: 1rem 0 0; padding: 0; text-align: left; }
.perks li { padding: .35rem 0 .35rem 1.4rem; position: relative; color: var(--ink-muted); border-top: 1px solid var(--hairline); }
/* smoke marker — no medals anywhere in this system */
.perks li::before { content: "✦"; color: var(--brass); position: absolute; left: 0; }

/* shared form card */
.form-card { max-width: 38rem; }
.stack-form p { margin: 0 0 .9rem; }
.stack-form label { display: block; font-weight: 600; font-size: var(--step--1); margin-bottom: .25rem; }
.stack-form input:not([type=checkbox]), .stack-form select, .stack-form textarea { width: 100%; padding: .55rem .7rem; border: 2px solid var(--hairline-strong); border-radius: var(--radius); background: var(--surface); font: inherit; color: var(--ink); }

/* reviews — stars ride plain ink (stamped stars; proof needs no gilding) */
.reviews-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr)); }
.review { margin: 0; background: var(--surface); border: 2px solid var(--ink); border-radius: var(--radius); box-shadow: none; padding: clamp(1.2rem,3vw,1.6rem); }
.review-stars { color: var(--ink); letter-spacing: .1em; margin: 0 0 .5rem; }
.review blockquote { margin: 0 0 .8rem; font-size: 1.1rem; line-height: 1.5; }
.review figcaption { font-weight: 600; color: var(--heading); }

/* gift cards (dormant shop machinery — /shop/ is DARK) */
.giftcards { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); }
.giftcard { text-align: center; }
.giftcard-face { aspect-ratio: 16/10; border-radius: var(--radius); border: 2px solid var(--ink); background: var(--band-bg); color: var(--band-text); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .25rem; box-shadow: none; margin-bottom: .8rem; }
.giftcard-logo { width: 68px; height: auto; margin-bottom: .15rem; }
.giftcard-amount { font-family: var(--display); font-weight: 400; font-size: 2.2rem; line-height: 1; }
.giftcard-brand { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; opacity: .85; }

/* gift cards — holiday-window dark state: preview card + first-dibs capture */
.giftcards-soon { display: grid; gap: clamp(1.2rem, 3vw, 2rem); grid-template-columns: minmax(13rem, 19rem) 1fr; align-items: center; }
.giftcards-soon .giftcard-face--preview { aspect-ratio: 16/10; margin-bottom: 0; }
.giftcards-soon-body h2 { margin-top: 0; }
.giftcards-subscribe { margin: 1rem 0 0; max-width: 30rem; }
.giftcards-subscribe label { color: var(--heading); }
.giftcards-subscribe .subscribe-row { justify-content: flex-start; }
/* on-surface variant of the band-styled subscribe input (polarity fix:
   this one sits on light paper, not the charcoal band) */
.giftcards-subscribe .subscribe-row input { background: var(--surface); color: var(--ink); border-color: var(--hairline-strong); }
.giftcards-subscribe .subscribe-row input::placeholder { color: var(--ink-muted); }
.giftcards-subscribed { font-weight: 600; color: var(--ink); }
@media (max-width: 640px) { .giftcards-soon { grid-template-columns: 1fr; } }

/* event card actions */
.event-actions { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; margin-top: 1rem; }
.event-actions .remind { display: flex; gap: .4rem; }
.event-actions .remind input { padding: .4rem .6rem; border: 2px solid var(--hairline-strong); border-radius: var(--radius); font: inherit; background: var(--surface); color: var(--ink); }

/* seat-limited registrations */
.register { flex-basis: 100%; display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; background: var(--surface); border: 2px solid var(--ink); border-radius: var(--radius); padding: .9rem 1rem; }
.register .seats-left { flex-basis: 100%; margin: 0; font-weight: 600; font-size: var(--step--1); color: var(--heading); }
.register input { padding: .45rem .6rem; border: 2px solid var(--hairline-strong); border-radius: var(--radius); font: inherit; background: var(--surface-2); color: var(--ink); }
.register input[type="number"] { width: 4.5rem; }
.register .party-label { display: inline-flex; align-items: center; gap: .4rem; font-size: var(--step--1); color: var(--ink-muted); }
.register .reserve-note { flex-basis: 100%; margin: 0; font-size: var(--step--1); }
.event-full { flex-basis: 100%; margin: 0; font-weight: 600; color: var(--heading); }

/* quiet "Ticketed · $" chip — smoke tape, square, ink text; never ember */
.chip-ticketed { display: inline-block; background: var(--accent-seaglass); color: var(--ink); border: 1px solid var(--hairline-strong); border-radius: var(--radius); padding: .12rem .6rem; font-family: var(--body); font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; vertical-align: middle; }
.event-when .chip-ticketed { margin-left: .5rem; }
.cal-tile-cap .chip-ticketed { align-self: flex-start; margin-top: .3rem; }
/* beat the generic `.popup-card span` color/size on the home strip */
.popup-card .chip-ticketed { display: inline-block; margin-top: .35rem; color: var(--ink); font-size: .7rem; }


.spotify-embed { margin-top: .85rem; max-width: 540px; }
.spotify-embed iframe { display: block; width: 100%; border: 0; }

/* ---------- checkout (dormant shop machinery — /shop/ is DARK) ---------- */
.checkout { max-width: 980px; margin: 0 auto; padding: clamp(1.4rem, 4vw, 2.6rem) var(--gutter, 1.2rem); }
.checkout > h1 { font-family: var(--display); font-weight: 400; color: var(--heading); margin-bottom: 1.4rem; }
.checkout-grid { display: grid; grid-template-columns: 1fr; gap: 1.4rem; align-items: start; }
@media (min-width: 760px) { .checkout-grid { grid-template-columns: 1fr 1.1fr; } }
.checkout .card { background: var(--surface); border: 2px solid var(--ink); border-radius: var(--radius); padding: clamp(1.1rem, 3vw, 1.6rem); }
.checkout-summary h2, .checkout-pay h2 { font-family: var(--display); font-weight: 400; font-size: 1.15rem; color: var(--heading); margin: 0 0 .9rem; }
.checkout-rows { list-style: none; margin: 0 0 .6rem; padding: 0; }
.checkout-rows li { display: flex; justify-content: space-between; gap: 1rem; padding: .5rem 0; border-bottom: 1px solid var(--hairline); }
.checkout-rows .ck-item { color: var(--ink); }
.checkout-rows .ck-line { color: var(--ink-muted); white-space: nowrap; }
.checkout-total { display: flex; justify-content: space-between; align-items: baseline; margin-top: .8rem; }
.checkout-total strong { font-family: var(--display); font-weight: 400; font-size: 1.35rem; color: var(--heading); }
.checkout-note { font-size: var(--step--1); color: var(--ink-muted); margin-top: 1rem; }
.checkout-pay .field { display: block; font-size: var(--step--1); color: var(--ink-muted); margin-bottom: 1rem; }
.checkout-pay .field input { display: block; width: 100%; margin-top: .35rem; padding: .7rem .8rem; font-size: 1rem; border: 2px solid var(--hairline-strong); border-radius: var(--radius); background: var(--surface); color: var(--ink); box-sizing: border-box; }
.card-field { margin: .4rem 0 1.1rem; min-height: 52px; }

/* fulfillment + shipping address */
.ship-choice, .ship-fields { border: 2px solid var(--hairline-strong); border-radius: var(--radius); padding: .9rem 1rem .4rem; margin-bottom: 1rem; }
.ship-choice legend, .ship-fields legend { padding: 0 .4rem; font-weight: 600; color: var(--ink-muted); }
.ship-choice .radio { display: flex; align-items: baseline; gap: .5rem; margin-bottom: .6rem; font-size: var(--step--1); color: var(--ink); }
.ship-choice .radio input { accent-color: var(--ink); }
.ship-row { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: .7rem; }
.checkout-ship-line { display: flex; justify-content: space-between; font-size: var(--step--1); color: var(--ink-muted); margin: .3rem 0 0; }
.wallets { margin-bottom: .4rem; }
.wallet-btn { margin-bottom: .6rem; min-height: 44px; }
/* black Apple Pay button on the light paper field */
#apple-pay-button { -apple-pay-button-style: black; -webkit-appearance: -apple-pay-button; appearance: -apple-pay-button; height: 48px; border-radius: 0; cursor: pointer; }
.wallets-or { position: relative; text-align: center; color: var(--ink-muted); font-size: var(--step--1); margin: 1rem 0; }
.wallets-or::before { content: ""; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--hairline); }
.wallets-or span { position: relative; background: var(--surface); padding: 0 .7rem; }
.btn--pay { width: 100%; margin-top: .2rem; font-size: 1.05rem; padding: .85rem 1rem; }
.btn--pay:disabled { opacity: .6; cursor: progress; }
.ck-status { min-height: 1.2em; margin: .7rem 0 0; font-size: var(--step--1); }
/* status colors computed for the light paper field */
.ck-status--error { color: #9C2B12; }
.ck-status--ok { color: #2E6B34; }
.ck-secure { margin-top: 1rem; font-size: .8rem; color: var(--ink-muted); text-align: center; }

/* ---------- footer newsletter confirmation ---------- */
.footer-subscribed { color: var(--band-text); font-weight: 600; line-height: 1.45; }
.footer-suberr { color: #F4B8A4; font-size: var(--step--1); margin: .4rem 0 0; }

/* ===================================================================
   Butcher & Char — page components
   =================================================================== */

/* ---------- split hero (landing) ---------- */
/* Text/photo split — the plate shot sits like a taped print on the sheet. */
.split-hero { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.split-hero-body h1 { font-size: var(--step-6); font-weight: 400; max-width: 14ch; }
.split-hero-body .lede { font-family: var(--body); font-weight: 400; font-size: var(--step-2); color: var(--ink-muted); max-width: 26ch; margin-bottom: .6rem; }
.split-hero-photo { margin: 0; }
.split-hero-photo img {
  width: 100%; max-height: 640px; object-fit: cover; display: block;
  border-radius: var(--radius); border: 3px solid var(--ink);
  transform: rotate(1deg);
}
.split-hero-photo figcaption { margin-top: .6rem; font-size: var(--step--1); color: var(--ink-muted); font-style: italic; }
@media (max-width: 760px) { .split-hero { grid-template-columns: 1fr; } }

/* ---------- upcoming strip (landing "this weekend") ---------- */
.popup-strip h2 { margin-bottom: 1rem; }
.popup-cards { list-style: none; margin: 0 0 1.2rem; padding: 0; display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); }
.popup-card {
  background: var(--surface); border: 2px solid var(--ink);
  border-radius: var(--radius); padding: 1.1rem 1.2rem;
}
.popup-card .popup-when { display: block; font-size: var(--step--1); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--ink); margin-bottom: .2rem; }
.popup-card strong { display: block; font-family: var(--display); font-weight: 400; font-size: 1.05rem; color: var(--heading); }
.popup-card span { color: var(--ink-muted); font-size: var(--step--1); }

/* ---------- feature stats band (charcoal ink-block) ---------- */
.stats-band {
  background: var(--band-bg); color: var(--band-text); border-radius: var(--radius);
  box-shadow: none; padding: clamp(1.6rem, 4vw, 2.8rem);
}
.stats-band .eyebrow { color: var(--ink); }
.stats-band h2 { color: var(--band-text); margin-top: .2rem; }
.stats-band > p { color: color-mix(in srgb, var(--band-text) 85%, transparent); }
/* balanced tracks (2x3 / 3x2) — auto-fit orphaned the sixth chip at
   presentation widths */
.stats-grid { list-style: none; margin: 1.4rem 0; padding: 0; display: grid; gap: 1.2rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }
.stat strong { display: block; font-family: var(--display); font-weight: 400; font-size: var(--step-4); line-height: 1; color: var(--heading); }
.stat span { color: var(--ink-muted); font-size: var(--step--1); }
.stats-band .stat strong { color: var(--band-stat); }
.stats-band .stat span { color: color-mix(in srgb, var(--band-text) 80%, transparent); }

/* ===================================================================
   Butcher & Char usage rules — band buttons + focus rings
   =================================================================== */

/* Buttons inside the charcoal bands/footer are never charcoal-on-charcoal:
   flip to a paper fill with ink text (14.1:1). */
.btn--band,
.site-footer .btn, .stats-band .btn, .partner-feature .btn, .savedate .btn,
.pitch-cta .btn {
  background: var(--band-text); color: var(--band-bg);
  border-color: var(--band-text);
  box-shadow: none;
}
.btn--band:hover,
.site-footer .btn:hover, .stats-band .btn:hover,
.partner-feature .btn:hover, .savedate .btn:hover,
.pitch-cta .btn:hover {
  background: var(--band-stat); border-color: var(--band-stat);
  color: var(--band-bg);
}
.pitch-cta .btn--ghost { background: transparent; color: var(--band-text); border-color: var(--band-text); }

/* Focus rings: ember on the kraft field (global default), paper on the
   charcoal bands and on primary buttons — 2px ring, 3px offset. */
.btn:focus-visible, button[type="submit"]:focus-visible,
.site-footer :focus-visible, .stats-band :focus-visible,
.partner-feature :focus-visible, .savedate :focus-visible,
.pitch-cta :focus-visible,
.navbar :focus-visible, .demo-ribbon :focus-visible {
  outline-color: var(--focus-band);
}
.btn--ghost:focus-visible { outline-color: var(--focus); }

/* Quiet keyline note beside a decision — deliberately understated.
   Charcoal keyline for the receipt voice; smoke keyline for its nudge
   siblings, so the two lines read as different notes. */
.conservation-receipt, .popup-nudge, .giftcard-nudge {
  color: var(--ink-muted);
  font-size: .95rem;
  border-left: 3px solid var(--primary);
  padding-left: .8rem;
  max-width: 46rem;
}
.conservation-receipt a, .popup-nudge a, .giftcard-nudge a { color: var(--link); }
.popup-nudge, .giftcard-nudge { border-left-color: var(--brass); }

/* Partner quotes — visitors' own words beside the inquiry form. */
.partner-quotes {
  max-width: var(--measure-wide, 68rem);
  margin: clamp(2rem, 5vw, 3.5rem) auto;
  padding: 0 var(--gutter, 1.2rem);
}
.partner-quotes .eyebrow { margin-bottom: 1rem; }
.reviews-grid--quotes { grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr)); }
.reviews-grid--quotes .review blockquote { font-style: italic; }

/* ===================================================================
   Butcher & Char — BBQ Beast additions
   (footer hours, /pitch/ ranked list, print mode; the light-field
   polarity fixes live inline where each component is defined: forms,
   .register input, .giftcards-subscribe input, .ck-status,
   #apple-pay-button, .subscribe-row paper field)
   =================================================================== */

/* ---------- footer hours — tidy two-column day/time listing ---------- */
/* base.html renders one .footer-hours <p> per row from site.hours — day
   label left, hours right, rule between. Fri–Sun serving windows are
   CLIENT CONFIRM (unpublished; they mirror the farm's taproom hours). */
.footer-hours {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  margin: 0; padding: .3rem 0; max-width: 15rem;
  border-bottom: 1px solid color-mix(in srgb, var(--band-text) 16%, transparent);
  color: var(--footer-text);
}
.footer-hours:last-of-type { border-bottom: 0; }
.footer-hours-day { color: var(--band-text); font-weight: 600; }

/* ---------- /pitch/ — the ranked-improvements page ---------- */
/* A numbered countdown of what we'd fix and why. Each .pitch-item is a
   stamped card with a large charcoal numeral; inside, three voices:
   .pitch-evidence (what's wrong today — muted, quote-toned), .pitch-build
   (what we build), and .pitch-impact (why it pays — smoke keyline).
   Optional <strong> lead-ins render as small caps labels. */
.pitch-hero {
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(1.5rem, 4vw, 2.5rem);
  border-bottom: 2px solid var(--ink);
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}
.pitch-hero h1 { font-size: var(--step-6); font-weight: 400; max-width: 18ch; }
.pitch-hero .lede { font-size: var(--step-2); font-family: var(--body); font-weight: 400; color: var(--ink-muted); max-width: 38ch; }
.pitch-list { list-style: none; margin: 0; padding: 0; display: grid; gap: clamp(1rem, 3vw, 1.6rem); }
.pitch-item {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(.9rem, 2.5vw, 1.6rem);
  align-items: start;
  background: var(--surface); border: 2px solid var(--ink);
  border-left-width: 6px; border-radius: var(--radius);
  padding: clamp(1.2rem, 3vw, 2rem); box-shadow: none;
}
.pitch-num {
  font-family: var(--display); font-weight: 400; font-size: var(--step-4);
  line-height: 1; color: var(--ink); min-width: 2ch; text-align: right;
  font-variant-numeric: tabular-nums;
}
.pitch-item h2 { margin: .1rem 0 .6rem; font-size: 1.25rem; }
.pitch-evidence {
  color: var(--ink-muted); font-style: italic;
  border-left: 3px solid var(--hairline-strong); padding-left: .8rem;
  margin: 0 0 .9rem;
}
.pitch-build { margin: 0 0 .9rem; }
.pitch-impact { border-left: 3px solid var(--brass); padding-left: .8rem; margin: 0; }
.pitch-evidence > strong, .pitch-build > strong, .pitch-impact > strong {
  display: block; font-family: var(--body); font-style: normal;
  text-transform: uppercase; letter-spacing: .12em; font-size: .7rem;
  font-weight: 700; margin-bottom: .25rem;
}
.pitch-evidence > strong { color: var(--ink-muted); }
.pitch-build > strong { color: var(--ink); }
.pitch-impact > strong { color: var(--brass); }
.pitch-cta {
  text-align: center; background: var(--band-bg); border-radius: var(--radius);
  box-shadow: none; padding: clamp(1.8rem, 5vw, 3rem);
  margin-top: clamp(2rem, 5vw, 3rem);
}
.pitch-cta h2 { color: var(--band-text); }
.pitch-cta p { color: color-mix(in srgb, var(--band-text) 85%, transparent); margin-inline: auto; }
.pitch-cta .eyebrow { color: var(--ink); }
@media (max-width: 640px) {
  .pitch-item { grid-template-columns: 1fr; }
  .pitch-num { text-align: left; }
}

/* ---------- cross-agent components (catering, pairings, promos) ------- */
/* These ride the .card/.band bases; only their distinctive notes live
   here. The featured-smoke keyline is the accent's other standing job —
   never alongside the sold-out stamp in the same viewport. */
.bbq-partner { border-left: 6px solid var(--ember); }
.bbq-partner .eyebrow { color: var(--ink); }
.bbq-proof { color: var(--brass); font-weight: 600; margin: 0 0 .6rem; }
.bbq-quote {
  font-style: italic; color: var(--ink-muted); margin: 0 0 1rem;
  border-left: 3px solid var(--hairline-strong); padding-left: .8rem;
}
.bbq-contact { list-style: none; margin: 0 0 1rem; padding: 0; color: var(--ink-muted); }
.bbq-contact li { padding: .25rem 0; }
.bbq-contact a { color: var(--link); }
.pairings { max-width: 56rem; }
.pairing-note { color: var(--ink-muted); font-size: .95rem; }
.pairing-grid {
  list-style: none; margin: 1rem 0 0; padding: 0;
  display: grid; gap: .8rem; grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}
.pairing {
  background: var(--surface); border: 2px solid var(--ink);
  border-radius: var(--radius); padding: .9rem 1.1rem; line-height: 1.5;
}
.pairing-x { color: var(--ember); font-weight: 700; padding: 0 .3rem; }

/* membership-tier leftovers (dormant shop machinery) */
.club-perks ul { margin: .5rem 0 0; padding-left: 1.2rem; }
.club-perks li { margin: .3rem 0; }
.club-tier-grid {
  display: grid; gap: clamp(1rem, 3vw, 1.6rem);
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  margin-top: 1rem;
}
.club-tier { display: flex; flex-direction: column; gap: .4rem; }
.club-price {
  font-family: var(--display); font-weight: 400; font-size: var(--step-2);
  color: var(--ink); margin: .4rem 0;
}
.club-per { font-family: var(--body); font-weight: 400; font-size: var(--step--1); color: var(--ink-muted); }

/* Catalog promo tiles (dormant shop machinery) */
.shop-promos {
  display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}
.promo-tile { text-decoration: none; border-left: 6px solid var(--brass); }
.promo-tile:hover { background: var(--surface-2); }

/* Reviews-page callout — the 5.0★/18-review proof block (real numbers). */
.reviews-callout { border-left: 6px solid var(--brass); }
.reviews-callout strong { color: var(--heading); }

/* Catalog lead tile (dormant) */
.promo-tile--lead { border-left-width: 8px; }

/* "Smoking today 11 am – 7 pm" hero line — the phone-holder's one question. */
.hero-open {
  font-family: var(--body); font-weight: 700; font-size: var(--step--1);
  text-transform: uppercase; letter-spacing: .08em; color: var(--ink);
  margin: -.4rem 0 1rem;
}

/* hero fact-strip — the load-out answered above the fold */
.hero-facts {
  display: flex; flex-wrap: wrap; gap: .4rem 1.1rem;
  list-style: none; margin: 1.2rem 0 0; padding: 0;
}
.hero-facts li {
  font-family: var(--body); font-weight: 700; font-size: .72rem;
  text-transform: uppercase; letter-spacing: .12em; color: var(--ink-muted);
  border-left: 3px solid var(--ink); padding-left: 1.1rem;
}

/* The pitch close's decision line — the email IS the CTA. */
.pitch-ask { font-size: 1.1rem; }
.pitch-ask strong { color: var(--band-stat); }

/* On-band link + eyebrow polarity for the pitch close (charcoal band). */
.pitch-cta a { color: var(--band-stat); }
.pitch-cta a:hover { color: var(--band-text); }
.pitch-cta .eyebrow { color: var(--band-bg); }

/* Gift-card faces sit on the charcoal mat — lockup flips to paper/sand. */
.giftcard-face .brand-lockup { color: var(--band-text); }
.giftcard-face .brand-lockup em { color: var(--band-stat); }

/* ---------- print — /pitch/ (and anything else) on clean white ---------- */
/* Already a light system: print swaps to pure white + a darker ember and
   drops the chrome. All print pairings computed ≥4.5:1 on white (table in
   docs/design-system.md). The pitch prints as a clean one-pager stack. */
@media print {
  :root {
    --bg: #fff; --surface: #fff; --surface-2: #F2EEE4;
    --ink: #211D19; --ink-muted: #4A443B; --heading: #171310;
    --primary: #211D19; --primary-hover: #211D19; --on-primary: #fff;
    --link: #211D19; --accent-coral: #9C3117; --ember: #9C3117;
    --accent-seaglass: #EFEBE0; --brass: #55503F;
    --band-bg: #fff; --band-text: #211D19; --band-stat: #55503F;
    --footer-text: #4A443B;
    --hairline: #C9C1B2; --hairline-strong: #6E6558;
    --shadow: none;
  }
  body { background: #fff; background-image: none; color: var(--ink); }
  .hero::before { display: none; }
  .demo-ribbon, .site-top, .site-footer, .age-overlay, .skip { display: none !important; }
  /* browsers don't print backgrounds — buttons become outlined, and the
     pitch decks drop their demo-navigation buttons (the .pitch-ask mailto
     line is the printed close) */
  .btn, button[type="submit"] { background: none !important; color: var(--primary) !important; border: 2px solid var(--primary); box-shadow: none; }
  .pitch-cta .hero-actions { display: none; }
  main > section { animation: none !important; }
  .eyebrow { transform: none; }
  .band img, .menu-gallery-grid img, .split-hero-photo img,
  .home-supper-photo, .menu-feature .feature-figure img { transform: none; }
  .pitch-item { break-inside: avoid; box-shadow: none; }
  .pitch-cta { border: 1px solid var(--hairline); box-shadow: none; color: var(--ink); }
  .pitch-cta h2, .pitch-cta p { color: var(--ink); }
  a { text-decoration: none; }
}
