/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }
ul { list-style: none; }

/* ── TOKENS ───────────────────────────────────────────────── */
:root {
  --bg:           #060609;
  --surface:      #0d0d12;
  --surface-2:    #14141b;
  --border:       rgba(255,255,255,0.07);
  --border-hover: rgba(255,255,255,0.15);

  --accent:       #9333ea;
  --accent-dim:   rgba(147,51,234,0.12);
  --accent-glow:  rgba(147,51,234,0.4);
  --accent-2:     #22d3ee;
  --accent-2-dim: rgba(34,211,238,0.1);

  --green:        #22c55e;
  --green-dim:    rgba(34,197,94,0.12);

  --text:         #f0f4f8;
  --text-dim:     #8896a5;
  --text-muted:   #3d4a57;

  --font-display: 'Big Shoulders Display', sans-serif;
  --font-body:    'Space Grotesk', sans-serif;
  --font-mono:    'Space Mono', monospace;

  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --trans:       0.3s var(--ease-smooth);
}

/* ── BASE ─────────────────────────────────────────────────── */
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

/* ── EQUALIZER BARS (reusable component) ──────────────────── */
/* Each element with class eq-bars or matching selectors
   contains <span> children that animate as EQ bars */

/* Large background EQ in hero */
.hero-eq-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(3px, 0.6vw, 8px);
  pointer-events: none;
  z-index: 0;
  padding: 0 2rem;
  opacity: 0.06;
}
.hero-eq-bg span {
  flex: 1;
  max-width: 28px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, var(--accent), var(--accent-2));
  animation: eqBig var(--dur, 1.4s) ease-in-out infinite alternate;
}
.hero-eq-bg span:nth-child(1)  { --dur: 1.1s; animation-delay: 0.0s;  height: 40%; }
.hero-eq-bg span:nth-child(2)  { --dur: 0.9s; animation-delay: 0.1s;  height: 65%; }
.hero-eq-bg span:nth-child(3)  { --dur: 1.3s; animation-delay: 0.05s; height: 30%; }
.hero-eq-bg span:nth-child(4)  { --dur: 0.8s; animation-delay: 0.2s;  height: 80%; }
.hero-eq-bg span:nth-child(5)  { --dur: 1.5s; animation-delay: 0.15s; height: 55%; }
.hero-eq-bg span:nth-child(6)  { --dur: 1.0s; animation-delay: 0.3s;  height: 90%; }
.hero-eq-bg span:nth-child(7)  { --dur: 0.7s; animation-delay: 0.08s; height: 45%; }
.hero-eq-bg span:nth-child(8)  { --dur: 1.2s; animation-delay: 0.25s; height: 70%; }
.hero-eq-bg span:nth-child(9)  { --dur: 0.9s; animation-delay: 0.35s; height: 35%; }
.hero-eq-bg span:nth-child(10) { --dur: 1.4s; animation-delay: 0.12s; height: 60%; }
.hero-eq-bg span:nth-child(11) { --dur: 1.1s; animation-delay: 0.4s;  height: 50%; }
.hero-eq-bg span:nth-child(12) { --dur: 0.8s; animation-delay: 0.18s; height: 75%; }
.hero-eq-bg span:nth-child(13) { --dur: 1.6s; animation-delay: 0.28s; height: 25%; }
.hero-eq-bg span:nth-child(14) { --dur: 1.0s; animation-delay: 0.05s; height: 85%; }
.hero-eq-bg span:nth-child(15) { --dur: 1.3s; animation-delay: 0.22s; height: 40%; }
.hero-eq-bg span:nth-child(16) { --dur: 0.9s; animation-delay: 0.38s; height: 68%; }
.hero-eq-bg span:nth-child(17) { --dur: 1.2s; animation-delay: 0.14s; height: 55%; }
.hero-eq-bg span:nth-child(18) { --dur: 0.7s; animation-delay: 0.3s;  height: 82%; }
.hero-eq-bg span:nth-child(19) { --dur: 1.5s; animation-delay: 0.07s; height: 38%; }
.hero-eq-bg span:nth-child(20) { --dur: 1.0s; animation-delay: 0.42s; height: 60%; }
.hero-eq-bg span:nth-child(21) { --dur: 1.3s; animation-delay: 0.0s;  height: 48%; }
.hero-eq-bg span:nth-child(22) { --dur: 0.85s; animation-delay: 0.33s; height: 72%; }
.hero-eq-bg span:nth-child(23) { --dur: 1.1s; animation-delay: 0.17s; height: 30%; }
.hero-eq-bg span:nth-child(24) { --dur: 0.95s; animation-delay: 0.45s; height: 88%; }
.hero-eq-bg span:nth-child(25) { --dur: 1.4s; animation-delay: 0.09s; height: 52%; }

