/* =========================================================
   DJ CHRIS AUSTIN — AFTER HOURS AESTHETIC
   Miami / Charlotte nightlife. Pure black + neon magenta/cyan.
   ========================================================= */

/* ---------- TOKENS ---------- */
:root {
  /* Surfaces */
  --bg:        #050507;
  --bg-deep:   #020203;
  --panel:     #0b0b12;
  --panel-2:   #111119;
  --line:      #1a1a26;
  --line-hot:  #2a2235;

  /* Ink */
  --text:      #f5f2ff;
  --text-mute: #9a97b0;
  --text-dim:  #5a5770;

  /* Neon */
  --magenta:   #ff2d95;
  --magenta-2: #ff6bc1;
  --cyan:      #00e5ff;
  --cyan-2:    #6bf7ff;
  --violet:    #8a2bff;
  --violet-2:  #b872ff;

  /* Atmosphere */
  --glow-m:    0 0 40px rgba(255, 45, 149, 0.45);
  --glow-c:    0 0 40px rgba(0, 229, 255, 0.35);
  --glow-v:    0 0 60px rgba(138, 43, 255, 0.30);

  /* Type */
  --f-display: "Big Shoulders Display", "Impact", sans-serif;
  --f-head:    "Unbounded", "Arial Black", sans-serif;
  --f-body:    "Manrope", -apple-system, sans-serif;
  --f-mono:    "JetBrains Mono", ui-monospace, monospace;

  /* Metrics */
  --rad: 2px;
  --rad-lg: 4px;
  --wrap: 1280px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--magenta); color: #000; }

/* ---------- GRAIN + CURSOR ---------- */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='3'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.cursor-glow {
  position: fixed;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,45,149,0.22), transparent 60%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  left: -999px; top: -999px;
  mix-blend-mode: screen;
  transition: opacity 0.3s;
  filter: blur(20px);
}
@media (hover: none) { .cursor-glow { display: none; } }

/* ---------- WRAP ---------- */
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) { .wrap { padding: 0 20px; } }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: linear-gradient(180deg, rgba(5,5,7,0.75), rgba(5,5,7,0.35));
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: padding 0.3s var(--ease), background 0.3s var(--ease);
}
.nav.scrolled {
  padding: 12px 40px;
  background: rgba(5,5,7,0.9);
  border-bottom-color: rgba(255,45,149,0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--text);
}
.brand-mark {
  font-size: 10px;
  color: var(--magenta);
  text-shadow: var(--glow-m);
  animation: pulse 2.4s ease-in-out infinite;
}

.nav-links {
  display: flex;
  gap: 34px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-links a {
  position: relative;
  color: var(--text-mute);
  transition: color 0.25s;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--magenta);
  box-shadow: var(--glow-m);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-family: var(--f-head);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding: 12px 22px;
  border: 1px solid var(--magenta);
  color: var(--magenta);
  position: relative;
  overflow: hidden;
  transition: color 0.3s;
}
.nav-cta::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--magenta);
  transform: translateY(101%);
  transition: transform 0.35s var(--ease);
}
.nav-cta span, .nav-cta { position: relative; z-index: 1; }
.nav-cta:hover { color: #000; }
.nav-cta:hover::before { transform: translateY(0); }

.nav-toggle {
  display: none;
  width: 28px; height: 22px;
  flex-direction: column;
  justify-content: space-between;
}
.nav-toggle span { height: 2px; width: 100%; background: var(--text); transition: 0.3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav { padding: 14px 20px; }
  .nav.scrolled { padding: 10px 20px; }
  .nav-links {
    position: fixed;
    top: 58px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(5,5,7,0.98);
    backdrop-filter: blur(30px);
    padding: 20px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    transition: transform 0.4s var(--ease);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 140px 40px 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Real booth photo — base layer. Heavily darkened + tinted with gradient overlay */
.hero-bg .photo {
  position: absolute; inset: 0;
  background-image:
    /* neon gradient wash for color unity */
    linear-gradient(115deg, rgba(10,0,20,0.92) 0%, rgba(10,0,20,0.70) 38%, rgba(20,0,40,0.50) 70%, rgba(40,0,60,0.60) 100%),
    /* dark left-to-right fade so hero text stays readable */
    linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.45) 45%, rgba(0,0,0,0.35) 70%, rgba(0,0,0,0.60) 100%),
    url('../assets/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  animation: photoDrift 30s ease-in-out infinite alternate;
}
@keyframes photoDrift {
  0%   { transform: scale(1.02) translate(0, 0); }
  100% { transform: scale(1.06) translate(-1%, -0.5%); }
}
@media (max-width: 700px) {
  .hero-bg .photo {
    background-image:
      linear-gradient(170deg, rgba(10,0,20,0.92) 0%, rgba(10,0,20,0.55) 50%, rgba(40,0,60,0.70) 100%),
      linear-gradient(180deg, rgba(0,0,0,0.50) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.75) 100%),
      url('../assets/hero-bg-mobile.jpg');
  }
}

/* Animated gradient mesh — atmosphere on top of photo */
.mesh {
  position: absolute; inset: -20%;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(255,45,149,0.38), transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 70%, rgba(0,229,255,0.28), transparent 60%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(138,43,255,0.38), transparent 65%),
    radial-gradient(ellipse 40% 30% at 90% 10%, rgba(255,45,149,0.22), transparent 70%);
  filter: blur(60px);
  animation: meshDrift 18s ease-in-out infinite alternate;
  opacity: 0.75;
  mix-blend-mode: screen;
}
@keyframes meshDrift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-4%, 3%) scale(1.05); }
  100% { transform: translate(3%, -4%) scale(1.08); }
}

