/* ============================================================
   home.css — The Lofi Library (homepage)
   Mood: nocturnal, warm dusk → lit parchment room.
   Builds on design-tokens.css + site.css.
   ============================================================ */

.home { padding-bottom: 120px; }
.home-h2 { font-family: var(--serif); font-style: italic; font-size: clamp(1.9rem, 4vw, 2.9rem); line-height: 1.08; }
.home-sec-head { max-width: 640px; margin-bottom: 44px; }
.home-sec-sub { color: var(--ink-soft); font-style: italic; margin-top: 12px; }

/* =========================================================
   HERO — dusk
========================================================= */
.home-hero {
  position: relative; overflow: hidden;
  padding: 96px 0 130px;
  color: var(--cream);
  background:
    radial-gradient(120% 90% at 50% 120%, rgba(65,45,21,.45), rgba(65,45,21,0) 55%),
    linear-gradient(180deg, #20180f 0%, #2e2114 42%, #4a3320 78%, #6b4527 100%);
}
.home-hero__sky { position: absolute; inset: 0; pointer-events: none; }
.home-hero__sun {
  position: absolute; left: 50%; bottom: -120px; transform: translateX(-50%);
  width: 520px; height: 520px; border-radius: 999px;
  background: radial-gradient(circle, rgba(224,168,84,.7), rgba(224,168,84,.18) 45%, rgba(224,168,84,0) 70%);
  filter: blur(2px);
}
.home-hero__stars { position: absolute; inset: 0; }
.home-hero__stars .star {
  position: absolute; width: 2px; height: 2px; border-radius: 99px; background: #f6e7c8;
  animation: twinkle 3.2s ease-in-out infinite;
}
@keyframes twinkle { 0%,100% { opacity: .25; } 50% { opacity: 1; } }

.home-hero__in { position: relative; text-align: center; display: flex; flex-direction: column; align-items: center; }
.home-hero__eb { color: rgba(246,231,200,.7); margin-bottom: 26px; }

.home-hero__title { display: flex; flex-direction: column; align-items: center; line-height: .82; margin: 0; }
.home-hero__the { font-family: var(--serif); font-style: italic; font-size: clamp(1.1rem, 3vw, 1.7rem); color: rgba(246,231,200,.85); margin-bottom: .2em; letter-spacing: .02em; }
.home-hero__lofi {
  font-family: var(--gothic); font-size: clamp(4rem, 16vw, 11rem); color: var(--cream);
  text-shadow: 0 2px 30px rgba(224,168,84,.35); letter-spacing: .005em;
}
.home-hero__lib {
  font-family: var(--gothic); font-size: clamp(2.6rem, 11vw, 7.4rem);
  color: var(--gold-soft); margin-top: -.06em; text-shadow: 0 2px 24px rgba(224,168,84,.3);
}
.home-hero__lead { max-width: 560px; margin: 28px auto 6px; color: rgba(246,231,200,.82); font-size: 1.16rem; line-height: 1.65; }

.home-hero__wave {
  position: absolute; left: 0; right: 0; bottom: -1px; height: 90px;
  background:
    radial-gradient(120% 100% at 50% 100%, var(--paper) 60%, transparent 61%);
}

/* =========================================================
   LOFI RADIO
========================================================= */
.radio { margin-top: 42px; display: flex; flex-direction: column; align-items: center; gap: 26px; }
.radio__stage { position: relative; width: min(380px, 82vw); aspect-ratio: 1 / 1; display: grid; place-items: center; }
.radio__viz { position: absolute; inset: 0; width: 100%; height: 100%; }

.radio__disc {
  position: relative; width: 58%; aspect-ratio: 1/1; border-radius: 999px;
  border: none; cursor: pointer; padding: 0;
  background:
    radial-gradient(circle at 50% 38%, #3a2d1f, #16100a 78%);
  box-shadow: 0 18px 50px -16px rgba(0,0,0,.7), inset 0 0 0 1px rgba(246,231,200,.08);
  display: grid; place-items: center;
  animation: spin 5s linear infinite; animation-play-state: paused;
  transition: transform .4s ease;
}
.radio.is-playing .radio__disc { animation-play-state: running; }
.radio__disc:hover { transform: scale(1.02); }
@keyframes spin { to { transform: rotate(360deg); } }
.radio__grooves {
  position: absolute; inset: 8%; border-radius: 999px;
  background: repeating-radial-gradient(circle at 50% 50%, rgba(246,231,200,.05) 0 2px, transparent 2px 5px);
}
.radio__label {
  width: 42%; aspect-ratio: 1/1; border-radius: 999px; z-index: 2;
  background: radial-gradient(circle at 50% 40%, var(--gold-soft), var(--gold) 70%, #7a5520);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #2a1c0c; box-shadow: inset 0 0 0 1px rgba(0,0,0,.15);
}
.radio__label-top { font-family: var(--serif); font-style: italic; font-size: .62rem; }
.radio__label-mid { font-family: var(--gothic); font-size: 1.15rem; line-height: 1; }
.radio__label-bot { font-size: .5rem; letter-spacing: .3em; text-transform: uppercase; }
.radio__icon {
  position: absolute; z-index: 3; width: 100%; height: 100%; border-radius: 999px;
  display: grid; place-items: center; color: var(--cream);
  background: rgba(16,11,7,.0); opacity: 0; transition: opacity .3s ease, background .3s ease;
}
.radio__disc:hover .radio__icon { opacity: 1; background: rgba(16,11,7,.35); }
.radio.is-playing .radio__icon { animation: counterspin 5s linear infinite; }
@keyframes counterspin { to { transform: rotate(-360deg); } }

.radio__arm {
  position: absolute; top: 14%; right: 10%; width: 38%; height: 6px; border-radius: 99px;
  background: linear-gradient(90deg, #d8c39a, #8a6f43);
  transform-origin: right center; transform: rotate(-28deg);
  box-shadow: 0 4px 10px -4px rgba(0,0,0,.6);
  transition: transform .6s cubic-bezier(.2,.7,.3,1);
}
.radio.is-playing .radio__arm { transform: rotate(-6deg); }
.radio__arm::after { content: ""; position: absolute; left: -4px; top: -3px; width: 12px; height: 12px; border-radius: 99px; background: #d8c39a; }

.radio__controls { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.radio__now { font-style: italic; color: rgba(246,231,200,.75); font-size: .98rem; min-height: 1.2em; }
.radio__chips { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.chip {
  font-family: var(--serif); font-size: .9rem; color: rgba(246,231,200,.8);
  background: rgba(246,231,200,.07); border: 1px solid rgba(246,231,200,.22);
  padding: .42em 1em; border-radius: 999px; cursor: pointer;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}
.chip:hover { border-color: rgba(246,231,200,.5); }
.chip.is-on { background: var(--gold-soft); color: #2a1c0c; border-color: var(--gold-soft); }
.radio__vol { display: flex; align-items: center; gap: 12px; }
.radio__vol-label { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(246,231,200,.55); }
.radio__vol input[type=range] { -webkit-appearance: none; appearance: none; width: 150px; height: 4px; border-radius: 99px; background: rgba(246,231,200,.25); cursor: pointer; }
.radio__vol input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 15px; height: 15px; border-radius: 999px; background: var(--gold-soft); border: 2px solid #2a1c0c; }
.radio__vol input[type=range]::-moz-range-thumb { width: 15px; height: 15px; border-radius: 999px; background: var(--gold-soft); border: 2px solid #2a1c0c; }

/* =========================================================
   FEATURED SONG
========================================================= */
.feat { padding: 86px 0 80px; }
.feat__in { display: grid; grid-template-columns: minmax(0, 360px) 1fr; gap: 54px; align-items: center; }
.feat__cover { position: relative; border: 1px solid var(--line); border-radius: 4px; overflow: hidden; box-shadow: var(--lift-2); }
.feat__play {
  position: absolute; right: 18px; bottom: 18px; width: 62px; height: 62px; border-radius: 999px;
  border: 1px solid rgba(225,220,201,.5); background: rgba(31,21,12,.66); color: var(--cream);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); cursor: pointer; display: grid; place-items: center;
  transition: background .3s ease, transform .3s ease;
}
.feat__play:hover { background: var(--ink); transform: translateY(-2px); }
.feat__cat { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.feat__title { font-family: var(--serif); font-style: italic; font-size: clamp(2.4rem, 5vw, 3.6rem); margin: 8px 0 4px; }
.feat__artist { color: var(--ink-soft); font-size: 1.1rem; margin: 0 0 18px; }
.feat__note { color: var(--ink-soft); line-height: 1.7; max-width: 46ch; margin: 0 0 24px; font-size: 1.08rem; }
.feat__links { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.feat__lyrics { background: none; border: 0; font: inherit; cursor: pointer; padding: 0; color: var(--ink); }

/* =========================================================
   MERCH
========================================================= */
.merch { padding: 40px 0 90px; }
.merch-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 26px; }
.merch-card { background: var(--cream); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; box-shadow: var(--lift);
  transition: box-shadow .35s ease, transform .35s ease; }
.merch-card:hover { box-shadow: var(--lift-2); transform: translateY(-3px); }
.merch-card__img .sepia { transition: filter .4s ease; }
.merch-card:hover .merch-card__img .sepia { filter: saturate(1.1) brightness(1.03); }
.merch-card__body { padding: 16px 18px 18px; }
.merch-card__name { font-family: var(--serif); font-style: italic; font-size: 1.3rem; }
.merch-card__kind { font-size: .82rem; color: var(--ink-faint); margin: 3px 0 12px; letter-spacing: .04em; }
.merch-card__row { display: flex; align-items: center; justify-content: space-between; }
.merch-card__price { font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--gold); }
.merch-card__buy { font-size: .9rem; }

/* =========================================================
   COVENANT + LIBRARY CARD
========================================================= */
.connect { padding: 40px 0 100px; }
.connect__in { display: grid; grid-template-columns: 1fr minmax(0, 420px); gap: 56px; align-items: center; }
.covenant__big { font-family: var(--serif); font-style: italic; font-size: clamp(1.6rem, 3.4vw, 2.4rem); line-height: 1.35; color: var(--ink); margin: 14px 0 18px; max-width: 18ch; }
.covenant__n { color: var(--sage-deep); font-size: 1.25em; }
.covenant__more { font-size: .98rem; }

.lcard {
  position: relative; background:
    linear-gradient(var(--cream), var(--cream)) padding-box,
    repeating-linear-gradient(180deg, transparent 0 31px, var(--line-soft) 31px 32px) padding-box;
  border: 1px solid var(--line); border-left: 3px solid var(--blood);
  border-radius: 3px; padding: 30px 34px 34px; box-shadow: var(--lift-2);
}
.lcard__punch { position: absolute; top: 16px; right: 22px; width: 16px; height: 16px; border-radius: 999px; border: 1px solid var(--line-strong); background: var(--paper); }
.lcard__head { font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--ink); }
.lcard__since { font-size: .82rem; letter-spacing: .08em; color: var(--ink-faint); margin: 4px 0 0; }
.lcard__rule { height: 1px; background: var(--line); margin: 18px 0; }
.lcard__group { margin-top: 16px; }
.lcard__group-h { font-size: .66rem; letter-spacing: .24em; text-transform: uppercase; color: var(--ink-faint); }
.lcard__links { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 8px; }
.lcard__link { font-family: var(--serif); font-size: 1.02rem; color: var(--ink); position: relative; transition: color .3s ease; }
.lcard__link:hover { color: var(--blood); }
.lcard__link::after { content: "\00B7"; position: absolute; right: -11px; color: var(--line-strong); }
.lcard__link:last-child::after { content: ""; }

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 880px) {
  .feat__in { grid-template-columns: 1fr; gap: 30px; }
  .feat__cover { max-width: 320px; }
  .connect__in { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 640px) {
  body { font-size: 17px; }
  .home-hero { padding: 72px 0 96px; }
  .home-hero__lead { font-size: 1.06rem; }
  .radio__stage { width: min(320px, 86vw); }
  .feat { padding: 60px 0 60px; }
  .merch { padding: 24px 0 64px; }
  .merch-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .connect { padding: 24px 0 72px; }
  .merch-card__name { font-size: 1.16rem; }
  .radio__vol input[type=range] { width: 120px; }
}
@media (max-width: 380px) {
  .merch-grid { grid-template-columns: 1fr; }
}

/* ---- origin story + connect intro + section rhythm (v3) ---- */
.story { padding: 78px 0; background: var(--cream);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.story__in { text-align: center; }
.story__head { font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(1.7rem, 3.8vw, 2.6rem); line-height: 1.12; color: var(--ink);
  margin: 14px auto 22px; max-width: 20ch; }
.story__p { font-size: 1.05rem; line-height: 1.85; color: var(--ink-soft);
  max-width: 60ch; margin: 0 auto 16px; }
.story__p--quiet { color: var(--ink-faint); font-style: italic; }

.connect__intro { align-self: center; }
.connect__head { font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(1.5rem, 3.2vw, 2.2rem); line-height: 1.2; color: var(--ink);
  margin: 12px 0 16px; max-width: 16ch; }
.connect__lead { font-size: 1.02rem; line-height: 1.8; color: var(--ink-soft); max-width: 34ch; }

/* rhythm: merch sits on a slightly deeper paper, connect on a sage wash */
.merch { background: var(--paper-2); border-top: 1px solid var(--line); }
.connect { background:
  linear-gradient(0deg, rgba(65,45,21,.06), rgba(65,45,21,.06)), var(--paper);
  border-top: 1px solid var(--line); }

@media (max-width: 720px) {
  .story { padding: 56px 0; }
  .connect__lead { max-width: none; }
}

/* link from the generated radio out to the real Spotify radio playlist */
.radio__spotify {
  margin-top: 4px; font-family: var(--mono); font-size: .72rem;
  letter-spacing: .14em; text-transform: uppercase; color: rgba(246,231,200,.6);
  border-bottom: 1px solid rgba(246,231,200,.22); padding-bottom: 2px;
  transition: color .3s ease, border-color .3s ease;
}
.radio__spotify:hover { color: var(--gold-soft); border-color: var(--gold-soft); }

/* ============================================================
   v6 — professional parchment hero + wordmark logo
   (overrides the old dusk/orange hero)
   ============================================================ */
.home-hero {
  position: relative; overflow: hidden;
  padding: 56px 0 80px;
  color: var(--ink);
  background:
    radial-gradient(120% 80% at 50% -8%, var(--cream), rgba(225,220,201,0) 62%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
}
.home-hero__texture {
  position: absolute; inset: 0; pointer-events: none; opacity: .6;
  background:
    radial-gradient(70% 50% at 50% 0%, rgba(31,21,12,.06), rgba(0,0,0,0) 70%),
    repeating-linear-gradient(90deg, rgba(31,21,12,.02) 0 1px, transparent 1px 3px);
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 88%);
  mask-image: linear-gradient(180deg, #000, transparent 88%);
}
.home-hero__in { position: relative; text-align: center; display: flex; flex-direction: column; align-items: center; }
.home-hero__logo {
  width: min(520px, 84vw); height: auto; display: block; margin: 6px 0 2px;
  mix-blend-mode: multiply;          /* parchment shows through any off-white in the art */
}
.home-hero__eb { color: var(--ink-faint); margin: 4px 0 0; }
.home-hero__lead { max-width: 540px; margin: 22px auto 6px; color: var(--ink-soft); font-size: 1.12rem; line-height: 1.7; }

/* radio controls recolored for the light hero */
.radio { margin-top: 30px; }
.radio__now { color: var(--ink-soft); }
.radio__vol-label { color: var(--ink-faint); }
.radio__vol input[type=range] { background: rgba(31,21,12,.16); }
.chip { color: var(--ink-soft); background: rgba(31,21,12,.04); border-color: var(--line-strong); }
.chip:hover { border-color: var(--ink-soft); }
.chip.is-on { background: var(--sage-deep); color: var(--cream); border-color: var(--sage-deep); }
.radio__spotify { color: var(--ink-faint); border-bottom-color: var(--line-strong); }
.radio__spotify:hover { color: var(--blood); border-bottom-color: var(--blood); }

@media (max-width: 640px) {
  .home-hero { padding: 40px 0 64px; }
  .home-hero__lead { font-size: 1.04rem; }
}

/* ============================================================
   v7 — compact lo-fi radio player (replaces the vinyl)
   ============================================================ */
.miniradio {
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 32px; padding: 9px 18px 9px 9px;
  background: var(--cream); border: 1px solid var(--line);
  border-radius: 999px; box-shadow: var(--lift); max-width: 100%;
}
.miniradio__btn {
  flex: none; width: 44px; height: 44px; border-radius: 999px;
  display: grid; place-items: center; cursor: pointer;
  background: var(--ink); color: var(--cream); border: none;
  transition: background .25s ease, transform .2s ease;
}
.miniradio__btn:hover { transform: scale(1.06); }
.miniradio.is-playing .miniradio__btn { background: var(--sage-deep); }
.miniradio__meta { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.miniradio__title { font-family: var(--serif); font-style: italic; font-size: 1.02rem; color: var(--ink); }
.miniradio__status { font-family: var(--mono); font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); margin-top: 2px; }
.miniradio__eq { display: inline-flex; align-items: flex-end; gap: 3px; height: 20px; }
.miniradio__eq span { width: 3px; height: 30%; background: var(--gold); border-radius: 2px; opacity: .5; }
.miniradio.is-playing .miniradio__eq span { opacity: 1; animation: eqbar .9s ease-in-out infinite; }
@keyframes eqbar { 0%, 100% { height: 22%; } 50% { height: 92%; } }
.miniradio__vol { display: inline-flex; align-items: center; }
.miniradio__vol input[type=range] {
  -webkit-appearance: none; appearance: none; width: 74px; height: 4px;
  background: rgba(31,21,12,.18); border-radius: 99px; outline: none; cursor: pointer;
}
.miniradio__vol input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 13px; height: 13px; border-radius: 50%; background: var(--ink); cursor: pointer; }
.miniradio__vol input[type=range]::-moz-range-thumb { width: 13px; height: 13px; border: none; border-radius: 50%; background: var(--ink); cursor: pointer; }
.miniradio__spotify { font-family: var(--mono); font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); white-space: nowrap; }
.miniradio__spotify:hover { color: var(--blood); }

@media (max-width: 560px) {
  .miniradio { flex-wrap: wrap; justify-content: center; border-radius: 22px; gap: 12px 14px; padding: 14px 18px; }
  .miniradio__meta { text-align: center; }
}
@media (max-width: 380px) { .miniradio__eq { display: none; } }

/* ============================================================
   v8 — MONOLOG-style editorial homepage
   Big confident type, numbered labels, generous negative space.
   ============================================================ */
.home { background: var(--paper); color: var(--ink); }
.mh-hero, .mh-stats, .mh-say, .mh-sel, .mh-what, .mh-proc, .mh-cta { position: relative; }

/* shared section rhythm */
.mh-stats, .mh-say, .mh-sel, .mh-what, .mh-proc { padding-block: clamp(72px, 11vh, 150px); }
.mh-stats { padding-top: clamp(40px, 7vh, 90px); }

/* ---------- HERO ---------- */
.mh-hero { padding-top: clamp(64px, 13vh, 150px); padding-bottom: clamp(48px, 9vh, 110px); border-bottom: 1px solid var(--line); }
.mh-hero__in { display: flex; flex-direction: column; }
.mh-hero__kicker {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-faint); padding-bottom: clamp(40px, 8vh, 90px);
}
.mh-hero__statement {
  font-family: var(--serif); font-weight: 500; letter-spacing: -.022em;
  font-size: clamp(2.1rem, 5.6vw, 4.7rem); line-height: 1.02; color: var(--ink);
  max-width: 19ch; text-wrap: balance;
}
.mh-hero__statement em { font-style: italic; color: var(--ink-soft); }
.mh-hero__foot { display: flex; align-items: center; gap: 22px 28px; flex-wrap: wrap; margin-top: clamp(34px, 6vh, 64px); }

/* ---------- STATS ---------- */
.mh-stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; border-top: 1px solid var(--line); }
.mh-stat { display: flex; flex-direction: column; gap: 12px; padding-top: 26px; }
.mh-stat__n {
  font-family: var(--serif); font-weight: 500; letter-spacing: -.02em;
  font-size: clamp(2.6rem, 6vw, 5rem); line-height: .92; color: var(--ink);
}
.mh-stat__l { font-family: var(--mono); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); max-width: 22ch; }

/* ---------- MANIFESTO ---------- */
.mh-say { border-top: 1px solid var(--line); }
.mh-say__big {
  font-family: var(--serif); font-weight: 400; letter-spacing: -.018em;
  font-size: clamp(1.7rem, 4.2vw, 3.4rem); line-height: 1.16; color: var(--ink);
  max-width: 24ch; margin-top: 30px; text-wrap: balance;
}
.mh-say__big em { font-style: italic; color: var(--gold); }

/* ---------- SELECTED ---------- */
.mh-sel { border-top: 1px solid var(--line); }
.mh-sel__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.mh-sel__list { list-style: none; margin: 0; padding: 0; }
.sel {
  display: grid; align-items: center; gap: 18px;
  grid-template-columns: 34px 30px minmax(0,1fr) minmax(0,.9fr) auto auto;
  padding: 26px 6px; border-top: 1px solid var(--line);
  transition: padding-left .35s cubic-bezier(.2,.7,.2,1), background .35s ease;
}
.sel:last-child { border-bottom: 1px solid var(--line); }
.sel:hover, .sel.is-playing { padding-left: 18px; background: linear-gradient(90deg, rgba(23,18,13,.035), rgba(23,18,13,0) 70%); }
.sel__play {
  width: 34px; height: 34px; flex: none; border-radius: 999px; cursor: pointer;
  display: grid; place-items: center; border: 1px solid var(--line-strong);
  background: transparent; color: var(--ink); transition: background .2s ease, color .2s ease, transform .2s ease;
}
.sel:hover .sel__play, .sel.is-playing .sel__play { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.sel__play:hover { transform: scale(1.08); }
.sel__no { font-family: var(--mono); font-size: .72rem; color: var(--ink-faint); }
.sel__title { font-family: var(--serif); font-size: clamp(1.3rem, 2.6vw, 2rem); line-height: 1.05; color: var(--ink); letter-spacing: -.01em; }
.sel__artist { font-family: var(--mono); font-size: .8rem; letter-spacing: .04em; color: var(--ink-soft); }
.sel__cat { font-family: var(--mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); }
.sel__year { font-family: var(--mono); font-size: .72rem; color: var(--ink-faint); text-align: right; }

/* ---------- WHAT ---------- */
.mh-what { border-top: 1px solid var(--line); }
.mh-what__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 30px; }
.whatcard { background: var(--paper); padding: 30px 26px 36px; display: flex; flex-direction: column; gap: 12px; min-height: 230px; transition: background .3s ease; }
.whatcard:hover { background: var(--cream); }
.whatcard__n { font-family: var(--mono); font-size: .72rem; letter-spacing: .14em; color: var(--gold); }
.whatcard__h { font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--ink); margin-top: auto; }
.whatcard__p { font-family: var(--serif); font-size: 1rem; line-height: 1.5; color: var(--ink-soft); }

/* ---------- PROCESS ---------- */
.mh-proc { border-top: 1px solid var(--line); }
.mh-proc__list { list-style: none; margin: 30px 0 0; padding: 0; }
.proc { display: grid; grid-template-columns: 160px minmax(0,1fr); gap: 24px 40px; padding: 34px 0; border-top: 1px solid var(--line); }
.proc:last-child { border-bottom: 1px solid var(--line); }
.proc__n { font-family: var(--mono); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); padding-top: 10px; }
.proc__h { font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.3rem); line-height: 1.06; color: var(--ink); letter-spacing: -.015em; }
.proc__p { font-family: var(--serif); font-size: 1.08rem; line-height: 1.5; color: var(--ink-soft); max-width: 52ch; margin-top: 12px; }

/* ---------- BIG CTA ---------- */
.mh-cta { padding-block: clamp(80px, 14vh, 180px); border-top: 1px solid var(--line); }
.mh-cta__link { display: block; text-decoration: none; color: var(--ink); }
.mh-cta__words {
  font-family: var(--serif); font-weight: 500; letter-spacing: -.03em;
  font-size: clamp(3rem, 13vw, 11rem); line-height: .92; margin-top: 18px;
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 0 .35em;
}
.mh-cta__words span { transition: transform .4s cubic-bezier(.2,.7,.2,1); }
.mh-cta__arrow { color: var(--gold); transition: transform .4s cubic-bezier(.2,.7,.2,1); }
.mh-cta__link:hover .mh-cta__arrow { transform: translateX(.25em); }
.mh-cta__link:hover .mh-cta__words span:not(.mh-cta__arrow) { transform: translateX(.04em); }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .mh-stats__grid { grid-template-columns: 1fr; gap: 0; }
  .mh-stat { padding-block: 24px; border-bottom: 1px solid var(--line); }
  .mh-stat:last-child { border-bottom: 0; }
  .mh-what__grid { grid-template-columns: repeat(2, 1fr); }
  .proc { grid-template-columns: 1fr; gap: 8px; }
  .proc__n { padding-top: 0; }
}
@media (max-width: 640px) {
  .sel { grid-template-columns: 30px 1fr auto; row-gap: 6px; column-gap: 14px; padding: 20px 4px; }
  .sel__no { display: none; }
  .sel__artist { grid-column: 2; }
  .sel__cat { display: none; }
  .sel__year { grid-row: 1; }
  .sel__title { grid-column: 2; }
  .sel__play { grid-row: 1 / span 2; }
}
@media (max-width: 460px) {
  .mh-what__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   v9 — real hero, roster strip, accent shapes/lines, shadows
   ============================================================ */

/* ---------- HERO: brand name + accents ---------- */
.mh-hero { overflow: hidden; }
.mh-hero__statement {
  font-size: clamp(2.9rem, 9vw, 7rem); line-height: .94; letter-spacing: -.035em;
  max-width: none; color: var(--ink); position: relative; z-index: 2;
}
.mh-hero__accent {
  display: flex; align-items: center; gap: 14px; margin-top: 24px; position: relative; z-index: 2;
  font-family: var(--mono); font-size: .78rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold);
}
.mh-hero__accent::before { content: ""; width: 40px; height: 1px; background: var(--gold); flex: none; }
.mh-hero__lead {
  font-family: var(--serif); font-size: clamp(1.05rem, 2.1vw, 1.35rem); line-height: 1.5;
  color: var(--ink-soft); max-width: 46ch; margin-top: 26px; position: relative; z-index: 2;
}
.mh-hero__foot { position: relative; z-index: 2; }
/* decorative shapes */
.mh-hero__plus {
  position: absolute; top: clamp(96px,13vh,160px); right: 7%; z-index: 1;
  font-family: var(--mono); font-size: 2rem; color: var(--ink-faint); opacity: .45; line-height: 1; user-select: none;
}
.mh-hero__ring {
  position: absolute; right: -170px; top: 52%; transform: translateY(-50%); z-index: 0;
  width: 540px; height: 540px; border: 1px solid var(--line); border-radius: 50%; pointer-events: none;
}
.mh-hero__ring::after { content: ""; position: absolute; inset: 70px; border: 1px solid var(--line-soft); border-radius: 50%; }
.mh-hero__ring::before { content: "+"; position: absolute; left: 50%; top: -12px; transform: translateX(-50%);
  font-family: var(--mono); color: var(--ink-faint); opacity: .5; }

