/* =====================================================================
   Basic Necessities — THEME: "Lavender & Shutter"
   Derived from the real building at 2226 Rockfish Valley Highway: a
   pale-yellow facade, teal-painted shutters and doors, red door accents,
   lavender rows out front, Provençal tablecloths inside. Light, warm,
   multicolor French-country — joyful, never rustic-Americana.

   See docs/design-system.md for the full token contract and the verified
   WCAG table. House discipline on every page: lavender + teal carry the
   page; sun-yellow appears only as a small highlight; door-red at most
   ONCE per page (here: the nav Reserve CTA's hover).

   Shape signature: gently rounded 10px corners, 2px solid borders in
   tinted pastels (no offset block shadows, no radius-0 edges — those
   belong to sibling systems), and thin DOUBLE-RULE dividers like the
   frame of a French menu card. Eyebrows are lavender letter-spaced
   small caps.
   ===================================================================== */

:root {
  /* palette — final values (two darkened from the sampled building tones
     for WCAG AA; the originals live on as *-bright decorative tokens) */
  --cream:          #FAF6EC;  /* page field — the pale-yellow facade */
  --paper:          #FFFDF6;  /* cards / raised surfaces */
  --ink:            #33302A;  /* body text (12.2:1 on cream) */
  --ink-soft:       #5C564A;  /* captions / muted (6.7:1 on cream) */

  --lavender:        #6B5FA0; /* PRIMARY accent: links, eyebrows (5.2:1) */
  --lavender-deep:   #5C5384; /* hover, heading accents (6.4:1) */
  --lavender-bright: #7A6FA8; /* decorative/large-display only (4.2:1) */
  --lavender-tint:   #E3DFF0; /* pastel border tint */
  --lavender-wash:   #F1EEF8; /* pale field for lavender-tinted panels */

  --shutter:        #2E8B84;  /* teal shutters: borders, non-text UI (3.8:1) */
  --shutter-deep:   #1F6660;  /* button fills + teal text (6.2:1 on cream;
                                 paper label on it: 6.6:1) */
  --shutter-tint:   #D3E8E4;  /* pastel border tint */
  --shutter-wash:   #EBF4F1;  /* pale field for teal-tinted panels */

  --sun:            #E9B84C;  /* sparing highlight: event badges, underlines
                                 (decorative; ink text ON sun = 7.2:1) */
  --sun-tint:       #F7E9C8;

  --door-red:       #B5443C;  /* very sparing — ONE accent per page
                                 (text on cream 5.0:1; paper on it 5.4:1) */

  --footer-ink:     #22423F;  /* deep shutter ink — footer ground
                                 (cream on it 10.1:1) */
  --footer-soft:    #B9CFCA;  /* muted footer text (6.7:1 on footer ink) */

  --hairline:       #E7E0D0;  /* decorative rules on cream */
  --focus:          #5C5384;  /* focus ring on light grounds */
  --focus-dark:     #FAF6EC;  /* focus ring on dark grounds */

  /* type — Young Serif (warm single-weight display serif) + Karla (humanist sans) */
  --display: "Young Serif", "Iowan Old Style", Georgia, serif;
  --body: "Karla", "Avenir Next", "Segoe UI", Arial, sans-serif;
  --step--2: clamp(.95rem, .93rem + .1vw, 1rem);
  --step--1: clamp(1rem, .97rem + .2vw, 1.08rem);
  --step-0:  clamp(1.1rem, 1.06rem + .25vw, 1.2rem);
  --step-2:  clamp(1.45rem, 1.3rem + .8vw, 1.95rem);
  --step-4:  clamp(2rem, 1.7rem + 1.7vw, 3rem);
  --step-6:  clamp(2.6rem, 2rem + 3.2vw, 4.4rem);

  --maxw: 72rem;
  --radius: 10px;          /* gently rounded — the signature corner */
  --radius-lg: 16px;
  --border: 2px;           /* pastel-tinted 2px solid — never a shadow */
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 {
  font-family: var(--display); font-weight: 400; line-height: 1.12;
  letter-spacing: .005em; color: var(--ink); margin: 0 0 .5em;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-2); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; max-width: 64ch; }
a { color: var(--lavender); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--lavender-deep); }
img { max-width: 100%; height: auto; display: block; }
blockquote { margin: 0; }
.lede { font-size: clamp(1.1rem, 1rem + .5vw, 1.35rem); color: var(--ink-soft); }
.muted { color: var(--ink-soft); }
.notice { color: var(--ink-soft); font-style: italic; }

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

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

/* The double rule — a thin French menu-card divider between sections. */
main > section + section { border-top: 3px double var(--shutter-tint); padding-top: clamp(2rem, 5vw, 3.5rem); }
main > section.hero + section { border-top-color: var(--lavender-tint); }