/* Scanline effect */
.scan {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(
      to bottom,
      transparent 0px,
      transparent 2px,
      rgba(255,255,255,0.02) 3px,
      transparent 4px
    );
  mix-blend-mode: overlay;
}
.scan::after {
  content: "";
  position: absolute; left: 0; right: 0;
  height: 300px;
  background: linear-gradient(to bottom, transparent, rgba(0,229,255,0.08) 40%, rgba(255,45,149,0.08) 60%, transparent);
  animation: scanMove 8s linear infinite;
  mix-blend-mode: screen;
}
@keyframes scanMove {
  0%   { top: -300px; }
  100% { top: 120%; }
}

.vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.6) 100%),
    linear-gradient(to bottom, transparent 60%, var(--bg));
}

/* Top chrome strip */
.hero-chrome {
  position: absolute;
  top: 100px; left: 40px; right: 40px;
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  z-index: 3;
  pointer-events: none;
}
.chrome-item { display: inline-flex; align-items: center; gap: 6px; }
@media (max-width: 700px) {
  .hero-chrome { top: 80px; left: 20px; right: 20px; font-size: 9px; gap: 12px; }
  .hero-chrome .chrome-item:nth-child(2) { display: none; }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--cyan);
  padding: 8px 16px;
  border: 1px solid rgba(0,229,255,0.3);
  background: rgba(0,229,255,0.05);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.2s forwards;
}
.hero-kicker .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: var(--glow-c);
  animation: pulse 1.6s ease-in-out infinite;
}

.hero-title {
  font-family: var(--f-display);
  font-weight: 900;
  line-height: 0.82;
  font-style: italic;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 48px;
}
.hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1.2s var(--ease) forwards;
}
.hero-title .line-1 {
  font-size: clamp(64px, 9vw, 140px);
  color: transparent;
  -webkit-text-stroke: 1.5px var(--text);
  animation-delay: 0.35s;
  text-indent: -0.05em;
}
.hero-title .line-2 {
  font-size: clamp(88px, 14vw, 220px);
  background: linear-gradient(90deg, #ffffff 0%, var(--magenta) 45%, var(--violet) 70%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation-delay: 0.5s;
  filter: drop-shadow(0 0 40px rgba(255,45,149,0.25));
  margin-top: -0.05em;
  padding-inline-end: 0.1em;
}

.hero-sub {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: clamp(14px, 1.4vw, 18px);
  letter-spacing: 0.12em;
  color: var(--text-mute);
  margin-bottom: 56px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.85s forwards;
}
.hero-sub .accent {
  color: var(--magenta);
  text-shadow: 0 0 20px rgba(255,45,149,0.6);
}
@media (max-width: 700px) {
  .hero-sub { flex-direction: column; gap: 6px; font-size: 13px; margin-bottom: 36px; }
}

.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.05s forwards;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 20px 32px;
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.2em;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease);
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--magenta);
  color: #000;
  box-shadow: 0 10px 40px rgba(255,45,149,0.35), inset 0 0 0 1px rgba(255,255,255,0.1);
  animation: pulseGlow 3s ease-in-out infinite;
}
.btn-primary::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease);
}
.btn-primary:hover::before { transform: translateX(100%); }

