/* ============================================================
   BIG Z — The Listening Room at 2AM
   Drenched violet-indigo · Bodoni Moda + Schibsted Grotesk
   ============================================================ */

:root {
  /* Drenched violet-indigo ladder */
  --void:     oklch(0.11 0.035 300);
  --ground:   oklch(0.155 0.045 298);
  --surface:  oklch(0.20 0.055 296);
  --veil:     oklch(0.26 0.06 296);
  --line:     oklch(0.34 0.055 296);

  /* Ink — high-lightness tints of the hue, never gray */
  --ink:      oklch(0.955 0.012 300);
  --ink-soft: oklch(0.80 0.04 302);

  /* Voice colors */
  --orchid:      oklch(0.72 0.185 330);  /* October magenta-violet */
  --orchid-deep: oklch(0.55 0.20 330);
  --gold:        oklch(0.84 0.115 88);   /* doppa-embroidery gold  */

  --font-display: "Bodoni Moda", "Didot", "Playfair Display", serif;
  --font-body: "Schibsted Grotesk", "Helvetica Neue", Arial, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Elevation — three deliberate steps, dark-surface tuned */
  --shadow-raised:   0 12px 34px rgb(0 0 0 / 0.45);
  --shadow-floating: 0 20px 60px rgb(0 0 0 / 0.5);
  --shadow-overlay:  0 18px 50px rgb(0 0 0 / 0.55);

  /* Vertical rhythm */
  --section-pad: clamp(4.5rem, 10vw, 8.5rem);
  --section-pad-tight: 1rem;

  /* z-scale */
  --z-nav: 40;
  --z-dock: 50;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Film grain over everything */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  pointer-events: none;
  z-index: 100;
  opacity: 0.05;
  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.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

a { color: inherit; }

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

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

h1, h2, h3 { text-wrap: balance; margin: 0; }

.wrap {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

/* ---------------- Skip link ---------------- */

.skip-link {
  position: fixed;
  top: 0.6rem; left: 0.6rem;
  z-index: 60;
  background: var(--gold);
  color: var(--void);
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  padding: 0.6rem 1.1rem;
  transform: translateY(-300%);
}

.skip-link:focus-visible { transform: none; }

/* ---------------- Navigation ---------------- */

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem clamp(1.2rem, 4vw, 3rem);
  transition: background 0.4s, backdrop-filter 0.4s;
}

.site-nav.scrolled {
  background: color-mix(in oklch, var(--void) 82%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 0.1em;
}

.wordmark em {
  font-style: italic;
  color: var(--orchid);
}

.nav-links {
  display: flex;
  gap: clamp(1rem, 3vw, 2.4rem);
  list-style: none;
  margin: 0; padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}

.nav-links a:hover { color: var(--ink); }

.nav-links a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--gold);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font: inherit;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  padding: 0.45rem 1rem;
  cursor: pointer;
}

@media (max-width: 720px) {
  /* Comfortable touch target (≥44px) */
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: color-mix(in oklch, var(--void) 94%, transparent);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-top: 1px solid var(--veil); }
  .nav-links a {
    display: block;
    padding: 1rem clamp(1.2rem, 4vw, 3rem);
    border-bottom: none;
  }
  .nav-links a[aria-current="page"] { color: var(--gold); }
}

/* ---------------- Hero ---------------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 7rem 1rem 5rem;
  isolation: isolate;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("../assets/art/october.jpg");
  background-size: cover;
  background-position: center 30%;
  filter: blur(60px) saturate(1.15) brightness(0.55);
  transform: scale(1.3);
}

/* 404 is served from any URL depth, so it needs a root-absolute asset path */
.hero-backdrop--root { background-image: url("/assets/art/october.jpg"); }

.hero::before {
  /* drenched veil so the ground owns the surface */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 90% at 50% 110%, color-mix(in oklch, var(--orchid-deep) 34%, transparent), transparent 60%),
    linear-gradient(to bottom, color-mix(in oklch, var(--void) 55%, transparent), color-mix(in oklch, var(--ground) 88%, transparent) 75%, var(--ground));
}

