/* =====================================================================
   Moonglow — THEME: "Frost Hollow" — moonlight on a midnight field.
   See docs/design-system.md for the full token contract and the verified
   WCAG table. One cold light source, high and slightly off-center, above
   the canvas: a single moonpath wash in the hero, rim-lit card top edges,
   and exactly two halos on any page (primary CTA at rest, focus). All
   component sections and :root token SLOT NAMES are inherited from the
   skeleton; several slots are re-pointed (see inline notes).
   ===================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;1,600&family=Source+Sans+3:wght@400;600&display=swap');

:root {
  /* palette — Frost Hollow: midnight indigo field, silver ink, one
     moonlit silver-blue CTA (lit surface, midnight label), lavender-violet
     and ice-cyan accents. All pairings pre-verified (docs/design-system.md). */
  --bg:              #0B0E1E;   /* page field — midnight indigo */
  --surface:         #141936;   /* cards, popup cards, form fields */
  --surface-2:       #1C2347;   /* hover / raised / nested surfaces */
  --ink:             #E7EBF7;   /* body — cool silver off-white (never #FFF: halation) */
  --ink-muted:       #A3ADD1;   /* captions / meta */
  --heading:         #F3F5FC;   /* brightest "moonlit" step */
  --primary:         #A9C6F4;   /* CTA FILL — moonlit silver-blue (lit surface) */
  --primary-hover:   #C0D6F9;   /* hover brightens COLDER, never warmer */
  --on-primary:      #0B0E1E;   /* midnight label on the silver CTA (11.02:1) */
  --link:            #8FB3EF;   /* periwinkle links — always underlined */
  --accent-coral:    #C7BDF2;   /* slot re-pointed → lavender-violet accent */
  --accent-violet:   #C7BDF2;   /* semantic name: eyebrows, badges, active nav */
  --ember:           #C7BDF2;   /* legacy semantic alias → the violet accent */
  --accent-seaglass: #1C2347;   /* slot re-pointed → quiet chip fill (with --ink text) */
  --accent-ice:      #A5DCE8;   /* ice cyan: dates, times, calendar meta, stats */
  --brass:           #A5DCE8;   /* slot re-pointed → ice; keylines & markers only */
  --band-bg:         #10142B;   /* alternating section bands */
  --band-text:       #E7EBF7;
  --band-stat:       #A5DCE8;   /* ice stat numbers on the band */
  --footer-bg:       #070A16;   /* footer — deepest value on the page */
  --footer-text:     #A3ADD1;
  --hairline:        #262D52;   /* DECORATIVE dividers only — never input borders */
  --hairline-strong: #5B68A4;   /* FUNCTIONAL input/UI borders (3.24:1 on surface) */
  --ribbon-bg:       #070A16;
  --ribbon-text:     #A9C6F4;
  --focus:           #BFD9FF;   /* near-white ice ring — 2px + offset */
  --focus-band:      #BFD9FF;   /* same ring everywhere; it passes on every ground */
  --rim:             rgba(231, 235, 247, .22);  /* the edge the moon catches */
  --halo:            0 0 0 6px rgba(169, 198, 244, .12);

  /* type — Cormorant Garamond 600 display (garalde; the songbook voice),
     Source Sans 3 body (wght-only variable — no opsz axis) */
  --stencil: "Cormorant Garamond", Georgia, serif;
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
  /* floors for an older local audience: body ≥18px, nothing under ~15px */
  --step--2: clamp(.95rem, .93rem + .1vw, 1rem);
  --step--1: clamp(1rem, .97rem + .2vw, 1.08rem);
  --step-0:  clamp(1.125rem, 1.08rem + .25vw, 1.25rem);
  --step-2:  clamp(1.5rem, 1.35rem + .8vw, 2rem);
  /* Cormorant sits narrower than the gothic it replaces — top steps ride
     a touch larger so heroes keep presence at 12–16ch */
  --step-4:  clamp(2.1rem, 1.8rem + 1.7vw, 3.2rem);
  --step-6:  clamp(2.8rem, 2.2rem + 3.4vw, 4.9rem);

  --maxw: 72rem;
  /* turned, not cut: cards at 10px, buttons are pills; the only
     box-shadows in this file are the two sanctioned halos (--halo) */
  --radius: 10px;
  --radius-pill: 999px;
  --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);
  /* a FLAT midnight field — no grain, no texture, no fixed layers; the
     one atmosphere effect (the moonpath) lives on the hero only */
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
}
/* Cormorant thins out below 600 on a dark ground — never go lighter */
h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.12; letter-spacing: .01em; 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(--primary-hover); }
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);
  border-bottom: 1px solid var(--hairline);
}