@keyframes eqBig {
  from { transform: scaleY(0.2); opacity: 0.6; }
  to   { transform: scaleY(1);   opacity: 1; }
}

/* Mini EQ bars (nav, footer, track strip) */
.nav-logo-eq,
.footer-eq {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
  flex-shrink: 0;
}
.nav-logo-eq span,
.footer-eq span {
  width: 2px;
  border-radius: 1px;
  background: var(--accent);
  animation: eqMini var(--dur, 0.9s) ease-in-out infinite alternate;
}
.nav-logo-eq span:nth-child(1),
.footer-eq span:nth-child(1) { --dur: 0.7s; height: 50%; animation-delay: 0.0s; }
.nav-logo-eq span:nth-child(2),
.footer-eq span:nth-child(2) { --dur: 0.9s; height: 100%; animation-delay: 0.1s; }
.nav-logo-eq span:nth-child(3),
.footer-eq span:nth-child(3) { --dur: 0.6s; height: 70%; animation-delay: 0.05s; }
.nav-logo-eq span:nth-child(4),
.footer-eq span:nth-child(4) { --dur: 0.8s; height: 40%; animation-delay: 0.15s; }

@keyframes eqMini {
  from { transform: scaleY(0.25); }
  to   { transform: scaleY(1); }
}

/* Inline EQ bars (track strip, vinyl card) */
.eq-mini {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 20px;
}
.eq-mini span {
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(to top, var(--accent), var(--accent-2));
  animation: eqMini var(--dur, 0.9s) ease-in-out infinite alternate;
}
.eq-mini span:nth-child(1) { --dur: 0.8s; height: 30%; animation-delay: 0.0s; }
.eq-mini span:nth-child(2) { --dur: 0.6s; height: 80%; animation-delay: 0.12s; }
.eq-mini span:nth-child(3) { --dur: 1.0s; height: 50%; animation-delay: 0.05s; }
.eq-mini span:nth-child(4) { --dur: 0.7s; height: 100%; animation-delay: 0.2s; }
.eq-mini span:nth-child(5) { --dur: 0.9s; height: 40%; animation-delay: 0.08s; }
.eq-mini span:nth-child(6) { --dur: 0.75s; height: 70%; animation-delay: 0.16s; }

/* Splash EQ */
.splash-eq {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 36px;
  margin-bottom: 1rem;
}
.splash-eq span {
  width: 4px;
  border-radius: 2px;
  background: linear-gradient(to top, var(--accent), var(--accent-2));
  animation: eqBig var(--dur, 1s) ease-in-out infinite alternate;
}
.splash-eq span:nth-child(1)  { --dur: 0.8s; height: 40%; animation-delay: 0.0s; }
.splash-eq span:nth-child(2)  { --dur: 0.6s; height: 90%; animation-delay: 0.12s; }
.splash-eq span:nth-child(3)  { --dur: 1.0s; height: 55%; animation-delay: 0.05s; }
.splash-eq span:nth-child(4)  { --dur: 0.7s; height: 100%; animation-delay: 0.2s; }
.splash-eq span:nth-child(5)  { --dur: 0.9s; height: 35%; animation-delay: 0.08s; }
.splash-eq span:nth-child(6)  { --dur: 0.75s; height: 70%; animation-delay: 0.16s; }
.splash-eq span:nth-child(7)  { --dur: 0.85s; height: 50%; animation-delay: 0.03s; }
.splash-eq span:nth-child(8)  { --dur: 0.65s; height: 85%; animation-delay: 0.25s; }
.splash-eq span:nth-child(9)  { --dur: 1.1s; height: 45%; animation-delay: 0.1s; }
.splash-eq span:nth-child(10) { --dur: 0.9s; height: 65%; animation-delay: 0.18s; }

