/* =====================================================================
   The Smithy — design system  ("Banked Fire", 2026-07-27)
   The app's world, on the web: rich-black slate field (#03071E), the
   flame ramp for accents (03071E·370617·6A040F·9D0208·D00000·DC2F02·
   E85D04·F48C06·FAA307·FFBA08), parchment ink (#F4F1EB — the client
   app's own text color), Merriweather display (the engine web's serif)
   over the system UI stack (what the app itself renders).
   Token NAMES are inherited skeleton plumbing (--paper is the dark
   field, --copper is flame orange); values are the contract.
   ===================================================================== */

:root {
  /* fields & ink — slate night, parchment text */
  --paper:      #03071e;   /* page field — the ramp's rich black */
  --paper-2:    #0d1226;   /* raised surfaces: cards, forms, drawers */
  --ink:        #f4f1eb;   /* parchment — body text (app-native) */
  --ink-soft:   #b9b4a9;   /* warm grey — meta, captions */
  --forest:     #faf7f0;   /* display headings (name is plumbing) */
  --forest-2:   #e9e3d5;
  --river:      #7c8db0;   /* slate-blue secondary */
  --copper:     #e85d04;   /* flame — primary CTA fill */
  --copper-dk:  #faa307;   /* amber — links, eyebrows, hovers */
  --sand:       #f4f1eb1f; /* decorative hairlines (12% parchment) */
  --line: color-mix(in srgb, var(--ink) 14%, transparent);
  --border-input: #8a93a6; /* functional input borders — ≥3:1 on the field */
  --ember-deep: #370617;   /* maroon — deep tints, error fields */
  --flame-red:  #dc2f02;   /* error text / danger accents */

  /* type — Merriweather (engine-web serif) + the app's system stack */
  --display: "Merriweather", Georgia, serif;
  --body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --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.5rem, 1.3rem + 1vw, 2.1rem);
  --step-4:  clamp(2.4rem, 1.9rem + 2.6vw, 4rem);
  --step-6:  clamp(3.4rem, 2.4rem + 5vw, 6.5rem);

  --maxw: 72rem;
  --radius: 6px;
  --shadow: 0 0 0 1px rgba(244,241,235,.06);
}
/* ---------- 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.65;
  color: var(--ink);
  background-color: var(--paper);
  /* atmosphere: soft light wash + paper grain */
  background-image:
    radial-gradient(110% 70% at 85% -12%, color-mix(in srgb, var(--copper) 9%, transparent), transparent 58%),
    radial-gradient(80% 55% at -8% 4%, color-mix(in srgb, #9d0208 12%, transparent), transparent 52%),
    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.035'/%3E%3C/svg%3E");
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--display); font-weight: 500; line-height: 1.04; letter-spacing: -.01em; color: var(--forest); 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(--copper-dk); text-decoration-thickness: 1px; text-underline-offset: 3px; }
img { max-width: 100%; height: auto; display: block; }

:focus-visible { outline: 2px solid var(--river); outline-offset: 3px; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 1rem; top: 1rem; background: var(--forest); color: var(--paper); 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: .7rem clamp(1.1rem, 4vw, 2rem);
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: blur(10px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}

/* ---------- sticky announcement bar (interior pages, no motion) ---------- */
/* A slim, single-line save-the-date 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(--forest);
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 24%, transparent);
}
.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(--paper); text-decoration: none; font-weight: 500;
  font-size: var(--step--1); line-height: 1.4;
}
.navbar-link:hover { 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(--paper) 70%, transparent);
  border-radius: var(--radius);
}
.navbar-close:hover { color: var(--paper); }
.navbar-tag {
  font-family: var(--body); font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em; font-size: .72rem;
  /* copper-on-forest AA-safe mix (raw --copper fails contrast here) */
  color: color-mix(in srgb, var(--copper) 55%, var(--paper));
}
.navbar-msg { color: color-mix(in srgb, var(--paper) 88%, transparent); }
.navbar-cue { color: var(--paper); }
.brand {
  font-family: var(--display); font-weight: 600; font-size: 1.3rem;
  color: var(--forest); text-decoration: none; letter-spacing: -.02em;
  display: inline-flex; align-items: baseline; gap: .45rem;
}
.brand::before { content: none; }
.nav { display: flex; gap: clamp(.6rem, 1.4vw, 1.4rem); align-items: center; flex-wrap: wrap; }
.nav a {
  color: var(--ink-soft); text-decoration: none; font-weight: 500;
  font-size: var(--step--1); letter-spacing: .02em; text-transform: uppercase;
  padding: .25rem 0; position: relative;
}
.nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--copper); transition: width .25s ease; }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }

/* 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: 2px; background: var(--forest); border-radius: 2px; }

@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(--paper);
    border: 1px solid var(--line); border-radius: var(--radius);
    padding: 1rem 1.2rem; min-width: 13rem; box-shadow: var(--shadow); 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 { /* one low forge-ember glow — iron, not ridgelines */
  content: ""; position: absolute; inset: auto 0 0 0; height: 60%; z-index: -1;
  background: radial-gradient(60% 40% at 50% 110%, color-mix(in srgb, var(--copper) 12%, transparent), transparent 70%);
}
.hero h1 { font-size: var(--step-6); font-weight: 400; max-width: 16ch; font-optical-sizing: auto; }
.hero .lede { font-size: var(--step-2); font-family: var(--display); color: var(--ink-soft); max-width: 30ch; }
.hero p { font-size: 1.1rem; }
.eyebrow { font-family: var(--body); text-transform: uppercase; letter-spacing: .22em; font-size: .78rem; font-weight: 700; color: var(--copper-dk); 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 ---------- */
.btn, button[type="submit"] {
  display: inline-block; font-family: var(--body); font-weight: 600;
  font-size: var(--step--1); text-transform: uppercase; letter-spacing: .06em;
  /* copper-dk (not copper) for WCAG AA contrast on the small bold label: white
     on --copper-dk ≈ 5.7:1 vs ~3.95:1 on --copper. */
  background: var(--copper); color: #1a0b00; border: 0; border-radius: var(--radius);
  padding: .8rem 1.4rem; text-decoration: none; cursor: pointer;
  box-shadow: 0 10px 22px -12px var(--copper-dk); transition: transform .15s ease, background .2s ease;
}
.btn:hover, button[type="submit"]:hover { background: var(--copper-dk); color: #1a0b00; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--forest); border: 1.5px solid var(--forest); box-shadow: none; }
.btn--ghost:hover { background: var(--forest); color: var(--paper); }

/* ---------- cards / hours / menu ---------- */
.card {
  background: var(--paper-2);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.3rem, 3vw, 2.2rem); box-shadow: var(--shadow);
}
.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 dashed var(--sand); }
.hours li:last-child { border-bottom: 0; }
.hours-sub { margin: 1.3rem 0 .2rem; font-family: var(--display); font-size: 1.1rem; color: var(--copper-dk); }
.hours-sub:first-of-type { margin-top: .4rem; }

