/* =========================================================
   Stone The Radio — pop-punk rebrand
   Design tokens per design/README handoff. Recreated from the
   Claude Design reference (design/Stone The Radio.dc.html) as
   production-ready static HTML/CSS/JS — the runtime template
   engine (support.js) was intentionally NOT ported.
   ========================================================= */

:root {
  --ink: #08080a;
  --ink-raised: #0d0d10;
  --ink-panel: #101013;
  --bone: #f2efe8;
  --bone-dim: rgba(242, 239, 232, 0.8);
  --acid: #c9f227;
  --magenta: #ee1d78;
  --blue: #2438cf;
  --blue-lift: #6a78ff; /* use for text/strokes on dark — raw --blue fails contrast */
  --hair: rgba(242, 239, 232, 0.16);

  --f-display: "Anton", Impact, sans-serif;
  --f-head: "Archivo Black", Impact, sans-serif;
  --f-body: "Space Grotesk", Helvetica, Arial, sans-serif;
  --f-mono: "Space Mono", ui-monospace, monospace;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--f-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a {
  color: var(--acid);
  text-decoration: none;
  transition: background-color .12s linear, color .12s linear, border-color .12s linear;
}
a:hover { color: var(--magenta); }

::selection { background: var(--magenta); color: var(--ink); }

/* Visible, on-brand focus ring for keyboard users */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 2px;
}

.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;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 100;
  background: var(--acid);
  color: var(--ink);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 10px 16px;
  transition: top .15s ease;
}
.skip-link:focus { top: 12px; color: var(--ink); }

/* ---------- texture layers ---------- */
.grain,
.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
}
.grain {
  z-index: 90;
  mix-blend-mode: overlay;
  opacity: .55;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='220'%20height='220'%3E%3Cfilter%20id='n'%3E%3CfeTurbulence%20type='fractalNoise'%20baseFrequency='0.85'%20numOctaves='4'%20stitchTiles='stitch'/%3E%3C/filter%3E%3Crect%20width='220'%20height='220'%20filter='url(%23n)'/%3E%3C/svg%3E");
}
.scanlines {
  z-index: 91;
  opacity: .05;
  background: repeating-linear-gradient(180deg, #fff 0 1px, transparent 1px 4px);
  animation: str-scan 1.1s linear infinite;
}
.halftone {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(#08080a 1.4px, transparent 1.5px);
  background-size: 6px 6px;
}
.halftone--on-photo {
  background-image: radial-gradient(#000 1.2px, transparent 1.3px);
  mix-blend-mode: multiply;
}

/* ---------- keyframes ---------- */
@keyframes str-glitch {
  0%, 90%, 100% { text-shadow: 0 0 0 rgba(0,0,0,0); transform: translate(0,0); }
  91% { text-shadow: -4px 0 var(--magenta), 4px 0 var(--blue-lift); transform: translate(1px,-2px); }
  93% { text-shadow: 4px 0 var(--magenta), -4px 0 var(--acid); transform: translate(-2px,1px); }
  96% { text-shadow: -2px 0 var(--blue-lift), 2px 0 var(--magenta); transform: translate(1px,0); }
}
@keyframes str-flicker {
  0%, 100% { opacity: 1; } 41% { opacity: 1; } 42% { opacity: .3; }
  44% { opacity: 1; } 69% { opacity: .65; } 71% { opacity: 1; }
}
@keyframes str-marquee {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-50%,0,0); }
}
@keyframes str-scan {
  from { background-position: 0 0; }
  to { background-position: 0 6px; }
}

/* Constant chunky stutter — the "jitter" — plus the occasional bigger
   RGB-split flare from str-glitch layered on top. steps(1) keeps every
   move a hard cut, never a smooth ease, to match the grunge aesthetic. */
@keyframes str-jitter {
  0%, 100% { transform: translate(0, 0); }
  8%  { transform: translate(-1px, 1px); }
  16% { transform: translate(1px, 0); }
  24% { transform: translate(0, -1px); }
  32% { transform: translate(-1px, 0); }
  40% { transform: translate(1px, 1px); }
  48% { transform: translate(0, 0); }
  56% { transform: translate(1px, -1px); }
  64% { transform: translate(-1px, -1px); }
  72% { transform: translate(0, 1px); }
  80% { transform: translate(1px, 0); }
  88% { transform: translate(0, 0); }
}

.glitch { animation: str-glitch 8s steps(1) infinite; }
.jitter { animation: str-jitter .5s steps(1) infinite; }
.flicker { animation: str-flicker 6s infinite; }
/* .glitch + .jitter together: the animation shorthand isn't additive across
   classes, so an element wearing both needs one rule listing both animations
   or only the later class in source order would win and silently drop the other. */
.glitch.jitter { animation: str-glitch 8s steps(1) infinite, str-jitter .5s steps(1) infinite; }

/* Scroll-reveal: elements start hidden/offset, JS flips .is-visible when
   they enter the viewport. No-JS and reduced-motion both fall back to
   fully visible — see main.js IntersectionObserver + the media query below. */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-group] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
