:root {
  --ink: #17130f;
  --ink-soft: #40372f;
  --paper: #f4eadc;
  --paper-strong: #fff7eb;
  --line: rgba(45, 36, 27, 0.18);
  --accent: #b75633;
  --accent-dark: #7f3826;
  --tokyo: #2f5968;
  --charcoal: #201b16;
  --muted: #776b60;
  --glass: rgba(255, 247, 235, 0.68);
  --shadow: 0 28px 80px rgba(45, 28, 15, 0.18);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 6%, rgba(183, 86, 51, 0.18), transparent 29rem),
    linear-gradient(135deg, #fbf0df 0%, #efe1cf 46%, #d7c0a8 100%);
  color: var(--ink);
  font-family: Archivo, system-ui, sans-serif;
  letter-spacing: 0;
}

body.drawer-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
canvas,
svg {
  display: block;
}

button {
  font: inherit;
}

::selection {
  background: var(--accent);
  color: var(--paper-strong);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 12;
  pointer-events: none;
  opacity: 0.21;
  mix-blend-mode: multiply;
  background-image:
    linear-gradient(115deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.05)),
    repeating-radial-gradient(circle at 10% 20%, rgba(32, 27, 22, 0.19) 0 1px, transparent 1px 4px);
}

#memory-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.58;
}

.site-header,
.section-shell,
.site-footer {
  position: relative;
  z-index: 1;
}

.anchor-target {
  display: block;
  height: 118px;
  margin-top: -118px;
  visibility: hidden;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 8;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1120px, calc(100% - 32px));
  min-height: 58px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  transform: translateX(-50%);
  box-shadow: 0 18px 55px rgba(35, 24, 16, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(18px);
  background: rgba(255, 247, 235, 0.62);
}

.brand-mark,
.nav-cta,
.button,
.date-list a,
.press-tile {
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), border-color 220ms ease, background 220ms ease;
  will-change: transform;
}

.brand-mark:active,
.nav-cta:active,
.button:active,
.date-list a:active,
.press-tile:active {
  transform: scale(0.98);
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--paper-strong);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  font-weight: 700;
}

.dock-nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.4rem, 1vw, 1rem);
}

.dock-nav a,
.nav-cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border-radius: 999px;
  padding: 0 15px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.dock-nav a:hover,
.dock-nav a.is-active,
.nav-cta:hover {
  background: rgba(32, 27, 22, 0.08);
}

.dock-nav a.is-active {
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(32, 27, 22, 0.08);
}

.nav-cta {
  background: rgba(183, 86, 51, 0.14);
  color: var(--accent-dark);
}

.section-shell {
  width: min(1240px, calc(100% - 40px));
  margin-inline: auto;
}

.hero {
  display: grid;
  width: min(1440px, calc(100% - 56px));
  grid-template-columns: minmax(430px, 0.86fr) minmax(390px, 0.9fr) minmax(230px, 0.42fr);
  gap: clamp(2rem, 4vw, 5rem);
  min-height: 100dvh;
  align-items: center;
  padding-top: 128px;
  padding-bottom: clamp(48px, 8vw, 96px);
}

.hero-copy {
  align-self: center;
  position: relative;
  z-index: 2;
  padding-bottom: 0;
}