.menu h2 { color: var(--copper-dk); margin-top: 1.6rem; padding-bottom: .3rem; border-bottom: 2px solid var(--sand); }
.menu-items li { padding: .7rem 0; border-bottom: 1px dashed var(--sand); }
.menu-items strong { font-family: var(--display); font-size: 1.15rem; color: var(--forest); }
.menu-items em { color: var(--river); font-style: italic; }
.menu-items .desc { color: var(--ink-soft); font-size: var(--step--1); margin-top: .15rem; }
.updated { color: var(--ink-soft); font-size: var(--step--1); font-style: italic; }
/* generic de-emphasis utility (e.g. "Details coming soon") — was used in
   markup but only defined in scoped contexts, so it rendered at full ink */
.muted { color: var(--ink-soft); }

.products { display: grid; grid-template-columns: repeat(auto-fill, minmax(13rem, 1fr)); gap: 1.2rem; }
.products li { background: var(--paper); border: 1px solid var(--line); 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-soft); }
input, textarea, select {
  font: inherit; font-size: var(--step-0); padding: .6rem .75rem;
  background: var(--paper-2); border: 1px solid var(--border-input); border-radius: var(--radius); color: var(--ink);
}
input:focus, textarea:focus, select:focus { border-color: var(--river); }
/* Attestation checkboxes (market vendor application): make each label its own
   row so they don't run together inline, and keep the box from being bloated
   by the global input padding above. */
.checkbox { display: flex; align-items: flex-start; gap: .6rem; max-width: 34rem; margin: 0 0 1rem; font-weight: 400; cursor: pointer; }
.checkbox input[type=checkbox] { flex: 0 0 auto; width: 1.15rem; height: 1.15rem; margin: .15rem 0 0; padding: 0; }
.checkbox span { font-weight: 400; font-size: var(--step--1); color: var(--ink-soft); line-height: 1.45; }
/* Roots Market vendor directory + profiles */
.vendor-grid { list-style: none; margin: 1.5rem 0; padding: 0; display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr)); }
.vendor-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.vendor-card a { display: block; color: inherit; text-decoration: none; }
.vendor-card img, .vendor-card .vc-placeholder { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.vendor-card .vc-placeholder { display: flex; align-items: center; justify-content: center; text-align: center; padding: 1rem; background: var(--sand); color: var(--ink-soft); font-size: var(--step--1); }
.vendor-card .vc-body { padding: 1rem; }
.vc-cat { font-size: var(--step--1); color: var(--copper); text-transform: uppercase; letter-spacing: .04em; margin: 0; }
.vendor-card h3 { margin: .2rem 0 .4rem; }
.vendor-card .vc-body p:last-child { color: var(--ink-soft); font-size: var(--step--1); margin: 0; }
.vendor-hero { width: 100%; max-width: 34rem; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); margin: 0 0 1.2rem; }

/* ---------- age gate ---------- */
.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-soft); box-shadow: none; text-decoration: underline; }

/* 21+ overlay (#30) — 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(--paper) 96%, var(--forest));
}
.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-soft); box-shadow: none; text-decoration: underline; }
body.age-locked { overflow: hidden; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--forest); color: color-mix(in srgb, var(--paper) 88%, transparent);
  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(--paper); }
.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; }
.footer-tagline { font-family: var(--display); font-size: 1.15rem; color: var(--paper); margin: 0 0 .7rem; }
.footer-meta { margin: .2rem 0; color: color-mix(in srgb, var(--paper) 70%, transparent); }
.footer-col h3 { font-family: var(--display); font-weight: 500; font-size: 1.05rem; color: var(--paper); margin: 0 0 .75rem; }
.footer-col a { display: block; color: color-mix(in srgb, var(--paper) 82%, transparent); text-decoration: none; padding: .25rem 0; }
.footer-col a:hover { color: var(--paper); 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: color-mix(in srgb, var(--paper) 82%, transparent); text-decoration: none; }
.footer-social a:hover { color: var(--paper); 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(--paper) 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(--paper) 60%, 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 (Phase 2 shop) ---------- */
.messages { list-style: none; margin: 0 0 1.5rem; padding: 0; display: grid; gap: .5rem; }
.msg { padding: .6rem .9rem; border-radius: var(--radius); border: 1px solid var(--line); font-size: var(--step--1); }
.msg--success { background: color-mix(in srgb, var(--forest-2) 12%, var(--paper)); border-color: var(--forest-2); }
.msg--error { background: color-mix(in srgb, var(--copper) 14%, var(--paper)); border-color: var(--copper-dk); }
.cart-link { font-weight: 700 !important; color: var(--forest) !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(--sand); }
.cart-name { font-family: var(--display); font-size: 1.1rem; color: var(--forest); 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; box-shadow: none; color: var(--copper-dk); text-transform: none; letter-spacing: 0; padding: .4rem; text-decoration: underline; }
.cart-total { font-size: 1.3rem; font-family: var(--display); }
.add-to-cart { display: flex; align-items: center; gap: .8rem; margin-top: 1rem; }
.add-to-cart input { width: 5rem; }
.notice { color: var(--ink-soft); font-style: italic; }
.cart-party-note { background: color-mix(in srgb, var(--copper) 8%, var(--paper));
  border: 1px solid color-mix(in srgb, var(--copper) 28%, var(--sand));
  border-radius: 12px; padding: .9rem 1.1rem; margin: 0 0 1.5rem;
  color: var(--ink-soft); line-height: 1.55; }
.cart-party-note strong { color: var(--forest); }
.cart-party-note a { font-weight: 600; white-space: nowrap; }
.product .price { font-family: var(--display); font-size: 1.6rem; color: var(--copper-dk); }

/* ---------- real assets (logo / hero photo / menu image) ---------- */
.brand { gap: .55rem; }
.brand::before { content: none; }  /* replaced by the real logo mark */
.brand-mark { height: 30px; width: auto; }
.hero-photo {
  width: 100%; max-height: 460px; object-fit: cover; border-radius: var(--radius);
  margin-top: clamp(1.5rem, 4vw, 2.5rem); box-shadow: var(--shadow);
}
.menu-photo {
  width: 100%; max-width: 640px; border-radius: var(--radius);
  border: 1px solid var(--line); margin: 1rem 0 1.5rem;
}
.footer-logo { height: 56px; width: auto; margin-bottom: 1rem; opacity: .95; }