[data-reveal-group].is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-group].is-visible > *:nth-child(1) { transition-delay: 0ms; }
[data-reveal-group].is-visible > *:nth-child(2) { transition-delay: 40ms; }
[data-reveal-group].is-visible > *:nth-child(3) { transition-delay: 80ms; }
[data-reveal-group].is-visible > *:nth-child(4) { transition-delay: 120ms; }
[data-reveal-group].is-visible > *:nth-child(5) { transition-delay: 160ms; }
[data-reveal-group].is-visible > *:nth-child(n+6) { transition-delay: 200ms; }

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--acid);
  z-index: 100;
  transition: width .08s linear;
}

/* Header gains a harder edge once you've scrolled past the hero */
.site-header.is-scrolled {
  background: rgba(8, 8, 10, .96);
  border-bottom-color: var(--acid);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .glitch, .jitter, .flicker, .marquee-track, .scanlines {
    animation: none !important;
  }
  [data-reveal], [data-reveal-group] > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero__bg picture, .hero__bg img { transform: none !important; }
  .scroll-progress { transition: none; }
}

/* ---------- outlined / stroked type, with fallback ---------- */
.stroke {
  -webkit-text-stroke: 2px var(--tint, var(--bone));
  color: var(--tint, var(--bone));
}
@supports (-webkit-text-stroke: 1px red) {
  .stroke { color: transparent; }
}

.bar-line {
  display: inline-block;
  -webkit-text-stroke: 2px var(--tint, var(--bone));
  color: transparent;
  background-color: color-mix(in srgb, var(--tint, var(--bone)) 20%, transparent);
  padding: 4px 26px;
}
@supports not (-webkit-text-stroke: 1px red) {
  .bar-line { color: var(--tint, var(--bone)); }
}

/* ---------- layout helpers ---------- */
.wrap { max-width: 1440px; margin: 0 auto; }
.eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

section, header, footer { position: relative; }
section[id], header[id] { scroll-margin-top: 84px; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px clamp(14px, 4vw, 56px);
  background: rgba(8, 8, 10, .86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(237, 234, 227, .14);
}
.site-header__logo { display: flex; align-items: center; }
.site-header__logo img { height: 46px; width: auto; }

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.site-nav a { color: var(--bone); }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--acid); }
.site-nav a.btn--cta { color: var(--ink); }
.site-nav a.btn--cta:hover, .site-nav a.btn--cta:focus-visible { color: var(--bone); }

.btn {
  display: inline-block;
  font-family: var(--f-mono);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
}
.btn--cta {
  background: var(--acid);
  color: var(--ink);
  padding: 11px 18px;
  clip-path: polygon(7px 0, 100% 0, calc(100% - 7px) 100%, 0 100%);
}
.btn--cta:hover, .btn--cta:focus-visible { background: var(--magenta); color: var(--bone); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: clamp(80px, 10vw, 130px) clamp(14px, 4vw, 56px);
  background: var(--ink);
  border-bottom: 4px solid var(--magenta);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--ink);
}
.hero__bg picture, .hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
.hero__bg img {
  transform: scale(1.08);
  transform-origin: center;
  will-change: transform;
}
.hero__scrim-x {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8,8,10,.86) 0%, rgba(8,8,10,.45) 42%, rgba(8,8,10,0) 70%);
}
.hero__scrim-y {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,8,10,.55) 0%, transparent 30%, rgba(8,8,10,.75) 100%);
}
.hero__content {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  text-align: left;
}
.hero__eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: var(--bone);
  margin: 0 0 26px;
}
.hero__title {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  margin: clamp(90px, 16vh, 200px) 0 0;
  font-family: var(--f-head);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(30px, 5.4vw, 92px);
  line-height: .94;
  letter-spacing: -.03em;
}
.hero__title .bar-line { transform: rotate(var(--rot, 0deg)); }
.hero__title .bar-line:nth-child(1) { --rot: -0.9deg; --tint: var(--acid); }
.hero__title .bar-line:nth-child(2) { --rot: 0.7deg; --tint: var(--magenta); }
.hero__title .bar-line:nth-child(3) { --rot: -0.6deg; --tint: var(--blue-lift); }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(30px, 4vw, 52px);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.btn--filled { background: var(--bone); color: var(--ink); font-weight: 700; padding: 17px 28px; }
.btn--filled:hover, .btn--filled:focus-visible { background: var(--acid); color: var(--ink); }
.btn--outline { border: 2px solid var(--bone); color: var(--bone); font-weight: 700; padding: 15px 28px; background: transparent; }
.btn--outline:hover, .btn--outline:focus-visible { background: var(--magenta); border-color: var(--magenta); color: var(--bone); }

