/* ============================================================
   Hall Pass — noir band site
   Design system per DESIGN.md (Visual Spec v2.3)
   ============================================================ */

/* ---- Tokens ---- */
:root {
  --ink:        oklch(0.15 0.004 80);
  --ink-2:      oklch(0.19 0.005 80);
  --ink-3:      oklch(0.24 0.006 80);
  --paper:      oklch(0.95 0.006 85);
  --paper-dim:  oklch(0.72 0.010 85);
  --yellow:     #FEE500;
  --yellow-deep:oklch(0.78 0.16 90);
  --green:      oklch(0.52 0.11 158);

  --maxw: 1180px;
  --pad: clamp(1.25rem, 5vw, 4rem);
  --section-y: clamp(4rem, 11vw, 9rem);

  --r: 4px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1); /* ease-out-expo-ish */

  --font-display: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --font-body: "Barlow", system-ui, sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--paper);
  line-height: 1.6;
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--yellow); color: #000; }

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

/* ---- Type ---- */
.display, h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}
.section-title { font-size: clamp(2.4rem, 7vw, 5rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); line-height: 1; }
p { max-width: 65ch; }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.82rem;
  color: var(--yellow);
}
.lead { font-size: clamp(1.1rem, 1rem + 0.6vw, 1.4rem); color: var(--paper); }
.dim { color: var(--paper-dim); }

/* ---- Layout ---- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
section { padding-block: var(--section-y); }
.section--alt { background: var(--ink-2); }

.section-head { margin-bottom: clamp(2rem, 5vw, 3.5rem); max-width: 760px; }
.section-head .eyebrow { display: inline-flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.section-head .eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--yellow);
}

/* ---- Buttons ---- */
.btn {
  --bw: 2px;
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-display); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  font-size: 1.05rem;
  padding: 0.85rem 1.6rem;
  border: var(--bw) solid var(--yellow);
  border-radius: var(--r);
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease);
  background: var(--yellow); color: #100f0c;
}
.btn:hover { background: var(--yellow-deep); border-color: var(--yellow-deep); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--ghost { position: relative; overflow: hidden; z-index: 0; background: transparent; color: var(--paper); border-color: var(--ink-3); }
.btn--ghost::before {
  content: ""; position: absolute; inset: 0; z-index: -1; background: var(--yellow);
  transform: translateX(-101%); transition: transform .35s var(--ease);
}
.btn--ghost:hover { border-color: var(--yellow); color: #100f0c; transform: translateY(-2px); }
.btn--ghost:hover::before { transform: translateX(0); }
.btn--sm { font-size: 0.92rem; padding: 0.6rem 1.1rem; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--ink) 86%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ink-3);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand img { height: 46px; width: auto; }
.brand .wordmark {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.04em; font-size: 1.5rem; line-height: 1;
}

.nav { display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.2rem); }
.nav a {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; font-size: 0.98rem; color: var(--paper-dim);
  padding: 0.35rem 0; position: relative; transition: color .2s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--paper); }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px; background: var(--yellow);
}

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; color: var(--paper);
}
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav {
    position: fixed; inset: 72px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ink-2); border-bottom: 1px solid var(--ink-3);
    padding: 0.5rem var(--pad) 1.25rem;
    transform: translateY(-12px); opacity: 0; pointer-events: none; visibility: hidden;
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s var(--ease);
  }
  .nav[data-open="true"] { transform: translateY(0); opacity: 1; pointer-events: auto; visibility: visible; }
  .nav a { padding: 0.9rem 0; font-size: 1.2rem; border-bottom: 1px solid var(--ink-3); }
  .nav a:last-child { border-bottom: 0; }
  .nav a[aria-current="page"]::after { display: none; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; min-height: min(92svh, 760px);
  display: grid; align-items: end;
  padding-block: 0;
  overflow: clip;
}
.hero--tall { min-height: min(96svh, 900px); }
.hero__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 42%;
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, var(--ink) 2%, color-mix(in oklab, var(--ink) 35%, transparent) 38%, transparent 70%),
    linear-gradient(to right, color-mix(in oklab, var(--ink) 55%, transparent), transparent 55%);
}
.hero__inner { position: relative; z-index: 2; padding-bottom: clamp(2.5rem, 7vw, 5rem); }
.hero h1 {
  font-size: clamp(3.2rem, 13vw, 9.5rem);
  margin: 0.4rem 0 0.2rem;
  text-shadow: 0 2px 30px rgba(0,0,0,.5);
}
.hero .eyebrow { letter-spacing: 0.28em; }

