/* Brook B - brookb.com
   HEAVY PLATE: the site as a machined steel enclosure. Three type registers,
   no more. Anton = stamped (headlines, stats, numerals). IBM Plex Mono =
   engraved spec voice (nav, kickers, labels, dates, captions). IBM Plex Sans =
   body. The Fraktured blue accent behaves like a power LED: it lights only
   where there is signal (primary CTA, live status, focus). Self-hosted. */

/* Anton ships ONE weight. Asking for 700/900 gets synthetic bold, which smears
   a poster face, so every Anton rule sets font-weight: 400 explicitly. */
@font-face {
  font-family: "Anton";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/anton-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/assets/fonts/plex-sans-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Plex Mono has no variable cut on Google Fonts, so 400 and 500 are separate
   files: 500 is the emphatic spec voice (kickers, CTA, status), 400 the calm
   one (nav, social, footer). */
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/plex-mono-400-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/plex-mono-500-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Metric-matched fallbacks so the swap barely moves the layout. Overrides are
   the real font metrics: Anton asc/desc 1.176/.329 over Impact, Plex .../.275
   over the local grotesk. */
@font-face {
  font-family: "Anton-fallback";
  src: local("Impact"), local("Haettenschweiler"), local("Arial Narrow Bold"), local("Arial Narrow");
  size-adjust: 96%;
  ascent-override: 117.6%;
  descent-override: 32.9%;
  line-gap-override: 0%;
}
@font-face {
  font-family: "Plex-fallback";
  src: local("Segoe UI"), local("Helvetica Neue"), local("Arial");
  size-adjust: 106%;
  ascent-override: 102.5%;
  descent-override: 27.5%;
  line-gap-override: 0%;
}

:root {
  color-scheme: dark;
  /* steel chassis */
  --bg: #0a0a0b;
  --bg-alt: #131417;
  --panel: #1b1d21;
  --line: #26282e;
  --edge: #3a3e46;          /* machined top-edge highlight, decorative only */
  --text: #e9ebee;
  --muted: #99a0aa;
  /* the spec's third text tier (#5c636d) is 2.78:1 on a raised plate and fails
     AA outright, so the readable dim tier is lightened to 4.91:1 and #5c636d
     survives only as a hairline. Same story for interactive borders: --line is
     1.25:1, below the 3:1 that WCAG 1.4.11 requires, hence --line-strong. */
  --muted-2: #848b96;
  --hairline: #5c636d;
  --line-strong: #646b76;
  /* chrome ramp for gradient text */
  --chrome-1: #f5f7fa;
  --chrome-2: #c9ced6;
  --chrome-3: #99a1ad;
  --bg-rgb: 10, 10, 11;
  --text-rgb: 233, 235, 238;
  /* Fraktured blue: 5.16:1 on base, 4.8:1 on the alt plate, AA for text there.
     On a RAISED plate it is 4.4:1, so small informational accent text must not
     sit directly on --panel (decorative bullets are exempt). White on blue is
     only 3.84:1, so text ON the accent must be --on-accent. */
  --accent: #3d7bff;
  --accent-rgb: 61, 123, 255;
  --on-accent: #0a0a0b;
  /* Photography runs in COLOUR. The steel duotone was retired 2026-07-28 at
     Brook's call; this is only a light unify pass so five scenes shot under
     five different casts still read as one set. Do not reintroduce grayscale.
     --grade-hero is a touch cooler: the chrome wordmark sits on the hero and
     the violet LED clouds otherwise compete with it. */
  --grade: saturate(.96) contrast(1.06) brightness(.96);
  --grade-hero: saturate(.82) contrast(1.08) brightness(.92);
  --display: "Anton", "Anton-fallback", Impact, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "Cascadia Mono", Consolas, monospace;
  --body: "IBM Plex Sans", "Plex-fallback", sans-serif;
  --track-display: .01em;
  --track-ui: .12em;
  --track-kicker: .22em;
  --ease-out: cubic-bezier(.22, .9, .24, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  /* Plex Sans has a 0.516 x-height against Inter's 0.546, so 17px would read
     ~5% smaller than what shipped. 18px restores the apparent size. */
  font-size: 18px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: var(--on-accent); }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ------------------------------------------------------------------ type */
.h-label {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: var(--track-kicker);
  text-transform: uppercase;
  /* engraved spec voice, not a signal: the accent stays reserved for CTAs,
     status, links, focus and hover seams */
  color: var(--muted);
  margin-bottom: 14px;
}
.h-label::before {
  content: "";
  display: inline-block;
  width: 34px; height: 2px;
  background: linear-gradient(90deg, var(--hairline), transparent);
  vertical-align: middle;
  margin-right: 12px;
}
/* Section folios: the kicker's index number becomes an oversized machined
   outline numeral (stroke only, no fill) with the label at its baseline.
   The numeral is aria-hidden decoration, so the hairline stroke is fine.
   The accent tick retires on these; the numeral does the anchoring. */
.h-label.with-folio {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 18px;
}
.h-label.with-folio::before { display: none; }
.folio {
  font-family: var(--mono);
  font-weight: 400;
  font-size: clamp(34px, 4vw, 52px);
  line-height: .82;
  letter-spacing: 0;
  color: transparent;
  -webkit-text-stroke: 1px var(--hairline);
}
/* the BROADSIDE margin-overhang graft: only where the kicker sits on the
   wrap's left edge (About and Booking kickers live inside grid columns) */
@media (min-width: 1290px) {
  #music .folio, #shows .folio, #press .folio, #gallery .folio { margin-left: -30px; }
}
.h-big {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1.04;
  text-transform: uppercase;
  letter-spacing: var(--track-display);
  margin-bottom: 34px;
}
/* three-tier section openers: tier 1 (Shows, Booking) goes loudest, tier 2 is
   the default above, tier 3 (Gallery) is kicker-only and lets the media lead */
.tier-1 .h-big { font-size: clamp(36px, 5.2vw, 67px); }
.tier-3 .h-label { margin-bottom: 4px; }

/* --------------------------------------------------------------- buttons */
.btn {
  display: inline-block;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: var(--track-ui);
  text-transform: uppercase;
  padding: 15px 30px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}
.btn:focus-visible { outline: 2px solid var(--text); outline-offset: -6px; }
.btn:active { transform: translateY(1px); }
.btn-accent {
  background: linear-gradient(135deg, #4a86ff, var(--accent));
  color: var(--on-accent);
}
.btn-ghost {
  border-color: rgba(var(--text-rgb), .55);
  color: var(--text);
  background: rgba(var(--bg-rgb), .3);
  backdrop-filter: blur(4px);
}
.btn-small { padding: 10px 20px; font-size: 12px; }
.btn-wide { width: 100%; }
.link { color: var(--accent); border-bottom: 1px solid rgba(var(--accent-rgb), .35); }
.link:hover { border-bottom-color: var(--accent); }

/* ------------------------------------------------------------------- nav */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  transition: background .25s ease, padding .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(var(--bg-rgb), .88);
  border-bottom-color: var(--line);
  padding: 12px 28px;
}
/* blur lives on a pseudo-element: backdrop-filter on .nav itself would make
   the nav the containing block for the fixed mobile drawer and collapse it */
.nav.scrolled::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.nav-logo img { height: 24px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.nav-actions { display: flex; align-items: center; gap: 30px; margin-left: 30px; }
.nav-links a:not(.btn) {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: var(--track-ui);
  text-transform: uppercase;
  color: var(--muted);
  transition: color .15s ease;
}
.nav-burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; transition: .2s; }
.nav-scrim {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(4, 5, 7, .6);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.nav-scrim.on { opacity: 1; pointer-events: auto; }

/* ------------------------------------------------------------------ hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  /* angled machined cut along the bottom edge; the scroll cue (bottom 26px,
     centered) clears the diagonal's 22px midpoint by 4px */
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 44px), 0 100%);
}
.hero-media, .hero-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
/* the chrome logo sits on this, so the hero runs cooler than the gallery */
.hero-media img, .hero-layer { filter: var(--grade-hero); }
/* crossfade layers injected by JS after load; they sit above the base
   picture and below the shade */