.btn-ghost {
  color: var(--text);
  border: 1px solid var(--line-hot);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(12px);
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }

.play-tri {
  width: 0; height: 0;
  border-left: 8px solid currentColor;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

/* Equalizer */
.eq {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  align-items: flex-end;
  height: 64px;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.3s forwards;
}
.eq span {
  display: block;
  width: 3px;
  background: linear-gradient(to top, var(--magenta), var(--cyan));
  border-radius: 1px;
  animation: eqBar 1.2s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(255,45,149,0.5);
}
.eq span:nth-child(1)  { animation-delay: -0.10s; height: 30%; }
.eq span:nth-child(2)  { animation-delay: -0.30s; height: 60%; }
.eq span:nth-child(3)  { animation-delay: -0.50s; height: 40%; }
.eq span:nth-child(4)  { animation-delay: -0.70s; height: 80%; }
.eq span:nth-child(5)  { animation-delay: -0.20s; height: 50%; }
.eq span:nth-child(6)  { animation-delay: -0.90s; height: 70%; }
.eq span:nth-child(7)  { animation-delay: -1.10s; height: 45%; }
.eq span:nth-child(8)  { animation-delay: -0.45s; height: 65%; }
.eq span:nth-child(9)  { animation-delay: -0.15s; height: 35%; }
.eq span:nth-child(10) { animation-delay: -0.55s; height: 85%; }
.eq span:nth-child(11) { animation-delay: -0.80s; height: 55%; }
.eq span:nth-child(12) { animation-delay: -0.25s; height: 75%; }
.eq span:nth-child(13) { animation-delay: -0.60s; height: 40%; }
.eq span:nth-child(14) { animation-delay: -1.00s; height: 60%; }
.eq span:nth-child(15) { animation-delay: -0.35s; height: 50%; }
.eq span:nth-child(16) { animation-delay: -0.75s; height: 90%; }
.eq span:nth-child(17) { animation-delay: -0.05s; height: 40%; }
.eq span:nth-child(18) { animation-delay: -0.95s; height: 70%; }
.eq span:nth-child(19) { animation-delay: -0.40s; height: 55%; }
.eq span:nth-child(20) { animation-delay: -0.65s; height: 80%; }
.eq span:nth-child(21) { animation-delay: -0.22s; height: 45%; }
.eq span:nth-child(22) { animation-delay: -0.88s; height: 65%; }
.eq span:nth-child(23) { animation-delay: -0.48s; height: 35%; }
.eq span:nth-child(24) { animation-delay: -0.18s; height: 75%; }
.eq span:nth-child(25) { animation-delay: -0.72s; height: 55%; }
.eq span:nth-child(26) { animation-delay: -0.08s; height: 85%; }
.eq span:nth-child(27) { animation-delay: -0.98s; height: 40%; }
.eq span:nth-child(28) { animation-delay: -0.42s; height: 60%; }
.eq span:nth-child(29) { animation-delay: -0.62s; height: 50%; }
.eq span:nth-child(30) { animation-delay: -0.12s; height: 80%; }
.eq span:nth-child(31) { animation-delay: -0.82s; height: 45%; }
.eq span:nth-child(32) { animation-delay: -0.28s; height: 70%; }
.eq span:nth-child(33) { animation-delay: -0.52s; height: 55%; }
.eq span:nth-child(34) { animation-delay: -0.92s; height: 65%; }
.eq span:nth-child(35) { animation-delay: -0.32s; height: 40%; }
.eq span:nth-child(36) { animation-delay: -0.68s; height: 75%; }
.eq span:nth-child(37) { animation-delay: -0.02s; height: 50%; }
.eq span:nth-child(38) { animation-delay: -0.78s; height: 85%; }
.eq span:nth-child(39) { animation-delay: -0.38s; height: 45%; }
.eq span:nth-child(40) { animation-delay: -0.58s; height: 60%; }

@keyframes eqBar {
  0%, 100% { transform: scaleY(0.4); }
  50%      { transform: scaleY(1); }
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 30px; right: 40px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--text-dim);
  z-index: 3;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.4s forwards;
}
.hero-scroll-line {
  display: inline-block;
  width: 60px; height: 1px;
  background: linear-gradient(to right, var(--text-dim), transparent);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--cyan);
  animation: scrollLine 2.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