.hero-kicker {
  font-size: clamp(0.85rem, 1.6vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.2rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4rem, 16vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin: 0;
}

.hero-title .z {
  font-style: italic;
  color: var(--orchid);
  display: inline-block;
}

.hero-sub {
  max-width: 34ch;
  margin: 1.6rem auto 2.4rem;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: var(--ink-soft);
  line-height: 1.6;
}

.hero-sub strong { color: var(--ink); font-weight: 600; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  translate: -50% 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Entrance choreography */
.js .hero-kicker,
.js .hero-title,
.js .hero-sub,
.js .hero-actions {
  animation: rise 1s var(--ease-out) both;
}
.js .hero-title   { animation-delay: 0.12s; }
.js .hero-sub     { animation-delay: 0.28s; }
.js .hero-actions { animation-delay: 0.42s; }

@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}

/* ---------------- Buttons ---------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.85rem 1.9rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 160ms var(--ease-out), background 0.25s, border-color 0.25s, color 0.25s;
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover { transform: translateY(-2px); }
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--orchid);
  color: var(--void);
}

.btn-primary:hover { background: oklch(0.78 0.17 330); }

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: color-mix(in oklch, var(--surface) 55%, transparent);
}

.btn-ghost:hover { border-color: var(--ink-soft); }

.btn-gold {
  border-color: color-mix(in oklch, var(--gold) 55%, transparent);
  color: var(--gold);
  background: transparent;
}

.btn-gold:hover { background: color-mix(in oklch, var(--gold) 12%, transparent); }

/* ---------------- Coming soon / upcoming release ---------------- */

.upcoming {
  position: relative;
  border-block: 1px solid var(--veil);
  background:
    radial-gradient(80% 140% at 18% 50%, color-mix(in oklch, var(--orchid-deep) 22%, transparent), transparent 65%),
    var(--void);
  padding: clamp(2.4rem, 6vw, 4rem) 0;
}

.upcoming-inner {
  display: grid;
  grid-template-columns: minmax(160px, 260px) 1fr;
  gap: clamp(1.5rem, 5vw, 3.5rem);
  align-items: center;
}

.upcoming-art {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  /* Branded fallback so the slot never reads as empty before art lands */
  background: linear-gradient(150deg, var(--surface), var(--orchid-deep));
  box-shadow:
    0 22px 60px -18px color-mix(in oklch, var(--orchid-deep) 65%, transparent),
    0 8px 24px rgb(0 0 0 / 0.5);
}

.upcoming-art img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.upcoming-label {
  margin: 0 0 0.7rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.upcoming-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  line-height: 1;
  margin: 0 0 0.7rem;
}

.upcoming-title em { font-style: italic; color: var(--orchid); }

.upcoming-copy {
  margin: 0 0 1.6rem;
  max-width: 46ch;
  color: var(--ink-soft);
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.upcoming-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

@media (max-width: 720px) {
  .upcoming-inner { grid-template-columns: 1fr; }
  .upcoming-art { max-width: 240px; }
}

/* ---------------- Sections ---------------- */

.section {
  padding: var(--section-pad) 0;
}

/* Rhythm modifiers — replace one-off inline padding overrides */
.section--flush-top { padding-top: 0; }
.section--after-hero { padding-top: var(--section-pad-tight); }

/* Centered call-to-action row closing a section */
.section-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: clamp(2.5rem, 6vw, 3.5rem);
}

.quote-band .hero-actions { margin-top: 2.2rem; }

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 5.5vw, 3.6rem);
  line-height: 1.05;
}

.section-title em { font-style: italic; color: var(--orchid); }

.section-link {
  color: var(--ink-soft);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}
.section-link:hover { color: var(--gold); border-color: var(--gold); }

/* Scroll reveals — enhance an already-visible default */
.reveal { opacity: 1; transform: none; }
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.62s var(--ease-out), transform 0.62s var(--ease-out);
}
.js .reveal.in { opacity: 1; transform: none; }

/* ---------------- Featured release ---------------- */

.feature {
  display: grid;
  grid-template-columns: minmax(280px, 460px) 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

@media (max-width: 860px) {
  .feature { grid-template-columns: 1fr; }
}

.feature-art {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow:
    0 30px 80px -20px color-mix(in oklch, var(--orchid-deep) 55%, transparent),
    0 10px 30px rgb(0 0 0 / 0.5);
}

.feature-art img { width: 100%; height: auto; }

.feature-label {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 0.9rem;
}

.feature-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 1;
  margin-bottom: 0.6rem;
}