.hero-layer {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0;
  transition: opacity 1.6s ease;
}
.hero-layer.on { opacity: 1; }
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(var(--bg-rgb), .78), transparent 140px),
    linear-gradient(to bottom, rgba(var(--bg-rgb), .55) 0%, rgba(var(--bg-rgb), .25) 40%, rgba(var(--bg-rgb), .92) 100%),
    radial-gradient(ellipse at center, transparent 40%, rgba(var(--bg-rgb), .55) 100%);
}
.hero-inner { position: relative; text-align: center; padding: 100px 24px max(12svh, 88px); }
.hero-kicker {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: var(--track-kicker);
  text-indent: var(--track-kicker);
  text-transform: uppercase;
  color: var(--text);
  text-shadow: 0 1px 3px rgba(0, 0, 0, .85), 0 0 14px rgba(0, 0, 0, .6);
  margin-bottom: 26px;
}
.hero-logo-wrap {
  position: relative;
  display: block;
  width: min(640px, 86vw);
  aspect-ratio: 1614 / 280;
  margin: 0 auto 26px;
}
.hero-logo {
  width: 100%;
  filter: drop-shadow(0 6px 40px rgba(0, 0, 0, .8));
}
/* one-time light sweep across the chrome on first entry; the wordmark PNG
   masks the flash to the glyphs */