/* Vinyl card EQ */
.vinyl-eq-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 28px;
  margin-top: 1.25rem;
}
.vinyl-eq-bars span {
  width: 4px;
  border-radius: 2px;
  background: linear-gradient(to top, var(--accent), var(--accent-2));
  animation: eqBig var(--dur, 1s) ease-in-out infinite alternate;
}
.vinyl-eq-bars span:nth-child(1)  { --dur: 0.8s; height: 30%; animation-delay: 0.0s; }
.vinyl-eq-bars span:nth-child(2)  { --dur: 0.6s; height: 90%; animation-delay: 0.1s; }
.vinyl-eq-bars span:nth-child(3)  { --dur: 1.0s; height: 55%; animation-delay: 0.05s; }
.vinyl-eq-bars span:nth-child(4)  { --dur: 0.7s; height: 100%; animation-delay: 0.22s; }
.vinyl-eq-bars span:nth-child(5)  { --dur: 0.9s; height: 40%; animation-delay: 0.08s; }
.vinyl-eq-bars span:nth-child(6)  { --dur: 0.75s; height: 70%; animation-delay: 0.16s; }
.vinyl-eq-bars span:nth-child(7)  { --dur: 0.85s; height: 50%; animation-delay: 0.03s; }
.vinyl-eq-bars span:nth-child(8)  { --dur: 0.65s; height: 80%; animation-delay: 0.28s; }
.vinyl-eq-bars span:nth-child(9)  { --dur: 1.1s; height: 45%; animation-delay: 0.12s; }
.vinyl-eq-bars span:nth-child(10) { --dur: 0.9s; height: 65%; animation-delay: 0.18s; }
.vinyl-eq-bars span:nth-child(11) { --dur: 0.7s; height: 35%; animation-delay: 0.06s; }
.vinyl-eq-bars span:nth-child(12) { --dur: 0.95s; height: 75%; animation-delay: 0.2s; }

/* ── REVEAL ───────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-split] { opacity: 1; transform: none; }

/* ── SPLASH ───────────────────────────────────────────────── */
#splash {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: opacity 0.7s var(--ease-out), visibility 0.7s;
}
#splash.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.splash-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.splash-logo {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  background: linear-gradient(135deg, #fff 0%, #c084fc 55%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.splash-bar {
  width: 120px;
  height: 2px;
  background: var(--surface-2);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 0.5rem;
}
.splash-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 2px;
  animation: splashLoad 2.2s var(--ease-out) forwards;
}
@keyframes splashLoad {
  0%   { width: 0%; }
  80%  { width: 90%; }
  100% { width: 100%; }
}

/* ── NAV ──────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem clamp(1.25rem, 5vw, 3rem);
  transition: background var(--trans), padding var(--trans), border-color var(--trans);
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(6,6,9,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  border-color: var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--text);
  transition: color var(--trans);
}
.nav-logo:hover { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color var(--trans);
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 1.35rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 100px;
  transition: background var(--trans), color var(--trans);
}
.nav-cta:hover { background: var(--accent); color: #fff; }

/* ── HERO ─────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
}
.orb-1 {
  width: clamp(400px,60vw,900px);
  height: clamp(400px,60vw,900px);
  background: radial-gradient(circle, rgba(147,51,234,0.32) 0%, transparent 70%);
  top: -25%; right: -15%;
  animation: orbDrift1 24s ease-in-out infinite;
}
.orb-2 {
  width: clamp(280px,40vw,600px);
  height: clamp(280px,40vw,600px);
  background: radial-gradient(circle, rgba(34,211,238,0.18) 0%, transparent 70%);
  bottom: 0%; left: -10%;
  animation: orbDrift2 30s ease-in-out infinite;
  animation-delay: -15s;
}
@keyframes orbDrift1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(-4%,6%) scale(1.07); }
  66%     { transform: translate(5%,-3%) scale(0.93); }
}
@keyframes orbDrift2 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(7%,-5%) scale(1.05); }
  66%     { transform: translate(-4%,7%) scale(0.95); }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 clamp(1.25rem,5vw,3rem);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding-top: 5rem;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.45rem 1rem;
  margin-bottom: 2rem;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: statusPulse 2s ease-in-out infinite;
}
@keyframes statusPulse {
  0%,100% { box-shadow: 0 0 6px var(--green); }
  50%     { box-shadow: 0 0 14px var(--green), 0 0 4px var(--green); }
}
.status-sep { color: var(--text-muted); }
.status-loc { color: var(--accent-2); }

.hero-title {
  line-height: 0.87;
  margin-bottom: 1.75rem;
}
.hero-title-dj {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem,8vw,9rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}
.hero-title-name {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(5rem,18vw,22rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 0.85;
  background: linear-gradient(135deg, #ffffff 20%, #c084fc 55%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-genres {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.hg-tag {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-dim);
  background: rgba(255,255,255,0.02);
  transition: border-color var(--trans), color var(--trans), background var(--trans);
}
.hg-tag:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }

.hero-sub {
  font-size: clamp(1rem,2vw,1.35rem);
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 400px;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.8rem 1.7rem;
  border-radius: 100px;
  transition: background var(--trans), color var(--trans),
              box-shadow var(--trans), transform 0.2s var(--ease-out);
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: #a855f7;
  box-shadow: 0 8px 30px var(--accent-glow);
}
.btn-outline {
  border: 1px solid var(--border-hover);
  color: var(--text);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--text);
  background: rgba(255,255,255,0.04);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(1.25rem,5vw,3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 1;
}
.hero-scroll-hint span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 55px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0; transform: scaleY(0.15); transform-origin: top; }
  50%     { opacity: 1; transform: scaleY(1); }
}

/* ── SECTION COMMONS ──────────────────────────────────────── */
.section-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.section-label-inline {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem,6vw,5.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 0.95;
  color: var(--text);
  margin-bottom: 2.5rem;
}