.feature-meta {
  color: var(--ink-soft);
  margin: 0 0 1.8rem;
}

.feature-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* ---------------- Release grid / rows ---------------- */

.release-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(1.2rem, 3vw, 2rem);
}

.release-card {
  position: relative;
  text-decoration: none;
  display: block;
}

.release-cover {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  transform: perspective(900px);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s;
  box-shadow: var(--shadow-raised);
}

@media (hover: hover) and (pointer: fine) {
  .release-card:hover .release-cover {
    transform: perspective(900px) rotateX(3deg) translateY(-6px);
    box-shadow: 0 26px 60px -12px color-mix(in oklch, var(--orchid-deep) 45%, rgb(0 0 0 / 0.6));
  }
}

.release-card:active .release-cover { transform: perspective(900px) scale(0.98); }

.release-cover img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.release-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0.9rem 0 0.15rem;
}

.release-info {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin: 0;
}

/* Play button overlaying covers */
.play-btn {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: none;
  cursor: pointer;
  background: color-mix(in oklch, var(--void) 72%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--ink);
  transition: background 0.25s, color 0.25s, transform 160ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .play-btn:hover { background: var(--orchid); color: var(--void); transform: scale(1.08); }
}

.play-btn:active { transform: scale(0.92); }

.play-btn svg { width: 20px; height: 20px; }
.play-btn .icon-pause { display: none; }
.play-btn.playing .icon-play { display: none; }
.play-btn.playing .icon-pause { display: block; }

.play-btn-inline {
  position: static;
  width: 46px;
  height: 46px;
  flex: none;
  background: var(--surface);
  border: 1px solid var(--line);
}

/* ---------------- Track rows (music page) ---------------- */

.track-list { display: grid; gap: 0.9rem; }

.track-row {
  display: grid;
  grid-template-columns: auto 72px 1fr auto;
  align-items: center;
  gap: 1.1rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--veil);
  border-radius: 12px;
  background: color-mix(in oklch, var(--surface) 45%, transparent);
  transition: border-color 0.3s, background 0.3s;
}

.track-row:hover { border-color: var(--line); background: var(--surface); }

.track-row.playing { border-color: color-mix(in oklch, var(--orchid) 60%, transparent); }

.track-row img {
  width: 72px; height: 72px;
  border-radius: 6px;
  object-fit: cover;
}

.track-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}

.track-sub {
  margin: 0.1rem 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.track-actions { display: flex; align-items: center; gap: 0.8rem; }

.track-apple {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  white-space: nowrap;
  transition: color 0.25s, border-color 0.25s;
}

.track-apple:hover { color: var(--ink); border-color: var(--ink-soft); }

@media (max-width: 620px) {
  .track-row { grid-template-columns: auto 56px 1fr; }
  .track-row img { width: 56px; height: 56px; }
  .track-actions { grid-column: 1 / -1; justify-content: flex-end; }
}

/* ---------------- Split panels (about teaser, merch teaser) ---------------- */

.panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

@media (max-width: 860px) { .panel { grid-template-columns: 1fr; } }

.panel-art {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-floating);
}

.panel-art img { width: 100%; height: auto; }

.panel h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.08;
  margin-bottom: 1.2rem;
}

.panel h2 em { font-style: italic; color: var(--orchid); }

.panel p { color: var(--ink-soft); max-width: 58ch; }

.panel .btn { margin-top: 1.4rem; }

/* ---------------- Quote band ---------------- */

.quote-band {
  background: var(--void);
  border-block: 1px solid var(--veil);
  text-align: center;
  padding: clamp(4rem, 9vw, 7rem) 1rem;
}

.quote-band blockquote {
  margin: 0 auto;
  max-width: 22ch;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.8rem, 5vw, 3.4rem);
  line-height: 1.25;
}

.quote-band .from {
  display: block;
  margin-top: 1.4rem;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------------- From-the-set band ---------------- */

.set-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(320px, 52vw, 620px);
  display: flex;
  align-items: flex-end;
  border-block: 1px solid var(--veil);
}

