/* NovA - novamusiconline.com
   Design system: "late-night cinema / shoebox of photographs"
   Ground is near-black with zero chroma; warmth lives in the imagery and one accent. */

:root {
  --bg: oklch(0.09 0 0);
  --bg-2: oklch(0.13 0 0);
  --bg-3: oklch(0.18 0 0);
  --ink: oklch(0.95 0 0);
  --ink-2: oklch(0.76 0 0);
  --ink-3: oklch(0.62 0 0);
  --line: oklch(0.26 0 0);
  --line-2: oklch(0.34 0 0);
  --accent: oklch(0.66 0.19 33);
  --accent-2: oklch(0.74 0.17 36);
  --accent-ink: oklch(0.11 0 0);
  --paper: oklch(0.90 0.02 80);

  --display: "Big Shoulders Display", "Arial Narrow", Impact, "Helvetica Neue", sans-serif;
  --body: "Schibsted Grotesk", "Helvetica Neue", Arial, sans-serif;

  --step--1: 0.9375rem;
  --step-0: 1.0625rem;
  --step-1: 1.25rem;
  --step-2: 1.5625rem;
  --step-3: clamp(1.9rem, 1.3rem + 2.4vw, 2.75rem);
  --step-4: clamp(2.6rem, 1.6rem + 4.2vw, 4.5rem);
  --step-5: clamp(3.4rem, 1.2rem + 9vw, 6rem);

  --gutter: clamp(1.25rem, 4vw, 3rem);
  --measure: 62ch;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --z-sticky: 10;
  --z-nav: 20;
  --z-overlay: 30;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: var(--step-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

/* faint film grain over the whole page */
body::after {
  content: "";
  position: fixed; inset: 0;
  z-index: var(--z-overlay);
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 240px 240px;
}

img, picture, video, iframe { max-width: 100%; display: block; }
img { height: auto; }
a { color: var(--accent-2); text-decoration-thickness: 1px; text-underline-offset: 0.15em; }
a:hover { color: var(--ink); }
:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--accent); color: var(--accent-ink); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: var(--step-5); font-weight: 900; }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-3); }
h4 { font-size: var(--step-2); }
p { margin: 0; text-wrap: pretty; }
p + p { margin-top: 1em; }
.lede { font-size: var(--step-1); line-height: 1.5; color: var(--ink); max-width: var(--measure); }
.muted { color: var(--ink-2); }
.measure { max-width: var(--measure); }
.tabular { font-variant-numeric: tabular-nums; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.wrap { width: min(100% - 2 * var(--gutter), 76rem); margin-inline: auto; }
.wrap--narrow { width: min(100% - 2 * var(--gutter), 52rem); margin-inline: auto; }

.skip {
  position: absolute; left: var(--gutter); top: -3rem;
  background: var(--accent); color: var(--accent-ink); padding: 0.5rem 0.9rem;
  font-weight: 700; z-index: calc(var(--z-nav) + 1); text-decoration: none;
}
.skip:focus { top: 0.75rem; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: color-mix(in oklab, var(--bg) 92%, transparent);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  min-height: 4rem;
}
.brand {
  font-family: var(--display); font-weight: 900; font-size: 1.85rem; letter-spacing: 0.02em;
  color: var(--ink); text-decoration: none; line-height: 1;
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.brand small {
  font-family: var(--body); font-weight: 500; font-size: 0.75rem; letter-spacing: 0.01em;
  color: var(--ink-3); text-transform: none; padding-top: 0.2em;
}
.nav { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2rem); }
.nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: clamp(0.9rem, 2vw, 1.75rem); }
.nav a:not(.btn) {
  color: var(--ink-2); text-decoration: none; font-weight: 500; font-size: var(--step--1);
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}
.nav a:not(.btn):hover, .nav a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--accent); }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--line-2); color: var(--ink);
  width: 44px; height: 44px; border-radius: 4px; cursor: pointer; align-items: center; justify-content: center;
}
@media (max-width: 840px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--bg); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 0.5rem var(--gutter) 1.25rem;
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav ul { flex-direction: column; gap: 0; }
  .nav ul a:not(.btn) { display: block; padding: 0.85rem 0; border-bottom: 1px solid var(--line); font-size: var(--step-0); }
  .nav .btn { margin-top: 1rem; justify-content: center; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--body); font-weight: 700; font-size: var(--step--1); line-height: 1;
  padding: 0.85rem 1.2rem; min-height: 44px;
  border: 1px solid var(--line-2); border-radius: 3px;
  color: var(--ink); background: transparent; text-decoration: none; cursor: pointer;
  transition: background-color 0.2s var(--ease-out), border-color 0.2s var(--ease-out), color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}