/* ---------- 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: 1px solid var(--hairline);
}
.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: "Moonglow" set in the display italic —
   the wordmark of the Frost Hollow system (no commissioned mark exists;
   see content inventory §8). */
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand:hover { color: inherit; }
.brand-lockup {
  font-family: var(--display); font-weight: 600; font-style: italic;
  font-size: 1.8rem; line-height: 1; letter-spacing: .01em;
  color: var(--heading); white-space: nowrap;
}
.brand-lockup em { font-style: italic; color: var(--accent-violet); }
@media (max-width: 640px) { .brand-lockup { font-size: 1.5rem; } }

.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: .01em; text-transform: none;
  padding: .25rem 0; position: relative;
}
/* short centered silver tick — dinner-volume nav, no uppercase shouting */
.nav a::after { content: ""; position: absolute; left: 50%; transform: translateX(-50%); bottom: -2px; width: 0; height: 2px; background: var(--primary); 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: 1px solid var(--hairline); 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 { /* THE MOONPATH — the page's single atmosphere effect: one
     cold elliptical wash falling from above the viewport, dissolving
     before mid-page. Exactly one per page, hero only. */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse 120% 80% at 50% -25%, rgba(169, 198, 244, .14), transparent 62%);
}
.hero h1 { font-size: var(--step-6); font-weight: 600; 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; }
/* eyebrow: a quiet violet micro-label — no chip, no rotation, no gothic
   shouting. ≤1 violet accent moment per viewport (house discipline). */
.eyebrow {
  display: inline-block; font-family: var(--body); text-transform: uppercase;
  letter-spacing: .14em; font-size: .78rem; font-weight: 600;
  color: var(--accent-violet); background: none;
  padding: 0;
  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 ---------- */
/* The lit surface: a moonlit silver PILL with a midnight label (11.02:1)
   — the inverse of a hot color with light text. The resting halo is one
   of the two halos allowed on any page. Hover brightens colder. */
.btn, button[type="submit"] {
  display: inline-block; font-family: var(--body); font-weight: 600;
  font-size: var(--step--1); text-transform: none; letter-spacing: .01em;
  background: var(--primary); color: var(--on-primary);
  border: 1px solid transparent; border-radius: var(--radius-pill);
  padding: .8rem 1.5rem; min-height: 44px; text-decoration: none; cursor: pointer;
  box-shadow: var(--halo); transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.btn:hover, button[type="submit"]:hover { background: var(--primary-hover); border-color: transparent; color: var(--on-primary); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--hairline-strong); box-shadow: none; }
.btn--ghost:hover { background: color-mix(in srgb, var(--primary) 10%, transparent); border-color: var(--primary); color: var(--heading); }

/* ---------- 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: 1px solid var(--hairline); 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: 1px solid var(--hairline); 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: 1px 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: Moonglow sells music, 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 the deepest value on the page — the far edge of the field. */
.site-footer {
  background: var(--footer-bg); color: var(--footer-text);
  border-top: 1px solid var(--hairline);
  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 wordmark: display italic */
.footer-lockup {
  font-family: var(--display); font-weight: 600; font-style: italic;
  font-size: 1.6rem; line-height: 1; letter-spacing: .01em;
  color: var(--band-text); margin: 0 0 .7rem;
}
.footer-lockup em { font-style: italic; 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: 1px solid var(--hairline); font-size: var(--step--1); background: var(--surface); }
.msg--success { background: var(--accent-seaglass); border-color: var(--hairline-strong); }
/* form errors keep a true warm-red signal — the one semantic exception to
   the cool field (error must never read as decoration) */
.msg--error { background: color-mix(in srgb, #E58C8C 12%, var(--surface)); border-color: #E39A9A; }
.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: 1px solid var(--hairline-strong); box-shadow: none;
}
.menu-photo {
  width: 100%; max-width: 640px; border-radius: var(--radius);
  border: 1px solid var(--hairline-strong); 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: 1px solid var(--hairline);
}
.item-body { flex: 1; }

/* Sold out — a quiet waned-moon state: dimmed, struck through, one calm
   pill label. No rubber stamps, no rotation. */
.menu-items li.sold-out strong {
  text-decoration: line-through;
  text-decoration-color: var(--ink-muted);
  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;
  font-family: var(--body);
  font-weight: 600;
  font-size: .7em;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.25;
  white-space: nowrap;
  color: var(--ink-muted);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius-pill);
  padding: .08rem .55rem;
}

.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;
  /* raised midnight surface behind photography — no light mats (that
     vinyl-mat move belongs to a sibling system) */
  background: var(--surface-2); border-bottom: 1px solid var(--hairline);
}
.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: 1px solid var(--hairline-strong); 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: 1px solid var(--hairline);
  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: 1px solid var(--hairline-strong); display: block;
}
.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: 1px solid var(--hairline-strong);
}
/* square, quiet — the grid itself is the rhythm */