/* ---------- STATS: corner plus marks ---------- */
.mh-stat { position: relative; }
.mh-stat__plus { position: absolute; top: 14px; right: 2px; font-family: var(--mono); font-size: 1rem; color: var(--gold); opacity: .55; }

/* ---------- ROSTER: big linked names ---------- */
.mh-roster { border-top: 1px solid var(--line); padding-block: clamp(60px,9vh,120px); }
.mh-roster__list { list-style: none; margin: 26px 0 0; padding: 0; border-top: 1px solid var(--line); }
.rost { border-bottom: 1px solid var(--line); }
.rost__link {
  display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding: 24px 6px;
  transition: padding-left .35s cubic-bezier(.2,.7,.2,1), background .35s ease;
}
.rost__link:hover { padding-left: 20px; background: linear-gradient(90deg, rgba(23,18,13,.04), rgba(23,18,13,0) 72%); }
.rost__name { font-family: var(--serif); font-size: clamp(1.9rem, 5.4vw, 3.6rem); line-height: 1; letter-spacing: -.025em; color: var(--ink); }
.rost__mark { font-family: var(--mono); font-size: 1.1rem; color: var(--ink-faint); transition: transform .3s ease, color .3s ease; }
.rost__link:hover .rost__mark { color: var(--gold); transform: translate(4px,-4px); }