.hero-logo-wrap::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, .5) 50%, transparent 58%) no-repeat;
  background-size: 260% 100%;
  background-position: 180% 0;
  -webkit-mask: url("/assets/img/logo-chrome-trim.png") center / contain no-repeat;
  mask: url("/assets/img/logo-chrome-trim.png") center / contain no-repeat;
  animation: chromesweep 1.1s ease-out .5s 1 both;
  pointer-events: none;
}
@keyframes chromesweep {
  from { background-position: 180% 0; }
  to { background-position: -80% 0; }
}
.hero-tag {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: .8em;
  row-gap: .2em;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(15px, 2.4vw, 25px);
  text-transform: uppercase;
  letter-spacing: var(--track-kicker);
  text-indent: var(--track-kicker);
  margin-bottom: 44px;
}
.hero-tag i { color: var(--muted-2); font-style: normal; }
/* Below 430px the five genres genuinely stop fitting on one line (measured by
   neutralising this rule and stepping the viewport down 1px at a time; at 430
   they still fit, at 425 they do not). Rather than let the line wrap wherever
   and orphan a bullet onto the start of line 2, a separator is turned into a
   zero-height full-width flex item to force the wrap at a chosen point.
   Breaking after the THIRD separator puts the longer line on top, which tapers
   under the wordmark. Re-measure and re-pick BOTH numbers if the genre count
   or the display face changes. */
@media (max-width: 429px) {
  .hero-tag i:nth-of-type(3) { flex-basis: 100%; height: 0; overflow: hidden; }
}
.hero-cta { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.hero-next { margin-top: 26px; }
.hero-next a {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: var(--track-ui);
  text-transform: uppercase;
  color: var(--text);
  padding: 10px 18px;
  border: 1px solid rgba(var(--accent-rgb), .45);
  background: rgba(var(--accent-rgb), .10);
}
.hero-next b { color: var(--accent); }
.hero-social { margin-top: 24px; display: flex; justify-content: center; flex-wrap: wrap; gap: 22px; }
.hero-social a {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: var(--track-ui);
  text-transform: uppercase;
  color: var(--muted);
  transition: color .15s ease;
}
.hero-scroll {
  position: absolute; bottom: 26px; left: 50%;
  width: 26px; height: 42px;
  margin-left: -13px;
  border: 2px solid rgba(var(--text-rgb), .4);
  border-radius: 14px;
}
.hero-scroll span {
  position: absolute; top: 7px; left: 50%;
  width: 4px; height: 8px; margin-left: -2px;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollcue 1.8s infinite;
}
@keyframes scrollcue { 0% {opacity:1; transform:translateY(0)} 70% {opacity:0; transform:translateY(14px)} 100% {opacity:0} }

/* ---------------------------------------------------- stats: serial plate
   The stats bar is a stamped spec plate riveted under the hero: an engraved
   mono data line across the top, then the four readings on cell seams. */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-alt);
  box-shadow: inset 0 1px 0 rgba(var(--text-rgb), .045), 0 1px 0 rgba(0, 0, 0, .55);
}
.stats-head {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 20px;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: var(--track-ui);
  text-transform: uppercase;
  /* engraved: decorative flavor text, aria-hidden in the markup, so the
     hairline tint is deliberate */
  color: var(--hairline);
}
.stat {
  padding: 30px 18px 32px;
  text-align: center;
  border-left: 1px solid var(--line);
  min-width: 0;
}
/* .stats-head is the grid's first child, so position rules count from 2 */
.stats-head + .stat { border-left: 0; }
.stat b {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(21px, 2.4vw, 30px);
  letter-spacing: var(--track-display);
  text-transform: uppercase;
  color: var(--chrome-2);
}
.stat span {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: var(--track-ui);
  text-transform: uppercase;
}

