:root {
  --ink: #080908;
  --ink-2: #111311;
  --ink-3: #1a1d1a;
  --bone: #f0eee7;
  --bone-2: #d8d5cc;
  --muted: #9a9d96;
  --line: rgba(240, 238, 231, 0.18);
  --line-dark: rgba(8, 9, 8, 0.18);
  --acid: #ccff33;
  --cobalt: #145cff;
  --display: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(92vw, 1540px);
  --header-h: 82px;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
::selection { background: var(--acid); color: var(--ink); }

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  background: var(--acid);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 4px;
}

.shell { width: var(--shell); margin-inline: auto; }
.section { padding-block: clamp(92px, 11vw, 180px); }

.page-progress {
  position: fixed;
  z-index: 160;
  inset: 0 0 auto;
  height: 2px;
  pointer-events: none;
}
.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 4vw;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, height .35s ease;
}
.site-header.is-scrolled,
.site-header.nav-active {
  height: 66px;
  background: rgba(8, 9, 8, .88);
  border-bottom-color: var(--line);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .18em;
  line-height: 1;
}
.brand-mark {
  width: 10px;
  height: 10px;
  border: 2px solid var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(204, 255, 51, .65);
}
.brand-logo {
  position: relative;
  width: 118px;
  aspect-ratio: 803 / 240;
  overflow: hidden;
}
.brand-logo img,
.hero-logo-frame img,
.logo-preview img,
.wordmark-thumb img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  transform: translateY(-50%);
}
.site-nav { display: flex; align-items: center; gap: clamp(22px, 2.4vw, 42px); }
.site-nav a {
  position: relative;
  padding-block: 12px;
  color: rgba(240, 238, 231, .78);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .2s ease;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 1px;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease-out);
}
.site-nav a:hover { color: var(--bone); }
.site-nav a:hover::after,
.site-nav a.is-active::after { transform: scaleX(1); transform-origin: left; }
.site-nav .nav-book {
  padding: 13px 21px;
  background: var(--acid);
  color: var(--ink);
}
.site-nav .nav-book::after { display: none; }
.site-nav .nav-book:hover { color: var(--ink); background: var(--bone); }
.menu-toggle { display: none; }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #080b0b;
}
.hero-media,
.hero-media img,
.hero-shade,
.hero-grid { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img {
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(.92) contrast(1.05);
  transform: scale(1.012);
  animation: heroSettle 1.6s var(--ease-out) both;
}
@keyframes heroSettle { from { opacity: .25; transform: scale(1.08); } to { opacity: 1; transform: scale(1.012); } }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 6, 6, .9) 0%, rgba(4, 6, 6, .56) 38%, rgba(4, 6, 6, .04) 70%),
    linear-gradient(0deg, rgba(4, 6, 6, .88) 0%, transparent 35%, rgba(4, 6, 6, .26) 100%);
}
.hero-grid {
  opacity: .17;
  background-image:
    linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 25% 100%, 25% 100%;
  -webkit-mask-image: linear-gradient(90deg, #000 0, transparent 55%);
  mask-image: linear-gradient(90deg, #000 0, transparent 55%);
}
.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: calc(var(--header-h) + 48px);
  padding-bottom: clamp(100px, 11vh, 140px);
}
.hero-kicker {
  position: absolute;
  top: clamp(128px, 15vh, 175px);
  left: 0;
  display: flex;
  gap: 34px;
  color: rgba(240, 238, 231, .74);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.hero-kicker span + span::before { content: ""; display: inline-block; width: 34px; height: 1px; margin-right: 34px; vertical-align: middle; background: var(--acid); }
.hero-title {
  margin: 0 0 clamp(20px, 3vh, 34px);
  color: var(--bone);
  font-family: var(--display);
  font-size: clamp(67px, 13.5vw, 226px);
  font-weight: 900;
  font-stretch: condensed;
  letter-spacing: -.085em;
  line-height: .72;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 8px 50px rgba(0,0,0,.3);
}
.hero-lower {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(320px, .55fr) 1fr;
  gap: 6vw;
  align-items: end;
}
.hero-tagline {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(28px, 3.2vw, 54px);
  font-weight: 650;
  letter-spacing: -.045em;
  line-height: .94;
  text-transform: uppercase;
}
.hero-intro { grid-column: 2; }
.hero-intro > p {
  max-width: 440px;
  margin: 0 0 24px;
  color: rgba(240, 238, 231, .8);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
}
.button-row { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s var(--ease-out);
}
.button:hover { transform: translateY(-2px); }
.button-acid { background: var(--acid); color: var(--ink); }
.button-acid:hover { background: var(--bone); }
.button-ghost { border-color: rgba(240,238,231,.45); color: var(--bone); }
.button-ghost:hover { border-color: var(--bone); background: rgba(240,238,231,.08); }
.button-dark { background: var(--ink); color: var(--bone); }
.button-dark:hover { background: var(--cobalt); }
.button-light { background: var(--bone); color: var(--ink); }
.button-light:hover { background: var(--acid); }

.hero-rail {
  position: absolute;
  z-index: 3;
  right: 4vw;
  bottom: 42px;
  display: flex;
  gap: 30px;
  color: rgba(240,238,231,.62);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-rail span + span::before { content: "/"; margin-right: 30px; color: var(--acid); }
.scroll-cue {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 34px;
  width: 24px;
  height: 44px;
  border: 1px solid rgba(240,238,231,.38);
  border-radius: 20px;
  transform: translateX(-50%);
}
.scroll-cue span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 3px;
  height: 8px;
  border-radius: 2px;
  background: var(--acid);
  transform: translateX(-50%);
  animation: scrollCue 1.8s ease-in-out infinite;
}
@keyframes scrollCue { 0%,100% { transform: translate(-50%, 0); opacity: .3; } 50% { transform: translate(-50%, 14px); opacity: 1; } }

/* Ticker */
.ticker {
  overflow: hidden;
  padding-block: 15px;
  border-block: 1px solid var(--line-dark);
  background: var(--acid);
  color: var(--ink);
}
.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 26px;
  animation: ticker 30s linear infinite;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.ticker-track i { font-size: 7px; font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* Shared headings */
.section-heading {
  display: grid;
  grid-template-columns: 1fr 2.1fr .8fr;
  gap: 4vw;
  align-items: end;
  margin-bottom: clamp(58px, 8vw, 116px);
}
.eyebrow {
  margin: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow span { margin-right: 12px; color: var(--acid); }
.section-heading h2,
.live h2,
.booking h2,
.join h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(54px, 8.3vw, 142px);
  font-weight: 750;
  letter-spacing: -.075em;
  line-height: .82;
  text-transform: uppercase;
}
.section-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

/* Release */
.release { background: var(--ink); }
.release-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .82fr);
  gap: clamp(44px, 9vw, 150px);
  align-items: center;
}
.cover-frame {
  position: relative;
  margin: 0;
  padding: clamp(14px, 2vw, 26px);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #101314, #070808);
  box-shadow: 0 35px 100px rgba(0, 0, 0, .42);
  transform-style: preserve-3d;
  transition: transform .45s var(--ease-out);
}
.cover-frame::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  background: radial-gradient(circle at 40% 65%, rgba(20,92,255,.34), transparent 52%);
  filter: blur(38px);
}
.cover-frame img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.cover-frame figcaption {
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.release-lead {
  margin: 0 0 clamp(38px, 5vw, 72px);
  font-family: var(--display);
  font-size: clamp(24px, 2.7vw, 44px);
  font-weight: 450;
  letter-spacing: -.04em;
  line-height: 1.05;
}
.track-line { margin-bottom: 38px; }
.track-line svg { width: 100%; height: 70px; overflow: visible; }
.track-line path { fill: none; stroke: var(--acid); stroke-width: 2; vector-effect: non-scaling-stroke; filter: drop-shadow(0 0 7px rgba(204,255,51,.35)); }
.platform-list { border-top: 1px solid var(--line); }
.platform-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 64px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .22s ease, padding .3s var(--ease-out);
}
.platform-list a span:last-child { color: var(--muted); font-size: 10px; }
.platform-list a:hover { color: var(--acid); padding-inline: 8px; }
.spotify-shell {
  min-height: 82px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink-2);
}
.spotify-load {
  width: 100%;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  background: transparent;
  color: var(--bone);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .2s ease, background .2s ease;
}
.spotify-load span { color: var(--acid); }
.spotify-load:hover { color: var(--ink); background: var(--acid); }
.spotify-load:hover span { color: var(--ink); }
.spotify-shell iframe { display: block; width: 100%; height: 152px; border: 0; }