.show-banner {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 1rem;
  margin: 1.1rem 0 1.6rem; font-family: var(--font-display);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.show-banner .pill {
  background: var(--yellow); color: #100f0c; font-weight: 800;
  padding: 0.3rem 0.7rem; border-radius: var(--r); font-size: 1.05rem;
}
.show-banner .meta { font-size: clamp(1rem, 0.9rem + 0.5vw, 1.35rem); color: var(--paper); font-weight: 600; }
.hero .cta-row { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* hero load animation (only when JS is on, so no-JS still shows content) */
.js .reveal-hero > * { opacity: 0; transform: translateY(18px); }
.js .reveal-hero.in > * { animation: rise .8s var(--ease) forwards; }
.js .reveal-hero.in > *:nth-child(1) { animation-delay: .05s; }
.js .reveal-hero.in > *:nth-child(2) { animation-delay: .15s; }
.js .reveal-hero.in > *:nth-child(3) { animation-delay: .28s; }
.js .reveal-hero.in > *:nth-child(4) { animation-delay: .40s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ============================================================
   About
   ============================================================ */
.about-grid {
  display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.about-grid p + p { margin-top: 1.1rem; }
.about-figure { position: relative; }
.about-figure img { width: 100%; border-radius: var(--r); filter: grayscale(0.25) contrast(1.03); }
@media (max-width: 820px) { .about-grid { grid-template-columns: minmax(0, 1fr); } .about-figure { order: -1; } }

/* About — centered narrative + two-column body */
.about-narrative { max-width: 880px; margin-inline: auto; text-align: center; }
.section-head--center { max-width: 760px; margin-inline: auto; }
.section-head--center .eyebrow { justify-content: center; }
.about-lead { max-width: 60ch; margin: 0 auto clamp(1.4rem, 4vw, 2.2rem); }
.about-cols { columns: 2; column-gap: clamp(2rem, 5vw, 3.5rem); text-align: left; max-width: 820px; margin-inline: auto; }
.about-cols p { break-inside: avoid; max-width: none; margin-bottom: 1.1rem; }
.about-cols p:last-child { margin-bottom: 0; }
@media (max-width: 640px) { .about-cols { columns: 1; } }

/* Feature image band (reused on Bookings) */
.about-hero { margin-block: clamp(1.5rem, 4vw, 2.5rem); }
.about-hero img { width: 100%; border-radius: var(--r); filter: grayscale(0.25) contrast(1.03); }

/* ============================================================
   Band roster — typographic list, no cards
   ============================================================ */
.roster { border-top: 1px solid var(--ink-3); }
.roster li {
  list-style: none;
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between;
  gap: 0.5rem 1.5rem;
  padding: clamp(0.9rem, 2.5vw, 1.5rem) 0;
  border-bottom: 1px solid var(--ink-3);
  transition: padding-left .3s var(--ease);
}
.roster li:hover { padding-left: 0.9rem; }
.roster .name {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(1.5rem, 4.5vw, 2.6rem); line-height: 1;
}
.roster li:hover .name { color: var(--yellow); }
.roster .role { color: var(--paper-dim); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.95rem; }

/* ============================================================
   Video
   ============================================================ */
.video-frame {
  position: relative; aspect-ratio: 16 / 9; width: 100%;
  border-radius: var(--r); overflow: hidden; border: 1px solid var(--ink-3);
  background: #000;
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-frame video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: #000; }
.video-frame .video-play {
  position: absolute; inset: 0; margin: auto; width: 86px; height: 86px; z-index: 2;
  display: grid; place-items: center; border: 0; cursor: pointer;
  background: var(--yellow); color: #100f0c; border-radius: 50%;
  transition: transform .3s var(--ease);
}
.video-frame .video-play svg { width: 38px; height: 38px; margin-left: 4px; }
.video-frame .video-play:hover { transform: scale(1.08); }
.video-frame.playing .video-play { display: none; }

.video-facade {
  position: relative; display: block; aspect-ratio: 16 / 9; width: 100%;
  border-radius: var(--r); overflow: hidden; border: 1px solid var(--ink-3);
}
.video-facade img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.7) brightness(0.7); transition: filter .45s var(--ease), transform .6s var(--ease); }
.video-facade:hover img { filter: grayscale(0.1) brightness(0.78); transform: scale(1.03); }
.video-facade__play {
  position: absolute; inset: 0; margin: auto; width: 86px; height: 86px;
  display: grid; place-items: center;
  background: var(--yellow); color: #100f0c; border-radius: 50%;
  transition: transform .3s var(--ease);
}
.video-facade__play svg { width: 38px; height: 38px; margin-left: 4px; }
.video-facade:hover .video-facade__play { transform: scale(1.08); }
.video-facade__label {
  position: absolute; left: 0; bottom: 0; padding: 1rem 1.2rem;
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
}

/* ============================================================
   Gallery — masonry columns + lightbox
   ============================================================ */
.gallery {
  column-count: 3; column-gap: 14px;
}
@media (max-width: 900px) { .gallery { column-count: 2; } }
@media (max-width: 520px) { .gallery { column-count: 1; } }
.gallery button {
  display: block; width: 100%; margin-bottom: 14px; padding: 0; border: 0; cursor: pointer;
  background: var(--ink-2); border-radius: var(--r); overflow: hidden; break-inside: avoid;
}
.gallery img {
  width: 100%; filter: grayscale(1) contrast(1.05);
  transition: filter .45s var(--ease), transform .45s var(--ease);
}
.gallery button:hover img, .gallery button:focus-visible img { filter: grayscale(0) contrast(1.02); transform: scale(1.03); }

.lightbox {
  position: fixed; inset: 0; z-index: 100;
  display: none; place-items: center;
  background: color-mix(in oklab, var(--ink) 92%, black);
  padding: clamp(1rem, 4vw, 3rem);
}
.lightbox[data-open="true"] { display: grid; }
.lightbox img { max-width: 100%; max-height: 86svh; border-radius: var(--r); box-shadow: 0 20px 80px rgba(0,0,0,.6); }
.lightbox__close {
  position: absolute; top: 1rem; right: 1rem; width: 48px; height: 48px;
  background: var(--ink-2); border: 1px solid var(--ink-3); color: var(--paper);
  border-radius: 50%; cursor: pointer; font-size: 1.5rem; line-height: 1;
}
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: color-mix(in oklab, var(--ink-2) 80%, transparent); border: 1px solid var(--ink-3);
  color: var(--paper); cursor: pointer; font-size: 1.6rem;
}
.lightbox__nav.prev { left: clamp(.5rem, 3vw, 2rem); }
.lightbox__nav.next { right: clamp(.5rem, 3vw, 2rem); }

/* ============================================================
   Forms (signup + booking via Formspree)
   ============================================================ */
.field { display: grid; gap: 0.4rem; margin-bottom: 1.1rem; }
.field label { font-weight: 600; letter-spacing: 0.02em; }
.input, .textarea {
  width: 100%; font: inherit; color: var(--paper);
  background: var(--ink); border: 1px solid var(--ink-3); border-radius: var(--r);
  padding: 0.8rem 0.9rem; transition: border-color .2s var(--ease);
}
.input:focus, .textarea:focus { border-color: var(--yellow); }
.input:focus:not(:focus-visible), .textarea:focus:not(:focus-visible) { outline: none; }
.input:focus-visible, .textarea:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }
.textarea { min-height: 140px; resize: vertical; }
.form-note { color: var(--paper-dim); font-size: 0.9rem; margin-top: 0.4rem; }
.form-success {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.03em; font-size: 1.3rem; color: var(--yellow);
}
.form-error {
  margin-top: 0.8rem; padding: 0.7rem 0.9rem; border-radius: var(--r);
  background: color-mix(in oklab, var(--green) 16%, var(--ink-2));
  border: 1px solid var(--green); color: var(--paper); font-size: 0.95rem;
}

.signup {
  display: flex; flex-wrap: wrap; gap: 0.7rem; align-items: stretch;
  max-width: 520px;
}
.signup .input { flex: 1 1 240px; }

.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 4rem); align-items: start; }
@media (max-width: 820px) { .booking-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Shows (tour)
   ============================================================ */
.shows { display: grid; gap: 1rem; }
.show {
  display: grid; grid-template-columns: auto 1fr auto; gap: clamp(1rem, 4vw, 2.5rem);
  align-items: center;
  padding: clamp(1.1rem, 3vw, 1.8rem) clamp(1.1rem, 3vw, 1.8rem);
  background: var(--ink-2); border: 1px solid var(--ink-3); border-radius: var(--r);
}
.show__date { text-align: center; min-width: 86px; }
.show__date .mon { font-family: var(--font-display); font-weight:700; text-transform: uppercase; color: var(--yellow); letter-spacing: 0.12em; font-size: 0.95rem; }
.show__date .day { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem, 6vw, 3.2rem); line-height: 0.9; }
.show__date .yr { color: var(--paper-dim); font-size: 0.85rem; }
.show__info { display: flex; align-items: center; gap: 0.9rem; }
.venue-seal { width: 56px; height: 56px; flex: none; }
.show__info .venue { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(1.3rem, 3.5vw, 1.9rem); line-height: 1; }
.show__info .where { color: var(--paper-dim); margin-top: 0.35rem; }
.show--past { opacity: 0.6; }
@media (max-width: 620px) {
  .show { grid-template-columns: auto 1fr; }
  .show .btn { grid-column: 1 / -1; justify-content: center; }
}