/* ---------------------------------------------------- shared-stages band */
.stages-band {
  position: relative;
  overflow: hidden;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  /* the band sits directly under the stats plate's bottom seam, so the
     catch-light inside its own top edge completes that seam */
  box-shadow: inset 0 1px 0 rgba(var(--text-rgb), .04), 0 1px 0 rgba(0, 0, 0, .55);
  padding: 34px 0 38px;
}
.stages-band::before, .stages-band::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}
.stages-band::before { left: 0; background: linear-gradient(90deg, var(--bg-alt), transparent); }
.stages-band::after { right: 0; background: linear-gradient(270deg, var(--bg-alt), transparent); }
/* WCAG 2.2.2: auto-motion needs a pause control that works without a mouse */
.stages-toggle {
  position: absolute;
  right: 12px;
  bottom: 8px;
  z-index: 3;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: var(--track-ui);
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(var(--bg-rgb), .6);
  border: 1px solid var(--line-strong);
  padding: 4px 10px;
  cursor: pointer;
}
.stages-toggle:hover { color: var(--text); }
.stages-track.paused { animation-play-state: paused; }
.stages-label {
  text-align: center;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: var(--track-kicker);
  text-indent: var(--track-kicker);
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.stages-track {
  display: flex;
  width: max-content;
  /* Duration tracks the row width: keep ~45px/s when names are added or removed,
     AND when the display face or size changes. Measured at 1280px with Anton
     29px: one row = 3260px, so 3260/45 = 72s. Anton is more condensed than the
     Archivo it replaced, which is why this dropped from 82s. */
  animation: stages-scroll 72s linear infinite;
}
.stages-row {
  list-style: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.stages-row li {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(17px, 2.4vw, 29px);
  letter-spacing: var(--track-display);
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 18px;
  color: var(--chrome-2);
}
.stages-row li.dot {
  background: none;
  color: var(--muted-2);
  -webkit-text-fill-color: var(--muted-2);
  padding: 0;
  font-size: clamp(14px, 2vw, 22px);
}
@keyframes stages-scroll { to { transform: translateX(-50%); } }

/* -------------------------------------------------------------- sections
   Two-step spacing scale: tier-1 moments (Shows, Booking) get more air than
   the default so the page accelerates instead of ticking uniformly. */
.section { padding: 96px 0; }
.tier-1 { padding: 128px 0; }
/* alt sections read as raised plates seated into the chassis: seam lines plus
   a catch-light inside the top seam and a shadow line under the bottom one */
.section-alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(var(--text-rgb), .045), 0 1px 0 rgba(0, 0, 0, .55);
}
.two-col {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 64px;
  align-items: start;
}

/* ----------------------------------------------------------------- about */
/* the portrait is a framed plate like the gallery prints; the old floating
   accent outline retired (accent is signal, not decoration) */
.about-photo {
  --cut: 14px;
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(var(--text-rgb), .05);
  clip-path: polygon(0 0, calc(100% - var(--cut)) 0, 100% var(--cut), 100% 100%, 0 100%);
}
.about-photo::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(100% - var(--cut));
  width: calc(var(--cut) * 1.4143);
  height: 1px;
  background: var(--edge);
  transform-origin: 0 0;
  transform: rotate(45deg);
  pointer-events: none;
}
.about-copy p { color: var(--muted); margin-bottom: 18px; max-width: 60ch; }
.about-copy strong { color: var(--text); font-weight: 600; }

/* ----------------------------------------------------------------- music */
.music-grid { display: grid; grid-template-columns: 1fr 320px; gap: 28px; align-items: start; }
.music-grid > *, .music-side > *, .two-col > *, .press-grid > * { min-width: 0; }
.music-side { display: grid; gap: 28px; }
/* Plates: every card is a fabricated plate seated into the chassis. Machined
   top-edge catch-light, one 45deg corner cut top-right. The clip removes the
   border along the cut, so the ::after hairline redraws that seam: a bar of
   length cut * sqrt(2) hinged at the cut's start and rotated onto the diagonal. */
.card {
  --cut: 16px;
  position: relative;
  background: linear-gradient(180deg, #1f2126 0, var(--panel) 46%);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(var(--text-rgb), .05);
  clip-path: polygon(0 0, calc(100% - var(--cut)) 0, 100% var(--cut), 100% 100%, 0 100%);
  padding: 28px;
}
.card::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(100% - var(--cut));
  width: calc(var(--cut) * 1.4143);
  height: 1px;
  background: var(--edge);
  transform-origin: 0 0;
  transform: rotate(45deg);
  pointer-events: none;
}
/* mixed-case: the tracked-caps voice is reserved for kickers, buttons, and
   nav; card headings speak in a second, quieter register */
.card h3 {
  font-family: var(--body);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .01em;
  margin-bottom: 10px;
}
.card p { color: var(--muted); font-size: 15px; margin-bottom: 18px; }
.card .facts { list-style: none; color: var(--muted); font-size: 15px; }
/* Genre value in the Quick facts lists, set as the tagline lockup. The spacing
   is CSS tracking, not literal spaces between letters, so screen readers and
   copy-paste still get real words. */
.genre-line {
  font-family: var(--mono);
  font-weight: 500;
  font-size: .92em;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text);
}
/* No whitespace around the bullets in the markup: spacing is margin, and the
   only break opportunities are the <wbr> after each bullet. So a wrap can never
   start a line with a bullet, at any container width. */
.genre-line i { color: var(--muted-2); font-style: normal; margin: 0 .35em; }
/* Compact lockup: its own line at the site's 12px tracked-label step, with an
   even 3/2 break so the five items never strand one word on line two. The third
   separator becomes a zero-height full-width flex item, pushing UKG down and
   hiding itself. Needed in the homepage press-kit card, which is a ~297px
   column at every width, and on phones everywhere. */
.card .facts .genre-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: var(--track-kicker);
}
.card .facts .genre-line i:nth-of-type(3) {
  flex-basis: 100%;
  height: 0;
  overflow: hidden;
  margin: 0;
}
@media (max-width: 560px) {
  .genre-line {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    margin-top: 4px;
    font-size: 12px;
    letter-spacing: var(--track-kicker);
  }
  .genre-line i:nth-of-type(3) { flex-basis: 100%; height: 0; overflow: hidden; margin: 0; }
}
.release-line b { color: var(--text); }
.card-more { margin: 14px 0 0 !important; font-size: 14px !important; }

