/* ===========================================
   SPONTANEOUS VIBES — v5.0
   Bebas Neue · Cormorant Garamond · DM Sans
   Editorial dark label aesthetic
=========================================== */
:root {
  --black:   #080807;
  --ink:     #0f0f0d;
  --surface: #161614;
  --lift:    #1e1e1b;
  --rule:    rgba(255,255,255,.07);
  --white:   #f0ece4;
  --mute:    #6b6760;
  --dim:     #3a3835;
  --gold:    #c8a84b;
  --gold-a:  rgba(200,168,75,.1);
  --bady:    #c8a84b;
  --chubby:  #6dafc2;

  --f-disp:  'Bebas Neue', sans-serif;
  --f-serif: 'Cormorant Garamond', Georgia, serif;
  --f-body:  'DM Sans', sans-serif;
  --ease:    cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--f-body);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; padding: 0; }
::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ── SCROLL REVEAL ── */
.rv { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.rv.in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; }
.d3 { transition-delay: .32s; } .d4 { transition-delay: .44s; }

/* ── SHARED ATOMS ── */
.eyebrow {
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ''; width: 18px; height: 1px; background: var(--gold); flex-shrink: 0; }

.section-title {
  font-family: var(--f-disp);
  font-size: clamp(52px, 6vw, 88px);
  letter-spacing: .03em;
  line-height: .9;
  color: var(--white);
}
.section-title em {
  font-style: italic;
  color: var(--gold);
  font-family: var(--f-serif);
  font-weight: 300;
}

.btn-gold {
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  padding: 14px 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity .2s;
}
.btn-gold:hover { opacity: .82; }

.btn-outline {
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: 1px solid var(--dim);
  color: var(--mute);
  padding: 13px 28px;
  display: inline-flex;
  align-items: center;
  transition: border-color .2s, color .2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

hr.rule { border: none; border-top: 1px solid var(--rule); margin: 0; }

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
#sv-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 56px;
  transition: padding .4s, background .4s, border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
#sv-nav.scrolled {
  background: rgba(8,8,7,.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 14px 56px;
  border-bottom-color: var(--rule);
}

.nav-logo { display: flex; flex-direction: column; line-height: 1; }
.nl1 {
  font-family: var(--f-body); font-size: 7px; letter-spacing: .38em;
  text-transform: uppercase; color: var(--mute); font-weight: 400;
}
.nl2 {
  font-family: var(--f-disp); font-size: 20px; letter-spacing: .06em;
  color: var(--gold); line-height: 1.05;
}

.nav-links { display: flex; align-items: center; gap: 38px; }
.nav-links a {
  font-family: var(--f-body); font-size: 11px; font-weight: 400;
  letter-spacing: .16em; text-transform: uppercase; color: var(--mute);
  transition: color .2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-book {
  border: 1px solid rgba(200,168,75,.4) !important;
  color: var(--gold) !important;
  padding: 8px 18px;
}
.nav-book::after { display: none !important; }
.nav-book:hover { background: var(--gold-a) !important; }

.ham { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.ham span { display: block; width: 22px; height: 1px; background: var(--white); transition: .3s; }
.ham.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; }
.ham.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
#sv-mob { position: fixed; inset: 0; background: var(--black); z-index: 9000; display: none; flex-direction: column; }
#sv-mob.open { display: flex; }
.mob-inner { display: flex; flex-direction: column; height: 100%; padding: 28px 36px 48px; }
.mob-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 36px; border-bottom: 1px solid var(--rule); margin-bottom: 48px; }
.mob-logo { display: flex; flex-direction: column; }
.mob-l1 { font-size: 8px; letter-spacing: .3em; text-transform: uppercase; color: var(--mute); font-family: var(--f-body); }
.mob-l2 { font-family: var(--f-disp); font-size: 22px; letter-spacing: .06em; color: var(--gold); }
.mob-close { display: flex; flex-direction: column; gap: 5px; padding: 4px; }
.mob-close span { display: block; width: 20px; height: 1px; background: var(--white); }
.mob-close span:first-child { transform: translateY(6px) rotate(45deg); }
.mob-close span:last-child { transform: translateY(-6px) rotate(-45deg); }
.mob-links { display: flex; flex-direction: column; flex: 1; }
.mob-links .ml {
  font-family: var(--f-disp); font-size: clamp(38px, 9vw, 56px);
  letter-spacing: .04em; text-transform: uppercase;
  border-bottom: 1px solid var(--rule); padding: 12px 0;
  color: var(--white); transition: color .2s, padding-left .2s;
}
.mob-links .ml:hover { color: var(--gold); padding-left: 12px; }
.mob-foot { display: flex; gap: 22px; }
.mob-foot a { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--mute); font-family: var(--f-body); transition: color .2s; }
.mob-foot a:hover { color: var(--gold); }