/* ---------- WHAT: tactile shadowed cards + corner plus ---------- */
.mh-what__grid { background: none; border: 0; gap: 18px; }
.whatcard {
  position: relative; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--lift); min-height: 220px; transition: transform .3s ease, box-shadow .3s ease;
}
.whatcard:hover { background: var(--cream); transform: translateY(-4px); box-shadow: var(--lift-2); }
.whatcard::after { content: "+"; position: absolute; top: 14px; right: 16px; font-family: var(--mono); color: var(--gold); opacity: .5; }

/* ---------- PROCESS: tick marks on the rules ---------- */
.proc { position: relative; }
.proc::before { content: "+"; position: absolute; top: -9px; left: -2px; font-family: var(--mono); font-size: .9rem; color: var(--gold); opacity: .55; background: var(--paper); padding-right: 6px; }

/* ---------- MANIFESTO + CTA: faint ring shapes ---------- */
.mh-say, .mh-cta { overflow: hidden; }
.mh-cta { position: relative; }
.mh-cta::after {
  content: ""; position: absolute; right: -120px; bottom: -160px; width: 460px; height: 460px;
  border: 1px solid var(--line); border-radius: 50%; pointer-events: none; z-index: 0;
}
.mh-cta__link { position: relative; z-index: 1; }
.mh-say::after {
  content: ""; position: absolute; left: -140px; top: -120px; width: 360px; height: 360px;
  border: 1px solid var(--line-soft); border-radius: 50%; pointer-events: none; z-index: 0;
}
.mh-say .wrap { position: relative; z-index: 1; }

/* ---------- divider tick between stacked sections ---------- */
.mh-sel__head, .mh-roster .eyebrow, .mh-what .eyebrow, .mh-proc .eyebrow { position: relative; }

@media (max-width: 860px) {
  .mh-what__grid { gap: 14px; }
}
@media (max-width: 760px) {
  .mh-hero__ring { display: none; }
  .mh-hero__plus { right: 5%; }
}
@media (max-width: 640px) {
  .mh-cta::after { width: 300px; height: 300px; right: -90px; bottom: -120px; }
  .mh-say::after { display: none; }
}