/* Live */
.live { background: var(--bone); color: var(--ink); }
.live-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(350px, .85fr);
  gap: 10vw;
  align-items: end;
}
.live .eyebrow span { color: var(--cobalt); }
.live-statement > p:not(.eyebrow) {
  max-width: 540px;
  margin: 42px 0 32px;
  color: #3f423e;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.4;
}
.format-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line-dark); }
.format-list li {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 105px;
  border-bottom: 1px solid var(--line-dark);
}
.format-list li > span { color: #696b66; font-size: 10px; font-weight: 800; }
.format-list strong {
  font-family: var(--display);
  font-size: clamp(26px, 2.5vw, 42px);
  font-weight: 650;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
.format-list small { color: #666963; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }

/* Press */
.press { border-top: 1px solid var(--line); }
.press-heading { grid-template-columns: .75fr 2.25fr; }
.press-heading h2 { grid-column: 2; }
.press-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(330px, .55fr);
  gap: 28px;
  align-items: stretch;
}
.epk-card { border: 1px solid var(--line); background: var(--ink-2); }
.epk-card-image { position: relative; overflow: hidden; }
.epk-card-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,9,8,.6), transparent 50%); }
.epk-card-image img { width: 100%; aspect-ratio: 16 / 8.2; object-fit: cover; transition: transform 1s var(--ease-out); }
.epk-card:hover .epk-card-image img { transform: scale(1.025); }
.epk-card-image > span {
  position: absolute;
  z-index: 1;
  left: 24px;
  bottom: 20px;
  color: var(--bone);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.epk-card-body { padding: clamp(22px, 3vw, 42px); }
.epk-card dl { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 0 0 34px; }
.epk-card dl div { min-width: 0; }
.epk-card dt { margin-bottom: 8px; color: var(--muted); font-size: 8px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.epk-card dd { margin: 0; font-size: 12px; font-weight: 700; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 14px 2px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  transition: color .2s ease, border-color .2s ease;
}
.text-link:hover { color: var(--acid); border-color: var(--acid); }
.asset-stack { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.asset-row {
  flex: 1;
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 132px;
  border-bottom: 1px solid var(--line);
  transition: background .2s ease, padding .3s var(--ease-out);
}
.asset-row:hover { padding-inline: 12px; background: rgba(240,238,231,.04); }
.asset-thumb { width: 88px; height: 66px; overflow: hidden; background: var(--ink-3); }
.asset-thumb img { width: 100%; height: 100%; object-fit: cover; }
.asset-thumb.portrait img { object-position: center 20%; }
.wordmark-thumb { position: relative; display: block; background: var(--ink); }
.wordmark-thumb img { width: 92%; left: 4%; }
.asset-row strong, .asset-row small { display: block; }
.asset-row strong { margin-bottom: 6px; font-size: 13px; }
.asset-row small { color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.asset-row > i { color: var(--acid); font-size: 18px; font-style: normal; }

/* Booking */
.booking { background: var(--acid); color: var(--ink); }
.booking .eyebrow span { color: var(--cobalt); }
.booking h2 { margin-top: clamp(70px, 9vw, 130px); font-size: clamp(74px, 13vw, 208px); }
.booking-bottom {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(380px, 1fr);
  gap: 10vw;
  align-items: end;
  margin-top: clamp(60px, 8vw, 110px);
  padding-top: 32px;
  border-top: 1px solid var(--line-dark);
}
.booking-bottom > p { max-width: 570px; margin: 0; font-size: clamp(17px, 1.6vw, 24px); line-height: 1.45; }
.booking-email {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--ink);
  font-family: var(--display);
  font-size: clamp(23px, 3vw, 48px);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1.1;
  transition: color .2s ease, border-color .2s ease;
}
.booking-email:hover { color: var(--cobalt); border-color: var(--cobalt); }
.booking-bottom small { display: block; margin-top: 12px; font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }

/* Join */
.join { display: grid; grid-template-columns: 1fr 1fr; gap: 9vw; align-items: end; }
.join .eyebrow { margin-bottom: 50px; }
.join h2 { font-size: clamp(50px, 6vw, 100px); }
.join-form { align-self: end; }
.join-form > label { display: block; margin-bottom: 14px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.email-field { display: flex; border-bottom: 1px solid rgba(240,238,231,.55); }
.email-field input {
  min-width: 0;
  flex: 1;
  height: 72px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--bone);
  font-family: var(--display);
  font-size: clamp(21px, 2.1vw, 34px);
  letter-spacing: -.035em;
  outline: 0;
}
.email-field input::placeholder { color: #62655f; }
.email-field:focus-within { border-color: var(--acid); }
.email-field button {
  align-self: center;
  min-height: 50px;
  padding: 0 18px;
  border: 0;
  background: var(--acid);
  color: var(--ink);
  cursor: pointer;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
  transition: background .2s ease;
}
.email-field button:hover { background: var(--bone); }
.email-field button:disabled { cursor: wait; opacity: .78; }
.join-form > p { min-height: 20px; margin: 13px 0 0; color: var(--muted); font-size: 11px; }

/* Footer */
.site-footer { padding: 80px 0 26px; border-top: 1px solid var(--line); background: #050605; }
.footer-top { display: grid; grid-template-columns: 1.25fr .75fr; gap: 7vw; align-items: start; }
.footer-brand {
  display: block;
  font-family: var(--display);
  font-size: clamp(62px, 11vw, 180px);
  font-weight: 900;
  letter-spacing: -.085em;
  line-height: .75;
}
.footer-brand img { display: block; width: 100%; height: auto; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-links p { margin: 0 0 20px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.footer-links a { display: block; width: max-content; max-width: 100%; margin: 10px 0; font-size: 12px; font-weight: 650; transition: color .2s ease; }
.footer-links a:hover { color: var(--acid); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 90px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #6e716b;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.footer-bottom a:hover { color: var(--bone); }
.mobile-actions { display: none; }

/* Motion */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.js-ready .reveal.is-visible { opacity: 1; transform: translateY(0); }
.hero .reveal:nth-child(2) { transition-delay: .08s; }
.hero .reveal:nth-child(3) { transition-delay: .18s; }

/* Tablet */
@media (max-width: 1050px) {
  :root { --shell: min(92vw, 900px); }
  .site-nav { gap: 20px; }
  .hero-title { font-size: clamp(72px, 14vw, 144px); }
  .hero-lower { grid-template-columns: .8fr 1fr; }
  .hero-intro { grid-column: 2; }
  .hero-rail { display: none; }
  .section-heading { grid-template-columns: .65fr 2fr; }
  .section-heading h2 { grid-column: 2; }
  .section-note { grid-column: 2; }
  .press-grid { grid-template-columns: 1fr; }
  .asset-stack { display: grid; grid-template-columns: repeat(3, 1fr); border-left: 1px solid var(--line); }
  .asset-row { grid-template-columns: 1fr auto; padding: 18px; border-right: 1px solid var(--line); }
  .asset-row .asset-thumb { grid-column: 1 / -1; width: 100%; height: auto; aspect-ratio: 16 / 9; }
  .epk-card dl { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .footer-links { max-width: 650px; }
}

/* Mobile */
@media (max-width: 760px) {
  :root { --shell: calc(100vw - 36px); --header-h: 66px; }
  body { padding-bottom: calc(62px + env(safe-area-inset-bottom)); }
  .section { padding-block: 88px; }
  .site-header { height: 66px; padding-inline: 18px; }
  .site-header.nav-active {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .brand { font-size: 11px; }
  .nav-open .brand { position: relative; z-index: 2; }
  .menu-toggle {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .menu-label { font-size: 9px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
  .menu-icon { position: relative; display: block; width: 25px; height: 14px; }
  .menu-icon i { position: absolute; left: 0; width: 100%; height: 1px; background: var(--bone); transition: transform .3s var(--ease-out), top .3s var(--ease-out); }
  .menu-icon i:first-child { top: 3px; }
  .menu-icon i:last-child { top: 11px; }
  .nav-open .menu-icon i:first-child { top: 7px; transform: rotate(45deg); }
  .nav-open .menu-icon i:last-child { top: 7px; transform: rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    padding: 100px 9vw;
    background: rgba(8,9,8,.98);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: visibility .35s, opacity .35s ease, transform .35s var(--ease-out);
  }
  .nav-open .site-nav { visibility: visible; opacity: 1; transform: translateY(0); }
  .site-nav a {
    width: 100%;
    padding: 10px 0;
    color: var(--bone);
    font-family: var(--display);
    font-size: clamp(38px, 12vw, 58px);
    font-weight: 700;
    letter-spacing: -.06em;
    line-height: .98;
  }
  .site-nav a::after { display: none; }
  .site-nav .nav-book { margin-top: 28px; padding: 14px 18px; font-family: var(--body); font-size: 11px; letter-spacing: .12em; }

  .hero { min-height: max(780px, 100svh); }
  .hero-media img { object-position: center top; }
  .hero-shade {
    background:
      linear-gradient(0deg, rgba(4,6,6,.98) 0%, rgba(4,6,6,.68) 39%, rgba(4,6,6,.02) 70%),
      linear-gradient(90deg, rgba(4,6,6,.28), transparent 60%);
  }
  .hero-grid { opacity: .11; background-size: 50% 100%, 50% 100%; -webkit-mask-image: linear-gradient(0deg, #000 0, transparent 70%); mask-image: linear-gradient(0deg, #000 0, transparent 70%); }
  .hero-content { min-height: max(780px, 100svh); padding-top: 88px; padding-bottom: 98px; }
  .hero-kicker { top: 92px; display: block; font-size: 8px; }
  .hero-kicker span { display: block; margin-bottom: 8px; }
  .hero-kicker span + span::before { width: 18px; margin-right: 10px; }
  .hero-title { margin-bottom: 25px; font-size: clamp(60px, 20.4vw, 90px); line-height: .8; letter-spacing: -.09em; }
  .hero-lower { display: block; }
  .hero-tagline { margin-bottom: 20px; font-size: clamp(30px, 10vw, 44px); }
  .hero-intro > p { max-width: 330px; font-size: 14px; }
  .button { min-height: 48px; padding-inline: 16px; gap: 22px; font-size: 10px; }
  .scroll-cue { display: none; }
  .ticker { padding-block: 12px; }
  .ticker-track { gap: 18px; font-size: 9px; }

  .section-heading { display: block; margin-bottom: 54px; }
  .section-heading .eyebrow { margin-bottom: 36px; }
  .section-heading h2, .live h2, .booking h2, .join h2 { font-size: clamp(49px, 16vw, 76px); line-height: .85; }
  .section-note { margin-top: 20px; }
  .release-layout { grid-template-columns: 1fr; gap: 54px; }
  .cover-frame { padding: 12px; }
  .release-lead { font-size: 24px; }
  .track-line { margin-bottom: 24px; }
  .track-line svg { height: 52px; }
  .platform-list a { min-height: 58px; font-size: 11px; }

  .live-inner { grid-template-columns: 1fr; gap: 70px; }
  .live-statement > p:not(.eyebrow) { margin-top: 32px; font-size: 17px; }
  .format-list li { grid-template-columns: 34px 1fr; min-height: 88px; }
  .format-list small { grid-column: 2; margin-top: -20px; padding-bottom: 14px; }
  .format-list strong { font-size: 27px; }

  .press-heading { display: block; }
  .epk-card-image img { aspect-ratio: 4 / 3; }
  .epk-card dl { grid-template-columns: repeat(2, 1fr); }
  .epk-card .button-row { align-items: flex-start; flex-direction: column; }
  .asset-stack { display: flex; border-left: 0; }
  .asset-row { grid-template-columns: 76px 1fr auto; min-height: 112px; padding: 0; border-right: 0; }
  .asset-row .asset-thumb { grid-column: auto; width: 76px; height: 58px; aspect-ratio: auto; }

  .booking h2 { margin-top: 70px; font-size: clamp(66px, 20vw, 96px); }
  .booking-bottom { grid-template-columns: 1fr; gap: 50px; margin-top: 60px; }
  .booking-bottom > p { font-size: 16px; }
  .booking-email { font-size: clamp(20px, 6.4vw, 29px); }

  .join { grid-template-columns: 1fr; gap: 70px; }
  .join .eyebrow { margin-bottom: 36px; }
  .email-field { display: block; border-bottom: 0; }
  .email-field input { width: 100%; height: 64px; border-bottom: 1px solid rgba(240,238,231,.55); font-size: 22px; }
  .email-field button { width: 100%; margin-top: 14px; }

  .site-footer { padding-top: 68px; }
  .footer-brand { font-size: 20vw; }
  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 34px 20px; margin-top: 55px; }
  .footer-bottom { flex-direction: column; margin-top: 58px; }
  .mobile-actions {
    position: fixed;
    z-index: 110;
    inset: auto 0 0;
    height: calc(62px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    padding-bottom: env(safe-area-inset-bottom);
    background: var(--ink);
    border-top: 1px solid var(--line);
  }
  .mobile-actions a { display: grid; place-items: center; font-size: 10px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
  .mobile-actions a:last-child { background: var(--acid); color: var(--ink); }
}

@media (max-width: 390px) {
  .hero-title { font-size: 19vw; }
  .button-row { align-items: stretch; flex-direction: column; }
  .hero-intro .button { width: 100%; }
  .epk-card dl { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js-ready .reveal { opacity: 1; transform: none; }
}

/* Electronic press kit */
.epk-page { background: var(--bone); color: var(--ink); }
.epk-page .skip-link { background: var(--ink); color: var(--bone); }
.epk-topbar {
  position: relative;
  z-index: 10;
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 0 4vw;
  border-bottom: 1px solid var(--line-dark);
  background: var(--bone);
}
.epk-topbar .brand { color: var(--ink); }
.epk-topbar .brand-mark { border-color: var(--cobalt); box-shadow: none; }
.epk-topbar .brand-logo { width: 108px; }
.epk-topbar > p { margin: 0; font-size: 9px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.epk-topbar > p span { margin-left: 18px; color: #70726d; }
.epk-actions { justify-self: end; display: flex; align-items: center; gap: 12px; }
.epk-actions a,
.epk-actions button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border: 1px solid var(--line-dark);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}
.epk-actions a { background: var(--ink); color: var(--bone); }
.epk-actions a:hover, .epk-actions button:hover { background: var(--cobalt); color: white; }
.epk-hero { position: relative; min-height: calc(100svh - 72px); overflow: hidden; background: var(--ink); color: var(--bone); }
.epk-hero-image,
.epk-hero-image picture,
.epk-hero-image img,
.epk-hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.epk-hero-image img { object-fit: cover; object-position: center; }
.epk-hero-shade { background: linear-gradient(90deg, rgba(6,8,8,.86), rgba(6,8,8,.22) 65%), linear-gradient(0deg, rgba(6,8,8,.7), transparent 48%); }
.epk-hero-content {
  position: relative;
  z-index: 1;
  min-height: calc(100svh - 72px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-block: 8vh;
}
.epk-label { margin: 0 0 34px; color: var(--acid); font-size: 9px; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; }
.epk-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(76px, 15.5vw, 250px);
  font-weight: 900;
  letter-spacing: -.09em;
  line-height: .72;
}
.epk-hero h1.epk-logo-title {
  width: min(100%, 1180px);
  font-size: 0;
  line-height: 0;
}
@media (min-width: 761px) {
  .epk-hero h1.epk-logo-title {
    width: min(calc(100% - clamp(180px, 18vw, 245px)), 1080px);
  }
}
.epk-position { margin: 30px 0 48px; font-family: var(--display); font-size: clamp(26px, 3.5vw, 58px); font-weight: 600; letter-spacing: -.05em; text-transform: uppercase; }
.epk-hero-links { display: flex; flex-wrap: wrap; gap: 10px 30px; }
.epk-hero-links a { padding-bottom: 5px; border-bottom: 1px solid rgba(240,238,231,.4); font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.epk-hero-links a:hover { border-color: var(--acid); color: var(--acid); }
.epk-section { padding-block: clamp(85px, 9vw, 145px); border-bottom: 1px solid var(--line-dark); }
.epk-section-title { display: grid; grid-template-columns: .6fr 1.4fr; gap: 7vw; align-items: end; margin-bottom: clamp(50px, 7vw, 100px); }
.epk-section-title > p,
.epk-contact .shell > p { margin: 0; color: #60635d; font-size: 9px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.epk-section-title h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(44px, 7vw, 110px);
  font-weight: 700;
  letter-spacing: -.065em;
  line-height: .86;
  text-transform: uppercase;
}
.facts-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.facts-grid > div { min-height: 154px; padding: 24px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.facts-grid dt, .epk-notes dt { margin-bottom: 16px; color: #737670; font-size: 8px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.facts-grid dd { margin: 0; font-family: var(--display); font-size: clamp(19px, 2vw, 31px); font-weight: 620; letter-spacing: -.035em; line-height: 1.15; }
.facts-grid a { border-bottom: 1px solid var(--ink); }
.facts-grid a:hover { color: var(--cobalt); border-color: var(--cobalt); }
.bio-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 10vw; align-items: start; }
.bio-short > p { margin: 0; font-family: var(--display); font-size: clamp(28px, 4vw, 65px); font-weight: 520; letter-spacing: -.055em; line-height: 1.03; }
.copy-button {
  margin-top: 32px;
  padding: 13px 18px;
  border: 1px solid var(--line-dark);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.copy-button:hover { background: var(--ink); color: var(--bone); }
.bio-long p { margin: 0 0 24px; color: #454842; font-size: 15px; line-height: 1.75; }
.epk-music { background: var(--ink); color: var(--bone); }
.epk-music .epk-section-title > p { color: var(--muted); }
.epk-music-layout { display: grid; grid-template-columns: minmax(300px, .8fr) minmax(360px, 1.2fr); gap: 9vw; align-items: center; }
.epk-music-layout figure { margin: 0; padding: 15px; border: 1px solid var(--line); }
.epk-music-layout figure img { width: 100%; }
.epk-music-lead { margin: 0 0 60px; font-family: var(--display); font-size: clamp(25px, 3.3vw, 53px); letter-spacing: -.045em; line-height: 1.05; }
.epk-notes { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin: 52px 0 0; }
.epk-notes div { padding-top: 18px; border-top: 1px solid var(--line); }
.epk-notes dd { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.epk-asset-grid { display: grid; grid-template-columns: 1.5fr .75fr; gap: 22px; }
.epk-asset-grid article { min-width: 0; }
.epk-asset-grid article > a { display: block; height: 100%; border: 1px solid var(--line-dark); background: #e7e4db; }
.epk-asset-grid img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.epk-asset-grid .portrait-asset img { aspect-ratio: 16 / 9; object-position: center 24%; }
.epk-asset-grid article a > span:last-child { display: flex; justify-content: space-between; gap: 20px; padding: 17px 18px; }
.epk-asset-grid strong, .epk-asset-grid small { display: block; }
.epk-asset-grid strong { font-size: 12px; }
.epk-asset-grid small { color: #6d7069; font-size: 8px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.logo-asset > a { display: flex !important; flex-direction: column; }
.logo-preview { position: relative; flex: 1; min-height: 210px; display: block !important; overflow: hidden; padding: 20px; background: var(--ink); }
.logo-preview img { width: calc(100% - 56px); left: 28px; }
.light-logo .logo-preview { background: var(--bone); color: var(--ink); }
.asset-download-all { display: flex; justify-content: space-between; align-items: center; gap: 40px; margin-top: 34px; }
.asset-download-all > p { max-width: 620px; margin: 0; color: #666963; font-size: 11px; line-height: 1.6; }
.epk-page .asset-download-all .button-light { background: var(--ink); color: var(--bone); }
.epk-page .asset-download-all .button-light:hover { background: var(--cobalt); }
.advance-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.advance-grid > div { min-height: 300px; padding: 28px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.advance-grid span { color: var(--cobalt); font-size: 9px; font-weight: 850; }
.advance-grid h3 { margin: 70px 0 20px; font-family: var(--display); font-size: clamp(25px, 2.8vw, 43px); letter-spacing: -.045em; text-transform: uppercase; }
.advance-grid p { margin: 0; color: #5c5f59; font-size: 13px; line-height: 1.65; }
.epk-contact { padding-block: clamp(95px, 12vw, 190px); background: var(--acid); color: var(--ink); }
.epk-contact .shell > p { color: #4c5d20; }
.epk-contact h2 { margin: 80px 0; font-family: var(--display); font-size: clamp(66px, 12vw, 190px); font-weight: 750; letter-spacing: -.08em; line-height: .79; text-transform: uppercase; }
.epk-contact a { display: flex; justify-content: space-between; padding-bottom: 13px; border-bottom: 4px solid var(--ink); font-family: var(--display); font-size: clamp(26px, 4vw, 64px); font-weight: 680; letter-spacing: -.05em; }
.epk-contact a:hover { color: var(--cobalt); border-color: var(--cobalt); }
.epk-contact small { display: block; margin-top: 16px; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.epk-footer { display: flex; justify-content: space-between; gap: 20px; padding-block: 28px; color: #676a64; font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

@media (max-width: 900px) {
  .epk-topbar { grid-template-columns: 1fr auto; }
  .epk-topbar > p { display: none; }
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .bio-layout { grid-template-columns: 1fr; gap: 70px; }
  .epk-music-layout { gap: 6vw; }
  .epk-asset-grid { grid-template-columns: 1fr 1fr; }
  .epk-asset-grid > article:first-child { grid-column: 1 / -1; }
  .advance-grid > div { min-height: 270px; }
}

@media (max-width: 700px) {
  .epk-page { padding-bottom: 0; }
  .epk-topbar { min-height: 64px; padding-inline: 18px; }
  .epk-actions button { display: none; }
  .epk-actions a { min-height: 38px; }
  .epk-hero { min-height: calc(100svh - 64px); }
  .epk-hero-image img { object-position: center top; }
  .epk-hero-shade { background: linear-gradient(0deg, rgba(6,8,8,.94), rgba(6,8,8,.2) 70%); }
  .epk-hero-content { min-height: calc(100svh - 64px); padding-block: 62px; }
  .epk-hero h1 { font-size: 19vw; }
  .epk-position { margin: 22px 0 34px; font-size: 26px; }
  .epk-hero-links { gap: 10px 18px; }
  .epk-section { padding-block: 80px; }
  .epk-section-title { display: block; margin-bottom: 52px; }
  .epk-section-title > p { margin-bottom: 30px; }
  .epk-section-title h2 { font-size: 14vw; }
  .facts-grid { grid-template-columns: 1fr; }
  .facts-grid > div { min-height: 124px; }
  .bio-short > p { font-size: 30px; }
  .bio-long p { font-size: 14px; }
  .epk-music-layout { grid-template-columns: 1fr; gap: 55px; }
  .epk-music-lead { margin-bottom: 40px; }
  .epk-notes { grid-template-columns: 1fr; }
  .epk-asset-grid { grid-template-columns: 1fr; }
  .epk-asset-grid > article:first-child { grid-column: auto; }
  .epk-asset-grid img, .epk-asset-grid .portrait-asset img { aspect-ratio: 4 / 3; }
  .asset-download-all { align-items: flex-start; flex-direction: column; }
  .advance-grid { grid-template-columns: 1fr; }
  .advance-grid > div { min-height: 230px; }
  .advance-grid h3 { margin-top: 50px; }
  .epk-contact h2 { margin-block: 64px; font-size: 17vw; }
  .epk-contact a { font-size: 6.5vw; }
  .epk-footer { flex-direction: column; }
}

@media print {
  @page { size: A4; margin: 12mm; }
  .epk-page { background: white !important; color: #080908 !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .epk-topbar { min-height: 14mm; padding: 0; background: white; }
  .epk-topbar > p { display: block; }
  .epk-actions { display: none; }
  .epk-hero { min-height: 175mm; page-break-after: always; }
  .epk-hero-content { min-height: 175mm; }
  .epk-hero h1 { font-size: 68pt; }
  .epk-section { padding-block: 15mm; break-inside: avoid; }
  .epk-section-title { margin-bottom: 10mm; }
  .epk-section-title h2 { font-size: 30pt; }
  .facts-grid > div { min-height: 32mm; padding: 5mm; }
  .facts-grid dd { font-size: 14pt; }
  .bio-short > p { font-size: 22pt; }
  .copy-button, .asset-download-all .button { display: none; }
  .bio-long p { font-size: 9pt; }
  .epk-music { background: #080908 !important; color: #f0eee7 !important; break-before: page; }
  .epk-music-layout figure { max-width: 95mm; }
  .epk-asset-grid { gap: 5mm; }
  .logo-preview { min-height: 42mm; }
  .advance-grid > div { min-height: 58mm; }
  .epk-contact { padding-block: 22mm; break-before: page; background: #ccff33 !important; }
  .epk-contact h2 { margin-block: 20mm; font-size: 56pt; }
  .epk-footer { padding-block: 8mm 0; }
  a { color: inherit !important; text-decoration: none !important; }
}

/* Producer-first editorial system / July 2026 */
.site-nav .nav-contact {
  padding: 12px 18px;
  border: 1px solid rgba(204, 255, 51, .58);
  color: var(--acid);
}
.site-nav .nav-contact::after { display: none; }
.site-nav .nav-contact:hover { border-color: var(--acid); background: var(--acid); color: var(--ink); }

.hero-v3 {
  min-height: max(780px, 100svh);
  background:
    radial-gradient(circle at 74% 34%, rgba(20, 92, 255, .24), transparent 22%),
    radial-gradient(circle at 19% 79%, rgba(204, 255, 51, .08), transparent 26%),
    linear-gradient(135deg, #060706 0%, #0b0e0e 56%, #060706 100%);
}
.hero-v3 .hero-grid {
  opacity: .2;
  background-size: 12.5% 100%, 100% 16.666%;
  -webkit-mask-image: linear-gradient(180deg, #000 0, rgba(0,0,0,.45) 72%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0, rgba(0,0,0,.45) 72%, transparent 100%);
}
.hero-atmosphere { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.orbit {
  position: absolute;
  border: 1px solid rgba(240, 238, 231, .11);
  border-radius: 50%;
}
.orbit::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1px solid var(--acid);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 28px rgba(204, 255, 51, .65);
}
.orbit-one { width: min(62vw, 980px); aspect-ratio: 1; top: -28vw; right: -8vw; transform: rotate(-16deg); }
.orbit-one::after { left: 10.5%; bottom: 18%; }
.orbit-two { width: min(32vw, 520px); aspect-ratio: 1; right: 18vw; bottom: -22vw; }
.orbit-two::after { right: 8%; top: 28%; }
.signal-line { position: absolute; height: 1px; background: linear-gradient(90deg, transparent, rgba(204,255,51,.5), transparent); transform-origin: left; }
.signal-line-one { width: 52vw; top: 31%; left: 51%; transform: rotate(-36deg); }
.signal-line-two { width: 36vw; bottom: 24%; left: 4%; transform: rotate(19deg); opacity: .4; }
.hero-v3 .hero-content { min-height: max(780px, 100svh); }
.hero-v3 .hero-kicker { color: rgba(240, 238, 231, .66); }
.hero-index {
  position: absolute;
  top: clamp(128px, 15vh, 175px);
  right: 0;
  display: flex;
  gap: 30px;
  color: rgba(240, 238, 231, .36);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero-v3 .hero-title {
  position: relative;
  z-index: 2;
  margin-bottom: clamp(30px, 4vh, 50px);
  text-shadow: none;
}
.hero-v3 .hero-logo-title {
  width: min(100%, 1100px);
  font-size: 0;
  line-height: 0;
  white-space: normal;
}
.hero-logo-frame {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 803 / 240;
  overflow: hidden;
}
.hero-v3 .hero-title::after {
  content: none;
}
.hero-v3 .hero-lower { grid-template-columns: minmax(270px, .72fr) minmax(360px, .8fr) .62fr; gap: 5vw; }
.hero-v3 .hero-tagline { color: rgba(240, 238, 231, .92); font-size: clamp(25px, 2.65vw, 45px); }
.hero-v3 .hero-intro { grid-column: 2; }
.hero-v3 .hero-intro > p { color: rgba(240, 238, 231, .7); }
.spotify-stamp {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: clamp(126px, 17vh, 190px);
  width: 142px;
  padding: 4px;
  border: 1px solid rgba(240, 238, 231, .25);
  background: rgba(8, 9, 8, .72);
  box-shadow: 0 24px 80px rgba(0,0,0,.42);
  transition: border-color .25s ease, transform .35s var(--ease-out);
}
.spotify-stamp:hover { border-color: var(--acid); transform: translateY(-5px); }
.spotify-stamp img { width: 100%; height: auto; image-rendering: auto; }
.spotify-stamp > span { display: flex; justify-content: space-between; gap: 8px; padding: 8px 3px 3px; }
.spotify-stamp b, .spotify-stamp small { font-size: 6px; letter-spacing: .12em; text-transform: uppercase; }
.spotify-stamp small { color: var(--acid); }

.release-layout-v3 { align-items: start; }
.release-catalog { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: start; }
.release-card { min-width: 0; border-top: 1px solid var(--line); }
.release-card-current { margin-top: clamp(60px, 8vw, 120px); }
.release-card figure { margin: 0; padding-top: 14px; }
.release-card figure img { width: 100%; aspect-ratio: 1; object-fit: cover; filter: saturate(.88) contrast(1.04); }
.release-card figure figcaption { display: flex; justify-content: space-between; padding: 10px 1px 0; color: var(--muted); font-size: 7px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.release-card > div { padding: 26px 1px 0; }
.release-card > div > p { margin: 0 0 10px; color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.release-card h3 { margin: 0 0 24px; font-family: var(--display); font-size: clamp(31px, 3.2vw, 52px); font-weight: 680; letter-spacing: -.055em; line-height: .9; text-transform: uppercase; }
.release-card a { padding-bottom: 5px; border-bottom: 1px solid rgba(240,238,231,.38); color: var(--bone-2); font-size: 9px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.release-card a:hover { border-color: var(--acid); color: var(--acid); }
.release-layout-v3 .release-copy { position: sticky; top: 100px; }

.world-section { background: var(--bone); color: var(--ink); }
.world-inner { display: grid; grid-template-columns: minmax(0, 1.16fr) minmax(350px, .84fr); gap: 10vw; align-items: end; }
.world-section .eyebrow span { color: var(--cobalt); }
.world-section h2,
.contact-panel h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(54px, 8.3vw, 142px);
  font-weight: 750;
  letter-spacing: -.075em;
  line-height: .82;
  text-transform: uppercase;
}
.world-statement > p:not(.eyebrow) { max-width: 560px; margin: 42px 0 0; color: #3f423e; font-size: clamp(18px, 1.6vw, 24px); line-height: 1.4; }
.coordinate-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line-dark); }
.coordinate-list li { display: grid; grid-template-columns: 50px 1fr auto; gap: 16px; align-items: center; min-height: 112px; border-bottom: 1px solid var(--line-dark); }
.coordinate-list li > span { color: #696b66; font-size: 10px; font-weight: 800; }
.coordinate-list strong { font-family: var(--display); font-size: clamp(28px, 2.8vw, 46px); font-weight: 650; letter-spacing: -.045em; text-transform: uppercase; }
.coordinate-list small { color: #666963; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-align: right; text-transform: uppercase; }

.epk-card-portrait img { aspect-ratio: 16 / 8.6; object-position: center 29%; filter: saturate(.45) contrast(1.06); }

.contact-panel { background: var(--acid); color: var(--ink); }
.contact-panel .eyebrow span { color: var(--cobalt); }
.contact-panel h2 { margin-top: clamp(70px, 9vw, 130px); font-size: clamp(74px, 13vw, 208px); }
.contact-bottom { display: grid; grid-template-columns: minmax(280px, .75fr) minmax(380px, 1fr); gap: 10vw; align-items: end; margin-top: clamp(60px, 8vw, 110px); padding-top: 32px; border-top: 1px solid var(--line-dark); }
.contact-bottom > p { max-width: 570px; margin: 0; font-size: clamp(17px, 1.6vw, 24px); line-height: 1.45; }
.contact-email { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 12px; border-bottom: 3px solid var(--ink); font-family: var(--display); font-size: clamp(23px, 3vw, 48px); font-weight: 700; letter-spacing: -.045em; line-height: 1.1; transition: color .2s ease, border-color .2s ease; }
.contact-email:hover { color: var(--cobalt); border-color: var(--cobalt); }
.contact-bottom small { display: block; margin-top: 12px; font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }

.epk-hero-v3 {
  min-height: calc(100svh - 72px);
  background:
    radial-gradient(circle at 77% 31%, rgba(20,92,255,.28), transparent 22%),
    radial-gradient(circle at 18% 86%, rgba(204,255,51,.09), transparent 28%),
    var(--ink);
}
.epk-signal-field { position: absolute; inset: 0; overflow: hidden; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 12.5% 16.666%; opacity: .38; -webkit-mask-image: linear-gradient(180deg, #000, transparent 96%); mask-image: linear-gradient(180deg, #000, transparent 96%); }
.epk-signal-field i { position: absolute; display: block; border: 1px solid rgba(240,238,231,.13); border-radius: 50%; }
.epk-signal-field i:nth-child(1) { width: min(64vw, 930px); aspect-ratio: 1; right: -14vw; top: -31vw; }
.epk-signal-field i:nth-child(2) { width: min(30vw, 450px); aspect-ratio: 1; right: 21vw; bottom: -21vw; }
.epk-signal-field i:nth-child(3) { width: 7px; height: 7px; right: 24%; top: 28%; border-color: var(--acid); box-shadow: 0 0 30px rgba(204,255,51,.65); }
.epk-hero-v3 .epk-hero-content { justify-content: flex-end; padding-bottom: clamp(64px, 8vh, 100px); }
.epk-hero-v3 .epk-position { max-width: 830px; margin-bottom: 24px; }
.epk-coordinate-row { display: flex; flex-wrap: wrap; gap: 10px 34px; margin: 0 0 46px; color: var(--acid); font-size: 8px; font-weight: 850; letter-spacing: .17em; text-transform: uppercase; }
.epk-coordinate-row span + span::before { content: "/"; margin-right: 34px; color: rgba(240,238,231,.38); }
.epk-profile-stamp { position: absolute; top: clamp(54px, 9vh, 100px); right: 0; width: 142px; padding: 4px; border: 1px solid rgba(240,238,231,.24); background: rgba(8,9,8,.66); }
.epk-profile-stamp:hover { border-color: var(--acid); }
.epk-profile-stamp img { width: 100%; height: auto; }
.epk-profile-stamp span { display: block; padding: 8px 3px 3px; color: var(--acid); font-size: 7px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

.epk-release-grid { display: grid; grid-template-columns: minmax(220px, .72fr) minmax(220px, .72fr) minmax(300px, 1fr); gap: clamp(24px, 4vw, 64px); align-items: start; }
.epk-release-grid article figure { margin: 0 0 22px; padding: 12px; border: 1px solid var(--line); }
.epk-release-grid article img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.epk-release-grid article > p { margin: 0 0 10px; color: var(--muted); font-size: 8px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.epk-release-grid h3 { margin: 0 0 22px; font-family: var(--display); font-size: clamp(29px, 3.3vw, 52px); letter-spacing: -.055em; line-height: .95; text-transform: uppercase; }
.epk-release-grid article > a { padding-bottom: 5px; border-bottom: 1px solid rgba(240,238,231,.42); color: var(--bone); font-size: 8px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.epk-release-grid article > a:hover { border-color: var(--acid); color: var(--acid); }
.epk-music-statement > p { margin: 0 0 55px; font-family: var(--display); font-size: clamp(27px, 3.5vw, 56px); letter-spacing: -.05em; line-height: 1; }
.epk-music-statement .epk-notes { margin-bottom: 44px; }
.epk-asset-grid-v3 { grid-template-columns: 1fr 1fr; }
.epk-asset-grid-v3 .portrait-asset img { aspect-ratio: 4 / 3; object-position: center 27%; }
.profile-reference-asset > a { display: flex !important; flex-direction: column; }
.profile-reference-preview { min-height: 360px; flex: 1; display: grid !important; place-items: center; padding: 28px; background: var(--ink); }
.profile-reference-preview img { width: 133px !important; max-width: 100%; height: auto !important; aspect-ratio: auto !important; box-shadow: 0 22px 70px rgba(0,0,0,.48); }

@media (max-width: 1050px) {
  .hero-v3 .hero-lower { grid-template-columns: .82fr 1fr; }
  .hero-v3 .hero-intro { grid-column: 2; }
  .spotify-stamp { width: 118px; bottom: clamp(122px, 17vh, 176px); }
  .world-inner { grid-template-columns: 1fr 1fr; gap: 7vw; }
  .epk-release-grid { grid-template-columns: 1fr 1fr; }
  .epk-music-statement { grid-column: 1 / -1; padding-top: 30px; }
  .epk-music-statement .epk-notes { max-width: 700px; }
}

@media (max-width: 760px) {
  .site-nav .nav-contact { width: auto; margin-top: 24px; padding: 14px 18px; background: var(--acid); color: var(--ink); font-family: var(--body); font-size: 11px; letter-spacing: .12em; }
  .hero-v3 { min-height: max(790px, 100svh); }
  .hero-v3 .hero-content { min-height: max(790px, 100svh); padding-bottom: 92px; }
  .hero-v3 .hero-grid { background-size: 25% 100%, 100% 12.5%; opacity: .16; }
  .orbit-one { width: 108vw; top: -28vw; right: -45vw; }
  .orbit-two { width: 70vw; right: 44vw; bottom: -34vw; }
  .signal-line-one { width: 100vw; left: 42%; }
  .hero-index { display: none; }
  .hero-v3 .hero-kicker { top: 88px; }
  .hero-v3 .hero-title { margin-bottom: 30px; font-size: clamp(58px, 20.4vw, 90px); }
  .hero-v3 .hero-lower { display: block; }
  .hero-v3 .hero-tagline { margin-bottom: 18px; font-size: clamp(27px, 8.8vw, 40px); }
  .hero-v3 .hero-intro > p { max-width: 315px; }
  .spotify-stamp { top: 146px; right: 0; bottom: auto; width: 96px; }
  .spotify-stamp > span { display: block; }
  .spotify-stamp b, .spotify-stamp small { display: block; font-size: 5.5px; }
  .spotify-stamp small { margin-top: 3px; }
  .release-catalog { grid-template-columns: 1fr 1fr; gap: 14px; }
  .release-card-current { margin-top: 54px; }
  .release-layout-v3 .release-copy { position: static; }
  .release-card h3 { font-size: clamp(25px, 8vw, 36px); }
  .release-card > div { padding-top: 18px; }
  .world-inner { grid-template-columns: 1fr; gap: 70px; }
  .world-statement, .coordinate-list { min-width: 0; }
  .world-section h2, .contact-panel h2 { font-size: clamp(49px, 16vw, 76px); line-height: .85; }
  .world-section h2 { font-size: clamp(43px, 13.8vw, 60px); }
  .world-statement > p:not(.eyebrow) { margin-top: 32px; font-size: 17px; }
  .coordinate-list li { grid-template-columns: 34px 1fr; min-height: 92px; }
  .coordinate-list small { grid-column: 2; margin-top: -18px; padding-bottom: 14px; text-align: left; }
  .coordinate-list strong { font-size: 29px; }
  .epk-card-portrait img { aspect-ratio: 4 / 3; object-position: center 24%; }
  .contact-panel h2 { margin-top: 70px; font-size: clamp(66px, 20vw, 96px); }
  .contact-bottom { grid-template-columns: 1fr; gap: 50px; margin-top: 60px; }
  .contact-bottom > p { font-size: 16px; }
  .contact-email { font-size: clamp(20px, 6.4vw, 29px); }
  .footer-brand, .footer-links { min-width: 0; }
  .footer-brand { font-size: 17.5vw; }
  .epk-profile-stamp { top: 54px; width: 82px; }
  .epk-hero-v3 .epk-hero-content { padding-block: 60px; }
  .epk-hero-v3 .epk-position { max-width: 290px; font-size: 24px; }
  .epk-coordinate-row { max-width: 240px; gap: 8px 12px; margin-bottom: 34px; }
  .epk-coordinate-row span + span::before { margin-right: 12px; }
  .epk-release-grid { grid-template-columns: 1fr; }
  .epk-music-statement { grid-column: auto; padding-top: 28px; }
  .epk-asset-grid-v3 { grid-template-columns: 1fr; }
  .profile-reference-preview { min-height: 280px; }
}

@media (max-width: 390px) {
  .release-catalog { grid-template-columns: 1fr; gap: 48px; }
  .release-card-current { margin-top: 0; }
  .spotify-stamp { top: 142px; width: 86px; }
  .contact-email { font-size: 19px; }
}

/* Signal archive and self-contained listening / July 2026 */
.release-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}
.release-card .release-actions button,
.release-card .release-actions a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 13px;
  border: 1px solid rgba(240, 238, 231, .34);
  background: transparent;
  color: var(--bone);
  cursor: pointer;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.release-card .release-actions button {
  border-color: rgba(204, 255, 51, .62);
  color: var(--acid);
}
.release-card .release-actions button:hover,
.release-card .release-actions button[aria-pressed="true"] {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--ink);
}
.release-card .release-actions a:hover {
  border-color: var(--bone);
  background: var(--bone);
  color: var(--ink);
}
.release-card.is-playing figure { border-top-color: var(--acid); }
.release-card.is-playing figure img { outline: 2px solid var(--acid); outline-offset: -2px; }

.signal-player .spotify-load {
  justify-content: flex-start;
  padding: 15px 18px;
  text-align: left;
}
.signal-player .spotify-load > span:first-child {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.signal-player .spotify-load > span:last-child { color: inherit; }
.signal-player .spotify-load b,
.signal-player .spotify-load small { display: block; }
.signal-player .spotify-load b { color: var(--bone); }
.signal-player .spotify-load small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 7px;
  letter-spacing: .1em;
}
.signal-player .spotify-load:hover b,
.signal-player .spotify-load:hover small { color: var(--ink); }

.signal-archive {
  position: relative;
  overflow: hidden;
  background: var(--cobalt);
  color: white;
}
.signal-archive::before {
  content: "A";
  position: absolute;
  right: -0.09em;
  bottom: -.36em;
  color: rgba(255, 255, 255, .055);
  font-family: var(--display);
  font-size: min(74vw, 1050px);
  font-weight: 900;
  letter-spacing: -.12em;
  line-height: 1;
  pointer-events: none;
}
.archive-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(310px, .76fr) minmax(560px, 1.24fr);
  gap: clamp(70px, 10vw, 170px);
  align-items: start;
}
.signal-archive .eyebrow { color: rgba(255, 255, 255, .7); }
.signal-archive .eyebrow span { color: var(--acid); }
.archive-intro h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(55px, 7.7vw, 126px);
  font-weight: 760;
  letter-spacing: -.074em;
  line-height: .84;
  text-transform: uppercase;
}
.archive-intro > p:not(.eyebrow) {
  max-width: 600px;
  margin: 42px 0 0;
  color: rgba(255, 255, 255, .75);
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.55;
}
.archive-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, .34);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.archive-status > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 16px rgba(204, 255, 51, .75);
}
.archive-ledger { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255, 255, 255, .48); }
.archive-ledger li { border-bottom: 1px solid rgba(255, 255, 255, .34); }
.archive-ledger a {
  display: grid;
  grid-template-columns: 68px minmax(170px, 1fr) minmax(120px, .65fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 114px;
  padding: 16px 15px 16px 2px;
  transition: background .24s ease, box-shadow .24s ease, color .24s ease, padding .3s var(--ease-out);
}
.archive-ledger a:hover,
.archive-ledger a:focus-visible {
  padding-inline: 16px;
  background: var(--acid);
  color: var(--ink);
  box-shadow: 0 0 0 1px var(--acid);
}
.archive-ledger span,
.archive-ledger small,
.archive-ledger i {
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.archive-ledger span { color: var(--acid); }
.archive-ledger strong {
  font-family: var(--display);
  font-size: clamp(23px, 2.2vw, 36px);
  font-weight: 680;
  letter-spacing: -.045em;
  line-height: 1;
  text-transform: uppercase;
}
.archive-ledger small { color: rgba(255, 255, 255, .62); }
.archive-ledger i { font-style: normal; text-align: right; }
.archive-ledger a:hover span,
.archive-ledger a:hover small,
.archive-ledger a:focus-visible span,
.archive-ledger a:focus-visible small { color: var(--ink); }

.epk-profile-stamp { width: clamp(164px, 14vw, 220px); }
.epk-asset-grid-v3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.epk-asset-grid-v3 > article:first-child { grid-column: auto; }
.epk-asset-grid-v3 .portrait-asset img,
.epk-asset-grid-v3 .cover-asset img { aspect-ratio: 1; }
.epk-asset-grid-v3 .neon-portrait-asset img { object-position: center; }
.epk-asset-grid-v3 .editorial-portrait-asset img { object-position: center 27%; }
.bio-long .copy-button { margin-top: 4px; }

@media (max-width: 1050px) {
  .archive-inner { grid-template-columns: 1fr; gap: 75px; }
  .archive-intro > p:not(.eyebrow) { max-width: 700px; }
  .epk-asset-grid-v3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .epk-asset-grid-v3 > article:first-child { grid-column: auto; }
}

@media (max-width: 760px) {
  .release-actions { align-items: flex-start; flex-direction: column; }
  .release-card .release-actions button,
  .release-card .release-actions a { min-height: 36px; padding-inline: 10px; font-size: 7px; }
  .archive-inner { gap: 60px; }
  .archive-intro h2 { font-size: clamp(46px, 15vw, 72px); }
  .archive-intro > p:not(.eyebrow) { margin-top: 30px; font-size: 16px; }
  .archive-ledger a {
    grid-template-columns: 42px 1fr;
    gap: 8px 14px;
    min-height: 108px;
    padding-block: 18px;
  }
  .archive-ledger strong { font-size: 27px; }
  .archive-ledger small { grid-column: 2; }
  .archive-ledger i { grid-column: 2; text-align: left; }
  .epk-profile-stamp { top: 54px; width: 92px; }
  .epk-asset-grid-v3 { grid-template-columns: 1fr; }
  .epk-asset-grid-v3 .portrait-asset img,
  .epk-asset-grid-v3 .cover-asset img { aspect-ratio: 1; }
}

/* Mobile-first artist funnel / July 2026 */
.hero-v3 .hero-lower {
  grid-template-columns: minmax(210px, .55fr) minmax(350px, .92fr) minmax(330px, .78fr);
  gap: clamp(24px, 3.4vw, 58px);
  align-items: end;
}
.hero-positioning { min-width: 0; }
.hero-value {
  max-width: 320px;
  margin: 20px 0 0;
  color: rgba(240, 238, 231, .58);
  font-size: clamp(12px, 1vw, 15px);
  line-height: 1.5;
}
.hero-release {
  min-width: 0;
  display: grid;
  grid-template-columns: clamp(92px, 8.3vw, 126px) minmax(0, 1fr);
  gap: clamp(16px, 1.6vw, 25px);
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid rgba(240, 238, 231, .32);
  border-bottom: 1px solid rgba(240, 238, 231, .18);
}
.hero-release-art {
  position: relative;
  display: block;
  overflow: hidden;
  background: #111;
}
.hero-release-art img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: saturate(.9) contrast(1.04);
  transition: filter .3s ease, transform .45s var(--ease-out);
}
.hero-release-art > span {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  font-size: 10px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .4);
}
.hero-release-art:hover img { filter: saturate(1) contrast(1.04); transform: scale(1.035); }
.hero-release-copy { min-width: 0; }
.hero-release-copy > p,
.hero-signup-eyebrow,
.hero-signup-form > label {
  margin: 0 0 8px;
  color: var(--acid);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.hero-release-copy h2 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: .9;
  text-transform: uppercase;
}
.hero-release-links { display: flex; flex-wrap: wrap; gap: 9px 18px; }
.hero-release-links a {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(240, 238, 231, .35);
  color: var(--bone);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.hero-release-links a:first-child { border-color: var(--acid); }
.hero-release-links a:hover { border-color: var(--bone); color: var(--acid); }

.hero-signup {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(240, 238, 231, .24);
  background: rgba(8, 9, 8, .64);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .26);
  backdrop-filter: blur(14px);
  scroll-margin-top: 90px;
}
.hero-signup h2 {
  max-width: 330px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(27px, 2.45vw, 40px);
  font-weight: 690;
  letter-spacing: -.05em;
  line-height: .92;
  text-transform: uppercase;
}
.hero-signup-value {
  max-width: 410px;
  margin: 11px 0 16px;
  color: rgba(240, 238, 231, .63);
  font-size: 11px;
  line-height: 1.45;
}
.hero-signup-form { position: relative; }
.hero-signup-form > label { display: block; color: rgba(240, 238, 231, .72); }
.hero-signup-form .email-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  border: 1px solid rgba(240, 238, 231, .42);
  background: rgba(0, 0, 0, .18);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.hero-signup-form .email-field:focus-within {
  border-color: var(--acid);
  box-shadow: 0 0 0 2px rgba(204, 255, 51, .16);
}
.hero-signup-form .email-field input {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  font-family: var(--body);
  font-size: 16px;
  letter-spacing: 0;
}
.hero-signup-form .email-field input:focus-visible { outline: 0; }
.hero-signup-form .email-field button {
  align-self: stretch;
  min-width: 90px;
  min-height: 50px;
  padding-inline: 14px;
}
.form-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.signup-trust,
.signup-status {
  margin: 8px 0 0;
  font-size: 8px;
  line-height: 1.35;
}
.signup-trust { color: rgba(240, 238, 231, .46); }
.signup-status { min-height: 11px; color: var(--bone); }
.signup-status[data-state="success"] { color: var(--acid); }
.signup-status[data-state="error"] { color: #ffb7a8; }
.hero-release-art:focus-visible,
.hero-release-links a:focus-visible,
.mobile-actions a:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 3px;
}
.hero-v3 .spotify-stamp {
  top: clamp(126px, 15vh, 175px);
  bottom: auto;
  width: 98px;
}
.hero-v3 .spotify-stamp img { aspect-ratio: 133 / 160; object-fit: cover; }
.mobile-actions small { display: none; }

@media (max-width: 1050px) and (min-width: 761px) {
  .hero-v3 .hero-lower {
    grid-template-columns: minmax(260px, .72fr) minmax(340px, 1fr);
    gap: 24px 5vw;
  }
  .hero-positioning { align-self: center; }
  .hero-release { grid-column: 1; }
  .hero-signup { grid-column: 2; grid-row: 1 / span 2; }
  .hero-v3 .spotify-stamp { width: 88px; }
}

@media (max-width: 760px) {
  body { padding-bottom: calc(66px + env(safe-area-inset-bottom)); }
  .site-nav { overflow-y: auto; }
  .hero-v3,
  .hero-v3 .hero-content {
    min-height: 100svh;
  }
  .hero-v3 .hero-content {
    justify-content: flex-start;
    padding-top: 82px;
    padding-bottom: calc(80px + env(safe-area-inset-bottom));
  }
  .hero-v3 .hero-kicker {
    position: static;
    min-height: 18px;
    padding-right: 78px;
    font-size: 7px;
  }
  .hero-v3 .hero-kicker span { margin: 0; }
  .hero-v3 .hero-kicker span + span { display: none; }
  .hero-v3 .hero-title {
    margin: 18px 0 20px;
    font-size: clamp(57px, 18.4vw, 78px);
    line-height: .78;
  }
  .hero-v3 .hero-title::after { right: .5%; width: 10%; }
  .hero-v3 .hero-lower {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .hero-positioning {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    align-items: end;
  }
  .hero-v3 .hero-tagline {
    margin: 0;
    font-size: 20px;
    line-height: .88;
  }
  .hero-value {
    max-width: 230px;
    margin: 0;
    font-size: 10px;
    line-height: 1.42;
  }
  .hero-release {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 14px;
    padding: 10px 0;
  }
  .hero-release-art > span { width: 27px; height: 27px; right: 6px; bottom: 6px; font-size: 9px; }
  .hero-release-copy > p { margin-bottom: 5px; font-size: 7px; }
  .hero-release-copy h2 { margin-bottom: 7px; font-size: 29px; }
  .hero-release-links { gap: 4px 14px; }
  .hero-release-links a { min-height: 28px; font-size: 7px; }
  .hero-signup {
    padding: 13px;
    background: rgba(8, 9, 8, .76);
  }
  .hero-signup-eyebrow { margin-bottom: 5px; font-size: 7px; }
  .hero-signup h2 { max-width: none; font-size: 25px; line-height: .92; }
  .hero-signup-value { margin: 7px 0 10px; font-size: 10px; line-height: 1.35; }
  .hero-signup-form > label { margin-bottom: 6px; font-size: 7px; }
  .hero-signup-form .email-field {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    border: 1px solid rgba(240, 238, 231, .42);
  }
  .hero-signup-form .email-field input {
    height: 46px;
    padding-inline: 11px;
    border: 0;
    font-size: 16px;
  }
  .hero-signup-form .email-field button {
    width: auto;
    min-width: 84px;
    min-height: 46px;
    margin: 0;
    padding-inline: 11px;
    font-size: 8px;
  }
  .signup-trust,
  .signup-status { margin-top: 6px; font-size: 7px; }
  .hero-v3 .spotify-stamp {
    top: 77px;
    right: 0;
    width: 58px;
    padding: 3px;
  }
  .hero-v3 .spotify-stamp > span { display: none; }
  .hero-v3 .hero-rail { display: none; }
  .mobile-actions {
    height: calc(66px + env(safe-area-inset-bottom));
    grid-template-columns: 1fr 1fr;
    padding-right: env(safe-area-inset-right);
    padding-bottom: env(safe-area-inset-bottom);
    padding-left: env(safe-area-inset-left);
  }
  .mobile-actions a {
    min-height: 66px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 10px;
    line-height: 1;
  }
  .mobile-actions a:last-child { background: var(--acid); color: var(--ink); }
  .mobile-actions small {
    display: block;
    font-size: 6px;
    font-weight: 850;
    letter-spacing: .14em;
    opacity: .58;
  }
  .release-card .release-actions button,
  .release-card .release-actions a { min-height: 44px; padding-inline: 13px; font-size: 8px; }
}

@media (max-width: 760px) and (max-height: 740px) {
  .hero-v3 .hero-content { padding-top: 72px; }
  .hero-v3 .hero-kicker { min-height: 14px; }
  .hero-v3 .hero-title { margin: 12px 0 14px; font-size: clamp(52px, 16.8vw, 68px); }
  .hero-v3 .hero-lower { gap: 9px; }
  .hero-value { display: none; }
  .hero-positioning { display: block; }
  .hero-v3 .hero-tagline { font-size: 18px; }
  .hero-release { grid-template-columns: 68px minmax(0, 1fr); padding: 7px 0; }
  .hero-release-copy h2 { font-size: 25px; }
  .hero-release-links a { min-height: 25px; }
  .hero-signup { padding: 10px 12px; }
  .hero-signup h2 { font-size: 22px; }
  .hero-signup-value { margin: 5px 0 7px; }
  .signup-trust { margin-top: 4px; }
  .hero-v3 .spotify-stamp { top: 69px; width: 52px; }
}

@media (max-width: 760px) and (max-height: 620px) {
  body { padding-bottom: calc(58px + env(safe-area-inset-bottom)); }
  .hero-v3 .hero-content { padding-top: 64px; padding-bottom: calc(68px + env(safe-area-inset-bottom)); }
  .hero-v3 .hero-title { margin: 8px 0 9px; font-size: clamp(48px, 15.5vw, 61px); }
  .hero-v3 .hero-tagline { font-size: 16px; }
  .hero-release { grid-template-columns: 60px minmax(0, 1fr); gap: 11px; padding: 5px 0; }
  .hero-release-copy > p { margin-bottom: 3px; }
  .hero-release-copy h2 { margin-bottom: 3px; font-size: 23px; }
  .hero-release-links a { min-height: 23px; }
  .hero-signup { padding: 8px 11px; }
  .hero-signup h2 { font-size: 20px; }
  .hero-signup-value { display: none; }
  .hero-signup-form > label { margin-top: 7px; }
  .hero-signup-form .email-field input { height: 43px; }
  .hero-signup-form .email-field button { min-height: 43px; }
  .mobile-actions { height: calc(58px + env(safe-area-inset-bottom)); }
  .mobile-actions a { min-height: 58px; }
  .hero-v3 .spotify-stamp { top: 61px; width: 47px; }
}

@media (max-width: 340px) {
  .hero-v3 .hero-content { padding-inline: 18px; }
  .hero-v3 .hero-title { font-size: 17.7vw; }
  .hero-value { display: none; }
  .hero-positioning { display: block; }
  .hero-release { grid-template-columns: 76px minmax(0, 1fr); }
  .hero-signup-form .email-field button { min-width: 78px; padding-inline: 8px; }
  .hero-v3 .spotify-stamp { display: none; }
}

/* Official objects / Printify catalog */
.merch-section {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 14% 17%, rgba(20, 92, 255, .19), transparent 27%),
    radial-gradient(circle at 92% 83%, rgba(204, 255, 51, .1), transparent 25%),
    var(--ink);
  scroll-margin-top: var(--header-h);
}
.merch-section::before {
  content: "M01";
  position: absolute;
  right: -2vw;
  bottom: -.27em;
  color: rgba(240, 238, 231, .035);
  font-family: var(--display);
  font-size: min(37vw, 600px);
  font-weight: 800;
  letter-spacing: -.1em;
  line-height: .74;
  pointer-events: none;
}
.merch-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, .52fr) minmax(0, 1.48fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: start;
}
.merch-intro {
  position: sticky;
  top: calc(var(--header-h) + 32px);
}
.merch-intro .eyebrow { margin-bottom: clamp(38px, 5vw, 70px); }
.merch-wordmark {
  position: relative;
  width: min(290px, 86%);
  aspect-ratio: 803 / 240;
  display: block;
  overflow: hidden;
  margin: 0 0 clamp(30px, 4vw, 54px);
}
.merch-wordmark img {
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.merch-intro h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(62px, 7.4vw, 124px);
  font-weight: 700;
  letter-spacing: -.075em;
  line-height: .78;
  text-transform: uppercase;
}
.merch-intro > p:not(.eyebrow) {
  max-width: 390px;
  margin: 40px 0 0;
  color: rgba(240, 238, 231, .62);
  font-size: clamp(15px, 1.2vw, 19px);
  line-height: 1.55;
}
.merch-catalog {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.merch-product {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(240, 238, 231, .16);
  background: var(--bone);
  color: var(--ink);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .8s var(--ease-out), box-shadow .35s ease;
}
.merch-section.is-ready .merch-product { opacity: 1; transform: translateY(0); }
.merch-product:hover { box-shadow: 0 35px 100px rgba(0, 0, 0, .36); }
.merch-product-art {
  position: relative;
  display: block;
  overflow: hidden;
  background: #e8e7e2;
}
.merch-product-art img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform .75s var(--ease-out), filter .35s ease;
}
.merch-product-art:hover img { transform: scale(1.025); filter: contrast(1.03); }
.merch-product-art > span {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 10px;
  background: var(--ink);
  color: var(--acid);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: .15em;
}
.merch-product-body {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  padding: clamp(24px, 3vw, 42px);
}
.merch-product-meta {
  margin: 0 0 23px;
  color: #676a64;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.merch-product h3 {
  max-width: 660px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(29px, 2.8vw, 48px);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: .92;
  text-transform: uppercase;
}
.merch-product-detail {
  max-width: 580px;
  margin: 22px 0 0;
  color: #4f524d;
  font-size: 13px;
  line-height: 1.6;
}
.merch-purchase {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 34px;
}
.merch-purchase strong {
  font-family: var(--display);
  font-size: clamp(23px, 2vw, 32px);
  letter-spacing: -.04em;
}
.merch-purchase a {
  min-height: 50px;
  display: inline-flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  background: var(--acid);
  color: var(--ink);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.merch-purchase a:hover,
.merch-purchase a:focus-visible { background: var(--cobalt); color: #fff; transform: translateY(-2px); }
.merch-catalog.is-single { grid-template-columns: 1fr; }
.merch-catalog.is-single .merch-product {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(290px, .72fr);
}
.merch-catalog.is-single .merch-product-art img { height: 100%; min-height: 610px; }
.merch-catalog.is-single .merch-product-body { min-height: 610px; }
.merch-foot {
  grid-column: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: end;
  padding-top: 26px;
  border-top: 1px solid rgba(240, 238, 231, .2);
}
.merch-foot p {
  max-width: 670px;
  margin: 0;
  color: rgba(240, 238, 231, .48);
  font-size: 10px;
  line-height: 1.55;
}
.merch-foot a {
  display: inline-flex;
  gap: 20px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(240, 238, 231, .45);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.merch-foot a:hover { border-color: var(--acid); color: var(--acid); }

@media (max-width: 1120px) {
  .merch-inner { grid-template-columns: minmax(230px, .48fr) minmax(0, 1.52fr); gap: 6vw; }
  .merch-catalog.is-single .merch-product { grid-template-columns: 1fr; }
  .merch-catalog.is-single .merch-product-art img { min-height: 0; }
  .merch-catalog.is-single .merch-product-body { min-height: 330px; }
}

@media (max-width: 760px) {
  .merch-section { padding-block: 88px; }
  .merch-section::before { right: -7vw; bottom: -.12em; font-size: 66vw; }
  .merch-inner { display: block; width: 100%; }
  .merch-intro { position: static; width: var(--shell); margin-inline: auto; }
  .merch-intro .eyebrow { margin-bottom: 34px; }
  .merch-wordmark { width: 240px; margin-bottom: 30px; }
  .merch-intro h2 { font-size: clamp(54px, 17vw, 78px); }
  .merch-intro > p:not(.eyebrow) { margin-top: 28px; font-size: 15px; }
  .merch-catalog {
    width: 100%;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 82vw;
    grid-template-columns: none;
    gap: 14px;
    margin-top: 52px;
    padding-inline: 4vw;
    overflow-x: auto;
    scroll-padding-inline: 4vw;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .merch-catalog::-webkit-scrollbar { display: none; }
  .merch-catalog.is-single {
    width: var(--shell);
    display: block;
    margin-inline: auto;
    padding: 0;
    overflow: visible;
  }
  .merch-product { scroll-snap-align: start; }
  .merch-catalog.is-single .merch-product { display: block; }
  .merch-catalog.is-single .merch-product-body { min-height: 300px; }
  .merch-product-art > span { top: 11px; left: 11px; }
  .merch-product-body { min-height: 300px; padding: 23px; }
  .merch-product h3 { font-size: clamp(34px, 10.8vw, 48px); }
  .merch-product-detail { margin-top: 17px; font-size: 12px; }
  .merch-purchase { gap: 16px; padding-top: 28px; }
  .merch-purchase strong { font-size: 25px; }
  .merch-purchase a { min-height: 48px; gap: 12px; padding-inline: 14px; font-size: 7px; }
  .merch-foot {
    width: var(--shell);
    display: block;
    margin: 28px auto 0;
    padding-top: 22px;
  }
  .merch-foot p { font-size: 9px; }
  .merch-foot a { min-height: 44px; align-items: center; margin-top: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .merch-product { opacity: 1; transform: none; transition: none; }
  .merch-product-art img, .merch-purchase a { transition: none; }
}

/* Artist archive environments and official-product campaign / July 2026 */
.world-section { overflow: hidden; }
.world-visuals {
  position: relative;
  margin-top: clamp(90px, 10vw, 170px);
  padding-bottom: clamp(78px, 8vw, 130px);
}
.world-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #151615;
}
.world-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.world-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.world-visual figcaption {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 12px;
  color: #fff;
}
.world-visual figcaption span {
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.world-visual figcaption strong {
  font-family: var(--display);
  font-weight: 750;
  letter-spacing: -.065em;
  line-height: .82;
  text-transform: uppercase;
}
.world-visual-primary {
  width: calc(100% - clamp(145px, 17vw, 300px));
  aspect-ratio: 2 / 1;
}
.world-visual-primary > img {
  object-position: 50% 50%;
  filter: saturate(.82) contrast(1.08);
}
.world-visual-primary::after {
  background: linear-gradient(180deg, transparent 36%, rgba(6, 7, 6, .1) 53%, rgba(6, 7, 6, .85) 100%);
}
.world-visual-primary figcaption {
  left: clamp(24px, 3.4vw, 58px);
  bottom: clamp(24px, 3.3vw, 54px);
}
.world-visual-primary figcaption span { color: var(--acid); }
.world-visual-primary figcaption strong { font-size: clamp(38px, 4.7vw, 78px); }
.world-visual-secondary {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  width: clamp(250px, 28vw, 460px);
  aspect-ratio: 3 / 4;
  border: clamp(7px, .72vw, 12px) solid var(--bone);
  box-shadow: 0 34px 90px rgba(8, 9, 8, .28);
}
.world-visual-secondary > img {
  object-position: 48% 50%;
  filter: saturate(.92) contrast(1.04);
}
.world-visual-secondary::after {
  background: linear-gradient(180deg, rgba(6, 7, 6, .04), rgba(6, 7, 6, .72));
}
.world-visual-secondary figcaption {
  right: clamp(18px, 2vw, 30px);
  bottom: clamp(18px, 2vw, 30px);
  left: clamp(18px, 2vw, 30px);
}
.world-visual-secondary figcaption span { color: rgba(255, 255, 255, .72); }
.world-visual-secondary figcaption strong { font-size: clamp(27px, 3vw, 48px); }
.world-visual-note {
  position: absolute;
  bottom: 20px;
  left: 1px;
  margin: 0;
  color: #5d605a;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .18em;
}

.merch-inner {
  column-gap: clamp(50px, 8vw, 130px);
  row-gap: 24px;
}
.merch-intro {
  grid-column: 1;
  grid-row: 1 / span 3;
}
.merch-campaign {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  min-height: 440px;
  display: grid;
  grid-template-columns: minmax(230px, .78fr) minmax(360px, 1.22fr);
  overflow: hidden;
  border: 1px solid rgba(240, 238, 231, .18);
  background: var(--bone);
  color: var(--ink);
}
.merch-campaign-scene {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #102634;
}
.merch-campaign-scene > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 50%;
  filter: saturate(.9) contrast(1.06);
  transition: transform 1.1s var(--ease-out), filter .4s ease;
}
.merch-campaign-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 9, .04) 18%, rgba(5, 7, 9, .84) 100%);
  pointer-events: none;
}
.merch-campaign-scene > div {
  position: absolute;
  z-index: 2;
  right: clamp(22px, 2.2vw, 36px);
  bottom: clamp(24px, 2.5vw, 40px);
  left: clamp(22px, 2.2vw, 36px);
  color: #fff;
}
.merch-campaign-scene p {
  margin: 0 0 20px;
  color: var(--acid);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.merch-campaign-scene h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(38px, 4vw, 68px);
  font-weight: 750;
  letter-spacing: -.065em;
  line-height: .84;
  text-transform: uppercase;
}
.merch-campaign-scene span {
  display: block;
  max-width: 280px;
  margin-top: 19px;
  color: rgba(255, 255, 255, .72);
  font-size: 10px;
  line-height: 1.5;
}
.merch-campaign-products {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: #efeee8;
}
.merch-campaign-product {
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: #f7f6f1;
  color: var(--ink);
  transition: background .25s ease, color .25s ease;
}
.merch-campaign-product + .merch-campaign-product { border-left: 1px solid rgba(8, 9, 8, .13); }
.merch-campaign-product > img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: saturate(.88) contrast(1.03);
  transition: filter .3s ease;
}
.merch-campaign-product > span {
  min-height: 132px;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(18px, 2vw, 30px);
  border-top: 1px solid rgba(8, 9, 8, .13);
}
.merch-campaign-product small {
  margin-bottom: 12px;
  color: #676a64;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: .16em;
}
.merch-campaign-product strong {
  font-family: var(--display);
  font-size: clamp(23px, 2vw, 34px);
  font-style: normal;
  font-weight: 750;
  letter-spacing: -.05em;
  line-height: .9;
  text-transform: uppercase;
}
.merch-campaign-product em {
  margin-top: auto;
  padding-top: 22px;
  font-size: 7px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.merch-catalog {
  grid-column: 2;
  grid-row: 2;
}
.merch-foot { grid-row: 3; }

@media (hover: hover) {
  .merch-campaign:hover .merch-campaign-scene > img { transform: scale(1.035); filter: saturate(1) contrast(1.08); }
  .merch-campaign-product:hover,
  .merch-campaign-product:focus-visible { background: var(--acid); color: var(--ink); }
  .merch-campaign-product:hover > img { filter: saturate(1) contrast(1.06); }
}

@media (max-width: 1120px) {
  .merch-campaign { grid-template-columns: minmax(210px, .72fr) minmax(330px, 1.28fr); min-height: 400px; }
  .merch-campaign-product > span { min-height: 118px; }
}

@media (max-width: 760px) {
  .world-visuals {
    width: 100%;
    margin-top: 76px;
    padding-bottom: 104px;
  }
  .world-visual-primary {
    width: calc(100% - 30px);
    aspect-ratio: 4 / 5;
  }
  .world-visual-primary > img { object-position: 50% 50%; }
  .world-visual-primary figcaption {
    right: auto;
    bottom: 32px;
    left: 6vw;
    max-width: 39vw;
    gap: 8px;
  }
  .world-visual-primary figcaption span { font-size: 6px; line-height: 1.5; }
  .world-visual-primary figcaption strong { font-size: clamp(34px, 9.8vw, 40px); }
  .world-visual-secondary {
    width: min(55vw, 232px);
    border-width: 6px;
  }
  .world-visual-secondary figcaption { right: 14px; bottom: 16px; left: 14px; }
  .world-visual-secondary figcaption span { font-size: 6px; }
  .world-visual-secondary figcaption strong { font-size: clamp(23px, 7vw, 31px); }
  .world-visual-note { bottom: 29px; left: 6vw; font-size: 7px; }

  .merch-intro,
  .merch-campaign,
  .merch-catalog,
  .merch-foot { grid-column: auto; grid-row: auto; }
  .merch-campaign {
    width: var(--shell);
    min-height: 0;
    display: block;
    margin: 52px auto 0;
  }
  .merch-campaign-scene {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
  .merch-campaign-scene h3 { font-size: clamp(38px, 11vw, 52px); }
  .merch-campaign-scene span { max-width: 240px; font-size: 9px; }
  .merch-campaign-product > span { min-height: 128px; padding: 16px; }
  .merch-campaign-product strong { font-size: clamp(21px, 6.5vw, 28px); }
  .merch-catalog { margin-top: 16px; }
}

@media (max-width: 380px) {
  .merch-campaign-scene { aspect-ratio: 4 / 3; }
  .merch-campaign-scene p { margin-bottom: 14px; }
  .merch-campaign-product > span { min-height: 120px; padding: 14px 12px; }
  .merch-campaign-product strong { font-size: 20px; }
  .merch-campaign-product em { padding-top: 18px; font-size: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  .merch-campaign-scene > img,
  .merch-campaign-product,
  .merch-campaign-product > img { transition: none; }
}

/* Artist statement / rotating portrait studies */
.artist-statement {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 54%, rgba(20, 92, 255, .09), transparent 29%),
    var(--ink);
  color: var(--bone);
}
.artist-statement::after {
  content: "";
  position: absolute;
  right: -10vw;
  bottom: -28vw;
  width: 44vw;
  aspect-ratio: 1;
  border: 1px solid rgba(204, 255, 51, .12);
  border-radius: 50%;
  pointer-events: none;
}
.artist-statement-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(500px, 1.28fr);
  gap: clamp(72px, 10vw, 170px);
  align-items: center;
}
.artist-portrait {
  width: min(100%, 510px);
  margin: 0;
  justify-self: center;
}
.artist-portrait-stage {
  position: relative;
  isolation: isolate;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(240, 238, 231, .16);
  background: #020403;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .36);
}
.artist-portrait-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(180deg, transparent 64%, rgba(8, 9, 8, .36));
  pointer-events: none;
}
.artist-portrait-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: artist-portrait-cycle 14s ease-in-out infinite;
  will-change: opacity, transform;
}
.artist-portrait-slide-primary { z-index: 1; object-position: center; }
.artist-portrait-slide-secondary { z-index: 2; object-position: center; animation-delay: -7s; }
.artist-portrait-frame {
  position: absolute;
  inset: 18px;
  z-index: 4;
  border: 1px solid rgba(204, 255, 51, .38);
  pointer-events: none;
}
.artist-portrait figcaption {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  color: #8d9189;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.artist-portrait figcaption strong { color: var(--acid); font-weight: 850; }
.artist-copy { min-width: 0; }
.artist-copy .eyebrow { margin-bottom: clamp(42px, 5vw, 70px); }
.artist-copy h2 {
  max-width: 790px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(50px, 6.4vw, 94px);
  font-weight: 750;
  letter-spacing: -.072em;
  line-height: .86;
  text-wrap: balance;
  text-transform: uppercase;
}
.artist-lead {
  max-width: 760px;
  margin: clamp(46px, 5.5vw, 76px) 0 24px;
  font-family: var(--display);
  font-size: clamp(24px, 2.2vw, 36px);
  letter-spacing: -.035em;
  line-height: 1.1;
}
.artist-copy > p:not(.eyebrow):not(.artist-lead) {
  max-width: 680px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.artist-copy .artist-note {
  margin-top: 28px;
  padding-left: 18px;
  border-left: 2px solid var(--acid);
  color: var(--bone) !important;
  font-weight: 650;
}
.artist-signoff {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 44px;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .17em;
}
.artist-signoff i { color: var(--acid); font-style: normal; }

@keyframes artist-portrait-cycle {
  0%, 45% { opacity: 1; transform: scale(1); }
  50%, 95% { opacity: 0; transform: scale(1.025); }
  100% { opacity: 1; transform: scale(1); }
}

@media (max-width: 1050px) {
  .artist-statement-inner { grid-template-columns: minmax(270px, .65fr) minmax(420px, 1fr); gap: 8vw; }
  .artist-copy h2 { font-size: clamp(48px, 7.6vw, 76px); }
}

@media (max-width: 760px) {
  .artist-statement-inner { display: flex; flex-direction: column; gap: 72px; }
  .artist-portrait { width: 100%; max-width: 430px; }
  .artist-portrait-frame { inset: 12px; }
  .artist-copy .eyebrow { margin-bottom: 34px; }
  .artist-copy h2 { max-width: 350px; font-size: clamp(48px, 15vw, 66px); line-height: .86; }
  .artist-lead { margin-top: 42px; font-size: 23px; }
  .artist-copy > p:not(.eyebrow):not(.artist-lead) { font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .artist-portrait-slide { animation: none; transform: none; }
  .artist-portrait-slide-primary { opacity: 1; }
  .artist-portrait-slide-secondary { display: none; }
}