/* eyebrow: lavender letter-spaced small caps — the system's micro-label */
.eyebrow {
  display: inline-block; font-family: var(--body); text-transform: uppercase;
  letter-spacing: .16em; font-size: .78rem; font-weight: 700;
  color: var(--lavender); margin: 0 0 .9rem;
}
.eyebrow a { color: inherit; text-decoration: none; }
.eyebrow a:hover { text-decoration: underline; }

/* ---------- demo ribbon / announcement bar ---------- */
.demo-ribbon {
  background: var(--footer-ink); color: var(--cream); text-align: center;
  font-family: var(--body); font-weight: 700; font-size: .72rem;
  letter-spacing: .14em; text-transform: uppercase; padding: .35rem;
}
.navbar { background: var(--lavender-deep); }
.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(--cream); text-decoration: none; font-weight: 700;
  font-size: var(--step--1); line-height: 1.4;
}
.navbar-link:hover { color: var(--cream); text-decoration: underline; text-underline-offset: 3px; }
.navbar-tag {
  font-weight: 700; text-transform: uppercase; letter-spacing: .14em;
  font-size: .72rem; color: var(--sun);
}
.navbar-msg { color: var(--cream); }
.navbar-cue { color: var(--sun); }
.navbar-close {
  flex: 0 0 auto; background: none; border: 0; cursor: pointer;
  padding: .1rem .4rem; line-height: 1; font-size: 1.3rem;
  color: var(--cream); opacity: .8; border-radius: var(--radius);
}
.navbar-close:hover { opacity: 1; }
.navbar :focus-visible { outline-color: var(--focus-dark); }

/* ---------- header / nav ---------- */
.site-top { position: sticky; top: 0; z-index: 40; }
.site-header {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .6rem clamp(1.1rem, 4vw, 2rem);
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: var(--border) solid var(--shutter-tint);
}
.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; }
.brand-lockup {
  font-family: var(--display); font-weight: 400;
  font-size: 1.55rem; line-height: 1.05; letter-spacing: .005em;
  color: var(--ink); white-space: nowrap;
}
.brand-sub {
  display: block; font-family: var(--body); font-weight: 700; font-size: .62rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--shutter-deep);
  margin-top: .15rem;
}
@media (max-width: 700px) { .brand-lockup { font-size: 1.25rem; } }

.nav { display: flex; gap: clamp(.5rem, 1.3vw, 1.3rem); align-items: center; flex-wrap: wrap; }
.nav a {
  color: var(--ink); text-decoration: none; font-weight: 700;
  font-size: var(--step--1); padding: .25rem 0; position: relative;
}
/* short sun underline tick — the page's small-yellow moment lives in nav */
.nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%);
  bottom: -2px; width: 0; height: 3px; border-radius: 2px;
  background: var(--sun); transition: width .18s ease;
}
.nav a:not(.nav-cta):hover::after,
.nav a:not(.nav-cta)[aria-current="page"]::after { width: 1.5rem; }
/* Reserve — the nav's primary CTA. Hover = the page's one door-red note. */
.nav-cta {
  background: var(--shutter-deep); color: var(--paper) !important;
  border: var(--border) solid var(--shutter-deep); border-radius: var(--radius);
  padding: .45rem 1rem !important;
}
.nav-cta:hover { background: var(--door-red); border-color: var(--door-red); }

.nav-toggle { position: absolute; left: -9999px; }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: .55rem .4rem; cursor: pointer; }
.nav-burger span { display: block; width: 26px; height: 3px; border-radius: 2px; background: var(--ink); }

@media (max-width: 880px) {
  .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: var(--border) solid var(--shutter-tint);
    border-radius: var(--radius); padding: 1rem 1.2rem; min-width: 13rem; z-index: 45;
  }
  .nav-toggle:checked ~ .nav { display: flex; }
}

/* ---------- hero ---------- */
.hero { padding: clamp(2rem, 6vw, 4.5rem) 0 clamp(1.5rem, 4vw, 2.5rem); }
.hero h1 { font-size: var(--step-6); max-width: 18ch; }
.hero .lede { font-size: var(--step-2); font-family: var(--display); font-weight: 400; max-width: 34ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; margin-top: 1.4rem; }

/* split hero: text + framed photo (home) */
.hero-split {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(1.5rem, 4vw, 3rem); align-items: center;
}
.hero-split .hero-photo { margin: 0; }
.hero-photo img {
  width: 100%; max-height: 560px; object-fit: cover;
  border-radius: var(--radius-lg); border: var(--border) solid var(--shutter-tint);
}
.hero-photo figcaption { margin-top: .55rem; font-size: var(--step--1); color: var(--ink-soft); font-style: italic; }
@media (max-width: 780px) { .hero-split { grid-template-columns: 1fr; } }

:target { scroll-margin-top: 6.5rem; }
@media (max-width: 880px) { :target { scroll-margin-top: 8.5rem; } }