.set-band-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: grayscale(1) contrast(1.08) brightness(0.9);
}

.set-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 100% at 50% 0%, color-mix(in oklch, var(--void) 55%, transparent), transparent 60%),
    linear-gradient(to top, var(--ground) 3%, color-mix(in oklch, var(--ground) 45%, transparent) 45%, transparent 80%);
}

.set-band-caption {
  margin: 0;
  padding: clamp(1.4rem, 4vw, 2.6rem) clamp(1.2rem, 5vw, 3.5rem);
  width: min(1200px, 92vw);
  margin-inline: auto;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------------- Page hero (inner pages) ---------------- */

.page-hero {
  padding: clamp(9rem, 18vw, 13rem) 0 clamp(3rem, 7vw, 5rem);
  position: relative;
}

.page-hero .hero-kicker { margin-bottom: 0.8rem; }

/* Full-bleed photo variant of the page hero */
.page-hero--photo {
  isolation: isolate;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 35%;
  filter: grayscale(1) contrast(1.05);
}

/* Drench the photo so the violet ground still owns the surface and text stays AA */
.page-hero--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, color-mix(in oklch, var(--ground) 92%, transparent) 30%, transparent 85%),
    linear-gradient(to top, var(--ground) 4%, color-mix(in oklch, var(--ground) 55%, transparent) 55%, color-mix(in oklch, var(--void) 40%, transparent));
}

@media (max-width: 720px) {
  .page-hero-bg { object-position: 62% 30%; }
  .page-hero--photo::before {
    background: linear-gradient(to top, var(--ground) 8%, color-mix(in oklch, var(--ground) 72%, transparent) 60%, color-mix(in oklch, var(--void) 55%, transparent));
  }
}

.page-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 10vw, 6rem);
  line-height: 0.98;
}

.page-title em { font-style: italic; color: var(--orchid); }

.page-lede {
  max-width: 62ch;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  margin-top: 1.6rem;
}

/* ---------------- About page ---------------- */

.prose {
  max-width: 68ch;
  text-wrap: pretty;
}

.prose p { color: var(--ink-soft); margin: 0 0 1.4em; }

.prose p strong { color: var(--ink); }

.prose .drop::first-letter {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--orchid);
  float: left;
  font-size: 3.6em;
  line-height: 0.8;
  padding-right: 0.12em;
  padding-top: 0.05em;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

.about-side {
  position: sticky;
  top: 6.5rem;
  display: grid;
  gap: 1.4rem;
}

.about-side figure { margin: 0; }

.about-side figcaption {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.fact-card {
  border: 1px solid var(--veil);
  border-radius: 12px;
  padding: 1.4rem 1.5rem;
  background: color-mix(in oklch, var(--surface) 50%, transparent);
}

.fact-card dt {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.fact-card dd {
  margin: 0.25rem 0 1rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.fact-card dd:last-child { margin-bottom: 0; }

/* Timeline */
.timeline {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 0;
}

.timeline li {
  display: grid;
  grid-template-columns: 110px 64px 1fr;
  gap: 1.2rem;
  align-items: center;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--veil);
}

.timeline li:first-child { border-top: 1px solid var(--veil); }

.timeline time {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.timeline img { width: 64px; height: 64px; border-radius: 6px; }

.timeline .t-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}

.timeline .t-sub { color: var(--ink-soft); font-size: 0.88rem; margin: 0; }

@media (max-width: 560px) {
  .timeline li { grid-template-columns: 56px 1fr; }
  .timeline time { grid-column: 1 / -1; }
}

/* ---------------- Merch page ---------------- */

.merch-hero {
  min-height: 88svh;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 8rem 1rem 4rem;
}

.merch-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(90% 70% at 50% 120%, color-mix(in oklch, var(--gold) 14%, transparent), transparent 62%),
    radial-gradient(120% 90% at 50% -20%, color-mix(in oklch, var(--orchid-deep) 28%, transparent), transparent 60%);
}

.drop-mark {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid color-mix(in oklch, var(--gold) 45%, transparent);
  border-radius: 999px;
  padding: 0.5rem 1.3rem;
  display: inline-block;
  margin-bottom: 1.8rem;
}

.merch-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 11vw, 6rem);
  line-height: 0.98;
}