.eyebrow,
.section-kicker,
.album-plate span,
.signal-card span,
.press-tile span,
.stream-card span,
.label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow,
.section-kicker {
  color: var(--accent-dark);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 5.5ch;
  margin-top: 1.2rem;
  color: var(--ink);
  font-size: clamp(4.5rem, 9vw, 8.9rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.86;
}

h2 {
  color: var(--ink);
  font-size: clamp(2.1rem, 5vw, 5.4rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 0.93;
}

h3 {
  color: var(--paper-strong);
  font-size: clamp(1.65rem, 3.8vw, 3.7rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 0.94;
}

.hero-lede,
.sound-copy p,
.story-copy p,
.stack-card p {
  max-width: 62ch;
  margin-top: 1.4rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 1.25rem;
  font-weight: 800;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.button.primary {
  border-color: transparent;
  background: var(--charcoal);
  color: var(--paper-strong);
}

.button.secondary {
  background: rgba(255, 247, 235, 0.46);
  color: var(--ink);
}

.hero-media {
  position: relative;
  align-self: center;
  min-height: clamp(560px, 66dvh, 720px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 247, 235, 0.46), rgba(32, 27, 22, 0.16)),
    var(--paper);
  transform-style: preserve-3d;
  box-shadow: var(--shadow);
  isolation: isolate;
  perspective: 1200px;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  z-index: 4;
  border-radius: inherit;
  content: "";
  background:
    linear-gradient(180deg, transparent 58%, rgba(23, 19, 15, 0.22)),
    linear-gradient(90deg, rgba(23, 19, 15, 0.18), transparent 32%);
  pointer-events: none;
}

.hero-media img,
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media .cover-art {
  position: relative;
  z-index: 3;
  border-radius: inherit;
  transform-origin: 44% 52%;
  box-shadow: 24px 0 44px rgba(23, 19, 15, 0.26);
  will-change: transform, filter;
}

.sleeve-shadow {
  position: absolute;
  inset: 3%;
  z-index: 2;
  border-radius: 8px;
  background: rgba(23, 19, 15, 0.34);
  filter: blur(24px);
  transform: translate3d(18px, 22px, -24px);
  opacity: 0.6;
  pointer-events: none;
  will-change: transform, opacity;
}

.vinyl-disc {
  position: absolute;
  top: 50%;
  right: -24%;
  z-index: 2;
  width: min(72%, 500px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #f3e1cf 0 6%, #17130f 6.4% 11%, transparent 11.4%),
    repeating-radial-gradient(circle at 50% 50%, rgba(255, 247, 235, 0.16) 0 1px, transparent 1px 9px),
    conic-gradient(from 20deg, #0f0d0b, #39312a, #11100e, #5a3327, #17130f, #0f0d0b);
  box-shadow: 0 30px 74px rgba(35, 24, 16, 0.3);
  opacity: 0.94;
  transform: translate3d(0, -50%, -24px) rotate(0deg) scale(0.92);
  transform-origin: center;
  pointer-events: none;
  will-change: transform;
}

.vinyl-disc::before {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(255, 247, 235, 0.15);
  border-radius: inherit;
  content: "";
}

.vinyl-disc span {
  position: absolute;
  inset: 36%;
  display: block;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 50%, var(--charcoal) 0 8%, transparent 8.5%),
    linear-gradient(135deg, #e5b27e, #b75633 48%, #7f3826);
  box-shadow: inset 0 1px 0 rgba(255, 247, 235, 0.44);
}

.vinyl-disc i {
  position: absolute;
  inset: 18%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 247, 235, 0.14), transparent 46%);
  mix-blend-mode: screen;
}

.album-plate {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 5;
  width: min(310px, calc(100% - 44px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(32, 27, 22, 0.54);
  color: var(--paper-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  transform-origin: 100% 100%;
  will-change: transform, opacity;
}

.album-plate strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 1.55rem;
  line-height: 1;
}

.hero-side {
  display: grid;
  gap: 1rem;
  align-self: center;
  border-left: 1px solid var(--line);
  padding-left: 1.2rem;
}

.signal-header {
  display: grid;
  gap: 0.28rem;
}

.signal-header strong {
  color: var(--ink);
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1;
}

.label {
  color: var(--muted);
}

.memory-map {
  position: relative;
  display: grid;
  min-height: 260px;
  align-content: start;
  gap: 0.9rem;
}

.route-line {
  position: relative;
  height: 96px;
  margin: 0.1rem 0 0.2rem;
}

.route-line svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.route-base,
.route-draw {
  fill: none;
  stroke-linecap: round;
  stroke-width: 1.6;
}

.route-base {
  stroke: rgba(45, 36, 27, 0.18);
}

.route-draw {
  stroke: var(--accent);
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  filter: drop-shadow(0 6px 10px rgba(183, 86, 51, 0.22));
}

.route-plane {
  position: absolute;
  left: 6%;
  top: 63%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(183, 86, 51, 0.12);
  transform: translate(-50%, -50%);
  will-change: offset-distance, transform;
}

.map-node {
  position: absolute;
  display: grid;
  gap: 0.22rem;
  min-width: 104px;
  border: 0;
  border-radius: 8px;
  padding: 0.66rem 0.72rem;
  background: rgba(255, 247, 235, 0.46);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(45, 36, 27, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), background 220ms ease, box-shadow 220ms ease;
}

.map-node:hover,
.map-node:focus-visible,
.map-node.is-active {
  background: rgba(255, 247, 235, 0.72);
  box-shadow: inset 0 0 0 1px rgba(183, 86, 51, 0.34), 0 14px 34px rgba(45, 28, 15, 0.12);
  transform: translateY(-2px);
}

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

.map-node span,
.memory-card span {
  color: var(--accent-dark);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-node strong {
  font-size: 0.86rem;
  line-height: 1.08;
}

.map-node[data-memory-node="ph"] {
  left: 0;
  top: 61px;
}

.map-node[data-memory-node="tyo"] {
  right: 0;
  top: 8px;
}

.map-node[data-memory-node="tyo"].is-active,
.map-node[data-memory-node="tyo"]:hover,
.map-node[data-memory-node="tyo"]:focus-visible {
  box-shadow: inset 0 0 0 1px rgba(47, 89, 104, 0.34), 0 14px 34px rgba(45, 28, 15, 0.12);
}

.map-node[data-memory-node="tyo"].is-active span,
.map-node[data-memory-node="tyo"]:hover span,
.map-node[data-memory-node="tyo"]:focus-visible span {
  color: var(--tokyo);
}

.memory-card {
  display: grid;
  gap: 0.48rem;
  width: min(100%, 260px);
  min-height: 136px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(255, 247, 235, 0.54);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42), 0 18px 44px rgba(45, 28, 15, 0.1);
  backdrop-filter: blur(16px);
}

.memory-card strong {
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1.03;
}

.memory-card p {
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.42;
}

.signal-note {
  max-width: 24ch;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
}

.streaming-strip {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
  padding-top: clamp(28px, 5vw, 58px);
}

.streaming-copy {
  display: grid;
  align-content: end;
  gap: 0.55rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.streaming-copy h2 {
  max-width: 9ch;
  font-size: clamp(1.9rem, 3.4vw, 3.7rem);
  line-height: 0.94;
}

.release-status {
  display: grid;
  gap: 0.35rem;
  width: min(100%, 270px);
  margin-top: 1.1rem;
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
}

.release-status span,
.stream-card em {
  color: var(--accent-dark);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.release-status strong {
  color: var(--ink);
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(1rem, 1.6vw, 1.32rem);
  font-weight: 800;
  line-height: 1.08;
}

.streaming-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.stream-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  min-height: 138px;
  align-content: stretch;
  overflow: hidden;
  border: 1px solid rgba(45, 36, 27, 0.14);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(255, 247, 235, 0.48);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48);
  cursor: pointer;
  transition: border-color 220ms ease, background 220ms ease;
  will-change: opacity, transform;
}

.stream-card.is-pending {
  cursor: default;
}

.stream-card.is-locked {
  background:
    linear-gradient(135deg, rgba(255, 247, 235, 0.56), rgba(239, 225, 207, 0.36)),
    rgba(255, 247, 235, 0.48);
}

.stream-card.is-live {
  cursor: pointer;
  border-color: rgba(47, 89, 104, 0.28);
  background: rgba(255, 247, 235, 0.72);
}

.stream-card::after {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  width: 42px;
  height: 18px;
  content: "";
  opacity: 0.55;
  background:
    linear-gradient(90deg, var(--accent) 0 3px, transparent 3px 7px),
    linear-gradient(90deg, rgba(32, 27, 22, 0.32) 0 3px, transparent 3px 7px);
  background-size: 7px 18px, 7px 10px;
  background-position: 0 0, 3px 8px;
  transition: opacity 220ms ease, transform 280ms cubic-bezier(0.16, 1, 0.3, 1), background-position 280ms ease;
}

.stream-card.is-live:hover,
.copy-link:hover {
  border-color: rgba(183, 86, 51, 0.42);
  background: rgba(255, 247, 235, 0.72);
}

.stream-card:hover::after {
  opacity: 0.88;
  transform: translateX(-4px);
  background-position: 7px 0, 10px 8px;
}

.stream-card.is-live::before,
.copy-link.is-copied::before {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: var(--tokyo);
  box-shadow: 0 0 0 0 rgba(47, 89, 104, 0.28);
  animation: statusPulse 1.8s ease-out infinite;
}

.stream-card.is-pending::before,
.stream-card.is-locked::before {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: rgba(183, 86, 51, 0.58);
}

.stream-card span,
.stream-card strong,
.stream-logo,
.stream-card em {
  position: relative;
}

.stream-logo {
  align-self: center;
  width: min(128px, 76%);
  max-height: 42px;
  object-fit: contain;
  object-position: left center;
  filter: saturate(0.92) contrast(1.02);
  transform-origin: left center;
  will-change: transform;
}

.stream-card strong {
  max-width: 9ch;
  font-size: clamp(1.15rem, 1.7vw, 1.65rem);
  line-height: 0.96;
}

.stream-card em {
  align-self: end;
  margin-top: 0.72rem;
  color: var(--muted);
}

.stream-card.is-live em,
.copy-link.is-copied em {
  color: var(--tokyo);
}

.stream-card.is-pending .stream-logo,
.stream-card.is-locked .stream-logo {
  opacity: 0.76;
  filter: saturate(0.72) contrast(0.94);
}

.copy-link {
  grid-template-rows: auto 1fr;
  justify-items: start;
  text-align: left;
}

.copy-link strong {
  align-self: end;
}

.copy-link {
  border-style: dashed;
}

.copy-link.is-copied {
  border-color: rgba(47, 89, 104, 0.34);
  background: rgba(255, 247, 235, 0.78);
}

@keyframes statusPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(47, 89, 104, 0.28);
  }
  100% {
    box-shadow: 0 0 0 14px rgba(47, 89, 104, 0);
  }
}

.sound {
  padding-block: clamp(90px, 12vw, 150px) 90px;
  scroll-margin-top: 108px;
}

.sound-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.36fr) minmax(300px, 0.64fr);
  gap: clamp(1.4rem, 4vw, 4rem);
  align-items: end;
  margin-top: 1rem;
}

.sound-copy h2 {
  max-width: 11ch;
}

.signal-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(32, 27, 22, 0.14);
  border-radius: 8px;
  padding: clamp(1.2rem, 3vw, 2rem);
  background: rgba(255, 247, 235, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

.signal-card::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(183, 86, 51, 0.2), transparent 17rem);
  transition: opacity 180ms ease;
}

