/* =====================================================================
   The Art-Cade — THEME: "Backglass Pop"
   Light, saturated, pop-art / arcade-marquee. Derived from the client's
   OWN mural ("THE ART CADE" in sun-yellow and sky-blue over a pink
   video-game character and pinball flippers) and their logo wordmark
   (deep navy ink). A gallery-white ground — the shop IS a gallery — with
   backglass-bright accents on top: sun, pinball pink, sky, gem teal, and
   a rare ember orange.

   See docs/design-system.md for the full token contract and the verified
   WCAG table; docs/de-twinning-audit.md for the sibling sweep.

   Shape signature: 2px INK outlines on cards and buttons, 16px radius,
   NO shadows of any kind. Section eyebrows are "marquee" rules — a
   dotted line of small circles alternating sun/pink (CSS radial-gradient).
   Headings may carry a 4px sun underline-block. Small pixel "score"
   labels (Silkscreen) for prices, eyebrow tags, "$10 / HOUR".
   ===================================================================== */

:root {
  /* palette — final values (teal darkened for link text; see the table) */
  --bg:         #FFFDF7;  /* page ground — gallery white */
  --surface:    #FFFFFF;  /* cards / raised surfaces */
  --ink:        #1B1F3B;  /* deep navy, from their logo wordmark (15.8:1 on bg) */
  --ink-soft:   #4A4F6A;  /* muted ink (7.9:1 on bg) */
  --ink-muted-on-dark: #C8CBE0; /* muted text on ink (10:1) */

  --sun:        #FFC83D;  /* PRIMARY accent + CTA fill; ink text on it (10.4:1) */
  --sun-wash:   #FFF4D1;  /* pale sun panel field */
  --pink:       #FF6FAE;  /* pinball pink — fills/marks; ink text on it (6.2:1) */
  --pink-wash:  #FFE4F0;
  --sky:        #3FA9F5;  /* sky — fills/marks; ink text on it (6.3:1) */
  --sky-wash:   #E2F1FD;
  --teal:       #1FA39A;  /* gem teal — non-text UI, fills (3.05:1 on bg) */
  --teal-deep:  #137570;  /* LINK colour + teal text (5.4:1 on bg) */
  --teal-wash:  #DDF3F1;
  --orange:     #FF8A3D;  /* ember — SPARINGLY, one mark per page; ink text (6.9:1) */

  --hairline:   #E6E3D8;  /* decorative 1px rules on bg */
  --focus:      #1B1F3B;  /* focus ring on light grounds */
  --focus-dark: #FFC83D;  /* focus ring on dark grounds */

  /* type — Lilita One (rounded pop display) + Nunito (text) + Silkscreen (pixel score labels) */
  --display: "Lilita One", "Arial Black", Impact, sans-serif;
  --body: "Nunito", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --accent: "Silkscreen", "Courier New", monospace;
  --step--2: clamp(.9rem, .88rem + .1vw, .95rem);
  --step--1: clamp(.98rem, .95rem + .2vw, 1.05rem);
  --step-0:  clamp(1.06rem, 1.02rem + .25vw, 1.16rem);
  --step-2:  clamp(1.5rem, 1.3rem + .9vw, 2.05rem);
  --step-4:  clamp(2.1rem, 1.7rem + 1.9vw, 3.2rem);
  --step-6:  clamp(2.7rem, 2rem + 3.6vw, 4.8rem);

  --maxw: 72rem;
  --radius: 16px;          /* THE corner */
  --radius-sm: 10px;       /* inputs, chips */
  --border: 2px;           /* ink outline — 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(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3 {
  font-family: var(--display); font-weight: 400; line-height: 1.08;
  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.3rem; }
p { margin: 0 0 1rem; max-width: 64ch; }
a { color: var(--teal-deep); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }
img { max-width: 100%; height: auto; display: block; }
blockquote { margin: 0; }
blockquote p { font-size: var(--step-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; }
.plain-list { list-style: none; margin: 0 0 1rem; padding: 0; }
.plain-list li { padding: .35rem 0; border-bottom: 1px solid var(--hairline); }
.plain-list li:last-child { border-bottom: 0; }

:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
.skip { position: absolute; left: -999px; }
.skip:focus {
  left: 1rem; top: 1rem; background: var(--sun); color: var(--ink);
  padding: .5rem .9rem; border-radius: var(--radius-sm);
  border: var(--border) solid var(--ink); 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); }

/* ---------- marquee eyebrow — a dotted line of small circles, sun/pink alternating ---------- */
.eyebrow {
  display: flex; align-items: center; gap: .7rem;
  font-family: var(--body); text-transform: uppercase;
  letter-spacing: .14em; font-size: .76rem; font-weight: 700;
  color: var(--ink-soft); margin: 0 0 .9rem;
}
.eyebrow::before {
  content: ""; flex: none; width: 56px; height: 8px;
  background-image:
    radial-gradient(circle at 4px 4px, var(--sun) 3px, transparent 3.6px),
    radial-gradient(circle at 4px 4px, var(--pink) 3px, transparent 3.6px);
  background-size: 16px 8px, 16px 8px;
  background-position: 0 0, 8px 0;
  background-repeat: repeat-x;
}
.eyebrow a { color: inherit; text-decoration: none; }
.eyebrow a:hover { text-decoration: underline; }

/* heading with the 4px sun underline-block */
.h-mark { position: relative; display: inline-block; padding-bottom: .35rem; }
.h-mark::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 3.2rem; height: 4px; background: var(--sun); border-radius: 2px;
}