/* ---------- ticker ---------- */
.ticker {
  position: relative;
  overflow: hidden;
  background: var(--acid);
  color: var(--ink);
  padding: 13px 0;
  border-bottom: 3px solid var(--ink);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: str-marquee 42s linear infinite;
  font-family: var(--f-display);
  font-size: clamp(20px, 2.4vw, 34px);
  text-transform: uppercase;
  letter-spacing: .01em;
  white-space: nowrap;
}

/* ---------- about ---------- */
.about {
  padding: clamp(60px, 9vw, 140px) clamp(14px, 4vw, 56px);
  background: var(--ink);
}
.about .wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(30px, 5vw, 76px);
  align-items: start;
}
.about__photo { position: relative; }
.about__photo-img {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--ink-panel);
  overflow: hidden;
}
.about__photo-img img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  object-position: right center;
  filter: contrast(1.25) saturate(.85);
}
.about__photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(238,29,120,.35), transparent 45%, rgba(36,56,207,.4));
  mix-blend-mode: screen;
  pointer-events: none;
}
.about__badge {
  position: absolute;
  right: -12px; bottom: -18px;
  background: var(--acid);
  color: var(--ink);
  font-family: var(--f-display);
  font-size: clamp(30px, 4vw, 60px);
  line-height: .9;
  text-transform: uppercase;
  padding: 12px 20px;
  transform: rotate(-2deg);
}
.about__eyebrow { color: var(--magenta); }
.about h2 {
  font-family: var(--f-display);
  font-weight: 400;
  margin: 0 0 28px;
  font-size: clamp(38px, 5.6vw, 88px);
  line-height: .88;
  letter-spacing: -.015em;
  text-transform: uppercase;
}
.about h2 em { font-style: normal; color: var(--acid); }
.about__copy {
  display: flex; flex-direction: column; gap: 20px;
  max-width: 620px;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.65;
  color: var(--bone-dim);
}
.about__copy p { margin: 0; text-wrap: pretty; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2px;
  margin-top: 40px;
  border: 2px solid var(--hair);
}
.stat {
  padding: 20px 18px;
  border-right: 2px solid var(--hair);
}
.stat:last-child { border-right: none; }
.stat__num { font-family: var(--f-display); font-size: 44px; line-height: 1; }
.stat__label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(242,239,232,.55);
  margin-top: 6px;
}