/* ═══════════════════════════════════════
   ① HERO — VIDEO FULL BLEED
═══════════════════════════════════════ */
#sv-hero {
  position: relative; height: 100vh; min-height: 640px;
  overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end;
  background: var(--black);
}
.hero-vid-wrap { position: absolute; inset: 0; z-index: 0; }
#hero-bg-video {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .52; pointer-events: none;
}
.hero-veil {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(8,8,7,.3) 0%,
    rgba(8,8,7,.05) 28%,
    rgba(8,8,7,.55) 68%,
    rgba(8,8,7,.98) 100%
  );
}

/* Centered massive title */
.hero-wordmark {
  position: absolute; z-index: 2;
  top: 50%; left: 56px;
  transform: translateY(-54%);
}
.hero-eyebrow {
  font-family: var(--f-body); font-size: 9px; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.hero-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.hero-h1 {
  font-family: var(--f-disp);
  font-size: clamp(80px, 15vw, 190px);
  letter-spacing: .03em; line-height: .88;
  color: #fff; text-transform: uppercase;
  pointer-events: none;
}
.hero-h1 .accent { color: var(--gold); display: block; }
.hero-tagline {
  font-family: var(--f-serif); font-style: italic; font-size: 17px;
  color: rgba(240,236,228,.42); margin-top: 18px; font-weight: 300;
}

/* Bottom bar */
.hero-foot {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: 1fr auto;
  align-items: flex-end; gap: 40px;
  padding: 0 56px 40px;
}
.hero-artists { display: flex; flex-direction: column; gap: 10px; }
.hero-feat-label {
  font-family: var(--f-body); font-size: 9px; letter-spacing: .24em;
  text-transform: uppercase; color: var(--mute); margin-bottom: 4px;
}
.hero-artist {
  display: flex; flex-direction: column; gap: 1px;
  transition: padding-left .25s var(--ease);
}
.hero-artist:hover { padding-left: 10px; }
.ha-name {
  font-family: var(--f-disp); font-size: 24px; letter-spacing: .04em;
  color: var(--white); line-height: 1; transition: color .2s;
}
.hero-artist:hover .ha-name { color: var(--gold); }
.ha-handle {
  font-family: var(--f-body); font-size: 9px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--mute);
}
.hero-cta { display: flex; gap: 12px; align-items: center; }

