/* =============================================================
   SWIMMING — full-album analysis
   Aesthetic: pool-water gradient · cream ink · burnt-orange/coral
   Sister page to /tribute/mac-miller/ — same type & mechanics,
   palette inverted so water (not cream paper) carries the page.
   ============================================================= */

:root {
  /* water, surface to abyss */
  --surface:       #e3f1ea;
  --surface-deep:  #c3ddd2;
  --tide:          #8fbdba;
  --water:         #4a7c8a;
  --water-deep:    #2c5560;
  --abyss:         #16262d;
  --abyss-deeper:  #0b1418;

  --cream:         #f0e9d2;
  --cream-dim:     rgba(240,233,210,0.7);
  --ink:           #11202f;
  --ink-soft:      #283648;

  --orange:        #c66a35;
  --orange-deep:   #9e4e23;
  --coral:         #df8c87;
  --gold:          #a87f37;
  --sky:           #bfe0f0;

  --rule:          rgba(17,32,47,0.14);
  --rule-on-dark:  rgba(240,233,210,0.16);

  --serif: "Fraunces", "Noto Serif SC", "Times New Roman", serif;
  --body:  "Newsreader", "Noto Serif SC", Georgia, serif;
  --hand:  "Caveat", "Noto Serif SC", cursive;
  --mono:  "JetBrains Mono", ui-monospace, monospace;

  --maxw: 1320px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--surface);
  color: var(--ink);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.65;
  font-feature-settings: "kern", "liga", "onum";
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--orange-deep); text-decoration: none; border-bottom: 1px dashed currentColor; padding-bottom: 1px; transition: color 0.2s, border-color 0.2s; }
a:hover { color: var(--orange); }

em { font-style: italic; }

::selection { background: var(--orange); color: var(--cream); }

@media (hover: hover) and (pointer: fine) {
  ::-webkit-scrollbar { width: 11px; }
  ::-webkit-scrollbar-track { background: var(--surface-deep); }
  ::-webkit-scrollbar-thumb { background: var(--water-deep); border: 3px solid var(--surface-deep); border-radius: 6px; }
  ::-webkit-scrollbar-thumb:hover { background: var(--orange-deep); }
}

/* ---------- ATMOSPHERE ---------- */

.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.07;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.04 0 0 0 0 0.06 0 0 0 0 0.10 0 0 0 0.9 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.vignette {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 8999;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(6,14,18,0.28) 100%);
}
.bubbles {
  position: fixed; inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 8500;
}
.bubble {
  position: absolute;
  bottom: -10vh;
  border-radius: 50%;
  border: 1px solid rgba(240,233,210,0.22);
  background: radial-gradient(circle at 30% 28%, rgba(255,255,255,0.30), rgba(255,255,255,0.03) 62%, transparent 75%);
  animation: bubbleRise linear infinite;
  will-change: transform;
}
@keyframes bubbleRise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  8%   { opacity: 0.55; }
  92%  { opacity: 0.4; }
  100% { transform: translateY(-115vh) translateX(var(--drift, 20px)); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .bubble { animation: none; display: none; }
}

/* ---------- SCROLL PROGRESS / INK CURSOR ---------- */

.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  z-index: 9100; pointer-events: none;
  background: rgba(11,20,24,0.08);
}
.scroll-progress span {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--water) 0%, var(--orange) 60%, var(--coral) 100%);
  box-shadow: 0 0 12px rgba(198,106,53,0.5);
  transition: width 0.12s ease-out;
}