/* ---------- buttons ---------- */
.btn, button[type="submit"] {
  display: inline-block; font-family: var(--body); font-weight: 700;
  font-size: var(--step--1); letter-spacing: .01em;
  background: var(--shutter-deep); color: var(--paper);
  border: var(--border) solid var(--shutter-deep); border-radius: var(--radius);
  padding: .7rem 1.4rem; min-height: 44px; text-decoration: none; cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.btn:hover, button[type="submit"]:hover {
  background: var(--lavender-deep); border-color: var(--lavender-deep); color: var(--paper);
}
.btn--ghost {
  background: transparent; color: var(--shutter-deep);
  border-color: var(--shutter);
}
.btn--ghost:hover { background: var(--shutter-wash); color: var(--shutter-deep); border-color: var(--shutter-deep); }
.btn--sm { padding: .45rem .85rem; min-height: 38px; font-size: var(--step--1); }
.btn:focus-visible, button[type="submit"]:focus-visible { outline-color: var(--focus); }

/* ---------- cards / grids ---------- */
.card, .hours, .menu, .booking, .product, .shop, .events, .calendar {
  background: var(--paper);
  border: var(--border) solid var(--lavender-tint); border-radius: var(--radius);
  padding: clamp(1.3rem, 3vw, 2rem);
}
.card-grid {
  display: grid; gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}
.card-grid .card { margin: 0; }
/* alternate the pastel borders across a card row — the multicolor note */
.card-grid > .card:nth-child(3n+2) { border-color: var(--shutter-tint); }
.card-grid > .card:nth-child(3n) { border-color: var(--sun-tint); }
a.card-link { display: block; text-decoration: none; color: inherit; transition: transform .14s ease, border-color .14s ease; }
a.card-link:hover { transform: translateY(-3px); border-color: var(--shutter); }
a.card-link h2, a.card-link h3 { color: var(--ink); }
.card-meta { color: var(--ink-soft); font-size: var(--step--1); }

/* small badges — sun highlight, used sparingly */
.badge {
  display: inline-block; background: var(--sun); color: var(--ink);
  border-radius: var(--radius); padding: .12rem .6rem;
  font-family: var(--body); font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; white-space: nowrap;
  vertical-align: middle;
}
.badge--concept { background: var(--lavender-wash); color: var(--lavender-deep); border: 1px solid var(--lavender-tint); white-space: normal; }

/* 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: 420px; object-fit: cover;
  border-radius: var(--radius-lg); border: var(--border) solid var(--shutter-tint);
}
.band-body h2 { margin-top: 0; }
.band--reverse img { order: 2; }
@media (max-width: 740px) {
  .band { grid-template-columns: 1fr; }
  .band--reverse img { order: 0; }
}

/* pull-quote — Young Serif upright between double rules (single-weight face; no synthetic italics) */
.pullquote { text-align: center; padding: clamp(1.2rem, 4vw, 2.5rem) 1rem; }
.pullquote blockquote {
  margin: 0 auto; max-width: 30ch; font-family: var(--display);
  font-weight: 400; font-style: normal; font-size: var(--step-4);
  line-height: 1.2; color: var(--ink);
}
.pullquote blockquote::before { content: "\201C"; color: var(--lavender-bright); }
.pullquote blockquote::after { content: "\201D"; color: var(--lavender-bright); }
.pullquote-cite {
  margin-top: 1rem; text-transform: uppercase; letter-spacing: .16em;
  font-size: .74rem; font-weight: 700; color: var(--ink-soft);
}

/* people / vendor grids */
.founders { text-align: center; }
.founder-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); text-align: left; }
.founder {
  background: var(--paper); border: var(--border) solid var(--lavender-tint);
  border-radius: var(--radius); padding: clamp(1.1rem, 3vw, 1.5rem);
}
.founder-grid > .founder:nth-child(3n+2) { border-color: var(--shutter-tint); }
.founder-grid > .founder:nth-child(3n) { border-color: var(--sun-tint); }
.founder h3 { margin: .1rem 0 .3rem; }
.founder-role {
  margin: 0; text-transform: uppercase; letter-spacing: .14em;
  font-size: .7rem; font-weight: 700; color: var(--shutter-deep);
}
.vendor-cols { columns: 2; column-gap: clamp(1.2rem, 3vw, 2.4rem); list-style: none; margin: 0; padding: 0; }
.vendor-cols li { break-inside: avoid; padding: .45rem 0; border-bottom: 1px solid var(--hairline); }
.vendor-cols strong { font-weight: 700; }
.vendor-cols span { color: var(--ink-soft); font-size: var(--step--1); }
@media (max-width: 620px) { .vendor-cols { columns: 1; } }

/* hours listing (contact page) */
.hours ul { list-style: none; margin: 0; padding: 0; }
.hours li { display: flex; justify-content: space-between; gap: 1rem; padding: .55rem 0; border-bottom: 1px solid var(--hairline); }
.hours li:last-child { border-bottom: 0; }
.hours li strong { font-weight: 700; }
.hours li span { color: var(--ink-soft); text-align: right; }