.signal-card:hover::before {
  opacity: 1;
}

.signal-card > * {
  position: relative;
}

.texture-preview {
  display: grid;
  gap: 0.42rem;
  min-height: 132px;
  margin-top: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 1rem;
  background:
    linear-gradient(135deg, rgba(255, 247, 235, 0.72), rgba(239, 225, 207, 0.48)),
    rgba(255, 247, 235, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42), 0 18px 44px rgba(45, 28, 15, 0.1);
  backdrop-filter: blur(16px);
  pointer-events: none;
  transform: translate3d(var(--preview-x, 0), var(--preview-y, 0), 0);
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), border-color 220ms ease;
  will-change: transform;
}

.texture-preview::after {
  display: block;
  width: 100%;
  height: 34px;
  margin-top: 0.2rem;
  content: "";
  opacity: 0.68;
  background:
    linear-gradient(90deg, var(--texture-color, var(--accent)) 0 2px, transparent 2px 8px),
    linear-gradient(90deg, rgba(32, 27, 22, 0.18) 0 2px, transparent 2px 8px);
  background-size: 8px 20px, 8px 12px;
  background-position: 0 3px, 4px 15px;
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
  animation: textureWave 1.8s linear infinite;
}

.texture-preview span {
  color: var(--texture-color, var(--accent-dark));
}