/* click-to-load embed facades: zero third-party bytes until interaction */
.facade {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--panel);
  cursor: pointer;
  overflow: hidden;
}
.sc-facade { aspect-ratio: 16 / 10; }
.tw-facade { aspect-ratio: 16 / 9; margin-bottom: 16px; }
.facade-thumb, .facade-thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.facade-thumb img { transition: transform .4s ease; }
.facade-shade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(var(--bg-rgb), .78), rgba(var(--bg-rgb), .18) 55%);
}
.facade-glyph {
  position: absolute;
  top: 50%; left: 50%;
  width: 74px; height: 74px;
  transform: translate(-50%, -62%);
  border: 2px solid rgba(var(--text-rgb), .7);
  border-radius: 50%;
  background: rgba(var(--bg-rgb), .45);
  transition: border-color .15s ease, background .15s ease;
}
.facade-glyph::after {
  content: "";
  position: absolute;
  top: 50%; left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent var(--text);
}
.facade-glyph-sm { width: 52px; height: 52px; transform: translate(-50%, -50%); }
.facade-glyph-sm::after { border-width: 9px 0 9px 15px; }
.facade-label {
  position: absolute;
  left: 0; right: 0;
  bottom: 20px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: var(--track-ui);
  text-transform: uppercase;
  color: var(--text);
}
.facade-status {
  position: absolute;
  top: 10px; left: 10px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: var(--track-ui);
  text-transform: uppercase;
  color: var(--text);
  background: rgba(var(--bg-rgb), .72);
  border: 1px solid var(--line);
  padding: 5px 10px;
}
.embed-frame {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  background: var(--panel);
}
.sc-frame { aspect-ratio: 16 / 10; }
.tw-frame { aspect-ratio: 16 / 9; margin-bottom: 16px; }
.music-caption {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}
.music-caption b { color: var(--text); }
.music-caption i { color: var(--muted-2); font-style: normal; }

/* -------------------------------------------------------------- fan band */
.fan-band {
  background: linear-gradient(90deg, rgba(var(--accent-rgb), .10), rgba(var(--accent-rgb), .03));
  border-bottom: 1px solid var(--line);
  padding: 44px 0;
}
.fan-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px 40px;
}
.fan-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(17px, 2.1vw, 22px);
  text-transform: uppercase;
  letter-spacing: var(--track-display);
}
.fan-sub { color: var(--muted); font-size: 14px; margin-top: 4px; }
.fan-form { display: flex; flex-wrap: wrap; gap: 12px; flex: 1; min-width: 260px; max-width: 520px; }
.fan-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  padding: 13px 14px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.fan-form input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), .15);
}
.fan-form ::placeholder { color: var(--muted-2); }
#fanMsg { flex-basis: 100%; width: 100%; }

/* ----------------------------------------------------------------- shows */
/* ---------------------------------------------- shows: broadsheet table
   The BROADSIDE graft: full-bleed hairline rows instead of boxed cards, and
   the day numeral blown up to do the visual work (same chrome ramp as the
   stats plate). Hover is HEAVY PLATE: a nudge and the seam warming to accent,
   no glow. */
.shows { display: grid; border-top: 1px solid var(--line); }
.show-row {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 4px;
  border-bottom: 1px solid var(--line);
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
a.show-row:active { transform: scale(.995); }
.show-date {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
}
.show-date b {
  display: block;
  font-size: clamp(40px, 4.6vw, 58px);
  letter-spacing: var(--track-display);
  color: var(--chrome-2);
}
/* chrome-ramp text only where background-clip: text is real; elsewhere the
   solid chrome-2 above stands in (a gradient without the clip would paint a
   light box behind invisible text) */
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .stat b, .show-date b, .stages-row li {
    background: linear-gradient(180deg, var(--chrome-1), var(--chrome-3));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
.show-date span { font-family: var(--mono); font-weight: 500; font-size: 12px; color: var(--accent); letter-spacing: var(--track-ui); }
.show-what h3 { font-family: var(--display); font-size: clamp(20px, 2.2vw, 26px); text-transform: uppercase; letter-spacing: var(--track-display); }
.show-what p { color: var(--muted); font-size: 14px; }
.shows-empty {
  border: 1px dashed var(--line);
  background: var(--bg);
  padding: 54px 30px;
  text-align: center;
}
.shows-empty p { color: var(--muted); margin-bottom: 22px; }
.shows-empty b { color: var(--text); }

/* ------------------------------------------------- gallery: contact sheet
   Framed prints on plates. Each item: steel-graded photo above an engraved
   mono caption bar that carries a FIG index from a CSS counter, so captions
   are always readable (no hover-only overlays; touch and mouse see the same
   sheet). Hover releases the photo to full color and brightens the seams. */
.gallery {
  counter-reset: fig;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1160px;
  margin: 10px auto 0;
  padding: 0 24px;
}
.g-item {
  --cut: 14px;
  counter-increment: fig;
  position: relative;
  display: block;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(var(--text-rgb), .05);
  clip-path: polygon(0 0, calc(100% - var(--cut)) 0, 100% var(--cut), 100% 100%, 0 100%);
  transition: border-color .25s ease;
}
.g-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(100% - var(--cut));
  width: calc(var(--cut) * 1.4143);
  height: 1px;
  background: var(--edge);
  transform-origin: 0 0;
  transform: rotate(45deg);
  pointer-events: none;
}
.g-item:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: inset 0 0 0 2px var(--accent);
}
.g-wide { grid-column: span 2; }
.g-item picture {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
}
.g-wide picture { aspect-ratio: 2 / 1; }
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
  filter: var(--grade);
}
/* a whisper of the old specular streak: enough to keep the plate feeling lit,
   far below the .12 it ran at when the photos were metal */