.btn:hover { background: var(--bg-3); border-color: var(--ink-3); color: var(--ink); }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.btn--primary:hover { background: var(--accent-2); border-color: var(--accent-2); color: var(--accent-ink); }
.btn--lg { font-size: var(--step-0); padding: 1rem 1.5rem; }
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding-block: clamp(3rem, 8vw, 6rem) clamp(3rem, 6vw, 5rem);
  overflow: clip;
}
.hero .wrap {
  display: grid; gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  align-items: center;
}
@media (max-width: 840px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 26rem; margin-inline: auto; }
}
.hero-kicker {
  font-weight: 500; color: var(--ink-2); font-size: var(--step--1);
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem;
}
.hero-kicker::before { content: ""; width: 2rem; height: 2px; background: var(--accent); }
.hero h1 { margin-bottom: 1.25rem; }
.hero h1 .line { display: block; }
.hero .lede { margin-bottom: 1.75rem; }
.hero-meta {
  margin-top: 1.5rem; color: var(--ink-3); font-size: var(--step--1);
  display: flex; flex-wrap: wrap; gap: 0.4rem 1rem;
}
.hero-meta span + span::before { content: "·"; margin-right: 1rem; color: var(--line-2); }

/* the cover as a physical print */
.print {
  position: relative;
  width: 100%;
  padding: 3.5%;
  background: var(--paper);
  box-shadow:
    0 1px 0 oklch(1 0 0 / 0.2) inset,
    0 30px 60px -20px oklch(0 0 0 / 0.8),
    0 12px 24px -10px oklch(0 0 0 / 0.6);
  transform: rotate(-2deg);
  transition: transform 0.6s var(--ease-out);
}
.print img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.print::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, oklch(1 0 0 / 0.08), transparent 40%, transparent 70%, oklch(0 0 0 / 0.08));
}
.hero-art:hover .print { transform: rotate(-0.5deg); }
.hero-art { position: relative; }
.hero-art::before {
  content: ""; position: absolute; inset: -12% -20% -25%;
  background: radial-gradient(closest-side, oklch(0.40 0.08 60 / 0.35), transparent 70%);
  z-index: -1; filter: blur(10px);
}