/* Ticker at very bottom */
.sv-ticker {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 4;
  border-top: 1px solid var(--rule);
  background: rgba(8,8,7,.75);
  padding: 9px 0; overflow: hidden;
}
.ticker-track { display: flex; width: max-content; animation: tick 34s linear infinite; }
.ti {
  font-family: var(--f-body); font-size: 9px; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase; color: var(--mute);
  padding: 0 32px; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 20px;
}
.ti-dot { color: var(--gold); font-size: 5px; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════════════════════════════════════
   ② RELEASE — EP SHOWCASE
═══════════════════════════════════════ */
#sv-release { background: var(--ink); }

/* Full-bleed EP panel */
.ep-panel {
  position: relative; min-height: 80vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.ep-bg-art {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: flex-end;
}
.ep-bg-art img {
  width: 55%; height: 100%; object-fit: cover;
  opacity: .22; filter: grayscale(1) contrast(1.1);
}
.ep-bg-art::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--ink) 30%, rgba(15,15,13,.5) 65%, rgba(15,15,13,.85) 100%);
}
.ep-wm {
  position: absolute; inset: 0; display: flex; align-items: center;
  pointer-events: none; overflow: hidden;
}
.ep-wm span {
  font-family: var(--f-disp);
  font-size: clamp(140px, 22vw, 300px);
  color: rgba(200,168,75,.04);
  letter-spacing: .02em; white-space: nowrap;
  user-select: none; line-height: 1;
}
.ep-content {
  position: relative; z-index: 2;
  padding: 0 56px 64px;
  display: grid; grid-template-columns: auto 1fr;
  gap: 64px; align-items: flex-end; width: 100%;
}
.ep-badge {
  font-family: var(--f-body); font-size: 9px; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.ep-badge::before { content: ''; width: 18px; height: 1px; background: var(--gold); }
.ep-title {
  font-family: var(--f-disp);
  font-size: clamp(100px, 18vw, 220px);
  letter-spacing: .02em; line-height: .83;
  color: #fff; text-transform: uppercase;
}
.ep-sub {
  font-family: var(--f-body); font-size: 10px; letter-spacing: .22em;
  text-transform: uppercase; color: rgba(240,236,228,.25); margin-top: 14px;
}
.ep-right {
  display: flex; flex-direction: column; gap: 24px;
  justify-content: flex-end; padding-bottom: 6px;
}
.ep-meta {
  font-family: var(--f-body); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--mute); line-height: 2.2;
}
.ep-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Tracklist table */
.tl-wrap {
  background: var(--surface);
  border-top: 1px solid var(--rule);
}
.tl-head {
  padding: 56px 56px 0;
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; margin-bottom: 32px;
}
.tl-note {
  font-family: var(--f-body); font-size: 10px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--mute);
}
.sv-tracklist { border-top: 1px solid var(--rule); }
.sv-track {
  display: grid; grid-template-columns: 52px 1fr auto 36px;
  align-items: center; gap: 16px;
  padding: 0 56px; height: 72px;
  border-bottom: 1px solid var(--rule);
  transition: background .2s, padding-left .2s;
  cursor: pointer; position: relative; overflow: hidden;
}
.sv-track::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold); opacity: 0; transition: opacity .3s;
}
.sv-track:hover::before, .sv-track.active::before { opacity: .04; }
.sv-track:hover, .sv-track.active { padding-left: 64px; }
.tr-num {
  font-family: var(--f-body); font-size: 10px; letter-spacing: .12em;
  color: var(--dim); text-align: right; position: relative;
}
.tr-name {
  font-family: var(--f-disp); font-size: 28px; letter-spacing: .04em;
  text-transform: uppercase; transition: color .2s; position: relative;
}
.tr-dur {
  font-family: var(--f-body); font-size: 10px; letter-spacing: .1em;
  color: var(--mute); position: relative;
}
.tr-play {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .2s, border-color .2s;
  position: relative;
}
.tr-play::after {
  content: ''; width: 0; height: 0;
  border-top: 5px solid transparent; border-bottom: 5px solid transparent;
  border-left: 9px solid var(--gold); margin-left: 2px;
}
.sv-track:hover .tr-play, .sv-track.active .tr-play { opacity: 1; border-color: var(--gold); }
.sv-track.active .tr-num,
.sv-track.active .tr-name,
.sv-track:hover .tr-name { color: var(--gold); }

/* ═══════════════════════════════════════
   ③ ARTISTS — FULL EDITORIAL CARDS
═══════════════════════════════════════ */
#sv-artists { background: var(--black); }
.artists-header {
  padding: 96px 56px 64px;
  display: flex; align-items: flex-end;
  justify-content: space-between; flex-wrap: wrap; gap: 20px;
  border-bottom: 1px solid var(--rule);
}

/* Two full-height cards side by side */
.artist-cards { display: grid; grid-template-columns: 1fr 1fr; }
.ac {
  position: relative; overflow: hidden;
  min-height: 90vh;
  border-right: 1px solid var(--rule);
}
.ac:last-child { border-right: none; }

/* Photo — full colour, no desaturation */
.ac-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  filter: brightness(.78) contrast(1.04);
  transition: filter 1.2s var(--ease), transform 1.6s var(--ease);
}
/* Gradient: only darkens bottom third */
.ac-grad {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to top,
    rgba(8,8,7,1) 0%,
    rgba(8,8,7,.8) 25%,
    rgba(8,8,7,.25) 52%,
    rgba(8,8,7,0) 68%
  );
}
.ac:hover .ac-photo {
  filter: brightness(.9) contrast(1.04);
  transform: scale(1.025);
}

/* Top-right handle badge */
.ac-badge {
  position: absolute; top: 28px; right: 28px; z-index: 3;
  font-family: var(--f-body); font-size: 9px; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(240,236,228,.3);
  border: 1px solid rgba(240,236,228,.1); padding: 6px 14px;
  backdrop-filter: blur(8px);
  transition: color .3s, border-color .3s;
}
.ac:hover .ac-badge { color: rgba(240,236,228,.7); border-color: rgba(240,236,228,.2); }