@media (max-width: 700px) { .hero-scroll { right: 20px; bottom: 20px; } }

/* ---------- MARQUEE ---------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  background: linear-gradient(90deg, var(--bg-deep), var(--panel), var(--bg-deep));
  position: relative;
  z-index: 2;
}
.marquee::before, .marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 180px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-deep), transparent);
}
.marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-deep), transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(40px, 6vw, 80px);
  letter-spacing: -0.01em;
  animation: marquee 60s linear infinite;
  width: fit-content;
}
.marquee-track span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.2);
  transition: color 0.3s;
}
.marquee-track .star {
  font-size: 0.4em;
  color: var(--magenta);
  -webkit-text-stroke: 0;
  text-shadow: var(--glow-m);
}
.marquee-track:hover span:not(.star) {
  color: var(--magenta);
  -webkit-text-stroke: 1px var(--magenta);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- SECTION HEADS ---------- */
.section-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
}
.section-num {
  color: var(--magenta);
  text-shadow: var(--glow-m);
}
.section-label {
  color: var(--text-mute);
}

.section-title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}
.section-title em {
  font-style: italic;
  background: linear-gradient(90deg, var(--magenta), var(--violet), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 30px rgba(255,45,149,0.2));
  /* extend background box so italic right-overhang of the last letter is painted */
  padding-inline-end: 0.12em;
  margin-inline-end: -0.12em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* ---------- BIO ---------- */
.bio {
  padding: 140px 40px;
  position: relative;
}
.bio::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 300px;
  background: radial-gradient(ellipse at 30% 0%, rgba(138,43,255,0.2), transparent 60%);
  pointer-events: none;
}

.bio-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 72px;
}
@media (max-width: 900px) { .bio-grid { grid-template-columns: 1fr; gap: 40px; margin-bottom: 48px; } }

/* Bio photo frame — neon-bordered editorial card */
.bio-photo {
  position: relative;
  padding: 16px;
}
.bio-photo-frame {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--panel);
  box-shadow:
    0 30px 80px -20px rgba(255,45,149,0.35),
    0 0 0 1px rgba(255,45,149,0.25),
    inset 0 0 0 1px rgba(255,255,255,0.04);
}
.bio-photo-frame::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,45,149,0.18), transparent 40%, transparent 60%, rgba(0,229,255,0.18));
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.bio-photo-frame::after {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(to bottom, transparent 0 2px, rgba(0,0,0,0.08) 2px 3px);
  z-index: 3;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.bio-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: contrast(1.08) saturate(1.1);
  transition: transform 0.8s var(--ease);
}
.bio-photo-frame:hover img { transform: scale(1.03); }

/* Neon corner brackets */
.bio-photo-corner {
  position: absolute;
  width: 28px; height: 28px;
  z-index: 4;
  pointer-events: none;
}
.bpc-tl { top: 0; left: 0; border-top: 2px solid var(--magenta); border-left: 2px solid var(--magenta); box-shadow: -4px -4px 20px -6px var(--magenta); }
.bpc-tr { top: 0; right: 0; border-top: 2px solid var(--cyan);    border-right: 2px solid var(--cyan);    box-shadow:  4px -4px 20px -6px var(--cyan); }
.bpc-bl { bottom: 0; left: 0; border-bottom: 2px solid var(--cyan);    border-left: 2px solid var(--cyan);    box-shadow: -4px  4px 20px -6px var(--cyan); }
.bpc-br { bottom: 0; right: 0; border-bottom: 2px solid var(--magenta); border-right: 2px solid var(--magenta); box-shadow:  4px  4px 20px -6px var(--magenta); }