/* ---------- menu hero banner ---------- */
.menu-hero {
  width: 100%; max-height: 340px; object-fit: cover; border-radius: var(--radius);
  margin-bottom: 1.5rem;
  border: 1px solid var(--hairline-strong); 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: 1px solid var(--hairline);
  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; }
/* photos sit square and quiet under the cold light — no leans, no frames
   fighting the image */
.band img { width: 100%; height: 100%; max-height: 380px; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--hairline-strong); box-shadow: none; }
.band-body h2 { margin-top: 0; }
@media (max-width: 720px) {
  .band { grid-template-columns: 1fr; }
}

/* ---------- partner feature strip (skeleton component) ---------- */
/* 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 violet eyebrow passes on every ground — no polarity flip needed */
.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 { 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: 1px solid var(--hairline);
  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: 1px solid var(--hairline-strong); 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: 1px solid var(--hairline);
  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: 1px solid var(--hairline);
}
.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: 1px solid var(--hairline-strong); 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: 1px 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: 1px solid var(--hairline);
  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: 1px solid var(--hairline-strong); display: block;
}
.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 / shows calendar ---------- */
.event-card {
  display: grid; grid-template-columns: 220px 1fr; gap: clamp(1rem, 3vw, 2rem);
  align-items: start; background: var(--surface);
  border: 1px solid var(--hairline); 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: 1px solid var(--hairline-strong); }
/* dates & times ride the ice accent (calendar meta is ice's standing job) */
.event-when { font-size: var(--step--1); text-transform: uppercase; letter-spacing: .08em; color: var(--accent-ice); font-weight: 600; 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: 1px solid var(--hairline);
  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: 1px solid var(--hairline); 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: 1px solid var(--hairline); 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: 1px solid var(--hairline); 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 quiet ice pill */
.cal-tile-date { position: absolute; top: .6rem; left: .6rem; background: var(--surface); color: var(--accent-ice); font-weight: 600; font-size: .78rem; letter-spacing: .05em; padding: .25rem .65rem; border: 1px solid var(--hairline-strong); border-radius: var(--radius-pill); }
.cal-tile-cap { padding: .7rem .8rem .85rem; display: flex; flex-direction: column; gap: .12rem; }
.cal-tile-time { font-size: var(--step--1); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--accent-ice); }
.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: 1px solid var(--hairline-strong); }
.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: 1px solid var(--hairline); }
.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: 600; font-style: italic; font-size: var(--step-4); line-height: 1.18; color: var(--heading); letter-spacing: 0; }
/* the quote marks are the section's single violet note */
.pullquote blockquote::before { content: "“"; color: var(--accent-violet); }
.pullquote blockquote::after { content: "”"; color: var(--accent-violet); }
.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: 1px solid var(--hairline); 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; }
/* midnight field input on the dark footer — silver ink in it */
.subscribe-row input { flex: 1; max-width: 22rem; padding: .55rem .7rem; border: 1px solid var(--hairline-strong); border-radius: var(--radius); background: var(--surface); color: var(--ink); }
.subscribe-row input::placeholder { color: var(--ink-muted); }
.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: 1px 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: 1px solid var(--hairline); 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: 1px solid var(--hairline); 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: 1px 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: 1px solid var(--hairline); 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: 1px 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: 1px solid var(--hairline); 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: 1px 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: 1px 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 midnight field (≥4.5:1 on --surface) */
.ck-status--error { color: #F2A9A0; }
.ck-status--ok { color: #A7DCAF; }
.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; }

/* ===================================================================
   Skeleton page components (THEME: TBD — design-system phase)
   =================================================================== */

/* ---------- split hero (landing) ---------- */
/* Text/photo split under the moonpath (the landing page's one wash). */
.split-hero { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; position: relative; }
.split-hero::before {
  content: ""; position: absolute; inset: -20% -10% 0; z-index: -1;
  background: radial-gradient(ellipse 120% 80% at 50% -25%, rgba(169, 198, 244, .14), transparent 62%);
}
.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: 1px solid var(--hairline-strong);
}
.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: 1px solid var(--hairline);
  border-radius: var(--radius); padding: 1.1rem 1.2rem;
}
.popup-card .popup-when { display: block; font-size: var(--step--1); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--accent-ice); 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 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); }