/* Accent color bar — reveals on hover */
.ac-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  z-index: 4; transform: scaleX(0); transform-origin: left;
  transition: transform .6s var(--ease);
}
.ac:hover .ac-bar { transform: scaleX(1); }
.ac-bar-gold { background: var(--bady); }
.ac-bar-blue { background: var(--chubby); }

/* Body stacked at bottom */
.ac-body {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 52px 48px;
}
.ac-label {
  font-family: var(--f-body); font-size: 8px; letter-spacing: .32em;
  text-transform: uppercase; display: block; margin-bottom: 10px;
}
.ac-label-gold { color: var(--bady); }
.ac-label-blue  { color: var(--chubby); }
.ac-name {
  font-family: var(--f-disp);
  font-size: clamp(46px, 5.5vw, 80px);
  letter-spacing: .03em; text-transform: uppercase;
  line-height: .88; color: #fff; margin-bottom: 18px;
}
.ac-quote {
  font-family: var(--f-serif); font-size: 17px; font-style: italic;
  color: rgba(240,236,228,.55); line-height: 1.55;
  border-left: 2px solid var(--gold); padding-left: 14px;
  margin-bottom: 16px; max-width: 360px;
  opacity: 0; transform: translateY(10px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.ac:hover .ac-quote { opacity: 1; transform: none; }
.ac-bio {
  font-family: var(--f-body); font-size: 13px; font-weight: 300;
  color: rgba(240,236,228,.42); line-height: 1.75; max-width: 380px;
  margin-bottom: 22px;
  opacity: 0; transform: translateY(8px);
  transition: opacity .5s .1s var(--ease), transform .5s .1s var(--ease);
}
.ac:hover .ac-bio { opacity: 1; transform: none; }
.ac-genres {
  display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 26px;
  opacity: 0; transform: translateY(6px);
  transition: opacity .5s .18s var(--ease), transform .5s .18s var(--ease);
}
.ac:hover .ac-genres { opacity: 1; transform: none; }
.ac-genres span {
  font-family: var(--f-body); font-size: 9px; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(240,236,228,.3);
  border: 1px solid rgba(240,236,228,.1); padding: 4px 11px;
}
.ac-btns {
  display: flex; gap: 10px;
  opacity: 0; transform: translateY(6px);
  transition: opacity .5s .26s var(--ease), transform .5s .26s var(--ease);
}
.ac:hover .ac-btns { opacity: 1; transform: none; }
.ac-btn {
  font-family: var(--f-body); font-size: 9px; letter-spacing: .18em;
  text-transform: uppercase; padding: 11px 22px;
  display: inline-block; transition: opacity .2s; font-weight: 500;
}
.ac-btn-gold { background: var(--bady); color: var(--black); }
.ac-btn-blue { background: var(--chubby); color: var(--black); }
.ac-btn-ghost { background: transparent; color: rgba(240,236,228,.4); border: 1px solid rgba(240,236,228,.12); }
.ac-btn-ghost:hover { border-color: rgba(240,236,228,.4); color: var(--white); }
.ac-btn:hover { opacity: .82; }

/* ═══════════════════════════════════════
   ④ PLAYER — CLEAN VINYL PLAYER
═══════════════════════════════════════ */
#sv-player {
  background: var(--surface);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 96px 56px;
  position: relative; overflow: hidden;
}
.player-bg-wm {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--f-disp); font-size: clamp(100px, 20vw, 280px);
  color: rgba(200,168,75,.025); pointer-events: none; white-space: nowrap;
  letter-spacing: .04em; line-height: 1; z-index: 0; user-select: none;
}
.player-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: auto 1fr;
  gap: 80px; align-items: center; max-width: 940px; margin: 0 auto;
}