@media (hover: hover) and (pointer: fine) {
  body.ink-active, body.ink-active a, body.ink-active button { cursor: none; }
}
.ink-cursor {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9500;
  mix-blend-mode: multiply;
  opacity: 0; transition: opacity 0.4s ease;
}
.ink-cursor.is-active { opacity: 1; }
.ink-cursor__dot, .ink-cursor__ring {
  position: absolute; top: 0; left: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.ink-cursor__dot {
  width: 7px; height: 7px; background: var(--water-deep);
  transition: width 0.25s ease, height 0.25s ease, background 0.25s ease;
}
.ink-cursor__ring {
  width: 38px; height: 38px;
  border: 1px solid rgba(44,85,96,0.5);
  transition: width 0.35s cubic-bezier(.2,.8,.2,1), height 0.35s cubic-bezier(.2,.8,.2,1),
              border-color 0.3s ease, background 0.3s ease, transform 0.12s linear;
}
.ink-cursor.is-hover .ink-cursor__dot { width: 0; height: 0; background: transparent; }
.ink-cursor.is-hover .ink-cursor__ring { width: 56px; height: 56px; border-color: var(--orange-deep); background: rgba(198,106,53,0.12); }
.ink-cursor.is-down .ink-cursor__ring { width: 24px; height: 24px; border-color: var(--orange-deep); }
@media (hover: none), (pointer: coarse) { .ink-cursor { display: none; } }

/* ---------- NAV ---------- */

.nav {
  position: sticky; top: 0; z-index: 100;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px 32px;
  background: rgba(11,20,24,0.72);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(240,233,210,0.12);
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em;
  color: var(--cream);
}
.nav__brand { display: flex; align-items: baseline; gap: 12px; }
.nav__mark { font-family: var(--serif); font-weight: 800; font-size: 20px; font-style: italic; letter-spacing: -0.01em; color: var(--cream); }
.nav__sub { text-transform: uppercase; opacity: 0.55; font-size: 10px; }
.nav__links { display: flex; gap: 20px; list-style: none; }
.nav__links a {
  color: var(--cream); opacity: 0.75; text-decoration: none; font-style: italic;
  font-family: var(--body); font-size: 13px; border-bottom: none;
  position: relative; transition: color 0.2s, opacity 0.2s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -4px; width: 0; height: 1px;
  background: var(--orange); transition: width 0.3s ease;
}
.nav__links a:hover { opacity: 1; color: var(--coral); }
.nav__links a:hover::after { width: 100%; }
.nav__time { text-align: right; opacity: 0.6; font-size: 11px; }

/* ---------- HERO ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 64px 80px;
  display: flex; flex-direction: column; justify-content: center;
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-deep) 100%);
  color: var(--ink);
  border-bottom: 2px solid var(--water-deep);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(74,124,138,0.14), transparent 45%),
    radial-gradient(ellipse at 85% 85%, rgba(198,106,53,0.08), transparent 50%);
  pointer-events: none;
}
.hero__meta {
  position: absolute; display: flex; flex-direction: column;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; line-height: 1.6; opacity: 0.68;
}
.hero__meta--left  { top: 80px; left: 64px; }
.hero__meta--right { top: 80px; right: 64px; align-items: flex-end; text-align: right; }
.hero__meta .kicker:last-child { font-style: italic; text-transform: none; opacity: 0.9; }

.hero__title { font-family: var(--serif); font-weight: 300; text-align: center; margin: 60px 0 40px; line-height: 0.85; position: relative; z-index: 1; }
.hero__name {
  display: flex; justify-content: center; gap: clamp(2px, 1vw, 14px);
  font-size: clamp(64px, 15vw, 220px);
  font-variation-settings: "SOFT" 80, "opsz" 144, "wght" 500;
  letter-spacing: -0.02em;
  color: var(--water-deep);
}
.hero__name .letter {
  display: inline-block;
  animation: swimBob 4.5s ease-in-out infinite;
  text-shadow: 0 2px 0 rgba(17,32,47,0.06), 0 0 26px rgba(74,124,138,0.25);
}
.hero__name .letter:nth-child(1) { animation-delay: 0.00s; }
.hero__name .letter:nth-child(2) { animation-delay: 0.16s; color: var(--orange-deep); }
.hero__name .letter:nth-child(3) { animation-delay: 0.32s; }
.hero__name .letter:nth-child(4) { animation-delay: 0.48s; }
.hero__name .letter:nth-child(5) { animation-delay: 0.64s; color: var(--coral); }
.hero__name .letter:nth-child(6) { animation-delay: 0.80s; }
.hero__name .letter:nth-child(7) { animation-delay: 0.96s; }
.hero__name .letter:nth-child(8) { animation-delay: 1.12s; color: var(--orange-deep); }
@keyframes swimBob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.hero__alias {
  display: block; text-align: center;
  font-family: var(--body); font-style: italic; font-weight: 300;
  font-size: clamp(15px, 1.6vw, 20px); letter-spacing: 0.02em;
  margin-top: 26px; opacity: 0.78;
}
.hero__alias em { font-style: normal; color: var(--orange-deep); }

.hero__dates {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px;
  max-width: 720px; margin: 46px auto 50px;
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.14em; text-align: center;
}
.hero__dates > span:not(.hero__bridge) { position: relative; padding: 0 0 6px; }
.hero__dates > span:not(.hero__bridge)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--water-deep);
}
.hero__bridge {
  font-family: var(--hand); font-size: 20px; letter-spacing: 0; text-transform: none;
  font-style: italic; color: var(--orange-deep); transform: rotate(-2deg);
}

.hero__abstract { max-width: 640px; margin: 0 auto; text-align: center; font-size: 18px; line-height: 1.7; }
.hero__abstract p + p { margin-top: 18px; }
.hero__abstract em { color: var(--orange-deep); }
.hero__signoff { font-family: var(--hand) !important; font-size: 22px !important; font-style: normal !important; color: var(--water-deep); margin-top: 26px !important; }

.hero__corner { position: absolute; font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.55; }
.hero__corner--tl { top: 24px; left: 32px; }
.hero__corner--tr { top: 24px; right: 32px; }
.hero__corner--bl { bottom: 24px; left: 32px; }
.hero__corner--br { bottom: 24px; right: 32px; }

/* ---------- DIVIDER ---------- */
.divider {
  display: flex; justify-content: center; padding: 34px 0;
  color: var(--water); background: var(--surface-deep);
  border-bottom: 1px solid var(--rule);
}
.divider svg { width: min(280px, 60vw); height: 22px; opacity: 0.75; }

/* ---------- CHAPTER / TONE SYSTEM ---------- */

.chapter, .cover-concept, .tracks-section, .reception, .after, .outro { position: relative; }

.chapter { padding: 100px 64px; }
.chapter__header { max-width: 900px; margin: 0 auto 64px; text-align: center; }
.chapter__num {
  display: inline-block; position: relative; padding: 6px 18px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--orange-deep); margin-bottom: 16px;
}
.chapter__num::before, .chapter__num::after { content: ""; position: absolute; top: 50%; width: 32px; height: 1px; background: currentColor; opacity: 0.45; }
.chapter__num::before { right: 100%; }
.chapter__num::after  { left: 100%; }
.chapter__title {
  font-family: var(--serif); font-weight: 400; font-size: clamp(34px, 5vw, 68px);
  font-variation-settings: "SOFT" 80, "opsz" 144; line-height: 1.08; letter-spacing: -0.02em;
  max-width: 15ch; margin: 0 auto;
}
.chapter__title em { font-style: italic; color: var(--orange-deep); }
.chapter__sub { display: block; margin-top: 16px; font-style: italic; font-size: 15px; opacity: 0.7; }