/* ---------- beer thumbnails + product imagery ---------- */
.menu-items li.has-thumb { display: flex; gap: 1rem; align-items: center; }
.beer-thumb {
  width: 72px; height: 72px; flex: 0 0 72px; object-fit: cover;
  border-radius: 50%; border: 2px solid var(--sand);
}
.item-body { flex: 1; }

/* 86'd / sold-out — used on beer that has kicked but hasn't been replaced yet.
   Keep the beer listed (so guests see it was pouring) but stamp it clearly. */
.menu-items li.sold-out strong {
  text-decoration: line-through;
  text-decoration-color: #b3261e;
  text-decoration-thickness: 2px;
}
.menu-items li.sold-out .beer-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(-6deg);
  font-family: var(--body);
  font-weight: 700;
  font-size: .66em;
  letter-spacing: .14em;
  text-transform: uppercase;
  line-height: 1.25;
  white-space: nowrap;
  color: #b3261e;
  border: 2.5px solid #b3261e;
  border-radius: 5px;
  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(--forest); }
.product-thumb {
  width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block;
  background: color-mix(in srgb, var(--paper) 92%, transparent); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line);
}
.product-thumb--empty {
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: var(--sand); font-family: var(--display);
}
.product-name { display: block; font-family: var(--display); font-size: 1.1rem; padding: .9rem 1rem .2rem; }
.product-price { display: block; padding: 0 1rem 1rem; color: var(--copper-dk); font-weight: 600; }
.product-hero {
  width: 100%; max-width: 420px; aspect-ratio: 1/1; object-fit: cover;
  border-radius: var(--radius); border: 1px solid var(--line); margin-bottom: 1.2rem;
}

/* ---------- featured menu spot (e.g. Sunday Supper) ---------- */
.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: color-mix(in srgb, var(--copper) 8%, var(--paper));
  border: 1px solid color-mix(in srgb, var(--copper) 30%, var(--sand));
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.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: 1px solid var(--line); display: block;
}
.menu-feature figcaption {
  font-size: var(--step--1); color: var(--ink-soft); font-style: italic;
  text-align: center; margin-top: .4rem;
}
.menu-feature .feature-body h2 {
  margin: 0 0 .5rem; border: 0; padding: 0; color: var(--copper-dk);
}
.menu-feature .feature-body p { margin: 0 0 .6rem; }
.menu-feature .feature-week { font-size: var(--step--1); color: var(--ink-soft); }
@media (max-width: 640px) {
  .menu-feature { grid-template-columns: 1fr; }
  .menu-feature .feature-figure img { aspect-ratio: 16/10; }
}

/* ---------- kitchen photo gallery (food menu) ---------- */
.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: hidden; border-radius: var(--radius); }
.menu-gallery-grid img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block;
  border-radius: var(--radius); border: 1px solid var(--line);
}

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

/* ---------- 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(--paper-2); border: 1px solid var(--line);
  border-left: 3px solid var(--copper); border-radius: var(--radius); padding: 1.1rem 1.2rem;
}
.amenity-grid strong { display: block; font-family: var(--display); font-size: 1.2rem; color: var(--forest); }
.amenity-grid span { color: var(--ink-soft); 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; }
.band img { width: 100%; height: 100%; max-height: 380px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.band-body h2 { margin-top: 0; }
@media (max-width: 720px) { .band { grid-template-columns: 1fr; } }

/* ---------- Grit partnership feature (family page) ---------- */
.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(--forest); color: var(--paper); border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.partner-feature .partner-art {
  width: 100%; height: auto; display: block;  /* transparent logo, shadow baked in */
}
/* lighten the copper eyebrow toward birch so it clears WCAG AA (~5:1) on the
   dark forest band — full --copper was only ~2.9:1 */
.partner-feature .eyebrow { color: color-mix(in srgb, var(--copper) 55%, var(--paper)); }
.partner-feature h2 { margin: .2rem 0 .6rem; color: var(--paper); }
.partner-feature p { color: color-mix(in srgb, var(--paper) 88%, transparent); }
.partner-feature strong { color: var(--paper); }
@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(--forest); color: var(--paper);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: clamp(1rem, 3vw, 1.4rem) clamp(1.2rem, 4vw, 1.8rem);
}
.savedate .eyebrow { color: color-mix(in srgb, var(--copper) 55%, var(--paper)); margin: 0 0 .15rem; }
.savedate-headline { font-family: var(--display); font-size: var(--step-2); color: var(--paper); 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(--paper); text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }
@media (max-width: 640px) { .savedate { justify-content: flex-start; } }

/* ---------- Grit partnership teaser (landing) ---------- */
.partner-strip {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1rem clamp(1.2rem, 4vw, 2.5rem);
  background: color-mix(in srgb, var(--copper) 8%, var(--paper));
  border: 1px solid color-mix(in srgb, var(--copper) 28%, var(--sand));
  border-radius: var(--radius); padding: clamp(1.1rem, 3vw, 1.6rem); box-shadow: var(--shadow);
}
.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; }

/* gift-card callout reuses the strip layout, tinted river-slate instead of
   copper so two strips on the landing page read as distinct moments */
.gift-strip {
  background: color-mix(in srgb, var(--river) 8%, var(--paper));
  border-color: color-mix(in srgb, var(--river) 28%, var(--sand));
}

/* ---------- family page: kids coloring book feature ---------- */
.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: 1px solid var(--line); box-shadow: var(--shadow);
}
.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; }
}

/* ---------- family page: scavenger-hunt stops ---------- */
.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(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.family-stop img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
  border-bottom: 1px solid var(--line);
}
.family-stop-body { padding: .8rem 1rem 1rem; }
.family-stop-body strong {
  display: block; font-family: var(--display); font-size: 1.15rem; color: var(--forest);
}
.family-stop-body span { color: var(--ink-soft); font-size: var(--step--1); }
@media (max-width: 640px) { .family-stops { grid-template-columns: 1fr; } }

/* ---------- private-events / weddings 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: 1px solid var(--line); box-shadow: var(--shadow);
}
.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,
   emotional photo per row (the gallery is the venue's main sell). */
@media (max-width: 720px) { .venue-gallery { columns: 2; } }
@media (max-width: 520px) { .venue-gallery { columns: 1; } }