.g-item picture::before {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, .04) 50%, transparent 58%);
  mix-blend-mode: screen;
  pointer-events: none;
}
.g-cap {
  display: block;
  padding: 10px 12px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--track-ui);
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.g-cap::before {
  content: "Fig " counter(fig, decimal-leading-zero) " / ";
  /* AT reads generated content, so this must clear 4.5:1 like the caption */
  color: var(--muted);
}
.about-photo img, .facade-thumb img {
  filter: var(--grade);
}
.gallery-follow { text-align: center; color: var(--muted); font-size: 15px; margin-top: 18px; padding: 0 24px; }

/* ------------------------------------------------------------- press kit */
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.press-main {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 28px;
  flex-wrap: wrap;
  border-color: rgba(var(--accent-rgb), .45);
  position: relative;
  overflow: hidden;
}
.press-main::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.press-main-copy { max-width: 56ch; }
.press-main-copy p { margin-bottom: 0; }
.press-grid .link { display: inline-block; margin: 4px 0; font-size: 15px; }
.press-dl { display: flex; flex-wrap: wrap; gap: 14px; }
/* datasheet furniture: engraved part-number chips sit in each plate's top
   padding (aria-hidden flavor, hence the hairline tint), and dotted leaders
   run label-to-link like a spec sheet's dimension columns */
.part {
  position: absolute;
  top: 10px;
  right: 26px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: var(--track-ui);
  text-transform: uppercase;
  color: var(--hairline);
  pointer-events: none;
}
.lead-row, .card .facts li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}
.lead-row:last-of-type, .card .facts li:last-child { border-bottom: 0; }
/* the one label voice: engraved mono caps, sized to sit level with the 15px
   values rather than shrinking away from them */
.lead-label {
  flex: 0 0 auto;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.lead-fill {
  flex: 1 1 24px;
  min-width: 18px;
  border-bottom: 1px dotted var(--hairline);
  transform: translateY(-5px);
}
/* values and links: identical in both cards, body voice, never mono caps */
.lead-links, .fact-val {
  flex: 0 1 auto;
  max-width: 100%;
  font-family: var(--body);
  font-size: 15px;
  letter-spacing: normal;
  text-transform: none;
  color: var(--text);
}
.lead-links { display: inline-flex; flex-wrap: wrap; gap: 0 14px; }
.press-grid .lead-links a, .press-grid .fact-val a { margin: 0; }
.logo-zip { margin-top: 22px; }

/* --------------------------------------------------------------- booking */
.booking-cols { grid-template-columns: 1fr 1.2fr; }
.booking-copy p { color: var(--muted); max-width: 46ch; margin-bottom: 16px; }
.booking-now {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: var(--track-ui);
  text-transform: uppercase;
  color: var(--accent) !important;
  margin: -4px 0 18px !important;
}
.booking-proof { list-style: none; margin: 6px 0 22px; max-width: 46ch; }
.booking-proof li {
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
}
.booking-proof li:last-child { border-bottom: 0; }
.booking-dl { margin-bottom: 18px; }
.booking-alt { font-size: 15px; }
/* the closer: booking sits in its own alt band with an accent-bordered panel */
.booking-form {
  display: grid;
  gap: 18px;
  background: var(--panel);
  border: 1px solid rgba(var(--accent-rgb), .45);
  padding: 30px 28px;
  position: relative;
}
.booking-form::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
/* control panel: labels in the engraved spec voice, inputs recessed into the
   plate (darker well + inner shadow). Borders are --line-strong because form
   controls must clear WCAG 1.4.11's 3:1 (plain --line is 1.25:1). */
.booking-form label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--track-ui);
  text-transform: uppercase;
  color: var(--muted);
}
.booking-form input, .booking-form select, .booking-form textarea {
  width: 100%;
  margin-top: 8px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, .5);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  padding: 13px 14px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, .5), 0 0 0 3px rgba(var(--accent-rgb), .15);
}
.booking-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%2399a0aa' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.booking-form ::placeholder { color: var(--muted-2); }
.booking-form textarea { resize: vertical; }
.avail-note {
  display: block;
  margin-top: 8px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.5;
  color: #ffc266;
}
.avail-note[hidden] { display: none; }
.form-fine { color: var(--muted-2); font-size: 13px; }
.hp { position: absolute !important; left: -9999px !important; height: 0; width: 0; opacity: 0; }
/* status reads like a QA stamp: mono caps behind a heavy border. The greens
   and reds are semantic status colors, not accent, so they stay. */