/* ---------- streaming links ---------- */
.platforms { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.platforms .btn svg { width: 1.25em; height: 1.25em; }

/* ---------- sections ---------- */
.section { padding-block: clamp(3.5rem, 9vw, 7rem); }
[id] { scroll-margin-top: 5rem; }
.section--tight { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.section--line { border-top: 1px solid var(--line); }
.section--tint { background: var(--bg-2); }
.section-head { margin-bottom: clamp(1.75rem, 4vw, 3rem); max-width: 48rem; }
.section-head h2 { margin-bottom: 0.75rem; }
.section-head p { color: var(--ink-2); font-size: var(--step-1); line-height: 1.45; }
.row-between { display: flex; align-items: end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }

/* ---------- story + tracklist ---------- */
.album-grid {
  display: grid; gap: clamp(2rem, 5vw, 4.5rem);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
}
@media (max-width: 900px) { .album-grid { grid-template-columns: 1fr; } }
.album-story { position: sticky; top: 5.5rem; }
@media (max-width: 900px) { .album-story { position: static; } }
.album-story h2 { margin-bottom: 1.25rem; }
.album-story p { color: var(--ink-2); max-width: var(--measure); }
.album-story p strong { color: var(--ink); font-weight: 600; }
.cast { margin-top: 1.75rem; padding-top: 1.25rem; border-top: 1px solid var(--line); }
.cast dt { font-size: var(--step--1); color: var(--ink-3); margin-bottom: 0.4rem; }
.cast dd { margin: 0; color: var(--ink); font-weight: 500; }
.cast dl { margin: 0; display: flex; flex-wrap: wrap; gap: 0.75rem 2.5rem; }
.cast dt { flex-basis: 100%; margin-bottom: 0; }
.cast dd span { display: block; color: var(--ink-3); font-weight: 400; font-size: var(--step--1); }

.player { margin-top: 1.75rem; }
.player-frame {
  position: relative; aspect-ratio: 16 / 9; background: var(--bg-3);
  border: 1px solid var(--line); overflow: hidden;
}
.player-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.player-caption { margin-top: 0.6rem; color: var(--ink-3); font-size: var(--step--1); display: flex; justify-content: space-between; gap: 1rem; }
.player-caption a { color: var(--ink-2); }

.tracklist { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.tracklist li { border-bottom: 1px solid var(--line); }
.track {
  display: grid; grid-template-columns: 2.25rem minmax(0, 1fr) auto auto;
  align-items: center; gap: 0.75rem 1rem;
  width: 100%; padding: 0.75rem 0.25rem; min-height: 52px;
  background: none; border: 0; color: inherit; font: inherit; text-align: left; cursor: pointer;
  transition: background-color 0.2s var(--ease-out);
}
.track:hover { background: var(--bg-2); }
.track.is-active { background: var(--bg-2); }
.track-n { font-family: var(--display); font-weight: 700; font-size: 1.2rem; color: var(--ink-3); font-variant-numeric: tabular-nums; }
.track.is-active .track-n { color: var(--accent-2); }
.track-title { font-weight: 500; color: var(--ink); }
.track-title small { color: var(--ink-3); font-weight: 400; margin-left: 0.4rem; font-size: var(--step--1); }
.track-time { color: var(--ink-3); font-variant-numeric: tabular-nums; font-size: var(--step--1); }
.track-play { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--ink-2); transition: border-color 0.2s, color 0.2s, background-color 0.2s; }
.track-play svg { width: 12px; height: 12px; }
.track:hover .track-play, .track.is-active .track-play { border-color: var(--accent); color: var(--accent-ink); background: var(--accent); }
.tracklist-foot { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; color: var(--ink-3); font-size: var(--step--1); padding-top: 0.9rem; }

/* ---------- videos ---------- */
.video-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr)); }
.video-grid--feature { grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr)); }
.video { margin: 0; }
.yt { position: relative; display: block; width: 100%; aspect-ratio: 16 / 9; background: var(--bg-3); border: 0; padding: 0; cursor: pointer; overflow: hidden; border-radius: 2px; }
.yt img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9) contrast(1.02); transition: transform 0.7s var(--ease-out), filter 0.4s; }
.yt:hover img { transform: scale(1.03); filter: saturate(1) contrast(1.05); }
.yt::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, oklch(0 0 0 / 0.55), transparent 45%); pointer-events: none; }
.yt-play {
  position: absolute; left: 50%; top: 50%; translate: -50% -50%; z-index: 1;
  width: 64px; height: 58px; border-radius: 14px; background: oklch(0 0 0 / 0.7);
  display: grid; place-items: center; color: #fff; transition: background-color 0.2s, transform 0.3s var(--ease-out);
}
.yt-play svg { width: 26px; height: 26px; margin-left: 3px; }
.yt:hover .yt-play { background: var(--accent); color: var(--accent-ink); transform: scale(1.06); }
.yt iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video figcaption { margin-top: 0.7rem; display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; }
.video figcaption b { font-weight: 600; color: var(--ink); }
.video figcaption span { color: var(--ink-3); font-size: var(--step--1); white-space: nowrap; }