/* ---------- private-events 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-soft); 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(--line); }
.venue-facts li:first-child { border-top: 0; padding-top: 0; }
.venue-facts strong {
  display: block; font-family: var(--display);
  font-size: 1.2rem; color: var(--forest); line-height: 1.2;
}
.venue-facts span { color: var(--ink-soft); font-size: var(--step--1); }
.booking-request h2 { margin-bottom: .5rem; }
.booking-note { color: var(--ink-soft); margin-bottom: 1.4rem; }
.booking-fineprint {
  color: var(--ink-soft); font-size: var(--step--1);
  font-style: italic; margin: .9rem 0 0;
}

/* partial vs private rental 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: 1px solid var(--line); border-radius: var(--radius);
  font-weight: 600; font-size: var(--step--1); color: var(--ink-soft); background: var(--paper);
}
.evt-tabs label:hover { border-color: var(--forest); }
.evt-panel { display: none; }
#evt-partial:checked ~ .evt-tabs label[for="evt-partial"],
#evt-private:checked ~ .evt-tabs label[for="evt-private"] {
  background: var(--forest); color: var(--paper); border-color: var(--forest);
}
#evt-partial:focus-visible ~ .evt-tabs label[for="evt-partial"],
#evt-private:focus-visible ~ .evt-tabs label[for="evt-private"] {
  outline: 2px solid var(--river); outline-offset: 2px;
}
#evt-partial:checked ~ .evt-panel--partial,
#evt-private:checked ~ .evt-panel--private { display: block; }

/* ---------- landing Sunday Supper feature (shown Sat–Sun) ---------- */
.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: color-mix(in srgb, var(--copper) 9%, var(--paper));
  border: 1px solid color-mix(in srgb, var(--copper) 32%, var(--sand));
  border-radius: var(--radius); box-shadow: var(--shadow);
  transition: box-shadow .15s ease, transform .15s ease;
}
.home-supper-card:hover { transform: translateY(-2px); box-shadow: 0 1px 0 rgba(0,0,0,.04), 0 22px 48px -24px rgba(34,31,26,.5); }
.home-supper-photo {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--radius); border: 1px solid var(--line); display: block;
}
.home-supper-body h2 { margin: .1rem 0 .5rem; color: var(--copper-dk); }
.home-supper-body p { margin: 0 0 .7rem; }
.home-supper-week { font-size: var(--step--1); color: var(--ink-soft); }
.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; }
}

/* ---------- hero "Now Playing" live-music badge (self-populating) ----------
   Floats in the top-right of the video hero as an overlay — never pushes page
   content down. z-index 3 sits above the scrim (1) and the centered overlay
   (2). JS flips [data-state] to "live" during a set. */
.hero-np {
  position: absolute; top: clamp(.7rem, 2vw, 1.1rem); right: clamp(.7rem, 2vw, 1.1rem);
  z-index: 3; display: flex; align-items: center; gap: .7rem; text-decoration: none;
  padding: .55rem .85rem .55rem .6rem; border-radius: 14px; color: var(--paper);
  max-width: min(74vw, 260px); transform-origin: top right;
  background: rgba(20,17,13,.52); border: 1px solid rgba(245,239,225,.20);
  -webkit-backdrop-filter: blur(12px) saturate(1.1); backdrop-filter: blur(12px) saturate(1.1);
  box-shadow: 0 10px 30px -12px rgba(0,0,0,.6);
  animation: np-in .55s cubic-bezier(.2,.7,.2,1) .7s both;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.hero-np:hover { transform: translateY(-2px); background: rgba(20,17,13,.62);
  box-shadow: 0 16px 38px -14px rgba(0,0,0,.7); }
.hero-np:focus-visible { outline: 2px solid #e79a5c; outline-offset: 3px; }
@keyframes np-in { from { opacity: 0; transform: translate(10px,-8px) scale(.96); } to { opacity: 1; transform: none; } }
.hero-np-avatar { position: relative; flex: 0 0 auto; width: 50px; height: 50px; border-radius: 50%; }
.hero-np-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover;
  object-position: center 30%; border: 1.5px solid rgba(245,239,225,.5); display: block; }
.hero-np-avatar::before { content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 1.5px solid var(--copper); opacity: .55; animation: np-ring 2.6s ease-in-out infinite; }
@keyframes np-ring { 0%,100% { transform: scale(1); opacity: .5; } 50% { transform: scale(1.09); opacity: .16; } }
.hero-np-text { display: flex; flex-direction: column; gap: .06rem; min-width: 0; }
.hero-np-eyebrow { display: flex; align-items: center; gap: .4rem; height: .9rem; }
.hero-np-kicker { font-family: var(--body); font-weight: 700; font-size: .6rem;
  text-transform: uppercase; letter-spacing: .16em; color: #e79a5c; white-space: nowrap; }
.hero-np-name { font-family: var(--display); font-weight: 600; font-size: 1.02rem; line-height: 1.1;
  color: var(--paper); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hero-np-sub { font-family: var(--body); font-size: .66rem; color: rgba(245,239,225,.72);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hero-np-eq { display: inline-flex; align-items: flex-end; gap: 2px; height: 11px; }
.hero-np-eq i { width: 2.5px; background: #e79a5c; border-radius: 1px; height: 40%;
  animation: np-eq 1.1s ease-in-out infinite; }
.hero-np-eq i:nth-child(2) { animation-delay: .22s; }
.hero-np-eq i:nth-child(3) { animation-delay: .44s; }
.hero-np-eq i:nth-child(4) { animation-delay: .12s; }
@keyframes np-eq { 0%,100% { height: 30%; } 50% { height: 100%; } }
.hero-np-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--copper); display: none;
  animation: np-dot 1.6s ease-out infinite; }
@keyframes np-dot { 0% { box-shadow: 0 0 0 0 rgba(191,106,44,.6); } 70% { box-shadow: 0 0 0 7px rgba(191,106,44,0); } 100% { box-shadow: 0 0 0 0 rgba(191,106,44,0); } }
.hero-np[data-state="live"] .hero-np-dot { display: inline-block; }
.hero-np[data-state="live"] .hero-np-kicker { color: #f0b483; }
.hero-np[data-state="live"] .hero-np-eq i { animation-duration: .62s; }
.hero-np[data-state="live"] .hero-np-avatar::before { border-color: var(--copper); animation-duration: 1.6s; }
@media (max-width: 560px) {
  .hero-np { gap: .5rem; padding: .45rem .6rem .45rem .45rem; max-width: 62vw; }
  .hero-np-avatar { width: 40px; height: 40px; }
  .hero-np-name { font-size: .9rem; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-np, .hero-np-avatar::before, .hero-np-eq i, .hero-np-dot { animation: none; }
  .hero-np-eq i { height: 70%; }
}

/* ---------- video hero (carried over from the original site) ---------- */
.video-hero {
  position: relative; overflow: hidden;
  width: 100vw; margin-left: calc(50% - 50vw);
  margin-top: calc(-1 * clamp(2rem, 5vw, 4.5rem));   /* flush under the header */
  min-height: min(80vh, 680px);
  display: grid; place-items: center;
  background-size: cover; background-position: center;   /* poster fallback */
}
.video-hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; pointer-events: none;  /* decorative; never intercept taps */
}
.video-hero::after {  /* legibility scrim */
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(20,28,22,.45), rgba(20,28,22,.30) 40%, rgba(20,28,22,.6));
}
.video-hero-overlay {
  position: relative; z-index: 2; text-align: center; color: #fff;
  padding: 2rem 1.2rem; display: grid; justify-items: center; gap: 1.1rem;
}
.video-hero-logo { width: min(380px, 72vw); height: auto; filter: drop-shadow(0 2px 12px rgba(0,0,0,.4)); }
.video-hero-tag {
  font-family: var(--display); font-size: clamp(1.4rem, 1rem + 2vw, 2.4rem);
  margin: 0; text-shadow: 0 2px 16px rgba(0,0,0,.5);
}
.video-hero-cta { margin: 0; display: flex; gap: .8rem; flex-wrap: wrap; justify-content: center; }
.btn--ghost-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.8); box-shadow: none; }
.btn--ghost-light:hover { background: #fff; color: var(--forest); }

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

@media (prefers-reduced-motion: reduce) {
  .video-hero-bg { display: none; }   /* show the poster background instead */
}

/* ---------- events / live music ---------- */
.event-card {
  display: grid; grid-template-columns: 220px 1fr; gap: clamp(1rem, 3vw, 2rem);
  align-items: start; background: var(--paper-2);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.2rem, 3vw, 2rem); box-shadow: var(--shadow);
}
.event-card + .event-card { margin-top: 1.5rem; }
.event-card:not(:has(.event-photo)) { grid-template-columns: 1fr; }  /* no band photo → full-width body, not the 220px photo column */
.event-photo { width: 220px; height: 220px; object-fit: cover; border-radius: var(--radius); }
.event-when { font-size: var(--step--1); text-transform: uppercase; letter-spacing: .08em; color: var(--copper-dk); font-weight: 700; margin: 0 0 .3rem; }
.event-where { color: var(--ink-soft); font-weight: 500; text-transform: none; letter-spacing: 0; margin-left: .5rem; }
.event-body h2 { margin: 0 0 .4rem; }
.event-performer { font-family: var(--display); font-size: 1.2rem; color: var(--forest); margin: 0 0 .4rem; }
.event-performer .muted { color: var(--ink-soft); font-family: var(--body); font-size: var(--step--1); }
.event-bio { color: var(--ink-soft); 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(--forest); background: var(--paper); border: 1px solid var(--sand);
  border-radius: 999px; padding: .3rem .8rem;
}
.social-pill:hover { background: var(--forest); color: var(--paper); border-color: var(--forest); }

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