.bio-photo-badge {
  position: absolute;
  bottom: 18px; left: 18px;
  z-index: 4;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  padding: 7px 12px 6px;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,45,149,0.5);
  color: var(--text);
}
.bio-photo-badge::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--magenta);
  box-shadow: var(--glow-m);
  margin-right: 8px;
  vertical-align: 1px;
  animation: pulse 1.6s ease-in-out infinite;
}

.bio-lead {
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.6;
  color: var(--text);
  max-width: 560px;
  margin-bottom: 32px;
}

.bio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.bio-tags span {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  padding: 6px 12px;
  border: 1px solid var(--line-hot);
  background: rgba(255,45,149,0.04);
  color: var(--text-mute);
}

.bio-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  position: relative;
}
@media (max-width: 700px) { .bio-stats { grid-template-columns: repeat(2, 1fr); } }
.bio-stats::before {
  content: "";
  position: absolute; inset: -1px;
  background: linear-gradient(135deg, var(--magenta), transparent 40%, transparent 60%, var(--cyan));
  z-index: -1;
  opacity: 0.3;
}
.stat {
  background: var(--panel);
  padding: 32px 24px;
  text-align: center;
}
.stat b {
  display: block;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
  color: var(--text);
  font-style: italic;
  background: linear-gradient(180deg, var(--text), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat b sup { font-size: 0.4em; color: var(--magenta); -webkit-text-fill-color: var(--magenta); }
.stat span {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--text-dim);
  margin-top: 12px;
}

/* ---------- VENUES ---------- */
.venues {
  padding: 140px 40px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  position: relative;
}
.venues::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.2;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  pointer-events: none;
}

.venue-region { margin-top: 80px; }
.venue-region:first-of-type { margin-top: 0; }

.region-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.region-dot {
  width: 10px; height: 10px;
  background: var(--magenta);
  box-shadow: var(--glow-m);
  animation: pulse 1.8s ease-in-out infinite;
}
.region-dot--cyan   { background: var(--cyan);   box-shadow: var(--glow-c); }
.region-dot--violet { background: var(--violet); box-shadow: var(--glow-v); }

.region-title {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: 0.08em;
}
.region-count {
  margin-left: auto;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--text-dim);
}

.venue-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 1024px) { .venue-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .venue-grid { grid-template-columns: repeat(2, 1fr); } }

.venue {
  position: relative;
  background: var(--panel);
  padding: 32px 24px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: default;
  overflow: hidden;
  transition: background 0.4s var(--ease), transform 0.4s var(--ease);
}
.venue::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--magenta);
  box-shadow: var(--glow-m);
  transition: width 0.45s var(--ease);
}
.venue:hover::before { width: 100%; }
.venue:hover {
  background: var(--panel-2);
  transform: translateY(-4px);
}

.venue-index {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  align-self: flex-start;
}
.venue-name {
  font-family: var(--f-display);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(28px, 2.5vw, 38px);
  line-height: 1;
  color: var(--text);
  transition: color 0.4s;
}
.venue:hover .venue-name {
  background: linear-gradient(90deg, var(--text), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.venue-city {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--text-mute);
  margin-top: 12px;
}
.venue-tag {
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  padding: 3px 8px;
  border: 1px solid var(--magenta);
  color: var(--magenta);
  text-shadow: var(--glow-m);
}
.venue-glow {
  position: absolute;
  bottom: -80%; right: -40%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,45,149,0.4), transparent 70%);
  filter: blur(40px);
  opacity: 0;
  transition: opacity 0.5s var(--ease), bottom 0.5s var(--ease);
  pointer-events: none;
}
.venue-glow--cyan   { background: radial-gradient(circle, rgba(0,229,255,0.35), transparent 70%); }
.venue-glow--violet { background: radial-gradient(circle, rgba(138,43,255,0.4), transparent 70%); }
.venue:hover .venue-glow {
  opacity: 1;
  bottom: -50%;
}

.venue-featured {
  background: linear-gradient(135deg, var(--panel), rgba(255,45,149,0.08));
}
.venue-featured .venue-glow { opacity: 0.5; bottom: -60%; }