/* ============================================================
   Listen
   ============================================================ */
.listen-links { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.5rem; }

/* Song list — typographic columns, no cards */
.songlist { column-count: 3; column-gap: clamp(1.6rem, 4vw, 3rem); margin-top: 1.5rem; }
@media (max-width: 860px) { .songlist { column-count: 2; } }
@media (max-width: 520px) { .songlist { column-count: 1; } }
.songlist li {
  break-inside: avoid; list-style: none;
  padding: 0.55rem 0; border-bottom: 1px solid var(--ink-3);
}
.songlist .song { display: block; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.01em; line-height: 1.04; }
.songlist .by { display: block; color: var(--paper-dim); font-size: 0.82rem; margin-top: 0.15rem; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--ink-2); border-top: 1px solid var(--ink-3); padding-block: clamp(2.5rem, 6vw, 4rem); }
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 2rem; align-items: center; justify-content: space-between; }
.foot-brand { display: flex; align-items: center; gap: 0.8rem; }
.foot-brand img { height: 52px; }
.socials { display: flex; gap: 0.8rem; }
.socials a {
  width: 46px; height: 46px; display: grid; place-items: center;
  border: 1px solid var(--ink-3); border-radius: 50%; color: var(--paper);
  transition: color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.socials a:hover { color: var(--yellow); border-color: var(--yellow); transform: translateY(-2px); }
.socials svg { width: 22px; height: 22px; }
.colophon { width: 100%; color: var(--paper-dim); font-size: 0.85rem; padding-top: 1.5rem; border-top: 1px solid var(--ink-3); margin-top: 1rem; }

/* ---- Booking CTA band (Home / Listen / Tour) ---- */
.book-cta { background: var(--ink); border-block: 1px solid var(--ink-3); padding-block: clamp(2.2rem, 5vw, 3.4rem); }
.book-cta__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2rem 2rem; }
.book-cta__line { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(1.6rem, 4vw, 2.7rem); line-height: 1; margin-top: 0.45rem; max-width: 20ch; }