@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(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.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: 1px solid var(--sand); border-radius: 999px; background: var(--paper); color: var(--forest); 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(--forest); color: var(--paper); border-color: var(--forest); }
.cal-nav-btn:focus-visible { outline: 2px solid var(--copper); 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(--copper-dk); text-decoration: none; }
.cal-today a:hover { text-decoration: underline; }
/* Image-tile grid calendar (#39) — a visual, scannable month of events. */
.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(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); transition: transform .12s ease, box-shadow .12s ease; }
.cal-tile:hover { transform: translateY(-3px); box-shadow: 0 8px 22px rgb(34 31 26 / .14); }
.cal-tile:focus-visible { outline: 2px solid var(--copper); outline-offset: 2px; }
.cal-tile-media { position: relative; aspect-ratio: 1 / 1; background: var(--paper-2); }
.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: linear-gradient(135deg, var(--forest), var(--copper-dk)); }
.cal-tile-fallback span { font-family: var(--display); font-size: 1.25rem; line-height: 1.15; color: var(--paper); }
.cal-tile-date { position: absolute; top: .6rem; left: .6rem; background: var(--paper); color: var(--forest); font-weight: 800; font-size: .72rem; letter-spacing: .05em; padding: .25rem .55rem; border-radius: 999px; box-shadow: var(--shadow); }
.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(--copper-dk); }
.cal-tile-title { font-family: var(--display); font-size: 1.05rem; line-height: 1.15; color: var(--forest); }
.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); box-shadow: var(--shadow); }
.performer-head:not(:has(.performer-photo)) { grid-template-columns: 1fr; }  /* no band photo → full-width text, not the 240px photo column */
.performer .muted { color: var(--ink-soft); }
.show-row { margin: .3rem 0; }
@media (max-width: 640px) { .performer-head { grid-template-columns: 1fr; } .performer-photo { width: 100%; height: 260px; } }

/* ---------- instagram feed ---------- */
.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); }
.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); }

/* ---------- about: 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: 500; font-size: var(--step-4); line-height: 1.08; color: var(--forest); letter-spacing: -.01em; }
.pullquote blockquote::before { content: "“"; color: var(--copper); }
.pullquote blockquote::after { content: "”"; color: var(--copper); }
.pullquote-cite { margin-top: 1rem; font-family: var(--body); text-transform: uppercase; letter-spacing: .18em; font-size: .76rem; font-weight: 700; color: var(--copper-dk); }

/* ---------- about: band reverse + founders ---------- */
.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(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: clamp(1.2rem,3vw,1.8rem); }
.founder h3 { margin: .15rem 0 .6rem; color: var(--forest); font-size: 1.55rem; }
.founder-role { margin: 0; font-family: var(--body); text-transform: uppercase; letter-spacing: .16em; font-size: .72rem; font-weight: 700; color: var(--copper-dk); }
.founder p:last-child { margin-bottom: 0; color: var(--ink-soft); }
@media (max-width: 720px) { .band--reverse img { order: 0; } }

/* ===================================================================
   v2 revenue features (issue #2)
   =================================================================== */

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

/* small/ghost button variants */
.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(--display); font-size: 1.15rem; margin-bottom: .5rem; color: var(--paper); }
.subscribe-row { display: flex; gap: .5rem; justify-content: center; }
.subscribe-row input { flex: 1; max-width: 22rem; padding: .55rem .7rem; border: 1px solid color-mix(in srgb, #fff 30%, transparent); border-radius: var(--radius); background: color-mix(in srgb, #fff 12%, transparent); color: #fff; }
.subscribe-row input::placeholder { color: color-mix(in srgb, #fff 60%, transparent); }
.footer-links { margin: 1rem 0; font-size: var(--step--1); opacity: .9; }
.footer-links a { color: var(--paper); }

/* mug club tiers (reuse .founder card) */
.tier { text-align: center; }
.tier h3 { font-size: 2.4rem; }
.tier .per { font-size: 1rem; color: var(--ink-soft); font-family: var(--body); }
.tier--featured { outline: 2px solid var(--copper); }
.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-soft); border-top: 1px solid var(--line); }
.perks li::before { content: "—"; color: var(--copper); 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: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); font: inherit; }

/* reviews */
.reviews-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr)); }
.review { margin: 0; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: clamp(1.2rem,3vw,1.6rem); }
.review-stars { color: var(--copper); 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(--forest); }

