/* =====================================================
   leoson.music — styles.css
   ===================================================== */

:root {
  --bg: #0a0908;
  --bg-2: #110f0d;
  --bg-3: #1a1815;
  --ink: #efe9d9;
  --ink-dim: #b6ac95;
  --ink-mute: #6b6356;
  --gold: #c9a35a;
  --gold-dim: #8a703c;
  --line: rgba(239, 233, 217, 0.10);
  --line-strong: rgba(239, 233, 217, 0.22);
  --grain-opacity: .055;

  --serif: 'Fraunces', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;

  --pad-x: clamp(20px, 5vw, 80px);
  --section-y: clamp(80px, 12vw, 180px);

  --ease: cubic-bezier(.2, .7, .15, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  position: relative;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  letter-spacing: -0.005em;
}

/* hide native cursor on devices that hover */
@media (hover: hover) and (pointer: fine) {
  body, a, button, input, textarea, label { cursor: none; }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; }

::selection { background: var(--gold); color: var(--bg); }

/* film grain over everything */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: var(--grain-opacity);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

/* =====================================================
   PRELOADER
   ===================================================== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: grid;
  place-items: center;
  transition: opacity .8s var(--ease), visibility .8s;
}
.preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: min(420px, 70vw);
}
.preloader__mark {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 6vw, 64px);
  letter-spacing: -0.02em;
}
.preloader__bar {
  position: relative;
  width: 100%;
  height: 1px;
  background: var(--line);
  overflow: hidden;
}
.preloader__bar span {
  position: absolute;
  inset: 0;
  width: 0%;
  background: var(--ink);
  transition: width .25s linear;
}
.preloader__counter {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-dim);
}

/* =====================================================
   CUSTOM CURSOR
   ===================================================== */
.cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  display: none;
}
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }
.cursor__dot {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: width .25s var(--ease), height .25s var(--ease), opacity .2s;
}
.cursor__ring {
  position: absolute;
  width: 36px; height: 36px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: transform .4s var(--ease), border-color .3s, width .3s var(--ease), height .3s var(--ease), opacity .2s;
}
.cursor__label {
  position: absolute;
  transform: translate(20px, 20px);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  opacity: 0;
  transition: opacity .25s;
}
.cursor.is-link .cursor__dot { opacity: 0; }
.cursor.is-link .cursor__ring {
  width: 56px; height: 56px;
  border-color: var(--gold);
}
.cursor.is-external .cursor__dot { opacity: 0; }
.cursor.is-external .cursor__ring {
  width: 72px; height: 72px;
  border-color: var(--gold);
  background: rgba(201, 163, 90, 0.08);
}
.cursor.is-external .cursor__label,
.cursor.is-link .cursor__label {
  opacity: 1;
}