/* ---------- press ---------- */
.press-list { display: grid; gap: 1px; background: var(--bg); border: 1px solid var(--line); grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); }
.press-item { background: var(--bg); box-shadow: 0 0 0 1px var(--line); padding: clamp(1.5rem, 3vw, 2.25rem); display: flex; flex-direction: column; gap: 1rem; }
.press-item blockquote { margin: 0; font-family: var(--display); font-weight: 700; font-size: var(--step-2); line-height: 1.1; letter-spacing: 0.005em; color: var(--ink); text-transform: uppercase; text-wrap: pretty; }
.press-item cite { font-style: normal; color: var(--ink-3); font-size: var(--step--1); margin-top: auto; }
.press-item cite a { color: var(--ink-2); }
.press-item p { color: var(--ink-2); }

/* ---------- about ---------- */
.about-grid { display: grid; gap: clamp(2rem, 5vw, 4rem); grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); align-items: start; }
@media (max-width: 840px) { .about-grid { grid-template-columns: 1fr; } .about-grid .portrait { max-width: 22rem; } }
.portrait { position: relative; }
.portrait img { width: 100%; aspect-ratio: 1; object-fit: cover; filter: grayscale(0.15) contrast(1.03); }
.portrait::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px oklch(1 0 0 / 0.08); pointer-events: none; }
.about-copy p { color: var(--ink-2); max-width: var(--measure); }
.about-copy p strong { color: var(--ink); font-weight: 600; }
.about-copy h2 { margin-bottom: 1.25rem; }

/* ---------- discography ---------- */
.releases { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem) 1.5rem; grid-template-columns: repeat(auto-fill, minmax(min(100%, 13rem), 1fr)); }
.release { display: flex; flex-direction: column; gap: 0.75rem; text-decoration: none; color: inherit; }
.release img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.release:hover img { transform: translateY(-4px); }
.release b { font-weight: 600; color: var(--ink); display: block; }
.release span { color: var(--ink-3); font-size: var(--step--1); }
.release--feature { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); gap: 2rem; align-items: center; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); margin-bottom: 0.5rem; }
@media (max-width: 700px) { .release--feature { grid-template-columns: 1fr; } }
.release--feature .release-copy p { color: var(--ink-2); max-width: var(--measure); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--accent); color: var(--accent-ink); }
.cta-band a { color: var(--accent-ink); }
.cta-band .wrap { display: grid; gap: 2rem; grid-template-columns: minmax(0, 1fr) auto; align-items: center; padding-block: clamp(2.5rem, 6vw, 4.5rem); }
@media (max-width: 840px) { .cta-band .wrap { grid-template-columns: 1fr; } }
.cta-band h2 { font-size: var(--step-4); }
.cta-band p { margin-top: 0.6rem; font-weight: 500; opacity: 0.85; }
.cta-band .btn { border-color: var(--accent-ink); color: var(--accent-ink); }
.cta-band .btn:hover { background: var(--accent-ink); color: var(--accent); }
.cta-band .btn--primary { background: var(--accent-ink); color: var(--ink); }
.cta-band .btn--primary:hover { background: oklch(0.2 0 0); color: var(--ink); }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 1.1rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-weight: 600; font-size: var(--step-1); color: var(--ink); min-height: 44px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--display); font-size: 1.6rem; color: var(--ink-3); line-height: 1; transition: rotate 0.3s var(--ease-out); }
.faq details[open] summary::after { rotate: 45deg; color: var(--accent-2); }
.faq .answer { padding: 0 0 1.25rem; color: var(--ink-2); max-width: var(--measure); }