/* pixel "score" labels — Silkscreen, small, for prices / tags / kickers only */
.score {
  display: inline-block; font-family: var(--accent); font-size: .68rem;
  letter-spacing: .04em; text-transform: uppercase; color: var(--ink);
  background: var(--sun); border: var(--border) solid var(--ink);
  border-radius: var(--radius-sm); padding: .2rem .55rem; line-height: 1.4;
  margin: 0 0 .6rem; white-space: nowrap;
}
.score--on-dark { background: var(--sun); color: var(--ink); }
.score--kicker { font-size: .8rem; margin-bottom: 1rem; white-space: normal; max-width: 100%; line-height: 1.5; }

/* ---------- demo ribbon / announcement bar ---------- */
.demo-ribbon {
  background: var(--ink); color: var(--bg); text-align: center;
  font-family: var(--accent); font-size: .62rem;
  letter-spacing: .06em; text-transform: uppercase; padding: .4rem;
  line-height: 1rem;
}
.navbar { background: var(--sky); border-bottom: var(--border) solid var(--ink); }
.navbar-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: .4rem clamp(1.1rem, 4vw, 2rem);
  display: flex; align-items: center; gap: .5rem;
}
.navbar-link {
  flex: 1 1 auto; display: inline-flex; flex-wrap: wrap; align-items: baseline;
  justify-content: center; gap: .25rem .6rem;
  color: var(--ink); text-decoration: none; font-weight: 700;
  font-size: var(--step--1); line-height: 1.4;
}
.navbar-link:hover { text-decoration: underline; text-underline-offset: 3px; }
.navbar-tag { font-family: var(--accent); font-size: .62rem; text-transform: uppercase; }
.navbar-close {
  flex: 0 0 auto; background: none; border: 0; cursor: pointer;
  padding: .1rem .4rem; line-height: 1; font-size: 1.3rem; color: var(--ink);
}
@media (max-width: 640px) {
  .navbar-inner { padding: .4rem 2.2rem .5rem .8rem; gap: .4rem; }
  .navbar-link { font-size: .8rem; display: inline; }
  .navbar-tag { display: none; }
}

/* ---------- 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: .55rem clamp(1.1rem, 4vw, 2rem);
  background: var(--surface);
  border-bottom: var(--border) solid var(--ink);
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand-logo { height: 44px; width: auto; }
@media (max-width: 700px) { .brand-logo { height: 36px; } }

.nav { display: flex; gap: clamp(.4rem, 1.2vw, 1.1rem); align-items: center; flex-wrap: wrap; }
.nav a {
  color: var(--ink); text-decoration: none; font-weight: 700;
  font-size: var(--step--1); padding: .35rem .55rem; position: relative;
  border-radius: var(--radius-sm);
}
/* active / hover: a sun underline-block, the heading mark in miniature */
.nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: .55rem; right: .55rem; bottom: 0;
  height: 4px; border-radius: 2px; background: var(--sun);
  transform: scaleX(0); transform-origin: left; transition: transform .18s ease;
}
.nav a:not(.nav-cta):hover::after,
.nav a:not(.nav-cta)[aria-current="page"]::after { transform: scaleX(1); }
.nav-cta {
  background: var(--sun); color: var(--ink) !important;
  border: var(--border) solid var(--ink); border-radius: var(--radius-sm);
  padding: .45rem 1rem !important;
}
.nav-cta:hover { background: var(--pink); }
.nav-cart { color: var(--teal-deep) !important; }