/* credit floating thumb */
.credit-thumb {
  position: fixed;
  top: 0; left: 0;
  width: 240px;
  pointer-events: none;
  z-index: 8000;
  opacity: 0;
  transform: translate(-50%, -50%) scale(.8) rotate(-2deg);
  transition: opacity .3s var(--ease), transform .45s var(--ease);
  background: var(--bg);
  border: 1px solid var(--line-strong);
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
}
.credit-thumb.is-active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) rotate(-2deg);
}
.credit-thumb__art {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: var(--bg-3);
  background-size: cover;
  background-position: center;
  background-image:
    radial-gradient(ellipse at center, rgba(201,163,90,.05) 0%, transparent 60%),
    linear-gradient(135deg, #1a1815, #0a0908);
  position: relative;
}
.credit-thumb__art::after {
  content: "▸";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 36px;
  opacity: .85;
  text-shadow: 0 4px 16px rgba(0,0,0,.6);
  pointer-events: none;
}
.credit-thumb__cap {
  padding: 14px 16px 16px;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.credit-thumb__track {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.credit-thumb__artist {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

/* scroll progress */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 1px;
  width: 100%;
  background: transparent;
  z-index: 9500;
}
.progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width .12s linear;
}

/* =====================================================
   NAV
   ===================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px var(--pad-x);
  mix-blend-mode: difference;
  color: var(--ink);
}
.nav__mark {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
}
.nav__mark-slash {
  color: var(--gold);
  font-style: italic;
  margin: 0 1px;
  display: inline-block;
  transition: transform .4s var(--ease);
}
.nav__mark:hover .nav__mark-slash { transform: rotate(20deg) scale(1.2); }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 32px);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav__links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  padding: 4px 0;
  transition: color .3s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .4s var(--ease);
}
.nav__links a:hover::after { width: 100%; }
.nav__num { color: var(--ink-mute); }
.nav__cta { color: var(--gold); }

@media (max-width: 720px) {
  .nav__links a:not(.nav__cta) { display: none; }
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(.7) contrast(1.1) brightness(.55);
  transform: scale(1.05);
  animation: heroPan 18s ease-in-out infinite alternate;
}
@keyframes heroPan {
  from { transform: scale(1.05) translate(0, 0); }
  to   { transform: scale(1.12) translate(-2%, -1%); }
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(0,0,0,0) 0%, rgba(0,0,0,.5) 70%, rgba(0,0,0,.85) 100%),
    linear-gradient(to bottom, rgba(10,9,8,.4) 0%, rgba(10,9,8,0) 30%, rgba(10,9,8,0) 70%, rgba(10,9,8,.85) 100%);
}
.hero__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n2'><feTurbulence baseFrequency='1.2' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n2)' opacity='1'/></svg>");
  opacity: .12;
  mix-blend-mode: overlay;
}

.hero__meta {
  position: absolute;
  z-index: 2;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-dim);
  line-height: 1.6;
}
.hero__meta--tl { top: 90px; left: var(--pad-x); }
.hero__meta--tr { top: 90px; right: var(--pad-x); text-align: right; }
.hero__meta--bl { bottom: 30px; left: var(--pad-x); }
.hero__meta--br { bottom: 30px; right: var(--pad-x); animation: blink 2.4s ease-in-out infinite; }
@keyframes blink { 0%, 60% { opacity: 1; } 80% { opacity: .3; } 100% { opacity: 1; } }

.hero__center {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  max-width: 1200px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 14px 26px;
  border: 1px solid var(--gold-dim);
  border-radius: 100px;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-decoration: none;
  transition: background .35s var(--ease), border-color .35s, box-shadow .35s, transform .35s var(--ease);
  box-shadow: 0 0 0 rgba(201,163,90,0);
}
.hero__eyebrow:hover {
  background: rgba(201,163,90,.12);
  border-color: var(--gold);
  box-shadow: 0 0 28px rgba(201,163,90,.25), inset 0 0 20px rgba(201,163,90,.06);
  transform: scale(1.03);
}
.hero__eyebrow svg {
  flex-shrink: 0;
  transition: transform .4s var(--ease);
}
.hero__eyebrow:hover svg { transform: scale(1.18) rotate(-6deg); }
.hero__eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px var(--gold);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

.hero__title {
  font-family: var(--serif);
  font-size: clamp(80px, 18vw, 280px);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.045em;
  color: var(--ink);
  margin: 0;
  text-shadow: 0 0 80px rgba(0,0,0,.5);
}
.hero__title .scramble {
  display: inline-block;
}

.hero__subtitle {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 8px;
}
.hero__sep {
  margin: 0 14px;
  color: var(--gold);
}

.hero__ctas {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
  justify-content: center;
}

/* buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--line-strong);
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background .35s var(--ease), border-color .35s, color .35s, transform .35s var(--ease);
  overflow: hidden;
  isolation: isolate;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateY(101%);
  transition: transform .55s var(--ease);
  z-index: -1;
}
.btn:hover::before { transform: translateY(0); }
.btn:hover { color: var(--bg); border-color: var(--ink); }
.btn--primary { color: var(--ink); border-color: var(--ink); }
.btn--primary::before { background: var(--gold); }
.btn--primary:hover { color: var(--bg); border-color: var(--gold); }
.btn svg { transition: transform .4s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

/* =====================================================
   MARQUEE
   ===================================================== */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
  overflow: hidden;
  background: var(--bg-2);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marqueeMove 60s linear infinite;
}
.marquee__group {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  padding-right: clamp(28px, 4vw, 56px);
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 84px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.marquee__group span:not(.m-dot):hover { color: var(--gold); font-style: italic; }
.marquee__group span { transition: color .3s, font-style .3s; }
.m-dot { color: var(--gold); font-size: 0.4em !important; transform: translateY(-12px); }
@keyframes marqueeMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =====================================================
   SHARED SECTION TOKENS
   ===================================================== */
.section__index {
  display: flex;
  justify-content: space-between;
  padding: 28px var(--pad-x);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  border-bottom: 1px solid var(--line);
}
.section__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.section__heading {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 5.2vw, 78px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 22ch;
}
.section__heading em, .section__heading i {
  font-style: italic;
  color: var(--gold);
}

.mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
}

/* generic reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal="image"] {
  clip-path: inset(0 100% 0 0);
  transform: none;
  opacity: 1;
  transition: clip-path 1.2s var(--ease-out);
}
[data-reveal="image"].is-visible { clip-path: inset(0 0 0 0); }
[data-reveal="image"] img {
  transform: scale(1.15);
  transition: transform 1.4s var(--ease-out);
}
[data-reveal="image"].is-visible img { transform: scale(1); }

/* reveal-text — split into chars/lines via JS */
.reveal-text {
  display: inline-block;
}
.reveal-text .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: 0.2em;
  margin-bottom: -0.2em;
}
.reveal-text .word__inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s var(--ease-out);
}
.reveal-text.is-visible .word__inner { transform: translateY(0); }
.reveal-text .word__inner { transition-delay: calc(var(--i, 0) * 40ms); }