.chapter__body { max-width: var(--maxw); margin: 0 auto; }
.two-col { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); gap: 60px; align-items: start; }

.prose { font-size: 18px; line-height: 1.75; }
.prose p + p { margin-top: 20px; }
.prose em { color: var(--orange-deep); }
.prose--wide { max-width: 72ch; margin: 0 auto; font-size: 18px; line-height: 1.75; }
.prose--wide p + p { margin-top: 20px; }
.prose--wide em { color: var(--orange-deep); }

.lede {
  font-family: var(--serif); font-variation-settings: "SOFT" 100, "opsz" 24, "wght" 320;
  font-size: 23px; line-height: 1.5; max-width: 62ch; margin: 0 auto 50px; text-align: center;
}
.lede em { color: var(--orange); }

.dropcap { position: relative; }
.drop {
  float: left; font-family: var(--serif); font-size: 88px; line-height: 0.82;
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 800;
  color: var(--water-deep); padding: 6px 12px 0 0; font-style: italic;
}

/* tone variants — the page's "surface to abyss and back" arc */
.tone-surface { background: linear-gradient(180deg, var(--surface) 0%, var(--surface-deep) 100%); color: var(--ink); }
.tone-mid     { background: linear-gradient(180deg, var(--surface-deep) 0%, var(--tide) 100%); color: var(--ink); }
.tone-rise    { background: linear-gradient(180deg, var(--tide) 0%, var(--surface-deep) 100%); color: var(--ink); }
.tone-canvas  { background: var(--surface-deep); color: var(--ink); }
.tone-warm    { background: linear-gradient(180deg, var(--surface) 0%, #f3e4cf 100%); color: var(--ink); }

.tone-deep, .tone-abyss, .tone-dusk, .outro { color: var(--cream); }
.tone-deep  { background: linear-gradient(180deg, var(--water) 0%, var(--water-deep) 100%); }
.tone-abyss { background: linear-gradient(180deg, var(--water-deep) 0%, var(--abyss) 55%, var(--abyss-deeper) 100%); }
.tone-dusk  { background: radial-gradient(ellipse at 50% 0%, rgba(198,106,53,0.22), transparent 62%), var(--abyss); }

/* seam fix: when two sections in a row share a tone family, the second one
   picks up solid from where the first one's gradient ended, instead of
   restarting light-to-dark and drawing a visible band at the boundary */
.pullquote.tone-deep { background: var(--water-deep); }
.reception.tone-warm { background: #f3e4cf; }

/* dark-context overrides for shared inner classes */
.tone-deep .chapter__title em, .tone-abyss .chapter__title em, .tone-dusk .chapter__title em,
.tone-deep .prose em, .tone-abyss .prose em, .tone-dusk .prose em,
.tone-deep .prose--wide em, .tone-abyss .prose--wide em, .tone-dusk .prose--wide em,
.tone-deep .lede em, .cover-concept .chapter__title em {
  color: var(--coral);
}
.tone-deep .chapter__num, .tone-abyss .chapter__num, .tone-dusk .chapter__num, .cover-concept .chapter__num {
  color: var(--coral);
}
.tone-deep .chapter__sub, .tone-abyss .chapter__sub, .tone-dusk .chapter__sub { opacity: 0.75; }
.tone-deep a, .tone-abyss a, .tone-dusk a, .outro a { color: var(--coral); }
.tone-deep a:hover, .tone-abyss a:hover, .tone-dusk a:hover, .outro a:hover { color: var(--cream); }

/* ---------- MARGINALIA (factbox / cover-frame / handwritten) ---------- */

.margin { display: flex; flex-direction: column; gap: 30px; padding-top: 6px; position: sticky; top: 96px; align-self: start; }

.cover-frame {
  position: relative; width: 82%; margin: 0 auto;
  border-radius: 14% 14% 6% 6% / 8% 8% 4% 4%;
  overflow: hidden; background: #0e1b22;
  box-shadow: 0 20px 46px rgba(11,20,24,0.35), 0 0 0 1px rgba(240,233,210,0.12);
}
.cover-frame__photo { aspect-ratio: 1 / 1; position: relative; }
.cover-frame__photo img { width: 100%; height: 100%; object-fit: cover; display: block; filter: contrast(1.03) saturate(0.94); }
.cover-frame__seam {
  position: absolute; left: 50%; top: 5%; bottom: 5%; width: 1px;
  background: rgba(0,0,0,0.18); transform: translateX(-50%); pointer-events: none;
}
.cover-frame__vent {
  position: absolute; left: 8%; top: 11%; width: 15%; height: 3px;
  background: rgba(0,0,0,0.18); border-radius: 2px;
  box-shadow: 0 6px 0 rgba(0,0,0,0.14), 0 12px 0 rgba(0,0,0,0.11);
}

.handwritten {
  font-family: var(--hand); font-size: 20px; line-height: 1.35; color: var(--water-deep);
  transform: rotate(-1deg); padding: 0 10px; text-align: center;
}

.factbox {
  border: 1.5px solid var(--water-deep); padding: 20px 20px 22px; background: rgba(255,255,255,0.5);
  font-size: 14px; position: relative;
}
.factbox::before { content: ""; position: absolute; inset: 4px; border: 1px solid var(--water-deep); opacity: 0.3; pointer-events: none; }
.factbox h4 {
  font-family: var(--mono); font-weight: 500; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  border-bottom: 1px solid var(--water-deep); padding-bottom: 8px; margin-bottom: 14px; color: var(--orange-deep);
}
.factbox dl > div { display: grid; grid-template-columns: 108px 1fr; gap: 10px; padding: 6px 0; border-bottom: 1px dashed var(--rule); align-items: baseline; }
.factbox dl > div:last-child { border: none; }
.factbox dt { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.7; }
.factbox dd { font-style: italic; }
.factbox .studio-list { font-size: 13px; line-height: 1.75; font-style: italic; opacity: 0.85; }

/* ---------- PULL QUOTE ---------- */

/* Full-bleed tonal band like every other section — the constraint lives on
   the blockquote (26ch), not the section, so the water-deep background runs
   edge to edge and keeps the "surface → abyss" band rhythm unbroken.
   position:relative anchors the porthole ring to the section itself. */
.pullquote { position: relative; text-align: center; padding: 130px 64px; overflow: hidden; }
.porthole-ring {
  width: 220px; height: 220px; border-radius: 50%;
  border: 6px solid rgba(240,233,210,0.28);
  background: radial-gradient(circle at 35% 30%, rgba(191,224,240,0.4), rgba(191,224,240,0.07) 55%, transparent 74%);
  box-shadow: inset 0 0 40px rgba(191,224,240,0.15), 0 20px 50px rgba(0,0,0,0.25);
}
.porthole-ring--big { width: min(340px, 60vw); height: min(340px, 60vw); }
.pullquote .porthole-ring {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 0;
}
.pullquote__mark {
  position: relative; z-index: 1; font-family: var(--serif); font-size: 200px; line-height: 0.6;
  color: var(--gold); font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 700; font-style: italic;
  display: block; margin-bottom: -38px; opacity: 0.9;
}
.pullquote blockquote {
  position: relative; z-index: 1; font-family: var(--serif); font-size: clamp(24px, 3.2vw, 42px);
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 350; font-style: italic; line-height: 1.3;
  letter-spacing: -0.01em; max-width: 26ch; margin: 0 auto;
}
.pullquote cite {
  position: relative; z-index: 1; display: block; margin-top: 26px; font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-style: normal; opacity: 0.75;
}
.pullquote cite::before { content: "— "; color: var(--coral); }

/* ---------- COVER CONCEPT ---------- */

.cover-concept { padding: 130px 64px 120px; overflow: hidden; }
.cover-concept__bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 25% 20%, rgba(191,224,240,0.10), transparent 50%),
    radial-gradient(ellipse at 75% 80%, rgba(223,140,135,0.08), transparent 55%);
}
.cover-concept__inner { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; text-align: center; }
.cover-concept__grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: center;
  text-align: left; margin-top: 54px;
}
.cover-concept__text { font-size: 18px; line-height: 1.8; }
.cover-concept__frame { position: relative; display: flex; align-items: center; justify-content: center; min-height: 280px; }