/* ---------- MIX / PLAYER ---------- */
.mix {
  padding: 140px 40px;
  position: relative;
  overflow: hidden;
}
.mix::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(0,229,255,0.15), transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 70%, rgba(255,45,149,0.12), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}

.player {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
  padding: 48px;
  background: linear-gradient(135deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.player::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,45,149,0.03) 60%, transparent);
  pointer-events: none;
}
@media (max-width: 800px) {
  .player { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; text-align: left; }
}

.play-btn {
  position: relative;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--magenta), #c61e76);
  display: grid;
  place-items: center;
  box-shadow:
    0 0 0 2px var(--bg),
    0 0 0 3px var(--magenta),
    0 0 60px rgba(255,45,149,0.6),
    inset 0 0 40px rgba(255,255,255,0.2);
  transition: transform 0.3s var(--ease);
}
.play-btn:hover { transform: scale(1.03); }
.play-btn-ring {
  position: absolute; inset: -12px;
  border-radius: 50%;
  border: 1px solid var(--magenta);
  opacity: 0.5;
  animation: ringExpand 2.8s ease-out infinite;
}
.play-btn-ring.ring-2 { animation-delay: 1.4s; }
@keyframes ringExpand {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}
.play-btn-icon--play {
  width: 0; height: 0;
  border-left: 32px solid #fff;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  margin-left: 8px;
  filter: drop-shadow(0 0 20px rgba(255,255,255,0.5));
}
.play-btn-icon--pause {
  display: none;
  width: 28px; height: 36px;
  position: relative;
}
.play-btn-icon--pause::before,
.play-btn-icon--pause::after {
  content: ""; position: absolute; top: 0; bottom: 0;
  width: 10px; background: #fff;
}
.play-btn-icon--pause::before { left: 0; }
.play-btn-icon--pause::after  { right: 0; }

.play-btn.playing .play-btn-icon--play  { display: none; }
.play-btn.playing .play-btn-icon--pause { display: block; }

.player-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.meta-tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  padding: 4px 10px;
  border: 1px solid var(--cyan);
  color: var(--cyan);
}
.meta-bpm {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
}
.player-title {
  font-family: var(--f-display);
  font-weight: 900;
  font-style: normal;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  margin-bottom: 8px;
  color: var(--text);
}
.player-title em {
  font-style: italic;
  background: linear-gradient(100deg, var(--magenta) 0%, var(--cyan) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding-inline-end: 0.12em;
  margin-inline-end: -0.12em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.player-sub {
  color: var(--text-mute);
  margin-bottom: 32px;
  font-size: 14px;
}

/* Waveform — dynamic JS-generated bars */
.waveform {
  position: relative;
  display: flex;
  align-items: center;
  gap: 3px;
  height: 80px;
  margin-bottom: 16px;
  cursor: pointer;
  touch-action: none;
  outline: none;
}
.waveform:focus-visible { box-shadow: 0 0 0 2px var(--magenta); border-radius: 4px; }
.wf-bar {
  flex: 1;
  background: var(--line-hot);
  border-radius: 1px;
  transition: background 0.2s;
  min-width: 2px;
  pointer-events: none;
}
.wf-bar.active { background: linear-gradient(to top, var(--magenta), var(--cyan)); box-shadow: 0 0 8px rgba(255,45,149,0.5); }

.wf-playhead {
  position: absolute;
  top: -6px; bottom: -6px;
  left: 0;
  width: 2px;
  background: #fff;
  box-shadow: 0 0 10px var(--cyan), 0 0 20px var(--magenta);
  pointer-events: none;
  transform: translateX(-1px);
  transition: left 0.08s linear;
}

.player-time {
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--text-dim);
}

.player-embed { display: none; }
.player-embed:not(:empty) { display: block; margin-top: 24px; }

/* ---------- GALLERY ---------- */
.gallery {
  padding: 140px 40px;
  background: var(--bg-deep);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--panel);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease);
}
.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease);
}
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.8));
  pointer-events: none;
  transition: opacity 0.3s;
}
.gallery-item:hover { transform: translateY(-4px); }
.gallery-item:hover::before { transform: scale(1.05); }