/* ===================================================================
   Skeleton usage rules — band buttons + focus rings
   =================================================================== */

/* The moonlit CTA carries on every ground (11.34:1 even on the footer) —
   band buttons keep the same silver fill, just without the resting halo
   (the halo belongs to the page's one primary CTA). */
.btn--band,
.site-footer .btn, .stats-band .btn, .partner-feature .btn, .savedate .btn,
.pitch-cta .btn {
  background: var(--primary); color: var(--on-primary);
  border-color: transparent;
  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(--primary-hover); border-color: transparent;
  color: var(--on-primary);
}
.pitch-cta .btn--ghost { background: transparent; color: var(--band-text); border-color: var(--hairline-strong); }

/* 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; }

/* ===================================================================
   Skeleton page furniture kept from the source client section
   (footer hours, /pitch/ ranked list, print mode). The source client's
   brand-specific additions were deleted with the moonglow rebrand;
   what remains here is structural and template-consumed.
   =================================================================== */

/* ---------- footer hours — tidy two-column label/value listing ---------- */
/* base.html renders one .footer-hours <p> per row from site.hours —
   label left, value right, rule between. Rows are PLACEHOLDER content
   until the research corpus lands. */
.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: 1px solid var(--hairline);
  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: 1px solid var(--hairline);
  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; }
@media (max-width: 640px) {
  .pitch-item { grid-template-columns: 1fr; }
  .pitch-num { text-align: left; }
}

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

/* 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; }
}

/* ===================================================================
   == Frost Hollow client additions ==
   The three signature moves that are NOT skeleton furniture: rim-light
   edges, the silver-indigo duotone, and moon-phase line geometry.
   =================================================================== */

/* Rim light — the top edge the moon catches. Applied to every raised
   surface; cheap, systematic dimensionality under one cold light. */
.card, .hours, .menu, .booking, .product, .shop, .events,
.founder, .review, .popup-card, .event-card, .amenity-grid li,
.calendar, .cal-tile, .pitch-item, .partner-strip, .home-supper-card,
.menu-feature, .register, .products li, .family-stop {
  border-top-color: var(--rim);
}

/* Silver-indigo duotone for AMBIENT imagery only — unifies mixed-quality
   taproom phone shots into the palette. Never on the primary press photo
   of the duo (bookers must see the actual act in true color). */
.img-duotone { position: relative; overflow: hidden; }
.img-duotone > img { filter: grayscale(1) contrast(1.05); }
.img-duotone::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(160deg, var(--surface-2), var(--primary));
  mix-blend-mode: soft-light; opacity: .85;
}

/* Moon-phase line geometry: a thin-stroke crescent-and-circle divider
   (static/img/moon-crescent.svg renders inline via currentColor when
   embedded; this class centers it as a section ornament). */
.moon-divider {
  display: flex; align-items: center; justify-content: center; gap: .8rem;
  margin: clamp(1.6rem, 4vw, 2.6rem) auto; color: var(--ink-muted);
}
.moon-divider::before, .moon-divider::after {
  content: ""; flex: 0 1 8rem; height: 1px; background: var(--hairline);
}
.moon-divider svg, .moon-divider img { width: 22px; height: 22px; display: block; opacity: .8; }

/* Home upcoming strip — quiet rows, ice dates, no underline noise */
.events-strip { display: grid; gap: .8rem; margin: 0 0 1rem; }
.events-strip .event-card {
  display: flex; flex-wrap: wrap; gap: .35rem 1.1rem; align-items: baseline;
  text-decoration: none; padding: 1rem 1.2rem;
}
.events-strip .event-date { color: var(--accent-ice); font-weight: 600; font-size: var(--step--1); text-transform: uppercase; letter-spacing: .06em; flex: 0 0 7.5rem; }
.events-strip .event-title { color: var(--heading); font-family: var(--display); font-weight: 600; font-size: 1.15rem; }
.events-strip .event-loc { color: var(--ink-muted); font-size: var(--step--1); flex-basis: 100%; margin-left: 8.6rem; }
@media (max-width: 640px) { .events-strip .event-loc { margin-left: 0; } }
.events-strip .event-card:hover .event-title { color: var(--primary-hover); }

/* Responsive video embeds (proof-of-sound is embedded, never re-hosted) */
.video-embed { position: relative; aspect-ratio: 16 / 9; max-width: 720px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--hairline); border-top-color: var(--rim); background: var(--surface); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* prefers-reduced-motion: the moonpath is static and exempt; every
   transition/animation in this file already honors the global guards. */