.swimming__sign {
  font-family: var(--hand); font-size: clamp(24px, 3.4vw, 38px); color: var(--coral);
  text-align: center; margin-top: 56px; line-height: 1.4;
}
.swimming__sign span {
  display: block; font-family: var(--body); font-size: 16px; font-style: italic;
  color: var(--cream); opacity: 0.85; margin-top: 10px;
}

/* ---------- SOUND / SAMPLES ---------- */

.sample-list { display: flex; flex-direction: column; max-width: 760px; margin: 40px auto 0; border-top: 1px solid var(--rule); }
.sample {
  display: grid; grid-template-columns: 1fr auto 1.4fr; gap: 16px; padding: 13px 8px;
  border-bottom: 1px solid var(--rule); font-family: var(--serif); align-items: baseline;
}
.sample__from { text-align: right; font-weight: 600; }
.sample__arrow { font-family: var(--mono); opacity: 0.5; font-size: 13px; }
.sample__to { opacity: 0.85; font-style: italic; }
.sample-note { text-align: center; max-width: 60ch; margin: 22px auto 0; opacity: 0.85; font-size: 15px; }

/* ---------- TRACK BY TRACK ---------- */

.tracks-section { padding: 110px 64px; }
.tracks { list-style: none; max-width: 900px; margin: 0 auto; border-top: 2px solid var(--water-deep); }
.track-entry { padding: 24px 8px 26px; border-bottom: 1px solid var(--rule); transition: background 0.3s; }
.track-entry:hover { background: rgba(74,124,138,0.06); }
.track-entry__head { display: grid; grid-template-columns: 34px 1fr 70px 52px; gap: 14px; align-items: center; }
.track-entry__num { font-family: var(--mono); font-size: 12px; opacity: 0.5; }
.track-entry__title { font-family: var(--serif); font-size: clamp(19px, 2.4vw, 23px); font-variation-settings: "SOFT" 80, "opsz" 24, "wght" 500; letter-spacing: -0.005em; }
.track-entry__wave { display: flex; align-items: flex-end; gap: 1.5px; width: 64px; height: 22px; color: var(--water); }
.track-entry__wave span { flex: 1 1 auto; min-width: 1.5px; background: currentColor; opacity: 0.55; border-radius: 1px; }
.track-entry__time { font-family: var(--mono); font-size: 12px; text-align: right; opacity: 0.6; }
.track-entry__credit { font-family: var(--mono); font-size: 11px; letter-spacing: 0.03em; opacity: 0.62; margin: 10px 0 8px; padding-left: 48px; }
.track-entry__body { font-size: 16px; line-height: 1.65; padding-left: 48px; max-width: 68ch; }