/* gift cards */
.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: 10px; background: linear-gradient(135deg, var(--forest), var(--forest-2)); color: var(--paper); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .25rem; box-shadow: var(--shadow); margin-bottom: .8rem; }
.giftcard-logo { width: 68px; height: auto; margin-bottom: .15rem; }
.giftcard-amount { font-family: var(--display); font-size: 2.6rem; line-height: 1; }
.giftcard-brand { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; opacity: .85; }

/* on-tap list */
.tap-live { color: #2f8f4e; font-weight: 700; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; vertical-align: middle; }
.tap-section h2 { border-bottom: 2px solid var(--copper); padding-bottom: .3rem; }
.taplist { list-style: none; margin: 0 0 2rem; padding: 0; }
.tap-row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: .6rem 0; border-bottom: 1px solid var(--line); }
.tap-name { font-family: var(--display); font-size: 1.2rem; color: var(--forest); }
.tap-style { color: var(--ink-soft); margin-left: .5rem; font-size: var(--step--1); }
.tap-meta { white-space: nowrap; color: var(--ink-soft); font-size: var(--step--1); }
.tap-abv { font-weight: 600; }
.tap-ibu { margin-left: .6rem; }

/* 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: 1px solid var(--line); border-radius: var(--radius); font: inherit; }

/* ---------- grounds / property terrain ---------- */
.grounds { text-align: center; }
.grounds-lede { max-width: 64ch; margin-inline: auto; color: var(--ink-soft); }
.grounds-grid { display: grid; grid-template-columns: minmax(0, 2.4fr) minmax(208px, 1fr); gap: clamp(1.2rem,3vw,2rem); align-items: stretch; margin-top: 1.5rem; text-align: left; }
.grounds-terrain { margin: 0; display: flex; flex-direction: column; }
.grounds-terrain img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--sand); display: block; }
.grounds-terrain figcaption { margin-top: .5rem; font-size: var(--step--1); color: var(--ink-soft); font-style: italic; }
.grounds-list { align-self: start; }
.grounds-list h3 { margin-top: 0; color: var(--forest); }
.grounds-amenities { list-style: none; margin: 0 0 1.2rem; padding: 0; }
.grounds-amenities li { display: flex; gap: .6rem; align-items: flex-start; padding: .55rem 0; border-top: 1px solid var(--line); }
.grounds-amenities li:first-child { border-top: 0; }
.grounds-amenities .gi { display: block; }
.grounds-amenities strong { display: block; font-family: var(--display); font-size: 1.1rem; color: var(--forest); }
.grounds-amenities .gi > span { color: var(--ink-soft); font-size: var(--step--1); }
/* number badge — mirrors the numbered pins on the map */
.grounds-amenities .ln { flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; margin-top: .1rem; border-radius: 50%; background: var(--copper); color: #fff; font-family: var(--body); font-weight: 700; font-size: .72rem; box-shadow: 0 1px 3px rgba(0,0,0,.25); }
.grounds-amenities .ln--paw { background: transparent; color: var(--copper); box-shadow: none; font-size: 1rem; }
@media (max-width: 880px) { .grounds-grid { grid-template-columns: 1fr; } }

/* ---------- grounds 3D terrain viewer + area linking ---------- */
.grounds-3d { width: 100%; height: clamp(460px, 72vh, 780px); background: var(--paper-2); border: 1px solid var(--sand); border-radius: var(--radius); box-shadow: var(--shadow); --poster-color: var(--paper-2); }
@media (max-width: 880px) { .grounds-3d { height: 56vh; } }

.map-hotspot { background: none; border: 0; padding: 0; cursor: pointer; }
/* numbered marker — keyed to the list beside the map */
.hs-dot { display: flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; background: var(--copper); color: #fff; font-family: var(--body); font-weight: 700; font-size: .78rem; line-height: 1; border: 2px solid #fff; box-shadow: 0 2px 6px rgba(0,0,0,.45); transition: transform .15s ease, background .15s ease, box-shadow .15s ease; }
.hs-label { position: absolute; left: 50%; bottom: 165%; transform: translateX(-50%); background: color-mix(in srgb, var(--paper) 92%, transparent); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); color: var(--forest); font-family: var(--body); font-weight: 600; font-size: .74rem; letter-spacing: .01em; padding: .25rem .6rem; border: 1px solid color-mix(in srgb, var(--forest) 22%, transparent); border-radius: 14px; white-space: nowrap; box-shadow: 0 3px 10px rgba(0,0,0,.22); opacity: 0; transition: opacity .15s ease; pointer-events: none; }
.hs-label::after { content: ""; position: absolute; left: 50%; top: 100%; transform: translateX(-50%); border: 5px solid transparent; border-top-color: color-mix(in srgb, var(--paper) 92%, transparent); }
/* dim the rest once one area is active */
.grounds-3d.has-active .map-hotspot:not(.is-active) .hs-dot { opacity: .45; }
.map-hotspot.is-active .hs-dot { background: var(--forest); transform: scale(1.28); box-shadow: 0 0 0 7px color-mix(in srgb, var(--copper) 30%, transparent); }
.map-hotspot.is-active .hs-label { opacity: 1; }

.grounds-amenities li[data-zone] { cursor: pointer; padding-inline: .5rem; margin-inline: -.5rem; border-radius: var(--radius); transition: background .12s ease; }
.grounds-amenities li[data-zone]:hover,
.grounds-amenities li.is-active { background: color-mix(in srgb, var(--copper) 14%, transparent); }
.grounds-amenities li.is-active strong { color: var(--copper-dk); }

/* ---------- grounds calibration tool (?calibrate=1) ---------- */
.calib { margin-top: 1.5rem; padding: 1rem 1.2rem; border: 2px dashed var(--copper); border-radius: var(--radius); background: color-mix(in srgb, var(--copper) 6%, var(--paper)); text-align: left; }
.calib p { max-width: none; }
.calib-areas { display: flex; flex-wrap: wrap; gap: .5rem; margin: .6rem 0; }
.calib-areas button { padding: .35rem .7rem; border: 1px solid var(--sand); border-radius: 16px; background: var(--paper); font: inherit; font-size: var(--step--1); cursor: pointer; }
.calib-areas button.on { background: var(--copper); color: #fff; border-color: var(--copper); }
.calib-status { font-size: var(--step--1); }
.calib textarea { width: 100%; font-family: ui-monospace, Menlo, monospace; font-size: .8rem; border: 1px solid var(--line); border-radius: var(--radius); padding: .6rem; background: #fff; }

/* calibration drag mode — labels always shown, dots grabbable */
.grounds-3d.calibrating .hs-label { opacity: 1; }
.grounds-3d.calibrating .map-hotspot { cursor: grab; touch-action: none; }
.grounds-3d.calibrating .map-hotspot:active { cursor: grabbing; }
.grounds-3d.calibrating .hs-dot { width: 28px; height: 28px; opacity: 1; }
.grounds-3d.calibrating.has-active .map-hotspot:not(.is-active) .hs-dot { opacity: .85; }

/* ---------- location photo modal ---------- */
.grounds-hint { font-size: var(--step--1); color: var(--ink-soft); font-style: italic; margin: -.3rem 0 1rem; }
.loc-modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: clamp(1rem, 4vw, 3rem); }
.loc-modal[hidden] { display: none; }
.loc-backdrop { position: absolute; inset: 0; background: rgba(20,18,14,.72); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); }
.loc-dialog { position: relative; margin: 0; max-width: 880px; width: 100%; background: var(--paper); border-radius: var(--radius); overflow: hidden; box-shadow: 0 30px 80px -20px rgba(0,0,0,.6); animation: locpop .18s ease; }
.loc-dialog img:not([hidden]), .loc-dialog video:not([hidden]) { width: 100%; max-height: 68vh; object-fit: cover; display: block; background:#000; }
.loc-dialog figcaption { padding: 1rem 1.2rem; }
.loc-dialog figcaption strong { display: block; font-family: var(--display); font-size: 1.4rem; color: var(--forest); margin-bottom: .15rem; }
.loc-dialog figcaption span { color: var(--ink-soft); }
.loc-close { position: absolute; top: .6rem; right: .6rem; width: 38px; height: 38px; border-radius: 50%; border: 0; background: rgba(0,0,0,.55); color: #fff; font-size: 1.6rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; padding: 0; box-shadow: none; }
.loc-close:hover { background: rgba(0,0,0,.82); transform: none; }
@keyframes locpop { from { transform: scale(.96); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* on-tap live strip on the beer page */
.tap-now { display: flex; flex-wrap: wrap; align-items: baseline; gap: .5rem .8rem; background: color-mix(in srgb, var(--forest) 7%, var(--paper)); border: 1px solid var(--line); border-left: 3px solid #2f8f4e; border-radius: var(--radius); padding: .6rem .9rem; max-width: none; margin-bottom: 1.4rem; }
.tap-now-list { color: var(--ink-soft); font-size: var(--step--1); }

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

/* ---------- checkout (Square Web Payments SDK) ---------- */
.checkout { max-width: 980px; margin: 0 auto; padding: clamp(1.4rem, 4vw, 2.6rem) var(--gutter, 1.2rem); }
.checkout > h1 { font-family: var(--display); color: var(--forest); 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(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.1rem, 3vw, 1.6rem); }
.checkout-summary h2, .checkout-pay h2 { font-family: var(--display); font-size: 1.25rem; color: var(--forest); 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(--line); }
.checkout-rows .ck-item { color: var(--ink, #23201b); }
.checkout-rows .ck-line { color: var(--ink-soft); 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-size: 1.5rem; color: var(--forest); }
.checkout-note { font-size: var(--step--1); color: var(--ink-soft); margin-top: 1rem; }
.checkout-pay .field { display: block; font-size: var(--step--1); color: var(--ink-soft); margin-bottom: 1rem; }
.checkout-pay .field input { display: block; width: 100%; margin-top: .35rem; padding: .7rem .8rem; font-size: 1rem; border: 1px solid var(--line); border-radius: 10px; background: #fff; box-sizing: border-box; }
.card-field { margin: .4rem 0 1.1rem; min-height: 52px; }

/* fulfillment + shipping address (#31) */
.ship-choice, .ship-fields { border: 1px solid var(--line); border-radius: 10px; padding: .9rem 1rem .4rem; margin-bottom: 1rem; }
.ship-choice legend, .ship-fields legend { padding: 0 .4rem; font-weight: 600; color: var(--ink-soft); }
.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(--copper); }
.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-soft); margin: .3rem 0 0; }
/* the display:flex above beats the UA [hidden] rule — restore it so the JS
   toggle (ship line shows only when "Ship to me" is picked) actually works. */
.checkout-ship-line[hidden] { display: none; }
.checkout-reward { margin: .7rem 0 0; padding: .6rem .8rem; border-left: 3px solid #d64545;
  background: color-mix(in srgb, #d64545 6%, var(--paper)); border-radius: 8px;
  font-size: var(--step--1); color: var(--ink); }
.wallets { margin-bottom: .4rem; }
.wallet-btn { margin-bottom: .6rem; min-height: 44px; }
#apple-pay-button { -apple-pay-button-style: black; -webkit-appearance: -apple-pay-button; appearance: -apple-pay-button; height: 48px; border-radius: 10px; cursor: pointer; }
.wallets-or { position: relative; text-align: center; color: var(--ink-soft); font-size: var(--step--1); margin: 1rem 0; }
.wallets-or::before { content: ""; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--line); }
.wallets-or span { position: relative; background: var(--paper); 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); }
.ck-status--error { color: #b3261e; }
.ck-status--ok { color: #2f8f4e; }
.ck-secure { margin-top: 1rem; font-size: .8rem; color: var(--ink-soft); text-align: center; }

/* ---------- friends & family Caking-Fee waiver (#48) ---------- */
.ff-code { border: 1px dashed var(--forest); border-radius: 10px; padding: .8rem 1rem .9rem; margin: .2rem 0; }
.ff-code legend { font-weight: 600; padding: 0 .4rem; font-size: var(--step--1); }
.ff-hint { margin: .2rem 0 .6rem; font-size: var(--step--1); color: var(--ink-soft); }
.ff-row { display: flex; gap: .5rem; align-items: stretch; }
.ff-row input { flex: 1 1 auto; min-width: 0; text-transform: uppercase; }
.ff-row .btn { flex: 0 0 auto; padding: .55rem 1.1rem; }
.ff-status { min-height: 1.1em; margin: .5rem 0 0; font-size: var(--step--1); }
.ff-status--error { color: #b3261e; }
.ff-applied { margin: .5rem 0 0; font-size: var(--step--1); color: #2f8f4e; }
.link-btn { background: none; border: 0; padding: 0; color: var(--forest); font: inherit; text-decoration: underline; cursor: pointer; }

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

/* Honeypot for the footer signup form (apps.growth.antibot). Moved off-screen
   rather than display:none or visibility:hidden — scripts commonly skip fields
   hidden those two ways, which would defeat the trap. Kept out of the tab
   order and the accessibility tree by the markup (tabindex/aria-hidden). */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- Smithy Phase-A additions ---------- */
/* The one conversion, outside the collapsible nav — always visible, even on
   mobile with the drawer closed (cart-reachability rule, adapted). */
.nav-book-cta { white-space: nowrap; }
@media (max-width: 820px) {
  .nav-book-cta { margin-left: auto; margin-right: .5rem; order: 1; padding: .65rem .95rem; }
  .nav-burger { order: 2; }
}
/* Slot-picker radios ride the same row layout the checkbox rule gives
   checkboxes (the skeleton rule only targeted [type=checkbox]). */
.checkbox input[type=radio] { flex: 0 0 auto; width: 1.15rem; height: 1.15rem; margin: .15rem 0 0; padding: 0; }

/* Case-study cards are whole-card links — kill the inline-link styling. */
a.card { display: block; text-decoration: none; color: inherit; }
a.card:hover { box-shadow: var(--shadow); }

/* Functional input borders must hit 3:1 (WCAG 1.4.11) — --sand measures
   1.43:1 on paper; keep --sand for decorative card borders only. */
.stack-form input:not([type=checkbox]):not([type=radio]),
.stack-form select, .stack-form textarea { border-color: var(--border-input); }
/* The global steel focus ring is 2.23:1 on the dark footer field. */
.site-footer :focus-visible { outline-color: var(--paper); }

/* Steward portraits (real artwork from the workshop app) on crew cards. */
.crew-avatar { width: 96px; height: 96px; border-radius: 50%; box-shadow: var(--shadow); }
.founders .crew-avatar { margin: 0 0 .8rem; }

/* Marketing-UX pass (2026-07-27): the primary CTA must live above the fold
   at 1440x900 / 1280x800 / 390x844 — hero scaled accordingly (copy untouched). */
.hero { padding: clamp(1.8rem, 4vw, 3rem) 0 clamp(2rem, 5vw, 3.5rem); }
.hero h1 { font-size: clamp(2.6rem, 2rem + 3.2vw, 4.6rem); }
.hero .lede { max-width: 38ch; }
.hero-proof { font-size: var(--step--1); margin-top: .9rem; }
/* Slot picker grouped by week — first week open, rest collapsed (no JS). */
.slot-week { border: 1px solid var(--line); border-radius: var(--radius); padding: .3rem .8rem; margin: 0 0 .7rem; }
.slot-week summary { cursor: pointer; font-weight: 600; padding: .45rem 0; }
/* Django validation errors — visible, on-brand (P2-10). */
.errorlist { list-style: none; margin: .3rem 0 0; padding: .45rem .7rem; background: color-mix(in srgb, var(--copper) 10%, transparent); border-left: 3px solid var(--copper); color: var(--copper-dk); font-size: var(--step--1); }
/* Mobile: claim before image in bands; no fixed-attachment jank on iOS. */
@media (max-width: 720px) { .band img { order: 2; } }
@media (max-width: 820px) { body { background-attachment: scroll; } }

/* Live-console shots: contain, not crop — letterboxing vanishes on the
   near-black field the app itself uses. */
.band img.band-art-full { object-fit: contain; background: #101014; max-height: 480px; }

/* Station medallions: transparent renders — never crop, never box. */
.band img.band-medallion { object-fit: contain; background: none; box-shadow: none; border-radius: 0; max-height: 340px; }
.crew-avatar.crew-station { border-radius: 0; box-shadow: none; }

/* =====================================================================
   Banked Fire — polarity overrides (dark-field pass, 2026-07-27)
   ===================================================================== */
.site-footer { background: #020409; color: color-mix(in srgb, var(--ink) 88%, transparent); border-top: 1px solid var(--line); }
.site-footer :focus-visible { outline-color: #ffba08; }
:focus-visible { outline-color: #ffba08; }
.skip:focus { background: var(--copper); color: #1a0b00; }
.demo-ribbon { background: #9d0208; color: #f4f1eb; }
.msg--error, .errorlist { background: color-mix(in srgb, var(--ember-deep) 55%, transparent); border-left: 3px solid var(--flame-red); color: #ff9b7a; }
.msg--success { background: color-mix(in srgb, #14532d 40%, transparent); color: #b7e2c3; }
.hero::before { background: radial-gradient(60% 40% at 50% 110%, color-mix(in srgb, var(--copper) 22%, transparent), transparent 70%); }
.band img.band-art-full { background: #121418; }  /* the app's own slate */
.btn--ghost { color: var(--ink); border-color: var(--border-input); background: transparent; }
.btn--ghost:hover { border-color: var(--copper-dk); color: var(--copper-dk); background: transparent; }
.eyebrow { color: var(--copper-dk); }
.founder-role { color: var(--copper-dk); }
.pullquote blockquote::before, .pullquote blockquote::after { color: var(--copper); }
.slot-week { background: color-mix(in srgb, var(--paper-2) 60%, transparent); }
.stack-form input:not([type=checkbox]):not([type=radio]), .stack-form select, .stack-form textarea {
  background: var(--paper-2); color: var(--ink); border-color: var(--border-input); }
.stack-form ::placeholder { color: color-mix(in srgb, var(--ink) 45%, transparent); }
.footer-subscribe label { color: var(--ink); }
.partner-strip { background: color-mix(in srgb, var(--ember-deep) 30%, var(--paper)); border: 1px solid var(--line); }
.nav-burger span { background: var(--ink); }
.hero-proof, .muted { color: var(--ink-soft); }
.hero-proof a { color: var(--copper-dk); }
h1, h2, h3 { font-weight: 700; letter-spacing: 0; }
.hero h1 { font-weight: 900; }
/* numbers speak monospace — the app's convention */
.footer-meta, .booking-fineprint { font-feature-settings: "tnum"; }

/* Lighthouse pass (2026-07-27): footer text inherited paper-mix colors
   from the light skeleton — pin the parchment family explicitly. */
.site-footer, .site-footer p, .footer-tagline, .footer-meta { color: color-mix(in srgb, var(--ink) 88%, transparent); }
.footer-meta { color: var(--ink-soft); }
.footer-col a { color: var(--ink); }
.footer-bottom, .footer-bottom p { color: var(--ink-soft); }