/* ── LATEST SET ───────────────────────────────────────────── */
#latest-set {
  padding: clamp(5rem,10vw,8rem) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.latest-set-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.latest-set-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.now-playing-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
  animation: statusPulse 1.6s ease-in-out infinite;
}
.all-sets-link {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color var(--trans);
}
.all-sets-link:hover { color: var(--accent-2); }

.set-meta { margin-bottom: 1.5rem; }
.set-title {
  font-family: var(--font-display);
  font-size: clamp(2rem,5vw,4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.set-details {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-dim);
}
.set-dot { color: var(--text-muted); }

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

.track-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface-2);
}
.track-strip-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.eq-mini--right { transform: scaleX(-1); }

/* ── ABOUT ────────────────────────────────────────────────── */
#about {
  padding: clamp(5rem,10vw,9rem) 0;
  border-top: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,6vw,6rem);
  align-items: start;
}

.about-body {
  font-size: clamp(1rem,1.5vw,1.1rem);
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  max-width: 520px;
}

.profile-specs {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.spec-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--border);
  transition: background var(--trans);
}
.spec-row:last-child { border-bottom: none; }
.spec-row:hover { background: rgba(255,255,255,0.02); }
.spec-key {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  min-width: 70px;
  padding-top: 0.1rem;
  flex-shrink: 0;
}
.spec-val {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--text-dim);
  line-height: 1.5;
}
.spec-val--available {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--green);
}
.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: statusPulse 2s ease-in-out infinite;
}

/* Vinyl card */
.about-visual { padding-top: 1rem; }

.vinyl-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--trans);
}
.vinyl-card:hover { border-color: var(--border-hover); }

.vinyl-record {
  width: clamp(160px, 20vw, 220px);
  height: clamp(160px, 20vw, 220px);
  border-radius: 50%;
  background: #0a0a10;
  border: 3px solid rgba(255,255,255,0.06);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: vinylSpin 8s linear infinite;
  box-shadow:
    inset 0 0 40px rgba(0,0,0,0.8),
    0 0 30px rgba(0,0,0,0.5);
}
@keyframes vinylSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.vinyl-groove {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.vinyl-groove:nth-child(1) { width: 85%; height: 85%; }
.vinyl-groove:nth-child(2) { width: 68%; height: 68%; }
.vinyl-groove:nth-child(3) { width: 51%; height: 51%; }

.vinyl-center {
  width: 30%;
  height: 30%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.vinyl-center span {
  font-family: var(--font-display);
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.05em;
}

.vinyl-card-text { text-align: center; }
.vinyl-quote {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ── PROFILE PHOTO CARD ───────────────────────────────────── */
.profile-photo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color var(--trans);
}
.profile-photo-card:hover { border-color: var(--border-hover); }

.profile-photo-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--surface-2);
}
.profile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.profile-photo-card:hover .profile-photo { transform: scale(1.03); }

/* Shown only when image fails to load */
.profile-photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: var(--text-muted);
  background: var(--surface-2);
  z-index: -1;
}

.credential-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  background: var(--accent-2-dim);
  border: 1px solid rgba(34,211,238,0.2);
  border-radius: 100px;
  padding: 0.4rem 0.9rem;
  align-self: flex-start;
}

.profile-quote {
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ── FORM ─────────────────────────────────────────────────── */
.booking-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 400;
  outline: none;
  transition: border-color var(--trans);
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }

/* Date input colour fix */
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.4);
  cursor: pointer;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-group select option { background: #111; color: var(--text); }

.form-group textarea { resize: vertical; min-height: 100px; line-height: 1.6; }

.form-footer {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.form-note {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.form-success {
  display: none;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  color: var(--green);
  padding: 0.75rem 1rem;
  background: var(--green-dim);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 8px;
}

/* Alt contacts (below left column) */
.bookings-alt-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.alt-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--trans);
}
.alt-contact:hover { color: var(--accent); }

/* ── MUTE BUTTON ──────────────────────────────────────────── */
#mute-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(13,13,18,0.8);
  backdrop-filter: blur(8px);
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color var(--trans), color var(--trans);
}
#mute-btn:hover { border-color: var(--accent); color: var(--accent); }
#mute-btn .icon-mute { display: none; }
#mute-btn.muted .icon-sound { display: none; }
#mute-btn.muted .icon-mute  { display: block; }
#mute-btn.muted { color: var(--text-muted); }