.track-entry--featured { background: rgba(198,106,53,0.07); border-left: 3px solid var(--orange); padding-left: 14px; margin-left: -14px; }
.track-entry--featured .track-entry__title { color: var(--orange-deep); }
.track-entry--featured .track-entry__wave { color: var(--orange); }

@media (max-width: 640px) {
  .track-entry__head { grid-template-columns: 28px 1fr 50px; }
  .track-entry__wave { display: none; }
  .track-entry__credit, .track-entry__body { padding-left: 0; }
}

/* ---------- RECEPTION ---------- */

.reception { padding: 110px 64px; }
.scores { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; max-width: 900px; margin: 0 auto 54px; }
.score { text-align: center; padding: 20px 6px; border: 1px solid var(--rule); }
.score__num { display: block; font-family: var(--serif); font-size: 32px; font-variation-settings: "SOFT" 80, "opsz" 24, "wght" 600; color: var(--water-deep); }
.score__label { display: block; font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.65; margin-top: 6px; }

@media (max-width: 720px) {
  .scores { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- AFTER ---------- */

.after { padding: 130px 64px 110px; border-top: 2px solid var(--water-deep); }
.after__inner { max-width: 720px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.after__title {
  font-family: var(--serif); font-size: clamp(42px, 6vw, 84px);
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 350; line-height: 1; letter-spacing: -0.02em; margin-top: 16px;
}
.after__title em { font-style: italic; color: var(--coral); }
.after__lede { font-family: var(--serif); font-size: 21px; font-variation-settings: "SOFT" 80, "opsz" 24, "wght" 320; line-height: 1.6; margin: 44px 0; }
.after__close { font-size: 17px; line-height: 1.7; max-width: 58ch; margin: 0 auto; opacity: 0.92; }

/* ---------- OUTRO ---------- */

.outro { background: linear-gradient(180deg, var(--abyss) 0%, var(--abyss-deeper) 100%); padding: 130px 64px; }
.outro__inner { max-width: 640px; margin: 0 auto; text-align: center; }
.outro__text { font-size: 17px; line-height: 1.8; opacity: 0.92; }
.outro__text + .outro__quote,
.outro__quote + .outro__text { margin-top: 44px; }
.outro__quote {
  font-family: var(--hand); font-size: clamp(30px, 4.4vw, 52px); color: var(--coral);
  transform: rotate(-1.5deg); line-height: 1.3;
}

/* ---------- FOOTER ---------- */

.foot {
  background: var(--abyss-deeper); color: var(--cream); padding: 74px 64px 54px;
  display: grid; grid-template-columns: 1.3fr 1fr 1.3fr 1fr; gap: 44px;
  border-top: 1px solid var(--gold);
}
.foot h5 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--coral); margin-bottom: 16px; font-weight: 500; }
.foot p, .foot a, .foot li { font-size: 14px; line-height: 1.65; opacity: 0.85; }
.foot ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.foot a { color: var(--cream); border-bottom: 1px dashed rgba(240,233,210,0.3); padding-bottom: 1px; }
.foot a:hover { color: var(--coral); border-color: var(--coral); }
.foot em { font-style: italic; color: var(--coral); }
.foot__col--mark { text-align: right; display: flex; flex-direction: column; justify-content: space-between; align-items: flex-end; gap: 18px; }
.foot__bigmark { font-family: var(--serif); font-size: 40px; line-height: 1; font-style: italic; color: var(--coral); }
.foot__years { font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em; opacity: 0.6; }

/* ---------- SCROLL REVEAL / KINETIC TITLES ---------- */

.reveal { opacity: 0; transform: translateY(30px); filter: blur(3px); transition: opacity 0.9s ease, transform 0.9s cubic-bezier(.2,.8,.2,1), filter 0.9s ease; }
.reveal.is-visible { opacity: 1; transform: none; filter: blur(0); }

.kinetic-word {
  display: inline-block; opacity: 0; transform: translateY(0.5em);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.2,.8,.2,1);
  transition-delay: calc(var(--w, 0) * 55ms);
}
.is-visible .kinetic-word, .kinetic-ready .kinetic-word { opacity: 1; transform: translateY(0); }

/* ---------- RESPONSIVE ---------- */

@media (max-width: 960px) {
  .hero { padding: 100px 26px 60px; }
  .hero__meta--left, .hero__meta--right { display: none; }
  .nav { grid-template-columns: 1fr; gap: 8px; padding: 14px 20px; }
  .nav__links { display: none; }
  .nav__time { text-align: left; }
  .chapter, .pullquote, .cover-concept, .tracks-section, .reception, .after, .outro { padding-left: 26px; padding-right: 26px; }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .cover-concept__grid { grid-template-columns: 1fr; text-align: center; }
  .cover-frame { width: 62%; }
  .foot { grid-template-columns: 1fr 1fr; padding: 54px 26px; }
  .foot__col--mark { text-align: left; align-items: flex-start; }
}
@media (max-width: 540px) {
  body { font-size: 16px; }
  .hero__name { gap: 1px; }
  .cover-frame { width: 78%; }
  .foot { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { filter: none; }
  .ink-cursor { display: none !important; }
}