.texture-preview strong {
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 0.98;
}

.texture-preview p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
}

.texture-list {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.texture-list li {
  min-width: 0;
}

.texture-list button {
  position: relative;
  display: grid;
  width: 100%;
  grid-template-columns: 92px 1fr 74px;
  gap: 1rem;
  align-items: center;
  border-top: 1px solid var(--line);
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  padding-top: 1rem;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.texture-list button::before {
  position: absolute;
  inset: 0 -0.55rem -0.45rem;
  border-radius: 8px;
  content: "";
  opacity: 0;
  background: rgba(255, 247, 235, 0.5);
  transform: scaleX(0.98);
  transition: opacity 180ms ease, transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.texture-list button:hover::before,
.texture-list button:focus-visible::before,
.texture-list button.is-active::before {
  opacity: 1;
  transform: scaleX(1);
}

.texture-list button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}

.texture-list strong,
.texture-list em,
.texture-list i {
  position: relative;
}

.texture-list strong {
  color: var(--ink);
}

.texture-list em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.5;
}

.texture-list i {
  display: block;
  justify-self: end;
  width: 68px;
  height: 24px;
  opacity: 0.48;
  background:
    linear-gradient(90deg, var(--texture-color, var(--accent)) 0 2px, transparent 2px 7px),
    linear-gradient(90deg, rgba(32, 27, 22, 0.24) 0 2px, transparent 2px 7px);
  background-size: 7px 22px, 7px 12px;
  background-position: 0 1px, 3px 11px;
  transform-origin: right center;
  transition: opacity 180ms ease, transform 220ms cubic-bezier(0.16, 1, 0.3, 1), background-position 220ms ease;
}

.texture-list button:hover i,
.texture-list button:focus-visible i,
.texture-list button.is-active i {
  opacity: 0.9;
  transform: scaleY(1.18);
  background-position: 7px 1px, 10px 11px;
}

@keyframes textureWave {
  to {
    background-position: 16px 3px, 20px 15px;
  }
}

.marquee {
  width: 100vw;
  margin-top: 90px;
  margin-left: calc((100vw - min(1240px, calc(100vw - 40px))) / -2);
  overflow: hidden;
  border-block: 1px solid var(--line);
  color: var(--charcoal);
  font-size: clamp(2.2rem, 8vw, 7.5rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 2.2rem;
  padding-block: 0.22em;
}

.story {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(1.6rem, 5vw, 5rem);
  align-items: start;
  min-height: 118dvh;
  padding-block: 110px 150px;
  scroll-margin-top: 108px;
}

.story-image {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.story-image img {
  filter: saturate(0.82) contrast(1.05);
  object-position: center top;
}

.story-copy {
  padding-top: clamp(16px, 7vw, 110px);
}

.story-copy h2 {
  max-width: 10ch;
  margin-top: 0.8rem;
}

.bio-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 640px;
  margin-top: 2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(45, 36, 27, 0.12);
}

.bio-facts div {
  display: grid;
  gap: 0.4rem;
  min-height: 104px;
  align-content: end;
  padding: 1rem;
  background: rgba(255, 247, 235, 0.52);
}

.bio-facts span {
  color: var(--accent-dark);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bio-facts strong {
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.85rem);
  line-height: 0.98;
}

.quote-panel {
  max-width: 560px;
  margin-top: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 1.2rem;
  background: rgba(255, 247, 235, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(18px);
}

@media (min-width: 981px) {
  .story-image {
    position: sticky;
    top: 118px;
    height: min(690px, calc(100dvh - 150px));
    min-height: 0;
  }
}

blockquote {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.28rem, 2vw, 1.7rem);
  font-weight: 800;
  line-height: 1.08;
}

cite {
  display: block;
  margin-top: 0.9rem;
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}

.stack {
  isolation: isolate;
  padding-block: 64px 120px;
}

.stack::before {
  position: absolute;
  top: -132px;
  right: calc((100vw - 100%) / -2);
  bottom: 0;
  left: calc((100vw - 100%) / -2);
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 82% 0%, rgba(183, 86, 51, 0.12), transparent 28rem),
    linear-gradient(135deg, #fbf0df 0%, #efe1cf 54%, #dfcbb5 100%);
}

.stack-content {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 5vw, 5rem);
  min-height: min(720px, calc(100dvh - 120px));
  align-items: center;
  border-block: 1px dashed rgba(45, 36, 27, 0.22);
  padding-block: clamp(1.4rem, 4vw, 3rem);
}

@media (min-width: 721px) and (hover: hover) and (pointer: fine) {
  .stack {
    min-height: 300dvh;
  }

  .stack-content {
    position: sticky;
    top: 96px;
  }
}

.stack-rail {
  position: relative;
  display: grid;
  align-items: stretch;
  min-height: 390px;
  padding-left: 1.4rem;
}

.stack-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleY(0.333);
  transform-origin: top left;
}