/* Vinyl */
.vinyl-wrap { display: flex; align-items: center; justify-content: center; position: relative; }
.vinyl {
  width: clamp(180px, 23vw, 256px); height: clamp(180px, 23vw, 256px);
  border-radius: 50%;
  background: radial-gradient(circle at 50%, #1f1f1a 0%, #141410 32%, #0e0e0b 60%, #080807 100%);
  position: relative;
  box-shadow: 0 0 0 1px rgba(200,168,75,.12), 0 14px 50px rgba(0,0,0,.6);
  animation: spin 11s linear infinite paused;
  transition: box-shadow .5s;
}
.vinyl.spin { animation-play-state: running; box-shadow: 0 0 0 1px rgba(200,168,75,.18), 0 20px 60px rgba(0,0,0,.65), 0 0 36px rgba(200,168,75,.08); }
@keyframes spin { to { transform: rotate(360deg); } }
.vinyl-label {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 22%; height: 22%; border-radius: 50%;
  background: var(--black);
  box-shadow: 0 0 0 1px rgba(200,168,75,.2);
}
.vinyl-glow {
  position: absolute; width: 130%; height: 130%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,168,75,.06), transparent 70%);
  pointer-events: none;
}

/* Controls */
.player-ctrl { display: flex; flex-direction: column; }
.p-label {
  font-family: var(--f-body); font-size: 9px; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase; color: var(--mute);
  margin-bottom: 8px;
}
.p-track-name {
  font-family: var(--f-disp); font-size: clamp(40px, 5.5vw, 72px);
  letter-spacing: .04em; text-transform: uppercase;
  line-height: .88; color: var(--white); margin-bottom: 4px;
  transition: color .3s;
}
.p-artist-name {
  font-family: var(--f-body); font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--mute); margin-bottom: 28px;
}
.p-progress { margin-bottom: 6px; }
.p-times {
  display: flex; justify-content: space-between;
  font-family: var(--f-body); font-size: 10px; color: var(--mute);
  margin-bottom: 8px; letter-spacing: .08em;
}
.p-bar {
  height: 2px; background: var(--lift);
  position: relative; cursor: pointer;
  border-radius: 1px;
}
.p-fill {
  height: 100%; background: var(--gold); width: 0%;
  transition: width .1s linear; border-radius: 1px;
}
.p-knob {
  position: absolute; top: 50%; left: 0%;
  transform: translate(-50%, -50%);
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold); transition: left .1s linear;
}
.p-controls {
  display: flex; align-items: center; gap: 24px;
  margin: 20px 0 24px;
}
.p-prev, .p-next {
  font-size: 20px; color: var(--dim); transition: color .2s; padding: 4px;
}
.p-prev:hover, .p-next:hover { color: var(--white); }
.p-play {
  width: 54px; height: 54px; border-radius: 50%;
  border: 1.5px solid var(--dim);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, transform .15s, box-shadow .2s;
}
.p-play:hover { border-color: var(--gold); transform: scale(1.06); box-shadow: 0 4px 24px rgba(200,168,75,.18); }
.p-play.playing { border-color: var(--gold); }
.play-icon::after { content: ''; display: block; width: 0; height: 0; border-top: 9px solid transparent; border-bottom: 9px solid transparent; border-left: 15px solid var(--white); margin-left: 4px; }
.pause-icon { display: flex; gap: 4px; }
.pause-icon span { display: block; width: 3px; height: 17px; background: var(--white); border-radius: 1px; }

/* Track list in player */
.p-list { display: flex; flex-direction: column; border-top: 1px solid var(--rule); }
.p-row {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 4px; border-bottom: 1px solid var(--rule);
  cursor: pointer; transition: padding-left .2s;
}
.p-row:hover, .p-row:focus { padding-left: 8px; outline: none; }
.p-row.on .pt-n, .p-row.on .pt-name { color: var(--gold); }
.p-row:hover .pt-name { color: var(--gold); }
.pt-n { font-family: var(--f-body); font-size: 9px; color: var(--dim); width: 18px; }
.pt-name { font-family: var(--f-disp); font-size: 17px; letter-spacing: .05em; text-transform: uppercase; flex: 1; transition: color .2s; }
.pt-d { font-family: var(--f-body); font-size: 9px; color: var(--mute); }

.p-stream-row { margin-top: 20px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.p-stream-label { font-family: var(--f-body); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--mute); }
.p-stream-link { font-family: var(--f-body); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); border-bottom: 1px solid rgba(200,168,75,.3); padding-bottom: 1px; transition: color .2s; }
.p-stream-link:hover { color: var(--white); }