/* =====================================================
   ABOUT (editorial profile)
   ===================================================== */
.about {
  padding-bottom: var(--section-y);
}
.about__article {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(60px, 9vw, 130px) var(--pad-x) 0;
}
.about__header {
  margin-bottom: clamp(40px, 6vw, 80px);
}
.about__byline {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}
.about__byline span:last-child { color: var(--ink-mute); }
.about__lede {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 5.6vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 22ch;
  margin-bottom: 28px;
}
.about__lede em { font-style: italic; color: var(--gold); }
.about__deck {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
  color: var(--ink);
  max-width: 60ch;
  border-left: 2px solid var(--gold);
  padding-left: 22px;
}
.about__deck em { font-style: italic; color: var(--ink-dim); }
.about__deck strong { font-weight: 500; }

.about__body-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(30px, 5vw, 80px);
  margin-top: clamp(36px, 5vw, 60px);
  align-items: start;
}
@media (max-width: 900px) {
  .about__body-grid { grid-template-columns: 1fr; }
}
.about__hero {
  position: sticky;
  top: 100px;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.about__hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(.4) contrast(1.05);
}
@media (max-width: 900px) {
  .about__hero { position: relative; top: auto; }
}

.about__col {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3vw, 44px);
}
.about__para {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.6;
  color: var(--ink-dim);
  max-width: 60ch;
}
.about__para:first-letter {
  /* drop cap for first paragraph only */
}
.about__para em { font-style: italic; color: var(--ink); }
.about__para strong { color: var(--ink); font-weight: 500; }

/* feature embed cards (YouTube + article previews inside about) */
.feature-embed {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: center;
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 14px;
  transition: border-color .35s var(--ease), background .35s, transform .4s var(--ease);
  text-decoration: none;
  color: inherit;
}
.feature-embed:hover {
  border-color: var(--gold-dim);
  background: var(--bg-3);
  transform: translateX(4px);
}
.feature-embed__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-3);
}
.feature-embed__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(.25) contrast(1.05);
  transition: filter .4s var(--ease), transform .6s var(--ease);
}
.feature-embed:hover .feature-embed__media img {
  filter: grayscale(0) contrast(1.05);
  transform: scale(1.04);
}
.feature-embed__playicon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 28px;
  color: #fff;
  text-shadow: 0 4px 16px rgba(0,0,0,.6);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.45));
}
.feature-embed--video .feature-embed__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.15);
  pointer-events: none;
}
.feature-embed__meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 2px 2px 2px 0;
  min-width: 0;
}
.feature-embed__kicker {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.feature-embed__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--ink);
  overflow-wrap: anywhere;
}
.feature-embed__source {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .feature-embed { grid-template-columns: 1fr; gap: 14px; }
  .feature-embed__media { aspect-ratio: 16/9; }
}