.form-msg {
  display: none;
  padding: 12px 16px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: var(--track-ui);
  text-transform: uppercase;
  border: 2px solid;
}
.form-msg.ok { display: block; border-color: #2dd4a0; color: #2dd4a0; background: rgba(45,212,160,.07); animation: msgpulse .6s ease 2; }
.form-msg.err { display: block; border-color: #ff6b6b; color: #ff6b6b; background: rgba(255,107,107,.07); animation: msgpulse .6s ease 2; }
@keyframes msgpulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(var(--text-rgb), 0); }
  50% { box-shadow: 0 0 0 4px rgba(var(--text-rgb), .18); }
}

/* ---------------------------------------------------------------- footer */
.footer-cta {
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 28px;
  padding: 40px 24px;
}
.footer-cta p { font-size: 15px; color: var(--muted); }
.footer-cta-btns { display: flex; flex-wrap: wrap; gap: 14px; }
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
  text-align: center;
  padding: 60px 24px 40px;
}
.footer-logo { height: 22px; width: auto; margin: 0 auto 26px; opacity: .9; }
.footer-social { display: flex; justify-content: center; flex-wrap: wrap; gap: 26px; margin-bottom: 22px; }
.footer-social a {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: var(--track-ui);
  text-transform: uppercase;
  color: var(--muted);
}
.footer-social a:hover { color: var(--accent); }
.footer p { font-size: 15px; }
.footer-fine { color: var(--muted-2); font-size: 13px; margin-top: 10px; }

/* ----------------------------------------------------- sticky book (mobile) */
.book-sticky { display: none; }
@media (max-width: 900px) {
  .book-sticky {
    display: block;
    position: fixed;
    left: 14px; right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    z-index: 40;
    text-align: center;
    transform: translateY(calc(100% + 80px));
    transition: transform .25s ease;
  }
  .book-sticky.show { transform: none; }
}

/* -------------------------------------------------------------- lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  width: 100%; height: 100%;
  max-width: none; max-height: none;
  margin: 0; border: 0;
  background: rgba(4,5,7,.94);
  padding: 4vmin;
  color: var(--text);
}
.lightbox[open] { display: flex; align-items: center; justify-content: center; animation: lbfade .22s ease; }
.lightbox[open] figure { animation: lbrise .22s ease; }
@keyframes lbfade { from { opacity: 0; } }
@keyframes lbrise { from { transform: scale(.965); } }
.lightbox::backdrop { background: transparent; }
.lightbox figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 100%;
  max-height: 100%;
}
.lightbox img { max-width: 100%; max-height: 80vh; border: 1px solid var(--line); }
.lightbox figcaption { font-size: 13px; color: var(--muted); letter-spacing: .04em; text-align: center; }
.lb-close {
  position: absolute; top: 16px; right: 22px;
  z-index: 2;
  background: none; border: 0;
  color: var(--text); font-size: 44px; line-height: 1;
  cursor: pointer;
}
.lb-prev, .lb-next {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: none; border: 0;
  color: var(--text);
  font-size: 56px; line-height: 1;
  cursor: pointer;
  padding: 14px 12px;
}
.lb-prev { left: 8px; }
.lb-next { right: 8px; }

/* ----------------------------------------------------------------- hover */
@media (hover: hover) and (pointer: fine) {
  .btn-accent:hover { transform: translateY(-1px); }
  .btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }
  .nav-links a:not(.btn):hover { color: var(--accent); }
  .hero-social a:hover { color: var(--accent); }
  .hero-scroll:hover { border-color: var(--accent); }
  a.show-row:hover { transform: translateX(2px); border-bottom-color: rgba(var(--accent-rgb), .45); background: rgba(var(--text-rgb), .02); }
  /* photos are already in colour, so hover is a push-in and a lit seam
     rather than the old grayscale-to-colour release */
  .g-item:hover img { transform: scale(1.02); }
  .g-item:hover { border-color: var(--line-strong); }
  .facade:hover .facade-thumb img { transform: scale(1.03); }
  .facade:hover .facade-glyph { border-color: var(--accent); background: rgba(var(--accent-rgb), .18); }
  .lb-close:hover, .lb-prev:hover, .lb-next:hover { color: var(--accent); }
  .stages-band:hover .stages-track { animation-play-state: paused; }
}