.stack-list {
  display: grid;
  align-content: space-between;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.stack-list li {
  color: rgba(23, 19, 15, 0.38);
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.stack-stage {
  position: relative;
  min-height: min(520px, calc(100dvh - 220px));
}

.stack-card {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: clamp(1.4rem, 4vw, 3.4rem);
  background:
    linear-gradient(90deg, rgba(20, 16, 12, 0.9) 0%, rgba(20, 16, 12, 0.74) 48%, rgba(20, 16, 12, 0.38) 100%),
    linear-gradient(0deg, rgba(20, 16, 12, 0.76), rgba(20, 16, 12, 0.12)),
    url("./assets/places/philippines.webp") center / cover no-repeat,
    var(--charcoal);
  color: var(--paper-strong);
  box-shadow: 0 34px 78px rgba(33, 22, 13, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(28px);
}

.stack-card:first-child {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.stack-card:nth-child(2) {
  background:
    linear-gradient(90deg, rgba(30, 21, 16, 0.9) 0%, rgba(43, 29, 21, 0.72) 48%, rgba(43, 29, 21, 0.34) 100%),
    linear-gradient(0deg, rgba(30, 21, 16, 0.76), rgba(30, 21, 16, 0.08)),
    url("./assets/places/japan.jpeg") center / cover no-repeat,
    var(--accent-dark);
}

.stack-card:nth-child(3) {
  background:
    linear-gradient(90deg, rgba(18, 15, 12, 0.92) 0%, rgba(18, 15, 12, 0.7) 50%, rgba(18, 15, 12, 0.3) 100%),
    linear-gradient(0deg, rgba(18, 15, 12, 0.82), rgba(18, 15, 12, 0.16)),
    url("./assets/song/cover.webp") center / cover no-repeat,
    var(--charcoal);
}

.stack-card > span {
  position: absolute;
  top: 1.1rem;
  right: 1.2rem;
  color: rgba(255, 247, 235, 0.4);
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 700;
  line-height: 1;
}

.stack-card p {
  max-width: 58ch;
  color: rgba(255, 247, 235, 0.72);
}

.dates {
  display: grid;
  grid-template-columns: minmax(230px, 0.6fr) minmax(0, 1fr);
  gap: clamp(2rem, 7vw, 7rem);
  padding-block: 80px 130px;
  scroll-margin-top: 108px;
}

.dates h2 {
  max-width: 8ch;
  margin-top: 0.8rem;
}

.date-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.date-list article {
  display: grid;
  grid-template-columns: 86px 1fr 150px 116px;
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 1.4rem 0;
}

.date-list time,
.date-list span {
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.date-list strong {
  color: var(--ink);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.date-list a {
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.7rem 0.9rem;
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.date-list a:hover {
  background: rgba(183, 86, 51, 0.11);
}

.press {
  position: relative;
  isolation: isolate;
  width: min(100%, 100vw);
  padding-block: clamp(82px, 9vw, 128px);
  color: var(--paper-strong);
  scroll-margin-top: 108px;
}

.press::before {
  position: absolute;
  top: 0;
  right: calc((100vw - 100%) / -2);
  bottom: 0;
  left: calc((100vw - 100%) / -2);
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 84% 10%, rgba(47, 89, 104, 0.3), transparent 30rem),
    radial-gradient(circle at 20% 88%, rgba(183, 86, 51, 0.13), transparent 25rem),
    linear-gradient(180deg, rgba(32, 27, 22, 0.82) 0%, rgba(18, 17, 15, 0.94) 48%, rgba(13, 17, 17, 0.96) 100%),
    repeating-linear-gradient(115deg, rgba(255, 247, 235, 0.035) 0 1px, transparent 1px 7px),
    #181512;
}

.press::after {
  position: absolute;
  inset: 0 calc((100vw - 100%) / -2);
  z-index: -1;
  content: "";
  opacity: 0.52;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(244, 234, 220, 0.18), transparent 18%, transparent 82%, rgba(244, 234, 220, 0.08)),
    repeating-radial-gradient(circle at 12% 20%, rgba(255, 247, 235, 0.055) 0 1px, transparent 1px 5px);
  mix-blend-mode: screen;
}

.press-copy::before {
  position: absolute;
  top: 0;
  right: calc((100vw - 100%) / -2);
  left: calc((100vw - 100%) / -2);
  z-index: -1;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(47, 89, 104, 0.72), transparent);
}

.press-copy {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.press .section-kicker {
  color: var(--accent);
}

.press-copy h2 {
  max-width: 12ch;
  margin-top: 0.8rem;
  color: var(--paper-strong);
}

.press-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.9fr 0.9fr;
  gap: 1rem;
  margin-top: 2rem;
}

.press-tile {
  position: relative;
  display: grid;
  min-height: 180px;
  align-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(255, 247, 235, 0.16);
  border-radius: 8px;
  padding: 1.15rem;
  background:
    linear-gradient(135deg, rgba(255, 247, 235, 0.12), rgba(47, 89, 104, 0.1)),
    repeating-linear-gradient(115deg, rgba(255, 247, 235, 0.025) 0 1px, transparent 1px 5px),
    rgba(255, 247, 235, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 24px 70px rgba(0, 0, 0, 0.2);
}

.press-tile:hover {
  border-color: rgba(47, 89, 104, 0.58);
  background:
    linear-gradient(135deg, rgba(255, 247, 235, 0.12), rgba(47, 89, 104, 0.16)),
    rgba(255, 247, 235, 0.06);
}

.press-tile::after {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 54px;
  height: 2px;
  content: "";
  opacity: 0.72;
  background: var(--tokyo);
  transform: scaleX(0.42);
  transform-origin: right center;
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), opacity 220ms ease;
}

.press-tile:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.press-tile span {
  color: rgba(255, 247, 235, 0.58);
}

.press-tile strong {
  overflow-wrap: anywhere;
  color: var(--paper-strong);
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  line-height: 1;
}

.press-drawer {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  visibility: hidden;
}

.press-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.drawer-scrim {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(32, 27, 22, 0.24);
  opacity: 0;
  cursor: pointer;
  backdrop-filter: blur(2px);
  transition: opacity 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.press-drawer.is-open .drawer-scrim {
  opacity: 1;
}

.drawer-panel {
  position: absolute;
  top: 14px;
  right: 14px;
  bottom: 14px;
  display: grid;
  grid-template-rows: auto 1fr;
  width: min(560px, calc(100% - 28px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 247, 235, 0.92), rgba(239, 225, 207, 0.86)),
    var(--paper);
  box-shadow: 0 34px 90px rgba(35, 24, 16, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.52);
  transform: translateX(104%);
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(26px);
}

.press-drawer.is-open .drawer-panel {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding: clamp(1.1rem, 3vw, 1.6rem);
}

.drawer-header h2 {
  max-width: 8ch;
  margin-top: 0.55rem;
  font-size: clamp(2.2rem, 5vw, 4.3rem);
}

.drawer-close {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 247, 235, 0.62);
  cursor: pointer;
}

.drawer-close span {
  position: absolute;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}

.drawer-close span:first-child {
  transform: rotate(45deg);
}

.drawer-close span:last-child {
  transform: rotate(-45deg);
}

.drawer-body {
  overflow-y: auto;
  padding: clamp(1rem, 3vw, 1.6rem);
}

.drawer-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.35rem;
  position: sticky;
  top: 0;
  z-index: 2;
  margin: calc(clamp(1rem, 3vw, 1.6rem) * -1) calc(clamp(1rem, 3vw, 1.6rem) * -1) 1rem;
  border-bottom: 1px solid var(--line);
  padding: 0.8rem clamp(1rem, 3vw, 1.6rem);
  background: rgba(255, 247, 235, 0.82);
  backdrop-filter: blur(18px);
}

.drawer-tab {
  min-height: 38px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.drawer-tab:hover,
.drawer-tab:focus-visible,
.drawer-tab.is-active {
  border-color: rgba(183, 86, 51, 0.22);
  background: rgba(183, 86, 51, 0.1);
  color: var(--accent-dark);
}

.drawer-tab:active {
  transform: scale(0.98);
}

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

.drawer-tab-panel {
  display: grid;
  gap: 1rem;
}

.drawer-tab-panel[hidden] {
  display: none;
}

.drawer-block,
.drawer-facts,
.drawer-downloads {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 247, 235, 0.54);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.drawer-block {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
}

.drawer-block span,
.drawer-facts span,
.drawer-download span {
  color: var(--accent-dark);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.drawer-block p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.65;
}

.asset-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.asset-preview {
  position: relative;
  display: grid;
  min-height: 260px;
  align-content: end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  color: var(--paper-strong);
  background: var(--charcoal);
  box-shadow: 0 18px 44px rgba(45, 28, 15, 0.16);
}

.asset-preview::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 34%, rgba(18, 15, 12, 0.82)),
    linear-gradient(90deg, rgba(18, 15, 12, 0.22), transparent 48%);
}

.asset-preview img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03);
  transform: scale(1.01);
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1), filter 420ms ease;
}