/* ---------- social ---------- */
.social { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; margin: 0; padding: 0; }
.social a { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--ink-2); text-decoration: none; font-weight: 500; font-size: var(--step--1); padding: 0.6rem 0.85rem; border: 1px solid var(--line); border-radius: 3px; min-height: 44px; }
.social a:hover { color: var(--ink); border-color: var(--ink-3); }
.social svg { width: 18px; height: 18px; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding-block: clamp(2.5rem, 5vw, 4rem) 2rem; color: var(--ink-3); font-size: var(--step--1); }
.site-footer .wrap { display: grid; gap: 2rem; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr); }
@media (max-width: 840px) { .site-footer .wrap { grid-template-columns: 1fr; } }
.site-footer h3 { font-size: 1.1rem; letter-spacing: 0.03em; color: var(--ink-2); margin-bottom: 0.75rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.4rem; }
.site-footer a { color: var(--ink-2); text-decoration: none; }
.site-footer a:hover { color: var(--ink); text-decoration: underline; }
.site-footer .brand { margin-bottom: 0.75rem; }
.site-footer .legal { grid-column: 1 / -1; padding-top: 1.5rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem 1.5rem; }
.placeholder { background: oklch(0.3 0.08 90 / 0.5); color: oklch(0.9 0.1 90); padding: 0 0.3em; border-radius: 2px; font-weight: 600; }

/* ---------- page hero (inner pages) ---------- */
.page-hero { padding-block: clamp(3rem, 7vw, 5.5rem) clamp(2rem, 4vw, 3rem); }
.page-hero h1 { font-size: var(--step-4); margin-bottom: 1rem; }
.page-hero .lede { color: var(--ink-2); }
.crumbs { list-style: none; padding: 0; margin: 0 0 1.5rem; display: flex; gap: 0.5rem; color: var(--ink-3); font-size: var(--step--1); }
.crumbs a { color: var(--ink-3); text-decoration: none; }
.crumbs a:hover { color: var(--ink); }
.crumbs li + li::before { content: "/"; margin-right: 0.5rem; color: var(--line-2); }

/* ---------- press kit ---------- */
.kit { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr)); }
.kit-item { border: 1px solid var(--line); padding: 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; }
.kit-item img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.kit-item b { font-weight: 600; }
.kit-item p { color: var(--ink-3); font-size: var(--step--1); }
.kit-item a.btn { align-self: start; margin-top: auto; }
.bio-block { border: 1px solid var(--line); padding: clamp(1.25rem, 3vw, 2rem); }
.bio-block + .bio-block { margin-top: 1rem; }
.bio-block h3 { font-size: var(--step-2); margin-bottom: 0.75rem; }
.bio-block p { color: var(--ink-2); }

/* ---------- motion ---------- */
.js .reveal { opacity: 0; translate: 0 18px; transition: opacity 0.7s var(--ease-out), translate 0.7s var(--ease-out); }
.js .reveal.in { opacity: 1; translate: 0 0; }
.js .hero h1 .line { display: block; opacity: 0; translate: 0 0.35em; animation: rise 0.9s var(--ease-out) forwards; }
.js .hero h1 .line:nth-child(2) { animation-delay: 0.08s; }
.js .hero h1 .line:nth-child(3) { animation-delay: 0.16s; }
.js .hero-kicker, .js .hero .lede, .js .hero .platforms, .js .hero-meta { opacity: 0; animation: fade 0.8s var(--ease-out) forwards; }
.js .hero-kicker { animation-delay: 0.05s; }
.js .hero .lede { animation-delay: 0.3s; }
.js .hero .platforms { animation-delay: 0.4s; }
.js .hero-meta { animation-delay: 0.5s; }
.js .hero-art .print { opacity: 0; animation: settle 1.1s var(--ease-out) 0.15s forwards; }
@keyframes rise { to { opacity: 1; translate: 0 0; } }
@keyframes fade { to { opacity: 1; } }
@keyframes settle { from { opacity: 0; transform: rotate(-5deg) translateY(16px) scale(0.98); } to { opacity: 1; transform: rotate(-2deg) translateY(0) scale(1); } }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; translate: none; transition: none; }
  .js .hero h1 .line, .js .hero-kicker, .js .hero .lede, .js .hero .platforms, .js .hero-meta, .js .hero-art .print { opacity: 1; animation: none; translate: none; }
  .print, .yt img, .release img, .btn, .track, .yt-play { transition: none; }
  .hero-art:hover .print { transform: rotate(-2deg); }
}