/* the "how to find us" note — a paper card with a teal keyline */
.find-note {
  background: var(--shutter-wash); border: var(--border) solid var(--shutter-tint);
  border-radius: var(--radius); padding: clamp(1rem, 3vw, 1.5rem);
}
.find-note p:last-child { margin-bottom: 0; }

/* ---------- menu pages ---------- */
.menu-section { margin: 0 0 clamp(1.8rem, 4vw, 2.6rem); }
.menu-section h2 {
  color: var(--ink); padding-bottom: .4rem;
  border-bottom: 3px double var(--shutter-tint);
}
.menu-items { list-style: none; margin: 0; padding: 0; }
.menu-item { padding: .8rem 0; border-bottom: 1px solid var(--hairline); }
.menu-item:last-child { border-bottom: 0; }
.menu-item-head { display: flex; align-items: baseline; gap: .6rem; }
.menu-item-name { font-family: var(--display); font-weight: 400; font-size: 1.12rem; color: var(--ink); }
/* dotted leader between the dish and its price — menu-card grammar */
.menu-item-head::after { content: ""; flex: 1; border-bottom: 1px dotted var(--lavender-tint); transform: translateY(-3px); order: 1; }
.menu-item-price { order: 2; font-weight: 700; color: var(--shutter-deep); white-space: nowrap; font-variant-numeric: tabular-nums; }
.menu-item-name { order: 0; }
.menu-item-style { display: block; margin-top: .1rem; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--lavender); }
.menu-item-desc { display: block; color: var(--ink-soft); font-size: var(--step--1); margin-top: .15rem; max-width: 58ch; }
.menu-notes { color: var(--ink-soft); }
.menu-notes p { max-width: 62ch; }
.menu-updated { color: var(--lavender-deep); font-size: var(--step--1); font-style: italic; margin: .3rem 0 0; }
.menu-photo, .menu-hero {
  width: 100%; max-width: 640px; border-radius: var(--radius);
  border: var(--border) solid var(--shutter-tint); margin: 1rem 0 1.5rem;
}

/* ---------- forms / booking ---------- */
form p { display: flex; flex-direction: column; gap: .35rem; max-width: 34rem; }
label { font-weight: 700; font-size: var(--step--1); color: var(--ink); }
.helptext { font-size: var(--step--2); color: var(--ink-soft); font-weight: 400; }
input, textarea, select {
  font: inherit; font-size: var(--step-0); padding: .55rem .75rem;
  background: var(--paper); border: var(--border) solid var(--shutter-tint);
  border-radius: var(--radius); color: var(--ink);
}
input::placeholder, textarea::placeholder { color: var(--ink-soft); }
input:focus, textarea:focus, select:focus { border-color: var(--shutter-deep); outline: none; }
.errorlist { list-style: none; margin: 0 0 .3rem; padding: 0; color: var(--door-red); font-size: var(--step--1); font-weight: 700; }

.booking-form { margin-top: 1rem; }
.booking-fineprint {
  color: var(--ink-soft); font-size: var(--step--1); font-style: italic;
  border-top: 3px double var(--lavender-tint); padding-top: .9rem; margin: 1.2rem 0 0;
}

/* ---------- messages ---------- */
.messages { list-style: none; margin: 0 0 1.5rem; padding: 0; display: grid; gap: .5rem; }
.msg {
  padding: .6rem .9rem; border-radius: var(--radius);
  border: var(--border) solid var(--lavender-tint);
  font-size: var(--step--1); background: var(--paper);
}
.msg--success { background: var(--shutter-wash); border-color: var(--shutter-tint); }
.msg--error, .msg--warning { background: #F9E9E7; border-color: #E5B4AF; color: #8C332C; }
.msg--info { background: var(--lavender-wash); }

/* ---------- reviews ---------- */
.reviews-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr)); }
.reviews-grid--quotes { grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr)); }
.review {
  margin: 0; background: var(--paper); border: var(--border) solid var(--lavender-tint);
  border-radius: var(--radius); padding: clamp(1.2rem, 3vw, 1.6rem);
}
.reviews-grid > .review:nth-child(3n+2) { border-color: var(--shutter-tint); }
.reviews-grid > .review:nth-child(3n) { border-color: var(--sun-tint); }
.review-stars { color: var(--sun); letter-spacing: .1em; margin: 0 0 .5rem; text-shadow: 0 0 0 var(--sun); }
.review blockquote { margin: 0 0 .8rem; font-family: var(--display); font-style: normal; font-size: 1.12rem; line-height: 1.45; }
.review figcaption { font-weight: 700; }