.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: calc(100% + .5rem);
    flex-direction: column; align-items: stretch; gap: .2rem;
    background: var(--surface); border: var(--border) solid var(--ink);
    border-radius: var(--radius); padding: .8rem; min-width: 14rem; z-index: 45;
  }
  .nav a { padding: .55rem .7rem; }
  .nav a:not(.nav-cta)::after { left: .7rem; right: auto; width: 2rem; }
  .nav-cta { text-align: center; margin-top: .4rem; }
  .nav-toggle:checked ~ .nav { display: flex; }
}

/* ---------- hero (plain, in-flow) ---------- */
.hero { padding: clamp(1.5rem, 5vw, 3.5rem) 0 clamp(1rem, 3vw, 2rem); }
.hero h1 { font-size: var(--step-6); max-width: 18ch; text-wrap: balance; }
.hero .lede { max-width: 60ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; margin-top: 1.2rem; }

/* ---------- full-bleed photo hero with an outlined panel ---------- */
.hero-bleed {
  position: relative; padding: 0;
  margin: calc(-1 * clamp(2rem, 5vw, 4rem)) calc(50% - 50vw) 0;
  background-size: cover; background-position: center 55%;
  min-height: clamp(28rem, 66vh, 40rem); display: flex; align-items: flex-end;
}
.hero-bleed--short { min-height: clamp(22rem, 48vh, 30rem); }
.hero-bleed::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(27, 31, 59, 0.08) 0%,
    rgba(27, 31, 59, 0.22) 50%, rgba(27, 31, 59, 0.62) 100%);
}
.hero-bleed-inner {
  position: relative;
  width: min(calc(var(--maxw) - 2 * clamp(1.1rem, 4vw, 2rem)), calc(100% - 2 * clamp(1.1rem, 4vw, 2rem)));
  margin: 0 auto; padding: clamp(2rem, 6vw, 4rem) 0 clamp(1.6rem, 4vw, 2.6rem);
}
/* The panel: gallery-white card with the ink outline, so the hero text
   is legible over ANY photo — the backglass in its cabinet. */
.hero-panel {
  background: var(--bg); border: var(--border) solid var(--ink);
  border-radius: var(--radius); padding: clamp(1.2rem, 3vw, 2rem) clamp(1.2rem, 3.5vw, 2.4rem);
  max-width: 38rem;
}
.hero-title { font-size: var(--step-6); margin: .2rem 0 .4rem; text-wrap: balance; line-height: 1; overflow-wrap: anywhere; }
.hero-panel .lede { margin-bottom: .4rem; }
.hero-hours { margin: 1rem 0 0; font-size: var(--step--1); color: var(--ink-soft); display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; }
.hero-hours .score { margin: 0; }
@media (max-width: 640px) {
  .hero-bleed { background-position: center 40%; min-height: 30rem; align-items: flex-end; }
  .hero-panel { padding: 1.1rem 1.1rem 1.2rem; }
  .hero-title { font-size: clamp(2.1rem, 11vw, 2.7rem); }
}

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

/* ---------- buttons — sun fill / ink text / ink outline; secondary = outline only ---------- */
.btn, button[type="submit"] {
  display: inline-block; font-family: var(--body); font-weight: 700;
  font-size: var(--step--1); letter-spacing: .01em;
  background: var(--sun); color: var(--ink);
  border: var(--border) solid var(--ink); border-radius: var(--radius-sm);
  padding: .7rem 1.4rem; min-height: 44px; text-decoration: none; cursor: pointer;
  transition: background .15s ease, color .15s ease, transform .12s ease;
}
.btn:hover, button[type="submit"]:hover { background: var(--pink); color: var(--ink); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--sun-wash); color: var(--ink); }
.btn--on-dark { background: var(--bg); }
.btn--sm { padding: .45rem .85rem; min-height: 38px; font-size: var(--step--1); }
.btn--small { padding: .35rem .8rem; font-size: .85rem; min-height: 36px; }
.btn:focus-visible, button[type="submit"]:focus-visible { outline-color: var(--focus); }