/* ---- Scroll reveal (progressive enhancement: hidden only when .js present) ---- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-hero > * { opacity: 1 !important; transform: none !important; animation: none !important; transition: none !important; }
}

/* ---- Utilities ---- */
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--yellow); color: #000; padding: 0.6rem 1rem; font-weight: 700;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }
.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;
}
/* Honeypot — off-screen, hidden from AT and tab order; bots fill it, Formspree drops it */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ============================================================
   Motion
   ============================================================ */

/* Hero — slow cinematic Ken Burns push */
@keyframes kenburns { from { transform: scale(1.02); } to { transform: scale(1.1); } }
.js .hero__img { animation: kenburns 26s ease-in-out infinite alternate; transform-origin: 62% 42%; }

/* Section eyebrow tick — draws out on reveal */
.section-head .eyebrow::before { transform: scaleX(0); transform-origin: left; transition: transform .6s var(--ease) .12s; }
.js .section-head.in .eyebrow::before,
.js .reveal.in .section-head .eyebrow::before { transform: scaleX(1); }
html:not(.js) .section-head .eyebrow::before { transform: scaleX(1); }

/* Lineup — staggered row entrance + hover */
@keyframes rowin { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.js .roster.in li { animation: rowin .5s var(--ease) backwards; }
.js .roster.in li:nth-child(1) { animation-delay: .04s; }
.js .roster.in li:nth-child(2) { animation-delay: .10s; }
.js .roster.in li:nth-child(3) { animation-delay: .16s; }
.js .roster.in li:nth-child(4) { animation-delay: .22s; }
.js .roster.in li:nth-child(5) { animation-delay: .28s; }
.js .roster.in li:nth-child(6) { animation-delay: .34s; }
.js .roster.in li:nth-child(7) { animation-delay: .40s; }
.roster li { transition: transform .25s var(--ease); }
.roster li .name, .roster li .role { transition: color .25s var(--ease); }
.roster li:hover { transform: translateX(7px); }
.roster li:hover .name { color: var(--yellow); }
.roster li:hover .role { color: var(--paper); }

/* Kinetic marquee strip */
.marquee {
  overflow: hidden; background: var(--ink-2);
  border-block: 1px solid var(--ink-3); padding-block: 0.9rem;
}
.marquee__track {
  display: inline-flex; align-items: center; white-space: nowrap; will-change: transform;
  animation: marquee 34s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.04em; font-size: clamp(1.1rem, 2vw, 1.7rem); padding: 0 1.2rem; color: var(--paper);
}
.marquee__track .dot { color: var(--yellow); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* PCH parallax band */
.parallax {
  position: relative; overflow: hidden; isolation: isolate;
  min-height: clamp(440px, 56vw, 720px); display: grid; align-items: end;
}
.parallax__img {
  position: absolute; left: 0; top: -12%; width: 100%; height: 124%;
  object-fit: cover; object-position: 50% 40%; will-change: transform; z-index: -2;
  animation: pchDrift 16s ease-in-out infinite alternate;
}
@keyframes pchDrift {
  from { transform: scale(1.10) translate3d(-3%, -1.5%, 0); }
  to   { transform: scale(1.22) translate3d(3%, 1.5%, 0); }
}
.parallax__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, var(--ink) 3%, color-mix(in oklab, var(--ink) 30%, transparent) 45%, transparent 80%),
    linear-gradient(to right, color-mix(in oklab, var(--ink) 60%, transparent), transparent 60%);
}
.parallax__inner { padding-block: clamp(3rem, 8vw, 6rem); }
.parallax__line {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(2rem, 5.5vw, 4rem); line-height: 0.95; margin-top: 0.6rem;
  text-shadow: 0 2px 30px rgba(0,0,0,.5); max-width: 16ch;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
  .hero__img { animation: none !important; }
  .roster.in li { animation: none !important; }
  .marquee__track { animation: none !important; }
  .section-head .eyebrow::before { transform: scaleX(1) !important; }
  .parallax__img { animation: none !important; transform: none !important; }
}