/* ---------- events: what's on ---------- */
.event-card {
  display: grid; grid-template-columns: 220px 1fr; gap: clamp(1rem, 3vw, 2rem);
  align-items: start; background: var(--paper);
  border: var(--border) solid var(--shutter-tint); border-radius: var(--radius);
  padding: clamp(1.2rem, 3vw, 1.8rem);
}
.event-card + .event-card { margin-top: 1.5rem; }
.event-card:not(:has(.event-photo)) { grid-template-columns: 1fr; }
.event-photo { width: 220px; height: 220px; object-fit: cover; border-radius: var(--radius); border: var(--border) solid var(--lavender-tint); }
.event-when {
  font-size: var(--step--1); text-transform: uppercase; letter-spacing: .08em;
  color: var(--lavender-deep); font-weight: 700; margin: 0 0 .3rem;
}
.event-where { color: var(--ink-soft); font-weight: 400; text-transform: none; letter-spacing: 0; margin-left: .5rem; }
.event-body h2 { margin: 0 0 .4rem; }
.event-title-link { color: inherit; text-decoration: none; }
.event-title-link:hover { color: var(--lavender-deep); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.event-performer { font-family: var(--display); font-weight: 400; font-size: 1.05rem; margin: 0 0 .4rem; }
.event-performer .muted { font-family: var(--body); font-size: var(--step--1); }
.event-bio { color: var(--ink-soft); margin: 0 0 .9rem; }
.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; }

.chip-ticketed {
  display: inline-block; background: var(--sun); color: var(--ink);
  border-radius: var(--radius); padding: .12rem .6rem;
  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; }

/* seat-limited registrations — mechanics untouched, L&S skin */
.register {
  flex-basis: 100%; display: flex; flex-wrap: wrap; gap: .5rem; align-items: center;
  background: var(--shutter-wash); border: var(--border) solid var(--shutter-tint);
  border-radius: var(--radius); padding: .9rem 1rem;
}
.register .seats-left { flex-basis: 100%; margin: 0; font-weight: 700; font-size: var(--step--1); }
.register input { padding: .45rem .6rem; }
.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-soft); }
.register .reserve-note { flex-basis: 100%; margin: 0; font-size: var(--step--1); }
.event-full { flex-basis: 100%; margin: 0; font-weight: 700; }

.socials { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0 0 1rem; padding: 0; }
.social-pill {
  display: inline-block; font-size: var(--step--1); font-weight: 700; text-decoration: none;
  color: var(--ink); background: var(--paper); border: var(--border) solid var(--lavender-tint);
  border-radius: var(--radius); padding: .3rem .8rem;
}
.social-pill:hover { border-color: var(--shutter); color: var(--shutter-deep); }

.player { border-top: 3px double var(--lavender-tint); padding-top: .9rem; }
.player-label { font-size: var(--step--1); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; 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); font-weight: 400; font-size: .98rem; min-width: 9rem; }
.track audio { height: 38px; flex: 1; min-width: 220px; }
.spotify-embed { margin-top: .85rem; max-width: 540px; }
.spotify-embed iframe { display: block; width: 100%; border: 0; }
.video-embed {
  position: relative; aspect-ratio: 16 / 9; max-width: 720px;
  border-radius: var(--radius); overflow: hidden;
  border: var(--border) solid var(--shutter-tint); background: var(--paper);
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

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

/* month calendar */
.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: var(--border) solid var(--shutter-tint);
  border-radius: var(--radius); background: var(--paper); color: var(--shutter-deep);
  font-size: 1.5rem; line-height: 1; text-decoration: none;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.cal-nav-btn:hover { background: var(--shutter-deep); color: var(--paper); border-color: var(--shutter-deep); }
.cal-today { margin: -.2rem 0 .7rem; text-align: center; font-size: var(--step--1); }
.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: var(--border) solid var(--lavender-tint);
  border-radius: var(--radius); transition: transform .12s ease, border-color .12s ease;
}
.cal-tile:hover { transform: translateY(-3px); border-color: var(--shutter); }
.cal-tile-media { position: relative; aspect-ratio: 1 / 1; background: var(--lavender-wash); }
.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; background: var(--shutter-wash);
}
.cal-tile-fallback span { font-family: var(--display); font-weight: 400; font-size: 1.15rem; line-height: 1.2; color: var(--shutter-deep); }
.cal-tile-date {
  position: absolute; top: .6rem; left: .6rem; background: var(--paper);
  color: var(--lavender-deep); font-weight: 700; font-size: .78rem; letter-spacing: .05em;
  padding: .25rem .65rem; border: 1px solid var(--lavender-tint); border-radius: var(--radius);
}
.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(--shutter-deep); }
.cal-tile-title { font-family: var(--display); font-weight: 400; font-size: 1rem; line-height: 1.2; }
.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; }
}

/* home events strip */
.events-strip { display: grid; gap: .8rem; margin: 1rem 0; }
.events-strip .event-card {
  display: flex; flex-wrap: wrap; gap: .35rem 1.1rem; align-items: baseline;
  text-decoration: none; padding: .9rem 1.2rem;
}
.events-strip .event-date { color: var(--shutter-deep); font-weight: 700; font-size: var(--step--1); text-transform: uppercase; letter-spacing: .06em; flex: 0 0 7.5rem; }
.events-strip .event-title { font-family: var(--display); font-weight: 400; font-size: 1.12rem; }
.events-strip .event-loc { color: var(--ink-soft); 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(--lavender-deep); }