/* ---------- shows ---------- */
.shows {
  padding: clamp(60px, 9vw, 130px) clamp(14px, 4vw, 56px);
  background: var(--ink-raised);
  border-top: 3px solid var(--magenta);
}
.shows__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(32px, 4vw, 56px);
}
.shows h2 {
  font-family: var(--f-display);
  font-weight: 400;
  margin: 0;
  font-size: clamp(40px, 6.4vw, 108px);
  line-height: .85;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.shows h2 em { font-style: normal; color: var(--magenta); }
.shows__cta {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 2px solid var(--acid);
  padding-bottom: 6px;
  color: var(--bone);
}
.shows__cta:hover, .shows__cta:focus-visible { color: var(--acid); }

.show-list { border-top: 2px solid rgba(242,239,232,.18); }
.show-row {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: clamp(14px, 3vw, 40px);
  align-items: center;
  padding: clamp(16px, 2vw, 26px) 8px;
  border-bottom: 2px solid rgba(242,239,232,.18);
  color: var(--bone);
}
.show-row:hover, .show-row:focus-visible {
  background: var(--acid);
  color: var(--ink);
}
.show-row__date { text-align: center; }
.show-row__day { font-family: var(--f-display); font-size: clamp(30px, 3.4vw, 50px); line-height: .9; }
.show-row__mon { font-family: var(--f-mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; opacity: .7; }
.show-row__venue { font-family: var(--f-head); font-size: clamp(17px, 1.9vw, 27px); letter-spacing: -.01em; text-transform: uppercase; line-height: 1.1; }
.show-row__place { font-family: var(--f-mono); font-size: 12px; letter-spacing: .1em; opacity: .65; margin-top: 6px; }
.show-row__time { font-family: var(--f-mono); font-size: 12px; letter-spacing: .12em; text-align: right; white-space: nowrap; }

.shows__empty {
  padding: 40px 8px;
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: .08em;
  color: var(--bone-dim);
  border-bottom: 2px solid rgba(242,239,232,.18);
}

@media (max-width: 600px) {
  .show-row {
    grid-template-columns: 72px 1fr;
    grid-template-areas: "date venue" "date time";
  }
  .show-row__date { grid-area: date; }
  .show-row__venue { grid-area: venue; }
  .show-row__time { grid-area: time; text-align: left; margin-top: 6px; }
}

/* ---------- video ---------- */
/* ---------- merch ---------- */
.merch {
  padding: clamp(56px, 8vw, 110px) clamp(14px, 4vw, 56px);
  background: var(--ink-panel);
  text-align: center;
}
.merch .wrap { max-width: 720px; margin: 0 auto; }
.merch__eyebrow { justify-content: center; color: var(--magenta); }
.merch h2 {
  font-family: var(--f-display);
  font-weight: 400;
  margin: 0 0 28px;
  font-size: clamp(38px, 5.6vw, 88px);
  line-height: .88;
  letter-spacing: -.015em;
  text-transform: uppercase;
}
.merch h2 em { font-style: normal; color: var(--acid); }
.merch__lede {
  margin: 0 auto clamp(28px, 3.5vw, 40px);
  max-width: 480px;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.6;
  color: var(--bone-dim);
  text-wrap: pretty;
}

/* ---------- merch collage ---------- */
.merch-collage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  justify-items: center;
  gap: clamp(10px, 2vw, 18px);
  max-width: 900px;
  margin: 0 auto clamp(36px, 4.5vw, 56px);
  padding: 10px 0 26px;
}
.merch-collage__item {
  margin: 0;
  position: relative;
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1 / 1;
  background: var(--bone);
  padding: 10px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .45);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
}
.merch-collage__item::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--tint, var(--acid));
  pointer-events: none;
}
.merch-collage__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--bone);
}
.merch-collage__item--1 { --tint: var(--acid); transform: rotate(-6deg) translateY(10px); z-index: 1; }
.merch-collage__item--2 { --tint: var(--magenta); transform: rotate(4deg) translateY(-14px); z-index: 2; }
.merch-collage__item--3 { --tint: var(--blue-lift); transform: rotate(-3deg) translateY(6px); z-index: 3; }
.merch-collage__item--4 { --tint: var(--magenta); transform: rotate(7deg) translateY(-8px); z-index: 4; }
.merch-collage__item:hover,
.merch-collage__item:focus-within {
  transform: rotate(0deg) translateY(-6px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .55);
  z-index: 5;
}
.merch__cta { display: inline-block; }

@media (max-width: 720px) {
  .merch-collage {
    grid-template-columns: repeat(2, 1fr);
    row-gap: clamp(28px, 6vw, 40px);
    max-width: 420px;
  }
  .merch-collage__item--1 { transform: rotate(-5deg); }
  .merch-collage__item--2 { transform: rotate(4deg); }
  .merch-collage__item--3 { transform: rotate(-4deg); }
  .merch-collage__item--4 { transform: rotate(5deg); }
}

@media (prefers-reduced-motion: reduce) {
  .merch-collage__item { transition: none; }
}

.video-section {
  padding: clamp(60px, 9vw, 130px) clamp(14px, 4vw, 56px);
  background: var(--ink);
}
.video-section .wrap { max-width: 1320px; }
.video-section__eyebrow { color: var(--blue-lift); }
.video-section h2 {
  font-family: var(--f-display);
  font-weight: 400;
  margin: 0 0 clamp(28px, 4vw, 48px);
  font-size: clamp(38px, 5.6vw, 92px);
  line-height: .87;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
/* Video is its own full-width feature; the photo gallery is a separate
   row beneath it — two distinct galleries, not squeezed into one grid. */
.video-frame--wide {
  margin-bottom: clamp(28px, 4vw, 48px);
}

.stage-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 2vw, 20px);
}
@media (max-width: 720px) {
  .stage-gallery { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 460px) {
  .stage-gallery { grid-template-columns: 1fr; }
}

.stage-photo {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(242,239,232,.2);
  aspect-ratio: 4 / 3;
}
.stage-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.15) saturate(.92);
  transition: transform .3s ease, filter .3s ease;
}
.stage-photo:hover img { transform: scale(1.04); filter: contrast(1.2) saturate(1); }