/* ═══════════════════════════════════════
   ⑤ VIDEOS — 2×2 GRID, INLINE PLAY
═══════════════════════════════════════ */
#sv-videos { background: var(--ink); }
.videos-head {
  padding: 88px 56px 56px;
  display: flex; align-items: flex-end;
  justify-content: space-between; flex-wrap: wrap; gap: 20px;
  border-bottom: 1px solid var(--rule);
}
.videos-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--rule);
}
.vid-card { position: relative; overflow: hidden; background: var(--ink); cursor: pointer; }
.vid-thumb {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  filter: brightness(.62) contrast(1.06);
  transition: filter .7s var(--ease), transform 1.1s var(--ease);
  display: block;
}
.vid-card:hover .vid-thumb { filter: brightness(.82) contrast(1.06); transform: scale(1.03); }
.vid-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,7,.95) 0%, rgba(8,8,7,.1) 55%, transparent 100%);
}
.vid-play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -54%);
  width: 64px; height: 64px; border-radius: 50%;
  border: 1.5px solid rgba(200,168,75,.4);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .3s, background .3s, transform .3s, box-shadow .3s;
  z-index: 3;
}
.vid-card:hover .vid-play-btn {
  border-color: var(--gold);
  background: rgba(200,168,75,.12);
  transform: translate(-50%, -54%) scale(1.1);
  box-shadow: 0 8px 48px rgba(200,168,75,.28);
}
.vpb-arrow::after {
  content: ''; display: block;
  width: 0; height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 17px solid rgba(240,236,228,.9);
  margin-left: 5px;
}
.vid-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 24px; z-index: 2; }
.vid-lbl {
  font-family: var(--f-body); font-size: 8px; letter-spacing: .24em;
  text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 4px;
}
.vid-title {
  font-family: var(--f-disp); font-size: 24px; letter-spacing: .04em;
  text-transform: uppercase; color: #fff; display: block; margin-bottom: 3px;
}
.vid-artist {
  font-family: var(--f-body); font-size: 9px; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(240,236,228,.3); display: block;
}
/* Inline embed */
.vid-embed-wrap { display: none; position: relative; padding-bottom: 56.25%; }
.vid-embed-wrap.on { display: block; }
.vid-embed-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.vid-card.playing .vid-thumb,
.vid-card.playing .vid-overlay,
.vid-card.playing .vid-play-btn,
.vid-card.playing .vid-info { display: none; }
.vid-card.playing .vid-embed-wrap { display: block; }