/* 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: var(--border) solid var(--lavender-tint); }
.performer-head:not(:has(.performer-photo)) { grid-template-columns: 1fr; }
.show-row { margin: .3rem 0; }
@media (max-width: 640px) { .performer-head { grid-template-columns: 1fr; } .performer-photo { width: 100%; height: 260px; } }

/* quiet keyline nudge */
.popup-nudge, .giftcard-nudge {
  color: var(--ink-soft); font-size: .95rem;
  border-left: 3px solid var(--shutter); padding-left: .8rem; max-width: 46rem;
}

/* ---------- shop ---------- */
.products { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr)); gap: 1.2rem; }
.products li, .product-card {
  background: var(--paper); border: var(--border) solid var(--lavender-tint);
  border-radius: var(--radius); padding: 1.1rem;
}
.products > li:nth-child(3n+2) { border-color: var(--shutter-tint); }
.products > li:nth-child(3n) { border-color: var(--sun-tint); }
.product-card { text-align: center; padding: 0; overflow: hidden; }
.product-card > a { display: block; text-decoration: none; color: var(--ink); }
.product-thumb {
  width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block;
  background: var(--lavender-wash); border-bottom: 1px solid var(--hairline);
}
.product-thumb--empty {
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: var(--lavender-tint); font-family: var(--display);
}
.product-name { display: block; font-family: var(--display); font-weight: 400; font-size: 1.05rem; padding: .9rem 1rem .2rem; }
.product-price { display: block; padding: 0 1rem 1rem; color: var(--shutter-deep); font-weight: 700; }
.product-hero {
  width: 100%; max-width: 420px; aspect-ratio: 1/1; object-fit: cover;
  border-radius: var(--radius); border: var(--border) solid var(--shutter-tint); margin-bottom: 1.2rem;
}
.product .price { font-family: var(--display); font-weight: 400; font-size: 1.4rem; color: var(--shutter-deep); }
.add-to-cart { display: flex; align-items: center; gap: .8rem; margin-top: 1rem; }
.add-to-cart input { width: 5rem; }

.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 solid var(--hairline); }
.cart-name { font-family: var(--display); font-weight: 400; font-size: 1.05rem; flex: 1 1 12rem; }
.cart-qty { display: flex; align-items: center; gap: .6rem; margin: 0; flex-direction: row; }
.cart-qty input { width: 4.5rem; }
.cart-qty .link, .cart-qty button[value="remove"] {
  background: none; border-color: transparent; color: var(--lavender);
  padding: .4rem; text-decoration: underline; min-height: 0;
}
.cart-total { font-size: 1.3rem; font-family: var(--display); font-weight: 400; }

/* 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: var(--radius);
  border: var(--border) solid var(--shutter-tint);
  background: var(--footer-ink); color: var(--cream);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .25rem; margin-bottom: .8rem;
}
.giftcard-face .brand-lockup, .giftcard-lockup { color: var(--cream); font-size: 1.3rem; }
.giftcard-amount { font-family: var(--display); font-weight: 400; font-size: 2.2rem; line-height: 1; color: var(--sun); }
.giftcard-brand { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; opacity: .85; }
.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 .subscribe-row { justify-content: flex-start; }
/* on-paper variant of the footer subscribe input (polarity fix: this one
   sits on light paper, not the deep footer ink) */
.giftcards-subscribe .subscribe-row input { border-color: var(--shutter-tint); }
.giftcards-subscribe .subscribe-row input:focus { border-color: var(--shutter-deep); }
.giftcards-subscribe label { color: var(--ink); }
.giftcards-subscribed { font-weight: 700; }
@media (max-width: 640px) { .giftcards-soon { grid-template-columns: 1fr; } }

/* checkout (gated off without Square creds — machinery skin only) */
.checkout { max-width: 980px; margin: 0 auto; padding: clamp(1.4rem, 4vw, 2.6rem) 1.2rem; }
.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 { padding: clamp(1.1rem, 3vw, 1.6rem); }
.checkout-summary h2, .checkout-pay h2 { font-size: 1.15rem; 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-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-weight: 400; font-size: 1.35rem; }
.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); margin-bottom: 1rem; }
.checkout-pay .field input { display: block; width: 100%; margin-top: .35rem; }
.card-field { margin: .4rem 0 1.1rem; min-height: 52px; }
.ship-choice, .ship-fields { border: var(--border) solid var(--shutter-tint); border-radius: var(--radius); padding: .9rem 1rem .4rem; margin-bottom: 1rem; }
.ship-choice legend, .ship-fields legend { padding: 0 .4rem; font-weight: 700; color: var(--ink-soft); }
.ship-choice .radio { display: flex; align-items: baseline; gap: .5rem; margin-bottom: .6rem; font-size: var(--step--1); }
.ship-choice .radio input { accent-color: var(--shutter-deep); }
.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; }
.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: var(--radius); 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(--hairline); }
.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: var(--door-red); }
.ck-status--ok { color: var(--shutter-deep); }
.ck-secure { margin-top: 1rem; font-size: .8rem; color: var(--ink-soft); text-align: center; }
.checkout-confirm .confirm-num { color: var(--ink-soft); }
.cart-link { font-weight: 700 !important; }