.gi-label {
  position: absolute;
  left: 20px; bottom: 18px;
  z-index: 2;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--text);
  padding: 6px 12px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Grid sizing — each item spans specific cells for asymmetric layout */
.gi-1 { grid-column: span 3; grid-row: span 2; }
.gi-2 { grid-column: span 3; }
.gi-3 { grid-column: span 3; }
.gi-4 { grid-column: span 3; grid-row: span 2; }
.gi-5 { grid-column: span 3; grid-row: span 2; }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gi-1 { grid-column: span 2; grid-row: span 1; }
  .gi-2, .gi-3, .gi-4, .gi-5 { grid-column: span 1; }
}

/* ---------- BOOKING ---------- */
.book {
  padding: 140px 40px;
  position: relative;
}
.book::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 400px;
  background: radial-gradient(ellipse at 70% 0%, rgba(255,45,149,0.15), transparent 70%);
  pointer-events: none;
}

.book-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .book-grid { grid-template-columns: 1fr; gap: 48px; } }

.book-lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-mute);
  max-width: 480px;
  margin-bottom: 32px;
}

.book-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.15em;
}
.book-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.3s, padding-left 0.3s var(--ease);
}
.book-list li span {
  color: var(--magenta);
  font-weight: 900;
  text-shadow: var(--glow-m);
}
.book-list li:hover {
  color: var(--magenta);
  padding-left: 12px;
}

/* FORM */
.book-form {
  padding: 40px;
  background: var(--panel);
  border: 1px solid var(--line);
  position: relative;
}
.book-form::before {
  content: "";
  position: absolute; inset: 0;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(255,45,149,0.3), transparent 50%, rgba(0,229,255,0.2)) border-box;
  -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
@media (max-width: 500px) { .book-form { padding: 28px 20px; } }

.field { margin-bottom: 22px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; gap: 0; } }

.field label {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--text-dim);
  margin-bottom: 10px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-hot);
  padding: 12px 0;
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  border-radius: 0;
}
.field textarea { resize: vertical; min-height: 96px; }
.field select option { background: var(--panel); color: var(--text); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--magenta);
  box-shadow: 0 1px 0 0 var(--magenta), 0 0 20px -10px var(--magenta);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-dim); }

.btn-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.form-note {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--cyan);
  margin-top: 16px;
  text-align: center;
  min-height: 16px;
}

/* ---------- FOOTER ---------- */
.foot {
  padding: 100px 40px 40px;
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.foot::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--magenta), var(--cyan), transparent);
  opacity: 0.6;
}

.foot-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.foot-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.08em;
}
.foot-statement {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -0.01em;
  text-align: right;
}
.foot-statement em {
  font-style: italic;
  background: linear-gradient(90deg, var(--magenta), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-inline-end: 0.12em;
  margin-inline-end: -0.12em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
@media (max-width: 700px) { .foot-statement { text-align: left; font-size: 22px; } }

.foot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding: 60px 0;
}
@media (max-width: 700px) { .foot-grid { grid-template-columns: 1fr; gap: 32px; padding: 40px 0; } }

.foot-col h5 {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--text-dim);
  margin-bottom: 18px;
  font-weight: 500;
}
.foot-col a,
.foot-col p {
  display: block;
  color: var(--text-mute);
  font-size: 14px;
  padding: 6px 0;
  transition: color 0.25s, transform 0.25s var(--ease);
}
.foot-col a:hover {
  color: var(--magenta);
  transform: translateX(4px);
}

.foot-base {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- FLOATING SOUND TOGGLE ---------- */
/* ---------- STICKY MINI-PLAYER ---------- */
.mini-player {
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px 10px 10px;
  background: rgba(8,8,14,0.85);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border: 1px solid var(--line-hot);
  border-radius: 999px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  font-family: var(--f-mono);
}
.mini-player.is-on {
  border-color: var(--magenta);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 30px rgba(255,45,149,0.25);
}
.mini-player.is-muted {
  border-color: var(--magenta);
  animation: mpPulse 1.8s ease-in-out infinite;
}
@keyframes mpPulse {
  0%, 100% { box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 20px rgba(255,45,149,0.45); }
  50%      { box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 44px rgba(255,45,149,0.85); }
}

/* Play/Pause circular button */
.mp-play {
  position: relative;
  width: 40px; height: 40px;
  flex: 0 0 40px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--magenta) 0%, var(--violet) 100%);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.mp-play:hover { transform: scale(1.06); }