.merch-title em { font-style: italic; color: var(--orchid); }

.merch-copy {
  max-width: 52ch;
  margin: 1.8rem auto 2.6rem;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.merch-principles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--veil);
  border: 1px solid var(--veil);
  border-radius: 14px;
  overflow: hidden;
}

.merch-principles article {
  background: var(--ground);
  padding: 2.2rem 1.8rem;
  text-align: left;
}

.merch-principles h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}

.merch-principles p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; }

/* ---------------- Contact page ---------------- */

.contact-list {
  display: grid;
  gap: 1rem;
  max-width: 640px;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--veil);
  border-radius: 14px;
  padding: 1.5rem 1.7rem;
  text-decoration: none;
  background: color-mix(in oklch, var(--surface) 45%, transparent);
  transition: border-color 0.3s, background 0.3s, transform 200ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .contact-card:hover {
    border-color: color-mix(in oklch, var(--orchid) 55%, transparent);
    background: var(--surface);
    transform: translateY(-3px);
  }
}

.contact-card:active { transform: scale(0.99); }

.contact-card .c-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.2rem;
}

.contact-card .c-value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0;
}

.contact-card .c-note { color: var(--ink-soft); font-size: 0.9rem; margin: 0.2rem 0 0; }

.contact-card .arrow { font-size: 1.4rem; color: var(--ink-soft); transition: translate 0.3s var(--ease-out), color 0.3s; }

.contact-card:hover .arrow { translate: 4px 0; color: var(--orchid); }

/* ---------------- Now-playing dock ---------------- */

.dock {
  position: fixed;
  left: 50%;
  bottom: 1.1rem;
  translate: -50% 0;
  z-index: var(--z-dock);
  width: min(560px, calc(100vw - 2rem));
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.65rem 0.8rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: color-mix(in oklch, var(--void) 88%, transparent);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-overlay);
  /* Resting hidden state: tucked below the fold, non-interactive */
  translate: -50% calc(100% + 2rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.dock.is-active {
  visibility: visible;
  pointer-events: auto;
  /* One-shot entrance; `forwards` holds the visible end state */
  animation: dock-in 0.44s var(--ease-out) forwards;
}

@keyframes dock-in {
  from { translate: -50% calc(100% + 2rem); opacity: 0; }
  to   { translate: -50% 0; opacity: 1; }
}

.dock img { width: 46px; height: 46px; border-radius: 8px; }

.dock-info { flex: 1; min-width: 0; }

.dock-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dock-sub {
  margin: 0;
  font-size: 0.75rem;
  color: var(--ink-soft);
}

.dock-progress {
  height: 3px;
  border-radius: 2px;
  background: var(--veil);
  margin-top: 0.45rem;
  overflow: hidden;
}

.dock-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--orchid), var(--gold));
}

.dock .play-btn { position: static; flex: none; width: 44px; height: 44px; background: var(--surface); }

/* ---------------- Footer ---------------- */

.site-footer {
  border-top: 1px solid var(--veil);
  background: var(--void);
  padding: clamp(3rem, 7vw, 5rem) 0 7rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}

@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  line-height: 1;
}

.footer-word em { font-style: italic; color: var(--orchid); }

.footer-tag { color: var(--ink-soft); margin-top: 0.8rem; max-width: 34ch; }

.site-footer h3 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}

.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }

.site-footer ul a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.25s;
}

.site-footer ul a:hover { color: var(--ink); }

@media (max-width: 720px) {
  /* Footer links are the smallest tap targets on the page; give them room */
  .site-footer ul { gap: 0; }
  .site-footer ul a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
}

.footer-bottom {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--veil);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: space-between;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

/* ---------------- Reduced motion ---------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .js .hero-kicker, .js .hero-title, .js .hero-sub, .js .hero-actions {
    animation: none;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.4s ease;
  }

  /* Dock still needs to reach its visible end state without the slide */
  .dock.is-active {
    animation: none;
    translate: -50% 0;
    opacity: 1;
  }

  .btn:hover, .contact-card:hover, .play-btn:hover { transform: none; }

  .release-card:hover .release-cover { transform: perspective(900px); }

  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