/* ---------- age gate (config-gated, OFF by default) ---------- */
.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); }
.age-gate form, .age-overlay-card form { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; flex-direction: row; }
.age-gate button[value="no"], .age-overlay-card button[value="no"] {
  background: transparent; color: var(--ink-soft); border-color: transparent; text-decoration: underline;
}
.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(--cream) 97%, var(--ink));
}
.age-overlay-card { text-align: center; max-width: 36rem; }
.age-overlay-card h2 { font-size: var(--step-4); }
body.age-locked { overflow: hidden; }

/* ---------- footer — deep shutter ink, the far edge of the page ---------- */
.site-footer {
  background: var(--footer-ink); color: var(--footer-soft);
  border-top: 3px double var(--shutter);
  margin-top: clamp(3rem, 8vw, 5.5rem);
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.1rem, 4vw, 2rem);
  font-size: var(--step--1);
}
.site-footer a { color: var(--cream); }
.site-footer :focus-visible { outline-color: var(--focus-dark); }
.footer-grid {
  max-width: var(--maxw); margin: 0 auto; display: grid;
  grid-template-columns: 1.4fr 1.3fr 1fr 1.5fr;
  gap: clamp(1.5rem, 4vw, 3rem); align-items: start;
}
.footer-lockup {
  font-family: var(--display); font-weight: 400; font-size: 1.5rem;
  line-height: 1.1; color: var(--cream); margin: 0 0 .6rem;
}
.footer-tagline { font-weight: 400; font-style: italic; color: var(--footer-soft); margin: 0 0 .8rem; max-width: 26rem; }
.footer-meta { margin: .2rem 0; color: var(--footer-soft); }
.footer-meta a { text-decoration: none; }
.footer-meta a:hover { text-decoration: underline; }
.footer-col h3 {
  font-family: var(--body); font-weight: 700; font-size: .78rem;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--sun); margin: 0 0 .75rem;
}
.footer-col a { display: block; color: var(--footer-soft); text-decoration: none; padding: .22rem 0; }
.footer-col a:hover { color: var(--cream); text-decoration: underline; }
.footer-hours {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  margin: 0; padding: .3rem 0; max-width: 21rem;
  border-bottom: 1px solid color-mix(in srgb, var(--footer-soft) 25%, transparent);
  color: var(--footer-soft);
}
.footer-hours:last-of-type { border-bottom: 0; }
.footer-hours-day { color: var(--cream); font-weight: 700; }
.footer-policy { margin: .8rem 0 0; font-style: italic; color: var(--footer-soft); max-width: 21rem; }
.footer-connect .footer-subscribe { margin: 0 0 1rem; max-width: none; }
.footer-subscribe label { display: block; font-weight: 700; margin-bottom: .5rem; color: var(--cream); }
.subscribe-row { display: flex; gap: .5rem; }
.subscribe-row input {
  flex: 1; max-width: 18rem; padding: .55rem .7rem;
  border: var(--border) solid transparent; border-radius: var(--radius);
  background: var(--paper); color: var(--ink);
}
.subscribe-row input:focus { border-color: var(--sun); }
.footer-subscribed { color: var(--cream); font-weight: 700; line-height: 1.45; }
.footer-suberr { color: #F4C0A9; font-size: var(--step--1); margin: .4rem 0 0; }
.footer-social { margin: 0; display: flex; flex-wrap: wrap; gap: .25rem 1.1rem; }
.footer-social a { color: var(--footer-soft); text-decoration: none; }
.footer-social a:hover { color: var(--cream); 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(--footer-soft) 25%, transparent);
  display: flex; flex-wrap: wrap; gap: .4rem 1.5rem;
  justify-content: space-between; align-items: center;
  font-size: var(--step--2); color: var(--footer-soft);
}
.footer-bottom p { margin: 0; }
.footer-sublinks { display: flex; gap: 1.2rem; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- motion: gentle page-load rise ---------- */
@media (prefers-reduced-motion: no-preference) {
  main > section { animation: rise .6s cubic-bezier(.2,.7,.2,1) both; }
  main > section:nth-child(2) { animation-delay: .07s; }
  main > section:nth-child(3) { animation-delay: .14s; }
  main > section:nth-child(4) { animation-delay: .21s; }
  @keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* ---------- /pitch/ — ranked-improvements page + stats ---------- */
.pitch-hero, .pitch .hero {
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(1.5rem, 4vw, 2.5rem);
  border-bottom: 3px double var(--lavender-tint);
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}
.pitch-hero h1 { font-size: var(--step-6); max-width: 20ch; }
.pitch-hero .lede { font-size: var(--step-2); font-family: var(--display); font-weight: 400; max-width: 40ch; }
.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(--shutter-deep); }
.stat span { color: var(--ink-soft); font-size: var(--step--1); }
.pitch-list { list-style: none; margin: 0; padding: 0; display: grid; gap: clamp(1rem, 3vw, 1.6rem); }
.pitch-item {
  background: var(--paper);
  border: var(--border) solid var(--lavender-tint); border-left-width: 6px;
  border-radius: var(--radius); padding: clamp(1.2rem, 3vw, 2rem);
}
.pitch-item + .pitch-item { margin-top: clamp(1rem, 3vw, 1.6rem); }
.pitch-item:nth-of-type(even) { border-color: var(--shutter-tint); }
/* numbered variant: a large lavender numeral beside the body */
.pitch-item:has(> .pitch-num) {
  display: grid; grid-template-columns: auto 1fr;
  gap: clamp(.9rem, 2.5vw, 1.6rem); align-items: start;
}
.pitch-num {
  font-family: var(--display); font-weight: 400; font-size: var(--step-4);
  line-height: 1; color: var(--lavender-deep); min-width: 2ch; text-align: right;
  font-variant-numeric: tabular-nums;
}
.pitch-item h2 { margin: .1rem 0 .6rem; font-size: 1.25rem; }
.pitch-item p:last-child { margin-bottom: 0; }
.pitch-evidence { color: var(--ink-soft); font-style: italic; border-left: 3px solid var(--lavender-tint); padding-left: .8rem; margin: 0 0 .9rem; }
.pitch-build { margin: 0 0 .9rem; }
.pitch-fix, .pitch-impact { border-left: 3px solid var(--shutter); padding-left: .8rem; margin: 0; }
.pitch-evidence > strong, .pitch-build > strong,
.pitch-fix > strong, .pitch-impact > strong {
  font-family: var(--body); font-style: normal;
  text-transform: uppercase; letter-spacing: .12em; font-size: .7rem;
  font-weight: 700;
}
.pitch-evidence > strong { color: var(--ink-soft); }
.pitch-build > strong { color: var(--lavender-deep); }
.pitch-fix > strong, .pitch-impact > strong { color: var(--shutter-deep); }
.pitch-cta {
  text-align: center; background: var(--footer-ink); color: var(--footer-soft);
  border-radius: var(--radius); padding: clamp(1.8rem, 5vw, 3rem);
  margin-top: clamp(2rem, 5vw, 3rem);
}
.pitch-cta h2 { color: var(--cream); }
.pitch-cta p { margin-inline: auto; color: var(--footer-soft); }
.pitch-cta a { color: var(--cream); }
.pitch-cta .btn { background: var(--cream); color: var(--footer-ink); border-color: var(--cream); }
.pitch-cta .btn:hover { background: var(--sun); border-color: var(--sun); color: var(--ink); }
.pitch-cta .btn--ghost { background: transparent; color: var(--cream); border-color: var(--footer-soft); }
.pitch-cta :focus-visible { outline-color: var(--focus-dark); }
.pitch-ask { font-size: 1.1rem; }
.pitch-ask strong { color: var(--sun); }
@media (max-width: 640px) {
  .pitch-item { grid-template-columns: 1fr; }
  .pitch-num { text-align: left; }
}

/* ---------- print — /pitch/ (and any page) on clean white ---------- */
@media print {
  :root {
    --cream: #fff; --paper: #fff;
    --ink: #211D19; --ink-soft: #4A443B;
    --lavender: #453E63; --lavender-deep: #383357;
    --shutter: #6E6558; --shutter-deep: #1C4A45;
    --sun: #55503F; --door-red: #7E2F29;
    --footer-ink: #fff; --footer-soft: #4A443B;
    --lavender-tint: #C9C1B2; --shutter-tint: #C9C1B2; --sun-tint: #C9C1B2;
    --lavender-wash: #fff; --shutter-wash: #fff;
    --hairline: #C9C1B2;
  }
  body { background: #fff; color: var(--ink); }
  .demo-ribbon, .site-top, .site-footer, .age-overlay, .skip, .navbar { display: none !important; }
  main { padding-top: 0; }
  main > section { animation: none !important; }
  .btn, button[type="submit"] {
    background: none !important; color: var(--ink) !important;
    border: 2px solid var(--ink); box-shadow: none;
  }
  .pitch-item { break-inside: avoid; }
  .pitch-cta { border: 1px solid var(--hairline); color: var(--ink); }
  .pitch-cta h2, .pitch-cta p, .pitch-cta a { color: var(--ink); }
  .pitch-cta .hero-actions { display: none; }
  .pitch-ask strong, .stat strong { color: var(--ink); }
  a { text-decoration: none; color: inherit; }
}