.stats {
  margin-top: clamp(60px, 8vw, 110px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 36px;
}
@media (max-width: 1100px) {
  .stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
}
.stat__num {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat__sup {
  display: inline-block;
  margin-left: 2px;
  font-size: 0.55em;
  color: var(--gold);
  vertical-align: super;
  font-style: italic;
}
.stat__label {
  margin-top: 10px;
  font-size: 10px;
  color: var(--ink-mute);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* =====================================================
   GRAMMY MOMENT
   ===================================================== */
.grammy {
  position: relative;
  height: 90vh;
  min-height: 600px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}
.grammy__bg {
  position: absolute;
  inset: 0;
}
.grammy__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(.3) contrast(1.1) brightness(.5);
}
.grammy__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(0,0,0,.2) 0%, rgba(0,0,0,.85) 90%),
    linear-gradient(120deg, rgba(201,163,90,.06), transparent 60%);
}
.grammy__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--pad-x);
}
.grammy__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(60px, 11vw, 180px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.grammy__title-italic {
  font-style: italic;
  color: var(--gold);
  display: inline-block;
}
.grammy__meta {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: var(--ink-dim);
  letter-spacing: 0.08em;
}
.muted { color: var(--ink-mute); margin-right: 8px; }

/* =====================================================
   CREDITS
   ===================================================== */
.credits {
  padding-bottom: var(--section-y);
}
.credits__head {
  padding: clamp(60px, 9vw, 130px) var(--pad-x) 60px;
  max-width: 1200px;
}
.credits__lede {
  margin-top: 20px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.credits__wall {
  padding: 0 var(--pad-x);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2px, 0.4vw, 8px) clamp(10px, 1.4vw, 22px);
  align-items: baseline;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-top: 56px;
  padding-bottom: 56px;
}
.credit {
  display: inline-block;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.82;
  color: var(--ink);
  cursor: none;
  position: relative;
  transition: color .35s var(--ease), letter-spacing .45s var(--ease), font-style .35s, transform .4s var(--ease);
  white-space: nowrap;
}
.credit--lg { font-size: clamp(60px, 8.6vw, 132px); }
.credit--md { font-size: clamp(38px, 5.4vw, 80px); }
.credit--sm { font-size: clamp(24px, 3.4vw, 50px); color: var(--ink-dim); }
.credit:hover {
  color: var(--gold);
  font-style: italic;
  letter-spacing: 0.005em;
}
.credit::before {
  content: "✱";
  margin-right: .15em;
  color: var(--gold-dim);
  font-size: 0.35em;
  vertical-align: middle;
  opacity: 0;
  transition: opacity .3s;
}
.credit:hover::before { opacity: 1; }

/* =====================================================
   INTERLUDE
   ===================================================== */
.interlude {
  position: relative;
  height: 70vh;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.interlude__bg { position: absolute; inset: 0; }
.interlude__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(.55) contrast(1.1) brightness(.55);
  transform: scale(1.05);
}
.interlude__veil {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,9,8,.85), rgba(10,9,8,.55) 30%, rgba(10,9,8,.55) 70%, rgba(10,9,8,.95));
}
.interlude__quote {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 var(--pad-x);
  max-width: 1100px;
}
.interlude__quote p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 4.4vw, 64px);
  line-height: 1.18;
  letter-spacing: -0.02em;
}
.interlude__quote--bare {
  font-size: clamp(48px, 9vw, 140px) !important;
  line-height: 1 !important;
  letter-spacing: -0.04em !important;
  color: var(--ink) !important;
}
.interlude__quote--bare em {
  font-style: italic;
  background: linear-gradient(180deg, var(--ink) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.interlude__quote .mono {
  display: inline-block;
  margin-top: 28px;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}

/* =====================================================
   PACKS
   ===================================================== */
.packs {
  padding-bottom: var(--section-y);
}
.packs__head {
  padding: clamp(60px, 9vw, 130px) var(--pad-x) 60px;
  max-width: 1200px;
}
.packs__grid {
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: clamp(16px, 2vw, 28px);
}
.pack {
  position: relative;
  display: block;
  isolation: isolate;
  transition: transform .5s var(--ease);
  will-change: transform;
}
.pack:hover { transform: translateY(-4px); }
.pack__art {
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
  transition: border-color .3s;
}
.pack:hover .pack__art { border-color: var(--gold-dim); }
.pack__art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .5s var(--ease);
  filter: brightness(.92) saturate(.95);
}
.pack:hover .pack__art img {
  transform: scale(1.04);
  filter: brightness(1.05) saturate(1.05);
}
.pack__art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,0) 70%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
  z-index: 1;
}
.pack__sig {
  position: relative;
  z-index: 2;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,.85);
  text-transform: uppercase;
  padding: 14px 16px;
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
.pack__meta {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 12px;
}
.pack__name {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.pack__cta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  transition: transform .35s var(--ease);
}
.pack:hover .pack__cta { transform: translateX(4px); }

/* =====================================================
   GALLERY
   ===================================================== */
.gallery {
  padding-bottom: var(--section-y);
}
.gallery__head {
  padding: clamp(60px, 9vw, 130px) var(--pad-x) 60px;
  max-width: 1200px;
}
.gallery__grid {
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 16vw;
  gap: clamp(8px, 1vw, 16px);
}
@media (max-width: 900px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 36vw; }
}
.gphoto {
  position: relative;
  overflow: hidden;
}
.gphoto img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out), filter .8s var(--ease);
  filter: grayscale(.45) contrast(1.05);
}
.gphoto:hover img {
  transform: scale(1.06);
  filter: grayscale(0) contrast(1.05);
}
.gphoto--tall { grid-row: span 2; }
.gphoto--wide { grid-column: span 2; }
@media (max-width: 900px) {
  .gphoto--wide { grid-column: span 2; }
  .gphoto--tall { grid-row: span 2; }
}