/* ---------------------------------------------------------------- reveal */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .32s var(--ease-out) var(--d, 0s), transform .32s var(--ease-out) var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }
/* media gets a clip-path wipe on top of the fade */
/* The wipe lives on the PICTURE child, not the element: plate items (.g-item,
   .about-photo) already spend their own clip-path on the corner cut, and the
   .reveal-media.in inset(0) used to override it. Every reveal-media element
   wraps a picture, and --d inherits, so the stagger still applies. */
.reveal-media picture {
  /* MUST stay block: <picture> is inline by default, and a clip-path on an
     inline box collapses it (this silently zeroed the About portrait, whose
     lazy <img> then never entered the viewport and never loaded). */
  display: block;
  clip-path: inset(14% 0 14% 0);
  transition: clip-path .38s var(--ease-out) var(--d, 0s);
}
.reveal-media.in picture { clip-path: inset(0 0 0 0); }
/* injected show rows animate via keyframes so the reveal never fights the
   row's own hover transition */
.reveal-row { opacity: 0; }
.reveal-row.in { opacity: 1; animation: rowrise .32s var(--ease-out) backwards; animation-delay: var(--d, 0s); }
@keyframes rowrise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .reveal-media picture { clip-path: none; transition: none; }
  .reveal-row { opacity: 1; }
  .reveal-row.in { animation: none; }
  html { scroll-behavior: auto; }
  .hero-scroll span { animation: none; }
  .hero-logo-wrap::after { animation: none; opacity: 0; }
  .stages-toggle { display: none; }
  .hero-layer { transition: none; }
  .form-msg.ok, .form-msg.err { animation: none; }
  .btn, .show-row, .g-item, .g-item img, .nav-links, .nav-scrim, .book-sticky, .facade-thumb img { transition: none; }
  .nav-links.open { transition: none; }
  .nav-links a, .nav-links.open a { transition: none; transition-delay: 0s; }
  .stages-track { animation: none; width: auto; flex-wrap: wrap; justify-content: center; }
  .stages-row { flex-wrap: wrap; justify-content: center; row-gap: 6px; }
  .stages-row[aria-hidden="true"] { display: none; }
  .lightbox[open], .lightbox[open] figure { animation: none; }
}

/* ------------------------------------------------------------ responsive */
@media (max-width: 1020px) {
  .press-grid { grid-template-columns: 1fr 1fr; }
  .press-grid > .card:last-child { grid-column: 1 / -1; }
  .music-grid { grid-template-columns: 1fr; }
  .music-side { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  html { scroll-padding-top: 72px; }
  .two-col { grid-template-columns: 1fr; gap: 44px; }
  .about-photo { max-width: 460px; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .section { padding: 68px 0; }
  .tier-1 { padding: 92px 0; }
  .booking-form { padding: 22px 18px; }
  .nav-links {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(320px, 80vw);
    background: rgba(8,10,14,.98);
    border-left: 1px solid var(--line);
    flex-direction: column;
    justify-content: center;
    gap: 34px;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .25s ease, visibility 0s .25s;
  }
  .nav-links.open { transform: none; visibility: visible; transition: transform .25s ease; }
  .nav-links a { opacity: 0; transform: translateX(14px); transition: opacity .2s ease, transform .2s ease; }
  .nav-links.open a { opacity: 1; transform: none; }
  .nav-links.open a:nth-child(1) { transition-delay: .03s; }
  .nav-links.open a:nth-child(2) { transition-delay: .06s; }
  .nav-links.open a:nth-child(3) { transition-delay: .09s; }
  .nav-links.open a:nth-child(4) { transition-delay: .12s; }
  .nav-links.open a:nth-child(5) { transition-delay: .15s; }
  .nav-actions { gap: 6px; margin-left: 0; }
  .nav-burger { display: block; position: relative; z-index: 60; }
  .nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
@media (max-width: 640px) {
  .nav-book-full { display: none; }
  .hero-kicker { letter-spacing: .16em; text-indent: .16em; font-size: 12px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(4) { border-left: 0; }
  .stat { border-top: 1px solid var(--line); }
  .stat:nth-child(-n+3) { border-top: 0; }
  .music-side { grid-template-columns: 1fr; }
  .f-row { grid-template-columns: 1fr; }
  .show-row { grid-template-columns: 76px 1fr; gap: 6px 16px; }
  .show-date b { font-size: 36px; }
  .show-row .btn { grid-column: 2; justify-self: start; }
  .press-grid { grid-template-columns: 1fr; }
  .lb-prev, .lb-next { font-size: 40px; padding: 10px 8px; }
  .lb-prev { left: 2px; }
  .lb-next { right: 2px; }
}