.asset-preview:hover img {
  filter: saturate(1) contrast(1.08);
  transform: scale(1.055);
}

.asset-preview span,
.asset-preview strong {
  position: relative;
  z-index: 1;
}

.asset-preview span {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.asset-preview strong {
  margin-top: 0.35rem;
  font-size: 1.35rem;
  line-height: 0.98;
}

.drawer-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(96px, auto);
  overflow: hidden;
}

.drawer-facts div {
  display: grid;
  gap: 0.32rem;
  align-content: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-width: 0;
  padding: 1rem;
}

.drawer-facts div:nth-child(2n) {
  border-right: 0;
}

.drawer-facts div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.drawer-facts strong,
.drawer-download strong {
  color: var(--ink);
  line-height: 1.02;
}

.drawer-facts strong {
  display: block;
  overflow-wrap: anywhere;
}

.drawer-downloads {
  display: grid;
  overflow: hidden;
}

.drawer-download {
  display: grid;
  gap: 0.35rem;
  border-bottom: 1px solid var(--line);
  padding: 0.9rem 1rem;
}

.drawer-download:last-child {
  border-bottom: 0;
}

.drawer-download:hover {
  background: rgba(183, 86, 51, 0.08);
}

.drawer-copy-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.drawer-copy {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 247, 235, 0.56);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.drawer-copy:hover {
  background: rgba(183, 86, 51, 0.12);
}