/* ═══════════════════════════════════════
   ⑥ BOOKING CTA — FULL BLEED
═══════════════════════════════════════ */
#sv-booking { background: var(--surface); border-top: 1px solid var(--rule); }
.booking-inner {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: 80px; padding: 96px 56px; align-items: start;
}
.booking-left {}
.booking-title {
  font-family: var(--f-disp);
  font-size: clamp(58px, 7vw, 104px);
  letter-spacing: .03em; line-height: .88;
  color: var(--white); margin-bottom: 28px;
}
.booking-title em {
  color: var(--gold); font-style: italic;
  font-family: var(--f-serif); font-weight: 300;
}
.booking-desc {
  font-family: var(--f-body); font-size: 15px; font-weight: 300;
  color: rgba(240,236,228,.45); line-height: 1.8; margin-bottom: 36px;
}
.booking-contacts { display: flex; flex-direction: column; gap: 14px; }
.bcon {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--f-body); font-size: 14px; font-weight: 300;
  color: rgba(240,236,228,.42); transition: color .2s;
}
.bcon:hover { color: var(--gold); }
.bcon-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* Form */
.booking-form { display: flex; flex-direction: column; gap: 16px; }
.bf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bf-field { display: flex; flex-direction: column; gap: 7px; }
.bf-field label {
  font-family: var(--f-body); font-size: 9px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--mute); font-weight: 400;
}
.bf-field input, .bf-field select, .bf-field textarea {
  background: var(--lift); border: 1px solid var(--rule);
  color: var(--white); padding: 13px 16px;
  font-family: var(--f-body); font-size: 14px; font-weight: 300;
  outline: none; transition: border-color .2s; width: 100%;
  -webkit-appearance: none;
}
.bf-field input::placeholder, .bf-field textarea::placeholder { color: var(--dim); }
.bf-field input:focus, .bf-field select:focus, .bf-field textarea:focus { border-color: var(--gold); }
.bf-field textarea { min-height: 120px; resize: vertical; }
.bf-field select option { background: var(--lift); }
.bf-msg { display: none; font-family: var(--f-body); font-size: 10px; letter-spacing: .1em; padding: 10px 14px; }
.bf-msg.ok { display: block; background: rgba(200,168,75,.08); color: var(--gold); }
.bf-msg.err { display: block; background: rgba(200,60,60,.08); color: #e87575; }
.bf-submit {
  font-family: var(--f-body); font-size: 10px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  background: var(--gold); color: var(--black); padding: 15px 30px;
  transition: opacity .2s; cursor: pointer;
}
.bf-submit:hover { opacity: .82; }
.bf-submit:disabled { opacity: .5; cursor: not-allowed; }
.bf-note { font-family: var(--f-body); font-size: 10px; letter-spacing: .12em; color: var(--mute); }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
#sv-footer { background: var(--ink); border-top: 1px solid var(--rule); }
.ft {
  padding: 64px 56px 40px;
  display: grid; grid-template-rows: auto auto auto;
  gap: 52px;
}
.ft-top {
  display: flex; justify-content: space-between;
  align-items: flex-start; flex-wrap: wrap; gap: 24px;
  padding-bottom: 48px; border-bottom: 1px solid var(--rule);
}
.ft-brand {}
.ft-logo { display: flex; flex-direction: column; margin-bottom: 12px; }
.ft-l1 { font-size: 8px; letter-spacing: .34em; text-transform: uppercase; color: var(--mute); font-family: var(--f-body); }
.ft-l2 { font-family: var(--f-disp); font-size: 22px; letter-spacing: .06em; color: var(--gold); }
.ft-tagline { font-size: 12px; color: var(--mute); line-height: 1.7; font-family: var(--f-body); }
.ft-handles { display: flex; flex-direction: column; gap: 7px; }
.ft-handle { font-family: var(--f-disp); font-size: 17px; letter-spacing: .04em; color: var(--mute); transition: color .2s; }
.ft-handle:hover { color: var(--gold); }
.ft-cols {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px;
}
.ft-col h5 {
  font-family: var(--f-body); font-size: 9px; letter-spacing: .28em;
  text-transform: uppercase; color: rgba(240,236,228,.4);
  margin-bottom: 18px; font-weight: 500;
}
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.ft-col ul a { font-family: var(--f-body); font-size: 13px; color: var(--mute); font-weight: 300; transition: color .2s; }
.ft-col ul a:hover { color: var(--gold); }
.ft-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  border-top: 1px solid var(--rule); padding-top: 28px;
}
.ft-copy { font-family: var(--f-body); font-size: 10px; letter-spacing: .1em; color: var(--mute); }
.ft-legal { display: flex; gap: 22px; }
.ft-legal a { font-family: var(--f-body); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--mute); transition: color .2s; }
.ft-legal a:hover { color: var(--gold); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .ep-content { grid-template-columns: 1fr; gap: 32px; }
  .player-inner { grid-template-columns: 1fr; gap: 44px; justify-items: center; }
  .booking-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  #sv-nav { padding: 14px 20px; }
  #sv-nav.scrolled { padding: 12px 20px; }
  .nav-links { display: none; }
  .ham { display: flex; }

  #sv-hero { min-height: 600px; }
  .hero-wordmark { left: 20px; right: 20px; }
  .hero-h1 { font-size: clamp(68px, 18vw, 120px); }
  .hero-foot { grid-template-columns: 1fr; padding: 0 20px 56px; gap: 20px; }
  .hero-cta { flex-direction: row; }

  #sv-release .ep-content { padding: 0 20px 44px; }
  .ep-title { font-size: clamp(80px, 22vw, 140px); }
  .sv-track { padding: 0 20px; height: 64px; }
  .tl-head { padding: 40px 20px 0; }
  .sv-track:hover, .sv-track.active { padding-left: 28px; }

  #sv-artists .artists-header { padding: 60px 20px 44px; }
  .artist-cards { grid-template-columns: 1fr; }
  .ac { min-height: 72vh; border-right: none; border-bottom: 1px solid var(--rule); }
  .ac-body { padding: 40px 24px; }

  #sv-player { padding: 64px 20px; }

  .videos-head { padding: 64px 20px 44px; }
  .videos-grid { grid-template-columns: 1fr; }

  .booking-inner { padding: 64px 20px; gap: 48px; }

  #sv-footer .ft { padding: 56px 20px 36px; }
  .ft-cols { grid-template-columns: 1fr 1fr; }
  .ft-top { flex-direction: column; }
}