/* ---------- cards / grids ---------- */
.card, .hours, .booking, .product, .shop, .events, .calendar, .cart, .performer {
  background: var(--surface);
  border: var(--border) solid var(--ink); 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; }
a.card-link { display: block; text-decoration: none; color: inherit; transition: transform .14s ease, background .14s ease; }
a.card-link:hover { transform: translateY(-3px); background: var(--sun-wash); }
a.card-link h2, a.card-link h3 { color: var(--ink); }
.card-meta { color: var(--teal-deep); font-weight: 700; font-size: var(--step--1); margin-bottom: 0; }
.card > .score { margin-bottom: .5rem; }

/* pillars — photo on top, inside the outline */
.pillar { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.pillar img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-bottom: var(--border) solid var(--ink); }
.pillar h3, .pillar p { padding-inline: clamp(1.1rem, 2.5vw, 1.5rem); }
.pillar h3 { margin: 1rem 0 .4rem; }
.pillar p:last-child { margin-bottom: 1.3rem; }
.pillar .card-meta { margin-top: auto; }

/* gallery figures (About) */
.gallery-grid { grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); margin: 1.2rem 0; }
.gallery-item { margin: 0; padding: 0; overflow: hidden; }
.gallery-item img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-bottom: var(--border) solid var(--ink); }
.gallery-item figcaption { padding: .9rem 1.1rem 1.1rem; }
.gallery-item h3 { font-size: 1.1rem; margin: 0 0 .3rem; }
.gallery-item p { margin: 0; font-size: var(--step--1); color: var(--ink-soft); }

/* small badges */
.badge {
  display: inline-block; background: var(--pink); color: var(--ink);
  border: var(--border) solid var(--ink); border-radius: var(--radius-sm); padding: .12rem .6rem;
  font-family: var(--accent); font-size: .62rem; text-transform: uppercase; white-space: nowrap;
  vertical-align: middle;
}

/* 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: 440px; object-fit: cover;
  border-radius: var(--radius); border: var(--border) solid var(--ink);
}
.band-body h2 { margin-top: 0; }
.band--reverse img { order: 2; }
.band--mural img { max-height: 520px; object-fit: contain; background: var(--sky-wash); }
@media (max-width: 740px) {
  .band { grid-template-columns: 1fr; }
  .band--reverse img { order: 0; }
}

/* hours strip (home) + hours list */
.hours-strip {
  background: var(--sun-wash); border: var(--border) solid var(--ink);
  border-radius: var(--radius); padding: clamp(1.3rem, 3vw, 2rem);
}
.hours-strip-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.2rem, 4vw, 3rem); }
@media (max-width: 700px) { .hours-strip-grid { grid-template-columns: 1fr; } }
.hours-list { list-style: none; margin: 0; padding: 0; }
.hours-list li { display: flex; justify-content: space-between; gap: 1rem; padding: .4rem 0; border-bottom: 1px solid var(--hairline); }
.hours-list li:last-child { border-bottom: 0; }
.hours-list li strong { font-weight: 700; }
.hours-list li span { color: var(--ink-soft); text-align: right; }
.hours-address { font-family: var(--display); font-size: 1.35rem; line-height: 1.2; }
.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; }

/* teaser lists (gated home cards) */
.teaser-list { list-style: none; margin: 0 0 .6rem; padding: 0; }
.teaser-list li { padding: .3rem 0; border-bottom: 1px solid var(--hairline); font-size: var(--step--1); }
.teaser-list .d { font-family: var(--accent); font-size: .65rem; color: var(--ink-soft); margin-right: .4rem; }

/* ---------- play: the machine roster ---------- */
.floor-section .score--kicker { margin-top: -.2rem; }
.machine-list { list-style: none; margin: 0 0 1rem; padding: 0; display: grid; gap: .6rem; grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr)); }
.machine {
  display: flex; flex-direction: column; gap: .2rem;
  background: var(--surface); border: var(--border) solid var(--ink); border-radius: var(--radius);
  padding: .9rem 1.1rem;
}
.machine-name { font-family: var(--display); font-size: 1.15rem; line-height: 1.2; }
.machine-meta.score { margin: .2rem 0 0; align-self: flex-start; background: var(--sky); }
.machine-desc { color: var(--ink-soft); font-size: var(--step--1); margin-top: .2rem; }
.floor-notes { color: var(--ink-soft); }
.floor-notes p { max-width: 62ch; }