.drawer-copy.is-copied {
  border-color: rgba(47, 89, 104, 0.36);
  background: rgba(47, 89, 104, 0.12);
  color: var(--tokyo);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: min(1240px, calc(100% - 40px));
  margin-inline: auto;
  border-top: 1px solid rgba(45, 36, 27, 0.18);
  padding: 2rem 0 3rem;
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
}

.word-reveal {
  display: inline-block;
  will-change: opacity, transform;
}

@media (max-width: 980px) {
  .hero,
  .sound-grid,
  .story,
  .dates,
  .press-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    align-items: start;
    min-height: auto;
  }

  .hero-media,
  .story-image {
    min-height: min(680px, 78dvh);
  }

  .vinyl-disc {
    right: -22%;
    width: min(68%, 390px);
  }

  .story {
    min-height: auto;
    padding-block: 70px 130px;
  }

  .story-copy {
    padding-top: 0;
  }

  .hero-side {
    grid-template-columns: minmax(120px, 0.5fr) minmax(170px, 0.7fr) minmax(180px, 1fr);
    align-items: center;
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-top: 1rem;
    padding-left: 0;
  }

  .signal-note {
    max-width: 28ch;
  }

  .memory-map {
    min-height: 210px;
  }

  .memory-card {
    max-width: 360px;
  }

  .streaming-strip {
    grid-template-columns: 1fr;
  }

  .streaming-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .date-list article {
    grid-template-columns: 78px 1fr;
  }

  .date-list span,
  .date-list a {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    grid-template-columns: auto 1fr;
    gap: 6px 10px;
    min-height: auto;
    border-radius: 28px;
    padding: 8px 10px 10px;
  }

  .brand-mark {
    grid-column: 1;
    grid-row: 1;
  }

  .dock-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
    width: 100%;
    justify-content: stretch;
    border-top: 1px solid rgba(32, 27, 22, 0.08);
    padding-top: 6px;
  }

  .dock-nav a {
    min-height: 30px;
    justify-content: center;
    padding: 0 6px;
    font-size: 0.72rem;
    line-height: 1;
  }

  .nav-cta {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    min-height: 38px;
    padding-inline: 14px;
  }

  .section-shell,
  .site-footer {
    width: min(100% - 28px, 1240px);
  }

  .hero {
    gap: 1.6rem;
    padding-top: 142px;
    padding-bottom: 44px;
  }

  h1 {
    font-size: clamp(3.9rem, 22vw, 6.2rem);
  }

  .hero-media,
  .story-image {
    min-height: 480px;
  }
  .vinyl-disc {
    right: -28%;
    width: min(76%, 340px);
  }

  .bio-facts {
    grid-template-columns: 1fr;
  }

  .hero-side {
    grid-template-columns: 1fr;
  }

  .memory-map {
    min-height: 240px;
  }

  .streaming-actions {
    grid-template-columns: 1fr;
  }

  .stream-card {
    min-height: 112px;
  }

  .sound {
    padding-top: 82px;
  }

  .sound-copy h2,
  .story-copy h2,
  .dates h2,
  .press-copy h2 {
    max-width: 13ch;
    font-size: clamp(2.4rem, 12vw, 4.1rem);
    line-height: 0.95;
  }

  .sound-copy h2 {
    max-width: 12ch;
  }

  .marquee {
    margin-left: -14px;
  }

  .stack-card {
    position: relative;
    top: auto;
    min-height: 380px;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .stack-card:nth-child(2),
  .stack-card:nth-child(3) {
    top: auto;
  }

  .stack-content {
    grid-template-columns: 1fr;
    min-height: auto;
    border-block-style: solid;
  }

  .stack-rail {
    display: none;
  }

  .stack-stage {
    display: grid;
    gap: 1rem;
    min-height: auto;
  }

  .date-list article {
    grid-template-columns: 1fr;
  }

  .date-list span,
  .date-list a {
    grid-column: auto;
  }

  .press-copy,
  .site-footer {
    display: grid;
  }

  .drawer-facts,
  .drawer-copy-row {
    grid-template-columns: 1fr;
  }

  .asset-preview-grid {
    grid-template-columns: 1fr;
  }

  .asset-preview {
    min-height: 220px;
  }

  .drawer-facts div,
  .drawer-facts div:nth-child(2n),
  .drawer-facts div:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .drawer-facts div:last-child {
    border-bottom: 0;
  }
}

@media (hover: none), (pointer: coarse) {
  .stack-card {
    position: relative;
    top: auto;
    min-height: 380px;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .stack-card:nth-child(2),
  .stack-card:nth-child(3) {
    top: auto;
  }

  .stack-content {
    grid-template-columns: 1fr;
    min-height: auto;
    border-block-style: solid;
  }

  .stack-rail {
    display: none;
  }

  .stack-stage {
    display: grid;
    gap: 1rem;
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

}