/* ── SOCIALS ──────────────────────────────────────────────── */
#socials {
  padding: clamp(5rem,10vw,9rem) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.socials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 0;
}

.social-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: border-color var(--trans), transform 0.3s var(--ease-out),
              box-shadow 0.3s var(--ease-out);
}
.social-card:not(.social-card--dim):hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.social-card--dim { opacity: 0.45; pointer-events: none; }

.social-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.social-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.yt-icon { background: rgba(255,60,60,0.1); color: #ff4444; }
.ig-icon { background: var(--accent-dim); color: var(--accent); }
.sp-icon { background: rgba(34,197,94,0.1); color: #22c55e; }

.social-card-arrow {
  font-size: 1.25rem;
  color: var(--text-muted);
  transition: color var(--trans), transform var(--trans);
}
.social-card:hover .social-card-arrow {
  color: var(--text);
  transform: translate(3px,-3px);
}

.social-card-nums {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 0.25rem;
}
.social-stat {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}
.social-stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.social-platform {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.social-handle {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
}
.social-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.6;
  margin-top: 0.25rem;
}

/* ── BOOKINGS ─────────────────────────────────────────────── */
#bookings {
  padding: clamp(6rem,12vw,11rem) 0;
  border-top: 1px solid var(--border);
}

.bookings-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,6vw,6rem);
  align-items: center;
}

.bookings-title {
  font-family: var(--font-display);
  font-size: clamp(3rem,7vw,7rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 0.9;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.bookings-sub {
  font-size: clamp(1rem,1.8vw,1.125rem);
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.75;
}

.bookings-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--text);
  transition: border-color var(--trans), transform 0.3s var(--ease-out),
              box-shadow 0.3s var(--ease-out);
}
.booking-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--accent-dim);
}

.booking-card-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--accent-dim);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-card-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  flex: 1;
}
.booking-card-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.booking-card-value {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.booking-card-arrow {
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: color var(--trans), transform var(--trans);
}
.booking-card:hover .booking-card-arrow { color: var(--accent); transform: translateX(4px); }

.bookings-note {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  padding: 0 0.25rem;
}

/* ── FOOTER ───────────────────────────────────────────────── */
#footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.footer-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}
.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--trans);
}
.footer-links a:hover { color: var(--text); }
.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* ── HERO VIDEO BG ────────────────────────────────────────── */
/* Video is portrait (406×720). We show it contained & centered,
   creating an intentional film-frame look on the dark background. */
.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: auto;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.32;
  z-index: 0;
  pointer-events: none;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(6,6,9,0.85) 0%, transparent 30%, transparent 70%, rgba(6,6,9,0.85) 100%),
    linear-gradient(to bottom, rgba(6,6,9,0.3) 0%, rgba(6,6,9,0.15) 40%, rgba(6,6,9,0.75) 100%);
  z-index: 0;
  pointer-events: none;
}

/* ── SHOTS GRID ───────────────────────────────────────────── */
#shots {
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.shots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: clamp(220px, 45vw, 520px);
  gap: 2px;
  background: #000;
}
.shot {
  position: relative;
  overflow: hidden;
  background: #000;
}
.shot video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  transition: opacity 0.5s var(--ease-smooth), transform 0.6s var(--ease-out);
}
.shot:hover video {
  opacity: 1;
  transform: scale(1.04);
}

.shots-label-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 0.875rem 0;
}
.shots-label-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
.shots-label-text {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ambient audio is hidden — no visible player */

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid   { grid-template-columns: 1fr; }
  .socials-grid { grid-template-columns: 1fr 1fr; }
  .bookings-inner { grid-template-columns: 1fr; }
  .bookings-title { font-size: clamp(3rem,10vw,6rem); }
}

@media (max-width: 640px) {
  .nav-links     { display: none; }
  .socials-grid  { grid-template-columns: 1fr; }
  .hero-title-name { font-size: clamp(4.5rem,22vw,8rem); }
  .hero-scroll-hint { display: none; }
  .footer-inner  { flex-direction: column; align-items: flex-start; }
  .track-strip   { flex-wrap: wrap; gap: 0.75rem; }
  .shots-grid    { grid-template-columns: 1fr 1fr; height: clamp(180px,50vw,280px); }
  .shot:nth-child(3) { display: none; }
}