/* ---------- forms ---------- */
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(--surface); border: var(--border) solid var(--ink);
  border-radius: var(--radius-sm); color: var(--ink);
}
input::placeholder, textarea::placeholder { color: var(--ink-soft); }
input:focus, textarea:focus, select:focus { border-color: var(--teal-deep); outline: none; }
.errorlist { list-style: none; margin: 0 0 .3rem; padding: 0; color: #B8246A; font-size: var(--step--1); font-weight: 700; }
.field-error { display: block; color: #B8246A; font-size: .85rem; margin-top: .25rem; }
.booking-form { margin-top: 1rem; }
.booking-fineprint { color: var(--ink-soft); font-size: var(--step--1); font-style: italic; border-top: 1px solid var(--hairline); padding-top: .9rem; margin: 1.2rem 0 0; }

/* Decoy field (apps.growth.antibot) — parked off-screen so people and
   assistive tech never meet it; scripts fill it and out themselves. */
.trap-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* newsletter strip (home) */
.newsletter-strip { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(1.2rem, 4vw, 3rem); align-items: center; background: var(--pink-wash); }
.newsletter-strip h2 { margin-bottom: .3rem; }
.newsletter-strip .footer-subscribe label { display: block; margin-bottom: .4rem; color: var(--ink); }
.newsletter-strip .subscribe-row input { border-color: var(--ink); }
@media (max-width: 700px) { .newsletter-strip { grid-template-columns: 1fr; } }

/* ---------- messages ---------- */
.messages { list-style: none; margin: 0 0 1.5rem; padding: 0; display: grid; gap: .5rem; }
.msg {
  padding: .6rem .9rem; border-radius: var(--radius-sm);
  border: var(--border) solid var(--ink);
  font-size: var(--step--1); background: var(--surface);
}
.msg--success { background: var(--teal-wash); }
.msg--error, .msg--warning { background: var(--pink-wash); }
.msg--info { background: var(--sky-wash); }

/* ---------- events ---------- */
.event-card {
  display: grid; grid-template-columns: 220px 1fr; gap: clamp(1rem, 3vw, 2rem);
  align-items: start; background: var(--surface);
  border: var(--border) solid var(--ink); 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(--ink); }
.event-when { font-size: var(--step--1); text-transform: uppercase; letter-spacing: .06em; color: var(--teal-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(--teal-deep); text-decoration: underline; }
.event-performer { font-family: var(--display); 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(--pink); color: var(--ink); border: var(--border) solid var(--ink);
  border-radius: var(--radius-sm); padding: .1rem .55rem;
  font-family: var(--accent); font-size: .6rem; 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; }
.register {
  flex-basis: 100%; display: flex; flex-wrap: wrap; gap: .5rem; align-items: center;
  background: var(--sun-wash); border: var(--border) solid var(--ink);
  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(--surface); border: var(--border) solid var(--ink);
  border-radius: var(--radius-sm); padding: .3rem .8rem;
}
.social-pill:hover { background: var(--sun-wash); }
.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: .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-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; }
@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(--ink);
  border-radius: var(--radius-sm); background: var(--surface); color: var(--ink);
  font-size: 1.5rem; line-height: 1; text-decoration: none;
}
.cal-nav-btn:hover { background: var(--sun); }
.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(--surface); border: var(--border) solid var(--ink);
  border-radius: var(--radius); transition: transform .12s ease;
}
.cal-tile:hover { transform: translateY(-3px); }
.cal-tile-media { position: relative; aspect-ratio: 1 / 1; background: var(--sky-wash); border-bottom: var(--border) solid var(--ink); }
.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(--sun-wash); }
.cal-tile-fallback span { font-family: var(--display); font-size: 1.2rem; line-height: 1.15; color: var(--ink); }
.cal-tile-date {
  position: absolute; top: .6rem; left: .6rem; background: var(--surface);
  color: var(--ink); font-family: var(--accent); font-size: .62rem;
  padding: .25rem .55rem; border: var(--border) solid var(--ink); border-radius: var(--radius-sm);
}
.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(--teal-deep); }
.cal-tile-title { font-family: var(--display); 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; }
}
/* 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(--ink); }
.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; } }
.popup-nudge, .giftcard-nudge { color: var(--ink-soft); font-size: .95rem; border-left: 4px solid var(--sun); 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(--surface); border: var(--border) solid var(--ink);
  border-radius: var(--radius); padding: 1.1rem;
}
.products-empty { grid-column: 1 / -1; font-family: var(--display); font-size: 1.3rem; line-height: 1.3; background: var(--sun-wash); }
.products-empty .muted { display: block; font-family: var(--body); font-size: var(--step--1); margin-top: .4rem; }
.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(--sky-wash); border-bottom: var(--border) solid var(--ink); }
.product-thumb--empty { display: flex; align-items: center; justify-content: center; font-size: 3rem; color: var(--sky); }
.product-name { display: block; font-family: var(--display); font-size: 1.05rem; padding: .9rem 1rem .2rem; }
.product-price { display: block; padding: 0 1rem 1rem; font-family: var(--accent); font-size: .8rem; }
.product-hero { width: 100%; max-width: 420px; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--radius); border: var(--border) solid var(--ink); margin-bottom: 1.2rem; }
.product .price { font-family: var(--accent); font-size: 1.1rem; }
.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-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(--teal-deep); padding: .4rem; text-decoration: underline; min-height: 0; }
.cart-total { font-size: 1.3rem; font-family: var(--display); }
.cart-link { font-weight: 700 !important; }
/* 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(--ink);
  background: var(--ink); color: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .25rem; margin-bottom: .8rem;
}
.giftcard-lockup { font-family: var(--display); font-size: 1.4rem; color: var(--bg); margin: 0; }
.giftcard-amount { font-family: var(--display); font-size: 2.2rem; line-height: 1; color: var(--sun); }
.giftcard-brand { font-family: var(--accent); font-size: .6rem; text-transform: uppercase; color: var(--pink); }
.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 input { border-color: var(--ink); }
.giftcards-subscribed { font-weight: 700; }
@media (max-width: 640px) { .giftcards-soon { grid-template-columns: 1fr; } }
/* checkout */
.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-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(--ink); 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(--teal-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-sm); 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(--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); }
.ck-status--error { color: #B8246A; }
.ck-status--ok { color: var(--teal-deep); }
.ck-secure { margin-top: 1rem; font-size: .8rem; color: var(--ink-soft); text-align: center; }
.checkout-confirm .confirm-num { color: var(--ink-soft); }

/* ---------- 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: var(--bg); }
.age-overlay-card { text-align: center; max-width: 36rem; }
.age-overlay-card h2 { font-size: var(--step-4); }
body.age-locked { overflow: hidden; }

/* ---------- footer — ink ground, the backglass lit ---------- */
.site-footer {
  background: var(--ink); color: var(--ink-muted-on-dark);
  border-top: 6px solid var(--sun);
  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(--bg); }
.site-footer :focus-visible { outline-color: var(--focus-dark); }
.footer-grid {
  max-width: var(--maxw); margin: 0 auto; display: grid;
  grid-template-columns: 1.5fr 1.2fr 0.8fr 1.3fr;
  gap: clamp(1.8rem, 4vw, 3.2rem); align-items: start;
}
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-lockup { font-family: var(--display); font-size: clamp(1.6rem, 2.6vw, 2.1rem); line-height: 1.1; color: var(--bg); margin: 0 0 .4rem; }
.footer-tagline { color: var(--ink-muted-on-dark); margin: 0 0 1.2rem; max-width: 30rem; }
.footer-meta { margin: .2rem 0 .8rem; color: var(--ink-muted-on-dark); }
.footer-meta a { text-decoration: none; }
.footer-meta a:hover { text-decoration: underline; }
.footer-col h3 { font-family: var(--accent); font-weight: 400; font-size: .7rem; letter-spacing: .04em; text-transform: uppercase; color: var(--sun); margin: 0 0 .6rem; }
.footer-col h3 + h3 { margin-top: .4rem; }
.footer-col a { display: block; color: var(--ink-muted-on-dark); text-decoration: none; padding: .22rem 0; }
.footer-col a:hover { color: var(--bg); text-decoration: underline; }
.footer-hours { margin: 0 0 .45rem; color: var(--ink-muted-on-dark); line-height: 1.5; }
.footer-hours-day { color: var(--bg); font-weight: 700; }
.footer-social-icons { margin: .2rem 0 0; display: flex; gap: 1.1rem; }
.footer-social-icons a { color: var(--ink-muted-on-dark); display: inline-flex; padding: 0; }
.footer-social-icons a:hover { color: var(--sun); }
.footer-connect .footer-subscribe { margin: 0 0 1rem; max-width: none; }
.footer-subscribe label { display: block; font-weight: 700; margin-bottom: .5rem; color: var(--bg); }
.subscribe-row { display: flex; gap: .5rem; flex-wrap: wrap; }
.subscribe-row input { flex: 1; min-width: 11rem; max-width: 18rem; padding: .55rem .7rem; border: var(--border) solid var(--ink); border-radius: var(--radius-sm); background: var(--surface); color: var(--ink); }
.subscribe-row input:focus { border-color: var(--sun); }
.footer-subscribed { color: var(--bg); font-weight: 700; line-height: 1.45; }
.newsletter-strip .footer-subscribed { color: var(--ink); }
.footer-suberr { color: var(--pink); font-size: var(--step--1); margin: .4rem 0 0; }
.footer-bottom {
  max-width: var(--maxw); margin: clamp(1.8rem, 4vw, 2.6rem) auto 0;
  padding-top: 1.2rem; border-top: 1px solid rgba(200, 203, 224, 0.25);
  display: flex; flex-wrap: wrap; gap: .4rem 1.5rem; justify-content: space-between; align-items: center;
  font-size: var(--step--2); color: var(--ink-muted-on-dark);
}
.footer-bottom p { margin: 0; }
.footer-sublinks { display: flex; gap: 1.2rem; }

/* ---------- 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/ ---------- */
.pitch-hero, .pitch .hero { padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(1.5rem, 4vw, 2.5rem); border-bottom: var(--border) solid var(--ink); margin-bottom: clamp(1.5rem, 4vw, 2.5rem); }
.pitch-hero h1 { font-size: var(--step-6); max-width: 20ch; }
.pitch-list { list-style: none; margin: 0; padding: 0; display: grid; gap: clamp(1rem, 3vw, 1.6rem); }
.pitch-item { background: var(--surface); border: var(--border) solid var(--ink); border-left-width: 8px; 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(3n+1) { border-left-color: var(--sun); }
.pitch-item:nth-of-type(3n+2) { border-left-color: var(--pink); }
.pitch-item:nth-of-type(3n) { border-left-color: var(--sky); }
.pitch-item h2, .pitch-item h3 { margin: .1rem 0 .6rem; font-size: 1.25rem; }
.pitch-item p:last-child { margin-bottom: 0; }
.pitch-item > .score { margin-bottom: .55rem; }
/* inside the grid list the gap does the spacing — no stacked margin */
.pitch-list .pitch-item + .pitch-item { margin-top: 0; }
/* every finding's receipt line — small, muted, and allowed to be wide */
.pitch-receipts {
  margin: 1rem 0 0; padding-top: .75rem; border-top: 1px solid var(--hairline);
  max-width: none; font-size: var(--step--2); color: var(--ink-soft);
  overflow-wrap: anywhere;
}
.pitch-receipts strong {
  display: inline-block; margin-right: .35rem; color: var(--ink);
  font-family: var(--accent); font-weight: 400; font-size: .62rem;
  letter-spacing: .04em; text-transform: uppercase;
}
.pitch-note { border-left: 4px solid var(--sun); padding-left: .9rem; color: var(--ink-soft); }
.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-size: var(--step-4); line-height: 1; color: var(--ink); }
.stat span { color: var(--ink-soft); font-size: var(--step--1); }

/* ---------- print — clean white ---------- */
@media print {
  :root { --bg: #fff; --surface: #fff; --sun: #D6D1C3; --pink: #D6D1C3; --sky: #D6D1C3; --teal-deep: #1B1F3B; }
  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); }
  .pitch-item { break-inside: avoid; }
  a { text-decoration: none; color: inherit; }
}