.video-frame {
  position: relative;
  border: 3px solid var(--acid);
  aspect-ratio: 16 / 9;
  background: var(--ink-panel);
  overflow: hidden;
}
@media (max-width: 820px) {
  .video-frame { aspect-ratio: 16 / 9; }
}
.video-frame__poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  background: linear-gradient(160deg, rgba(36,56,207,.55), rgba(238,29,120,.4) 55%, rgba(8,8,10,.9)),
              repeating-linear-gradient(135deg, #131317 0 12px, #0d0d10 12px 24px);
  background-size: cover;
  background-position: center;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.video-frame__play {
  width: clamp(64px, 8vw, 96px);
  height: clamp(64px, 8vw, 96px);
  border-radius: 50%;
  background: var(--acid);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .12s linear, transform .12s linear;
}
.video-frame__poster:hover .video-frame__play,
.video-frame__poster:focus-visible .video-frame__play {
  background: var(--magenta);
  transform: scale(1.06);
}
.video-frame__play svg { width: 34%; height: 34%; fill: var(--ink); margin-left: 4px; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }

/* ---------- bands ---------- */
.bands {
  padding: clamp(60px, 9vw, 130px) clamp(14px, 4vw, 56px);
  background: var(--magenta);
  color: var(--ink);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}
.bands .halftone { opacity: .22; background-size: 7px 7px; }
.bands__eyebrow { color: rgba(8,8,10,.7); }
.bands h2 {
  font-family: var(--f-display);
  font-weight: 400;
  margin: 0 0 20px;
  font-size: clamp(40px, 6.4vw, 106px);
  line-height: .85;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.bands__intro {
  margin: 0 0 clamp(30px, 4vw, 50px);
  max-width: 620px;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.6;
  color: rgba(8,8,10,.82);
  text-wrap: pretty;
}
.chip-grid { display: flex; flex-wrap: wrap; gap: 8px; position: relative; }
.chip {
  font-family: var(--f-mono);
  font-size: clamp(11px, .95vw, 14px);
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 9px 14px;
  border: 2px solid var(--ink);
  background: transparent;
  white-space: nowrap;
  color: var(--ink);
}
.chip:hover { background: var(--ink); color: var(--acid); }

/* ---------- booking ---------- */
.booking {
  overflow: hidden;
  padding: clamp(70px, 10vw, 160px) clamp(14px, 4vw, 56px);
  background: var(--ink-panel);
  border-top: 3px solid var(--acid);
}
.booking__bg {
  position: absolute; inset: 0;
  background-position: center;
  background-size: cover;
  filter: grayscale(1) contrast(1.3) brightness(.35);
}
.booking__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(36,56,207,.5), rgba(238,29,120,.35) 55%, rgba(8,8,10,.9));
  mix-blend-mode: screen;
}
.booking .wrap { position: relative; max-width: 1100px; margin: 0 auto; text-align: center; }
.booking__eyebrow { justify-content: center; color: var(--acid); }
.booking h2 {
  font-family: var(--f-display);
  font-weight: 400;
  margin: 0 0 26px;
  font-size: clamp(40px, 7vw, 116px);
  line-height: .84;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.booking h2 em { font-style: normal; color: var(--acid); }
.booking p.lede {
  margin: 0 auto clamp(32px, 4vw, 48px);
  max-width: 640px;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.6;
  color: var(--bone-dim);
  text-wrap: pretty;
}
.btn--book {
  display: inline-block;
  background: var(--acid);
  color: var(--ink);
  font-family: var(--f-head);
  font-size: clamp(16px, 2vw, 30px);
  text-transform: uppercase;
  letter-spacing: -.01em;
  padding: 20px 34px;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}
.btn--book:hover, .btn--book:focus-visible { background: var(--magenta); color: var(--bone); }

/* ---------- footer ---------- */
.site-footer {
  padding: clamp(46px, 6vw, 84px) clamp(14px, 4vw, 56px) 32px;
  background: var(--ink);
  border-top: 2px solid var(--hair);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}
.footer-grid img { height: 58px; width: auto; margin-bottom: 18px; }
.footer-grid p.desc { margin: 0; font-size: 14px; line-height: 1.6; color: rgba(242,239,232,.6); max-width: 300px; }
.footer-col p.heading {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--magenta);
  margin: 0 0 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-links a { color: rgba(242,239,232,.75); }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--acid); }

.footer-bottom {
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: 22px;
  border-top: 1px solid rgba(242,239,232,.14);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(242,239,232,.45);
}