@media print {
  body::after { display: none; }
  .site-header, .yt-play, .player, .cta-band { display: none; }
  body { background: #fff; color: #000; }
}

/* ---------- featured video (home) ---------- */
.feature-grid { display: grid; gap: clamp(2rem, 5vw, 4rem); grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); align-items: center; }
@media (max-width: 840px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-copy h2 { margin-bottom: 1rem; }
.feature-copy h2 .muted { font-size: 0.6em; font-weight: 700; }
.feature-copy p { color: var(--ink-2); margin-bottom: 1.5rem; max-width: var(--measure); }

/* scene number badge on the videos page */
.scene-n {
  position: absolute; left: 0.75rem; top: 0.5rem; z-index: 1;
  font-family: var(--display); font-weight: 900; font-size: 2.6rem; line-height: 1; color: var(--ink);
  text-shadow: 0 2px 14px oklch(0 0 0 / 0.8);
  font-variant-numeric: tabular-nums;
}

/* ---------- mailing-list signup (dialog) ---------- */
.hero-signup { margin-top: 1rem; font-size: var(--step--1); }
.hero-signup a { color: var(--ink-2); }
.hero-signup a:hover { color: var(--accent-2); }
.signup {
  border: 1px solid var(--line-2); border-radius: 6px; padding: 0;
  background: var(--bg-2); color: var(--ink);
  width: min(100% - 2rem, 36rem); max-height: min(92vh, 52rem);
  margin: auto; overflow: hidden;
  box-shadow: 0 40px 80px -30px oklch(0 0 0 / 0.9);
}
.signup::backdrop { background: oklch(0 0 0 / 0.72); }
.signup[open] { display: flex; flex-direction: column; }
.js .signup[open] { animation: signup-in 0.35s var(--ease-out); }
@keyframes signup-in { from { opacity: 0; translate: 0 12px; } to { opacity: 1; translate: 0 0; } }
.signup-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; padding: 1.25rem 1.25rem 1rem; border-bottom: 1px solid var(--line); }
.signup-head h2 { font-size: var(--step-3); margin-bottom: 0.35rem; }
.signup-head p { color: var(--ink-2); font-size: var(--step--1); max-width: 34ch; }
.signup-close { flex: none; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-2); background: transparent; color: var(--ink); cursor: pointer; display: grid; place-items: center; }
.signup-close:hover { background: var(--bg-3); }
.signup-body { background: #fff; overflow: auto; flex: 1 1 auto; min-height: 0; }
.signup-body iframe { display: block; width: 100%; min-width: 500px; height: 520px; border: 0; }
.signup-body noscript p { padding: 1.5rem; color: #111; }
@media (max-width: 560px) { .signup-body iframe { min-width: 100%; } }
@media (prefers-reduced-motion: reduce) { .js .signup[open] { animation: none; } }
.signup:focus, .signup:focus-visible { outline: none; }

/* ---------- featured video (full width) ---------- */
.video--feature .yt { border-radius: 4px; box-shadow: 0 30px 60px -30px oklch(0 0 0 / 0.9); }
.video--feature .yt-play { width: 84px; height: 76px; border-radius: 18px; }
.video--feature .yt-play svg { width: 34px; height: 34px; }
.video--feature figcaption b { font-size: var(--step-1); }
.video-also { margin-top: 1.5rem; max-width: var(--measure); }
.video-also a { color: var(--ink-2); }
.video-also a:hover { color: var(--accent-2); }