/* =====================================================
   LISTEN (Spotify playlist embed)
   ===================================================== */
.listen {
  padding-bottom: var(--section-y);
}
.listen__head {
  padding: clamp(60px, 9vw, 130px) var(--pad-x) clamp(40px, 5vw, 60px);
  max-width: 1200px;
}
.listen__head em { font-style: italic; color: var(--gold); }
.listen__lede {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.listen__embed {
  padding: 0 var(--pad-x);
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.listen__embed iframe {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-2);
}
.listen__foot {
  padding: 18px var(--pad-x) 0;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.listen__foot a {
  color: var(--gold);
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 2px;
  transition: color .3s, border-color .3s;
}
.listen__foot a:hover {
  color: var(--ink);
  border-color: var(--ink);
}

/* =====================================================
   PRESS (legacy — kept in case still referenced)
   ===================================================== */
.press {
  padding-bottom: var(--section-y);
}
.press__grid {
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(8px, 1vw, 16px);
}
@media (max-width: 800px) {
  .press__grid { grid-template-columns: 1fr; }
}
.press__card {
  position: relative;
  display: block;
  padding: 36px 36px 32px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  min-height: 240px;
  transition: background .35s, border-color .35s, transform .5s var(--ease);
  overflow: hidden;
}
.press__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(201,163,90,.12), transparent 60%);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.press__card:hover { border-color: var(--gold-dim); background: var(--bg-3); }
.press__card:hover::before { opacity: 1; }
.press__kicker {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.press__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 30ch;
}
.press__sub {
  margin-top: 10px;
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.press__arrow {
  position: absolute;
  bottom: 24px;
  right: 28px;
  font-family: var(--serif);
  font-size: 32px;
  color: var(--gold);
  transition: transform .4s var(--ease);
}
.press__card:hover .press__arrow { transform: translate(4px, -4px); }
.press__card--listen {
  background: linear-gradient(140deg, rgba(201,163,90,.08), rgba(10,9,8,1) 70%);
  border-color: var(--gold-dim);
}

/* =====================================================
   CONTACT
   ===================================================== */
.contact {
  padding-bottom: var(--section-y);
  background: var(--bg-2);
}
.contact__inner {
  padding: clamp(60px, 9vw, 130px) var(--pad-x) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
}
@media (max-width: 900px) {
  .contact__inner { grid-template-columns: 1fr; }
}
.contact__heading {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 7vw, 110px);
  line-height: 0.96;
  letter-spacing: -0.03em;
}
.contact__heading-italic {
  font-style: italic;
  color: var(--gold);
  display: inline-block;
}
.contact__email {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 26px);
  font-style: italic;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 6px;
  transition: color .35s, border-color .35s;
}
.contact__email:hover { color: var(--gold); border-color: var(--gold); }
.contact__socials {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 380px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.contact__socials a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-dim);
  transition: color .3s;
}
.contact__socials a:hover { color: var(--gold); }
.contact__socials .mono {
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
  text-transform: uppercase;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}
.field label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.field input, .field textarea {
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
  color: var(--ink);
  outline: none;
  font-size: 16px;
  font-family: var(--serif);
  resize: none;
}
.field input:focus + .field-bar, .field textarea:focus + .field-bar { width: 100%; }
.field:focus-within { border-color: var(--gold); }

.contact__note {
  font-size: 10px;
  color: var(--ink-mute);
  letter-spacing: 0.12em;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  position: relative;
  padding: 60px var(--pad-x) 30px;
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__mark {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.footer__tag {
  font-size: 10px;
  color: var(--ink-mute);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.footer__bigname {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(60px, 24vw, 360px);
  letter-spacing: -0.06em;
  line-height: 0.85;
  color: var(--ink);
  margin: 60px 0 30px;
  white-space: nowrap;
  overflow: hidden;
  background: linear-gradient(180deg, var(--ink) 0%, rgba(239, 233, 217, 0.06) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 10px;
  color: var(--ink-mute);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

/* =====================================================
   MOBILE TWEAKS
   ===================================================== */
@media (max-width: 700px) {
  .hero__meta--tl, .hero__meta--tr { top: 80px; }
  .hero__meta--bl { bottom: 100px; }
  .credits__wall { gap: 8px 16px; padding-top: 36px; padding-bottom: 36px; }
  .stats { gap: 16px; }
  .nav { padding: 16px var(--pad-x); }
  body, html { cursor: auto; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