.mp-play:active { transform: scale(0.96); }

.mp-play-icon { position: absolute; display: none; }
.mp-icon-play {
  display: block;
  width: 0; height: 0;
  border-left: 10px solid #fff;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  margin-left: 3px;
}
.mp-icon-pause {
  width: 10px; height: 12px;
  border-left: 3px solid #fff;
  border-right: 3px solid #fff;
}
.mini-player.is-playing .mp-icon-play  { display: none; }
.mini-player.is-playing .mp-icon-pause { display: block; }

/* Meta label */
.mp-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  min-width: 0;
}
.mp-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--text);
  text-transform: uppercase;
  white-space: nowrap;
}
.mp-state {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  text-transform: uppercase;
  white-space: nowrap;
}
.mini-player.is-on .mp-state { color: var(--magenta); }
.mini-player.is-muted .mp-state { color: #fff; }

/* Live EQ canvas */
.mp-eq {
  width: 140px;
  height: 40px;
  display: block;
  opacity: 0.9;
}
.mini-player:not(.is-playing) .mp-eq { opacity: 0.35; }

/* Mute toggle */
.mp-mute {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--line-hot);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--text-mute);
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.mp-mute:hover { color: var(--text); border-color: var(--text-dim); }
.mp-mute .st-label { text-transform: uppercase; }
.mp-mute-icon { display: inline-flex; }
/* Slash when muted */
.mini-player:not(.is-muted) .mp-mute-slash { display: none; }
.mini-player.is-on .mp-mute { border-color: var(--magenta); color: var(--magenta); }

/* Mobile: condense */
@media (max-width: 640px) {
  .mini-player { bottom: 12px; right: 12px; left: 12px; padding: 8px 10px 8px 8px; gap: 10px; }
  .mp-eq { flex: 1; width: auto; max-width: none; height: 32px; }
  .mp-meta { flex: 0 1 auto; min-width: 0; }
  .mp-label, .mp-state { font-size: 9px; letter-spacing: 0.18em; }
  .mp-mute { padding: 5px 8px; font-size: 8px; }
  .mp-mute .st-label { display: none; }
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.7; transform: scale(1.2); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 10px 40px rgba(255,45,149,0.35), inset 0 0 0 1px rgba(255,255,255,0.1); }
  50%      { box-shadow: 0 10px 60px rgba(255,45,149,0.6), inset 0 0 0 1px rgba(255,255,255,0.15); }
}

/* Scroll-triggered reveals */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.venue-grid .reveal:nth-child(2)  { transition-delay: 0.05s; }
.venue-grid .reveal:nth-child(3)  { transition-delay: 0.10s; }
.venue-grid .reveal:nth-child(4)  { transition-delay: 0.15s; }
.venue-grid .reveal:nth-child(5)  { transition-delay: 0.20s; }
.venue-grid .reveal:nth-child(6)  { transition-delay: 0.25s; }
.venue-grid .reveal:nth-child(7)  { transition-delay: 0.30s; }
.venue-grid .reveal:nth-child(8)  { transition-delay: 0.35s; }

.gallery-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.gallery-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.gallery-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.gallery-grid .reveal:nth-child(5) { transition-delay: 0.32s; }
.gallery-grid .reveal:nth-child(6) { transition-delay: 0.40s; }

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

/* Medium breakpoint adjustments */
@media (max-width: 768px) {
  .hero       { padding: 120px 20px 120px; }
  .bio, .venues, .mix, .gallery, .book { padding: 100px 20px; }
  .foot       { padding: 80px 20px 32px; }
  .eq { height: 48px; gap: 3px; }
  .eq span { width: 2px; }
  .play-btn { width: 130px; height: 130px; }
  .play-btn-icon--play { border-left-width: 24px; border-top-width: 15px; border-bottom-width: 15px; }
}

