/* ============================================================
   FODAY KOROMA — AFRO NOIR
   Base Shell Styles — Step 1
   ============================================================ */


/* -----------------------------------------------------------
   1. CUSTOM PROPERTIES
   ----------------------------------------------------------- */
:root {
  /* Brand Colors */
  --black:  #0A0A0A;
  --orange: #FF6A00;
  --purple: #7B2CFF; /* glow / shadow / blur ONLY — never a fill */
  --silver: #A8A9AD;
  --white:  #F5F5F5;

  /* Typography */
  --font-chaos:    'Permanent Marker', cursive;
  --font-control:  'DM Mono', monospace;
  --font-elegance: 'Cormorant Garamond', serif;

  /* Fluid Spacing Scale */
  --space-xs: clamp(0.25rem, 0.5vw,  0.5rem);
  --space-sm: clamp(0.5rem,  1vw,    1rem);
  --space-md: clamp(1rem,    2vw,    2rem);
  --space-lg: clamp(2rem,    4vw,    4rem);
  --space-xl: clamp(4rem,    8vw,    8rem);

  /* Ticker height — used for bottom padding on sections */
  --ticker-height: 36px;

  /* Cursor sizes */
  --cursor-dot-size:  5px;
  --cursor-ring-size: 32px;

  /* Z-index scale */
  --z-preloader: 10000;
  --z-grain:       9999;
  --z-cursor:      9998;
  --z-nav:         1000;
  --z-marquee:      100;
}


/* -----------------------------------------------------------
   2. CSS RESET
   ----------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -moz-text-size-adjust:    none;
  -webkit-text-size-adjust: none;
  text-size-adjust:         none;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing:  antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}


/* -----------------------------------------------------------
   3. BASE TYPOGRAPHY & BODY
   ----------------------------------------------------------- */
html, body {
  background-color: var(--black);
  color: var(--silver);
  font-family: var(--font-control);
  font-size: 16px;
  overflow-x: hidden;
}

/* cursor: none ONLY when JS successfully adds this class.
   If JS fails to load, the default system cursor remains. */
body.custom-cursor-active {
  cursor: none;
}


/* -----------------------------------------------------------
   4. LENIS SMOOTH SCROLL OVERRIDES
   ----------------------------------------------------------- */
html.lenis,
html.lenis body {
  height: auto;
}

/* Do NOT set overflow: hidden here — it blocks native touch scroll on iOS/Android */
html.lenis {
  overflow: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

@media (max-width: 768px) {
  html, body {
    overflow: auto !important;
    height: auto !important;
  }

  /* Grain filter is expensive on mobile GPUs — disable entirely */
  .grain-overlay {
    display: none;
  }

  /* Also disable per-section local grain pseudo-elements */
  .vids__list-zone::before,
  .music__list-zone::before,
  .section--newsletter::before {
    display: none;
  }
}


/* -----------------------------------------------------------
   5. SELECTION & SCROLLBAR
   ----------------------------------------------------------- */
::selection {
  background-color: var(--orange);
  color: var(--black);
}

::-moz-selection {
  background-color: var(--orange);
  color: var(--black);
}

/* Scrollbar — Chromium / Safari */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: color-mix(in srgb, var(--orange) 75%, #fff);
}

/* Scrollbar — Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--orange) var(--black);
}


/* -----------------------------------------------------------
   6. PRELOADER
   ----------------------------------------------------------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: var(--z-preloader);
  background-color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  /* Transition handled by GSAP; this is a fallback */
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__text {
  font-family: var(--font-control);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--silver);
  opacity: 0.35;
}


/* -----------------------------------------------------------
   7. SVG GRAIN FILTER + OVERLAY
   ----------------------------------------------------------- */
.grain-svg {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-grain);
  pointer-events: none;
  width: 100%;
  height: 100%;
  filter: url(#grain-filter);
  mix-blend-mode: overlay;
  opacity: 0.10;
  /* Promote to GPU layer — filter animation is continuous */
  will-change: filter;
}


/* -----------------------------------------------------------
   8. CUSTOM CURSOR
   ----------------------------------------------------------- */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--cursor-dot-size);
  height: var(--cursor-dot-size);
  background-color: var(--orange);
  border-radius: 50%;
  z-index: var(--z-cursor);
  pointer-events: none;
  /* GSAP translates this — transform-origin centered */
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--cursor-ring-size);
  height: var(--cursor-ring-size);
  border: 1.5px solid var(--orange);
  border-radius: 50%;
  z-index: var(--z-cursor);
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition:
    opacity       0.3s ease,
    width         0.35s cubic-bezier(0.16, 1, 0.3, 1),
    height        0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color  0.3s ease;
}

/* JS adds this after first mousemove — prevents flash at (0,0) */
.cursor-dot.is-visible,
.cursor-ring.is-visible {
  opacity: 1;
}

/* Hover state — JS toggles .is-hover on ring */
.cursor-ring.is-hover {
  width: 48px;
  height: 48px;
  /* Purple as glow ONLY — never fill */
  box-shadow:
    0 0 16px rgba(123, 44, 255, 0.35),
    0 0 40px rgba(123, 44, 255, 0.12);
}

/* Hide cursor elements on touch/no-hover devices */
@media (hover: none), (pointer: coarse) {
  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }

  body.custom-cursor-active {
    cursor: auto;
  }
}


/* -----------------------------------------------------------
   9. NAVIGATION
   ----------------------------------------------------------- */
.site-nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: var(--z-nav);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  /* Stays readable over any section background */
  mix-blend-mode: difference;
}

.nav-link {
  font-family: var(--font-control);
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--silver);
  position: relative;
  padding: 0.25em 0;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Underline grows L→R on hover */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--orange);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover {
  color: var(--white);
}

.nav-link:hover::after {
  width: 100%;
}

/* Focus styles for keyboard nav */
.nav-link:focus-visible {
  outline: 1px solid var(--orange);
  outline-offset: 4px;
}

/* Active nav state — set by ScrollTrigger in app.js */
.nav-link.is-active {
  color: var(--white);
}

.nav-link.is-active::after {
  width: 100%;
}

/* Tight viewports — shrink nav gap + font */
@media (max-width: 480px) {
  .site-nav {
    gap: 0.75rem;
    padding: 0.6rem 1rem;
  }
  .nav-link {
    font-size: 0.58rem;
    letter-spacing: 0.08em;
  }
}

/* Inner span receives GSAP magnetic transform — <a> never moves */
.nav__link-inner {
  display: inline-block;
}


/* -----------------------------------------------------------
   10. SECTION BASE STYLES
   ----------------------------------------------------------- */
.section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  /* Bottom padding clears the fixed marquee ticker */
  padding-bottom: var(--ticker-height);
}

/* Hero needs no clip-path — it's the anchor.
   All other sections: scroll.js animates from inset(100% 0 0 0).
   Default here is fully revealed — graceful degradation if JS fails. */
.section--about,
.section--discography,
.section--videos,
.section--press,
.section--contact {
  clip-path: inset(0 0 0 0);
}


/* -----------------------------------------------------------
   11. MARQUEE TICKER
   ----------------------------------------------------------- */
.marquee-ticker {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--ticker-height);
  z-index: var(--z-marquee);
  overflow: hidden;
  background-color: var(--black);
  border-top: 1px solid rgba(168, 169, 173, 0.08);
  display: flex;
  align-items: center;
}

.marquee-ticker__track {
  display: flex;
  width: max-content;
  /* GSAP will translate this continuously */
  will-change: transform;
}

.marquee-ticker__content {
  font-family: var(--font-control);
  font-size: 0.6rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--silver);
  white-space: nowrap;
  opacity: 0.55;
  /* Prevent user accidentally selecting scrolling text */
  user-select: none;
}


/* -----------------------------------------------------------
   12. FONT UTILITY CLASSES
   ----------------------------------------------------------- */
.font-chaos    { font-family: var(--font-chaos); }
.font-control  { font-family: var(--font-control); }
.font-elegance { font-family: var(--font-elegance); }


/* -----------------------------------------------------------
   13. REDUCED MOTION
   ----------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration:       0.01ms !important;
    animation-iteration-count: 1     !important;
    transition-duration:      0.01ms !important;
    scroll-behavior:          auto   !important;
  }

  /* Hide the animated grain — static is fine, animation is the concern */
  .grain-overlay {
    display: none;
  }

  /* Freeze marquee */
  .marquee-ticker__track {
    animation: none !important;
    transform: none !important;
  }
}


/* -----------------------------------------------------------
   14. HERO SECTION
   ----------------------------------------------------------- */

/* Container — flex anchors content to bottom-left */
.section--hero {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  /* Bottom padding = ticker + space-lg (toggle gap from ticker) + 3.5rem (toggle height + clearance above it) */
  padding: var(--space-xl) var(--space-lg) calc(var(--ticker-height) + var(--space-lg) + 3.5rem);
  background-color: var(--black);
  isolation: isolate;
}


/* --- YouTube Video Layer (z: 1-2) --- */

.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

/* Local video — object-fit:cover handles all aspect ratios with no black bars */
#hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
}

/* Particle starfield canvas */
#hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Dark wash over video — if iframe fails, black bg is already correct */
.hero__video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(10, 10, 10, 0.85);
}




/* --- Text Content (z: 5) --- */

.hero__content {
  position: relative;
  z-index: 5;
  max-width: 80vw;
  pointer-events: none;
  will-change: transform; /* GPU layer promotion */
}

.hero__name {
  font-family: var(--font-elegance);
  font-size: clamp(3rem, 12vw, 10rem);
  font-weight: 600;
  line-height: 0.9;
  color: var(--white);
  letter-spacing: -0.03em;
  text-transform: none;
  /* Clips chars as they rise from below during animation */
  overflow: hidden;
  /* Perspective depth for rotateX character animation */
  perspective: 800px;
}

/* Individual char spans injected by SplitText — start hidden */
.hero__name .char {
  display: inline-block;
  opacity: 0;
  transform-origin: center bottom;
}

/* Tagline — hidden via clip-path; JS wipes L→R (handwriting effect) */
.hero__tagline {
  font-family: var(--font-chaos);
  font-size: clamp(1.5rem, 5vw, 4rem);
  color: var(--orange);
  margin-top: var(--space-sm);
  /* Intentionally offset — NOT aligned with name's left edge */
  margin-left: clamp(2rem, 8vw, 8rem);
  clip-path: inset(0 100% 0 0);
  will-change: clip-path;
}

.hero__sub-tagline {
  font-family: var(--font-control);
  font-size: clamp(0.65rem, 1.2vw, 0.85rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: var(--space-md);
  margin-left: var(--space-sm);
  display: flex;
  gap: var(--space-sm);
}

/* Each word starts hidden — GSAP staggers them in */
.hero__sub-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
}


/* --- Audio Toggle (z: 10) --- */

.hero__audio-toggle {
  position: absolute;
  bottom: calc(var(--ticker-height) + var(--space-lg));
  left: var(--space-lg);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.6em;
  background: none;
  border: 1px solid rgba(168, 169, 173, 0.15);
  padding: 0.5em 0.8em;
  color: var(--silver);
  font-family: var(--font-control);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: none; /* custom cursor handles this */
  opacity: 0;   /* fades in via GSAP timeline */
  transition: border-color 0.4s ease, color 0.4s ease;
}

.hero__audio-toggle:hover {
  border-color: var(--orange);
  color: var(--white);
}

.hero__audio-toggle:focus-visible {
  outline: 1px solid var(--orange);
  outline-offset: 4px;
}

/* Mini equalizer icon — three bars */
.hero__audio-icon {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
}

.hero__audio-bar {
  display: block;
  width: 2px;
  border-radius: 1px;
  background-color: var(--silver);
  transition: background-color 0.3s ease;
}

/* Static bar heights when paused */
.hero__audio-bar:nth-child(1) { height: 4px; }
.hero__audio-bar:nth-child(2) { height: 8px; }
.hero__audio-bar:nth-child(3) { height: 5px; }

/* Animated equalizer when playing */
.hero__audio-toggle.is-playing .hero__audio-bar {
  background-color: var(--orange);
  animation: audioBar 0.8s ease-in-out infinite alternate;
}

.hero__audio-toggle.is-playing .hero__audio-bar:nth-child(1) { animation-delay: 0s; }
.hero__audio-toggle.is-playing .hero__audio-bar:nth-child(2) { animation-delay: 0.2s; }
.hero__audio-toggle.is-playing .hero__audio-bar:nth-child(3) { animation-delay: 0.4s; }

@keyframes audioBar {
  0%   { height: 3px; }
  100% { height: 12px; }
}


/* --- Scroll Indicator (z: 10) --- */

.hero__scroll-indicator {
  position: absolute;
  bottom: calc(var(--ticker-height) + var(--space-lg));
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
  opacity: 0; /* fades in, then GSAP pulses it */
}

/* Thin gradient line — fades from transparent to silver */
.hero__scroll-line {
  display: block;
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, transparent, var(--silver));
}

.hero__scroll-text {
  font-family: var(--font-control);
  font-size: 0.55rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--silver);
  opacity: 0.6;
}


/* --- Reduced Motion overrides for Hero --- */

@media (prefers-reduced-motion: reduce) {
  /* Skip all animation — show text immediately */
  .hero__name .char {
    opacity: 1;
    transform: none;
  }

  .hero__tagline {
    clip-path: none;
  }

  .hero__sub-word {
    opacity: 1;
    transform: none;
  }

  .hero__audio-toggle,
  .hero__scroll-indicator {
    opacity: 1;
  }

  /* Kill equalizer animation */
  .hero__audio-toggle.is-playing .hero__audio-bar {
    animation: none;
  }
}


/* --- Mobile adjustments --- */

@media (max-width: 768px) {
  .section--hero {
    padding: var(--space-lg) var(--space-md) calc(var(--ticker-height) + var(--space-md) + 3.5rem);
  }

  .hero__tagline {
    margin-left: var(--space-md);
  }

  .hero__audio-toggle {
    bottom: calc(var(--ticker-height) + var(--space-md));
    left: var(--space-md);
  }

  .hero__scroll-indicator {
    bottom: calc(var(--ticker-height) + var(--space-md));
  }
}


/* ============================================================
   15. ABOUT
   ============================================================ */

.section--about {
  position: relative;
  background: var(--black);
}

.about__pin-wrap {
  position: relative;
  height: 100vh;         /* exact viewport height — photo fills it completely */
  overflow: hidden;
}


/* --- Ghost Name (Basquiat substrate) ----------------------- */

/* Full-bleed textural backdrop — barely visible, behind everything */
.about__ghost-name {
  position: absolute;
  top: 50%;
  left: -2%;
  transform: translateY(-50%) rotate(-2deg);
  font-family: var(--font-chaos);
  font-size: clamp(6rem, 16vw, 15rem);
  color: var(--white);
  opacity: 0.035;
  white-space: nowrap;
  line-height: 1;
  letter-spacing: -0.02em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}


/* --- Artist Photo — viewport anchor ----------------------- */

/* Photo spans full viewport height from the top, anchored left at 30%.
   Left edge fades to transparent — text lives in that fade zone.
   Bottom edge fades to black — bio text emerges from the floor.
   No rotation: full-height object-fit:cover + rotation = exposed corners. */
.about__photo-wrap {
  position: absolute;
  top: 0;
  left: 30%;
  width: 70%;          /* bleeds off right edge */
  height: 100%;
  overflow: hidden;
  z-index: 1;
  /* Purple bloom — glow, not fill */
  filter: drop-shadow(-20px 0 60px rgba(123, 44, 255, 0.12));
}

.about__photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 15%; /* keep face/upper body in frame */
  filter: brightness(0.85) contrast(1.1) saturate(0.82);
  will-change: transform; /* GPU layer for GSAP parallax */
  /* Left edge: fades into black where quote text lives (0–40% = transparent zone)
     Bottom edge: fades into black where bio text lives */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 38%,
    black 62%,
    transparent 100%
  ),
  linear-gradient(
    to bottom,
    black 55%,
    transparent 100%
  );
  -webkit-mask-composite: destination-in;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 38%,
    black 62%,
    transparent 100%
  ),
  linear-gradient(
    to bottom,
    black 55%,
    transparent 100%
  );
  mask-composite: intersect;
}

/* Purple burn + orange warmth over photo */
.about__photo-burn {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(123, 44, 255, 0.15) 0%,
    transparent 45%,
    rgba(255, 106, 0, 0.06) 100%
  );
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 2;
}


/* --- Pull Quote — starts in black, crosses into photo ------ */

/* Left edge of quote is in the pure-black left margin (0–30%).
   Lines cascade right into the photo's fade zone, then the punch
   line drives into the opaque photo center. */
.about__quote {
  position: absolute;
  top: clamp(10vh, 14vh, 18vh);
  left: var(--space-lg);
  z-index: 2;           /* above photo (z:1) — text floats on image */
  margin: 0;
  padding: 0;
  max-width: 72%;
}

.about__quote-line {
  display: block;
  font-family: var(--font-elegance);
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.05;
  color: var(--white);
  /* Initial state — GSAP animates to opacity:1, y:0 */
  opacity: 0;
  transform: translateY(60px);
}

/* Line 2: step right into the photo's fade zone */
.about__quote-line:nth-child(2) {
  padding-left: clamp(1rem, 3vw, 3rem);
  transform: translateY(45px);
}

/* Punch line: deepest into the photo, orange, z:4 — highest layer */
.about__quote-line--punch {
  position: relative; /* anchors ::before and ::after */
  color: var(--orange);
  padding-left: clamp(4rem, 10vw, 10rem); /* furthest right — drives into opaque photo */
  font-size: clamp(2.2rem, 5.5vw, 5.5rem);
  transform: translateY(30px);
  z-index: 4; /* explicit — in front of photo */
}

/* Legibility bloom: soft dark halo behind the orange text.
   Not a box — a blurred spread that darkens the photo just enough.
   Invisible at a glance, critical when photo is bright behind it. */
.about__quote-line--punch::before {
  content: '';
  position: absolute;
  inset: -0.25em -0.4em;   /* slightly larger than the text bounding box */
  background: rgba(10, 10, 10, 0.4);
  filter: blur(8px);
  border-radius: 4px;
  pointer-events: none;
  z-index: -1; /* behind the text, inside this stacking context */
}

/* Raw hand-drawn underline — irregular SVG stroke, gestural not geometric */
.about__quote-line--punch::after {
  content: '';
  position: absolute;
  left: clamp(4rem, 10vw, 10rem); /* matches padding-left */
  bottom: -0.18em;
  width: 92%;
  height: 0.22em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 20' preserveAspectRatio='none'%3E%3Cpath d='M2,14 C18,6 40,17 70,11 C100,5 130,16 165,10 C200,4 235,15 268,9 C301,3 335,14 370,8 C385,5 395,10 398,12' stroke='%23FF6A00' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round' fill='none' opacity='0.9'/%3E%3Cpath d='M5,17 C30,13 60,18 95,14 C130,10 160,17 200,13 C240,9 275,16 310,12 C345,8 375,15 396,16' stroke='%23FF6A00' stroke-width='1.5' stroke-linecap='round' fill='none' opacity='0.45'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}


/* --- Bio — bottom-left anchor, inside photo's masked zone -- */

/* Bio lives where the photo fades to black at the bottom-left.
   Text materializes from darkness — word-by-word scrub reinforces this. */
.about__bio-wrap {
  position: absolute;
  bottom: clamp(8vh, 12vh, 14vh);
  left: var(--space-lg);
  z-index: 3;
  max-width: 38ch;
}

.about__bio {
  font-family: var(--font-control);
  font-size: clamp(0.75rem, 1.1vw, 0.95rem);
  line-height: 1.85;
  letter-spacing: 0.025em;
  color: var(--silver);
}

/* SplitText .word spans — ghost state, GSAP scrub lights them up */
.about__bio .word {
  display: inline-block;
  opacity: 0.12;
  color: var(--silver);
  transition: none;
}


/* --- Basquiat Scrawl Accents ------------------------------- */

.about__scrawl {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 5;
}

/* "Afro Noir" — mid-section right, clear of top-right nav zone */
.about__scrawl--label {
  top: 45vh;
  right: var(--space-lg);
  font-family: var(--font-chaos);
  font-size: clamp(0.9rem, 2vw, 1.7rem);
  color: var(--orange);
  opacity: 0.7;
  transform: rotate(3deg);
}

/* Crown ★ — left of quote, between lines 2 and 3 */
.about__scrawl--crown {
  left: var(--space-lg);
  top: clamp(40vh, 48vh, 56vh);
  font-family: var(--font-chaos);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  color: var(--white);
  opacity: 0.45;
  transform: rotate(-5deg);
}

/* "Jersey City / Sierra Leone" — bottom-right, small, rotated */
.about__scrawl--place {
  right: var(--space-lg);
  bottom: clamp(4vh, 8vh, 10vh);
  font-family: var(--font-control);
  font-size: clamp(0.55rem, 0.8vw, 0.7rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  opacity: 0.5;
  transform: rotate(-8deg);
  transform-origin: right center;
}

/* "001" — lower-left ghost number, behind bio text */
.about__scrawl--number {
  bottom: clamp(4vh, 8vh, 10vh);
  left: var(--space-lg);
  font-family: var(--font-chaos);
  font-size: clamp(5rem, 12vw, 10rem);
  color: var(--white);
  opacity: 0.03;
  line-height: 1;
  z-index: 0;
}


/* --- Reduced Motion ---------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  .about__quote-line {
    opacity: 1 !important;
    transform: none !important;
  }

  .about__bio .word {
    opacity: 1 !important;
    color: var(--white) !important;
  }
}


/* --- Mobile ----------------------------------------------- */

@media (max-width: 768px) {
  .about__pin-wrap {
    height: auto;          /* flow layout on mobile — no fixed viewport lock */
    min-height: 100vh;
    padding: var(--space-lg) var(--space-md) var(--space-xl);
  }

  .about__ghost-name {
    font-size: clamp(3rem, 18vw, 8rem);
    top: 0;
    transform: rotate(-2deg);
  }

  /* Photo breaks out of absolute — flows in document */
  .about__photo-wrap {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: 62vw;         /* portrait-ish ratio on mobile */
    margin-bottom: var(--space-lg);
    filter: none;
  }

  .about__photo {
    object-position: center 10%;
    /* Simpler mask on mobile — just fade the bottom */
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    -webkit-mask-composite: destination-in;
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    mask-composite: intersect;
  }

  /* Quote flows below photo */
  .about__quote {
    position: relative;
    top: auto;
    left: auto;
    max-width: 100%;
    z-index: 2;
  }

  .about__quote-line {
    font-size: clamp(1.6rem, 6vw, 2.8rem);
  }

  .about__quote-line:nth-child(2) {
    padding-left: clamp(0.5rem, 2vw, 1.5rem);
  }

  .about__quote-line--punch {
    padding-left: clamp(1rem, 4vw, 2rem);
    font-size: clamp(1.7rem, 6.5vw, 3rem);
  }

  .about__quote-line--punch::before {
    inset: -0.2em -0.3em;
  }

  .about__quote-line--punch::after {
    left: clamp(1rem, 4vw, 2rem);
    width: 90%;
  }

  /* Bio flows below quote */
  .about__bio-wrap {
    position: relative;
    bottom: auto;
    left: auto;
    max-width: 100%;
    margin-top: var(--space-lg);
    z-index: 2;
  }

  .about__bio {
    font-size: clamp(0.8rem, 3.5vw, 1rem);
  }

  .about__scrawl--label {
    top: var(--space-md);
    right: var(--space-md);
  }

  .about__scrawl--crown {
    display: none; /* too much collision with flowed layout on small screens */
  }

  .about__scrawl--number {
    font-size: clamp(3rem, 22vw, 7rem);
    bottom: var(--space-md);
    left: var(--space-md);
  }
}


/* ============================================================
   16. DISCOGRAPHY — The Record Player
   ============================================================ */

/*
 * Architecture:
 *   One release owns the full 100vh viewport at a time.
 *   GSAP pins the section for (n-1) × 100vh of extra scroll.
 *   A single crossfade timeline drives 10 stacked slides.
 *   Atmospheric glow per slide via CSS custom properties.
 *   No object-fit. No cropping. Photos at natural aspect ratio.
 */

.section--discography {
  height: 100vh;
  overflow: hidden;
  background: var(--black);
  contain: layout style;
  will-change: transform, opacity;
}

.disco__viewport {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}


/* ── Slides ──────────────────────────────────────────────── */

.disco__slide {
  position: absolute;
  inset: 0;
  background: var(--black);
  overflow: hidden;
}

/* Slides after first start invisible — JS drives transitions */
.disco__slide + .disco__slide {
  opacity: 0;
}

/* ── Atmospheric glow per slide ─────────────────────────── */

.disco__slide-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(
    ellipse 70% 60% at var(--glow-x, 50%) var(--glow-y, 50%),
    var(--glow, transparent) 0%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
}

/* Per-slide background gradients — each slide is its own world */
.disco__slide--hearts-desire {
  background: radial-gradient(ellipse 90% 100% at 78% 50%, #43014a 0%, #1a0630 30%, #0c0636 55%, #020110 100%);
}
.disco__slide--lady {
  background: radial-gradient(ellipse 85% 100% at 75% 50%, #8d1a30 0%, #4a0e1a 30%, #1a0810 60%, #000105 100%);
}
.disco__slide--dedicated {
  background: radial-gradient(ellipse 75% 80% at 65% 40%, #2a1a10 0%, #160e0c 35%, #0d0e12 65%, #050405 100%);
}
.disco__slide--monsta-musa {
  background: radial-gradient(ellipse 85% 100% at 72% 45%, #7a5218 0%, #3d2808 30%, #1a1008 60%, #0a0806 100%);
}
.disco__slide--friends {
  background: radial-gradient(ellipse 70% 80% at 65% 50%, #1a0820 0%, #0d060f 40%, #040208 70%, #000001 100%);
}

/* ── SVG waveform lines ─────────────────────────────────── */

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

.disco__wave-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.disco__wave-line {
  fill: none;
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

/* ── Background watermark ───────────────────────────────── */

.disco__watermark {
  position: absolute;
  bottom: -1vh;
  left: -1vw;
  font-family: var(--font-chaos);
  font-size: clamp(6rem, 14vw, 14rem);
  color: var(--white);
  opacity: 0.05;
  white-space: nowrap;
  transform: rotate(-5deg);
  transform-origin: bottom left;
  letter-spacing: -0.02em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ── Cover art (contained, right-positioned, floating) ───── */

@keyframes discoCoverFloat {
  0%, 100% { transform: translateY(-50%); }
  50%       { transform: translateY(calc(-50% - 6px)); }
}

.disco__cover {
  position: absolute;
  right: clamp(2rem, 6vw, 6rem);
  top: 50%;
  width: clamp(300px, 36vw, 420px);
  aspect-ratio: 1 / 1;
  z-index: 1;
  border-radius: 4px;
  overflow: hidden;
  animation: discoCoverFloat 4s ease-in-out infinite;
  will-change: transform;
}

.disco__cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* Bottom-edge dissolve: art fades into the background gradient */
  -webkit-mask-image: linear-gradient(to bottom, black 65%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 65%, transparent 100%);
}

/* Per-slide accent glow shadows — color-matched to each cover */
.disco__slide--hearts-desire .disco__cover {
  box-shadow: 0 12px 70px 15px rgba(160, 60, 255, 0.30);
}
.disco__slide--lady .disco__cover {
  box-shadow: 0 12px 70px 15px rgba(180, 40, 60, 0.35);
}
.disco__slide--dedicated .disco__cover {
  box-shadow: 0 12px 60px 12px rgba(176, 140, 100, 0.25);
}
.disco__slide--monsta-musa .disco__cover {
  box-shadow: 0 12px 70px 15px rgba(200, 140, 40, 0.30);
}
.disco__slide--friends .disco__cover {
  box-shadow: 0 12px 90px 20px rgba(123, 44, 255, 0.45);
}

/* ── Content column (left side, vertically centered) ────── */

.disco__content {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 52vw;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  padding: 0 3rem 0 clamp(var(--space-lg), 6vw, 6rem);
}

/* ── Song description ───────────────────────────────────── */

.disco__slide-desc {
  font-family: var(--font-elegance);
  font-style: italic;
  font-size: clamp(0.875rem, 1.4vw, 1rem);
  color: var(--silver);
  opacity: 0.88;
  line-height: 1.7;
  max-width: 42ch;
  margin: 0.2rem 0 0.4rem;
}

/* ── Per-slide title sizing ─────────────────────────────── */

.disco__slide--hearts-desire .disco__slide-title {
  font-size: clamp(3.5rem, 7.5vw, 9rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.disco__slide--lady .disco__slide-title {
  font-size: clamp(5rem, 11vw, 13rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
}

.disco__slide--dedicated .disco__slide-title {
  font-size: clamp(2.8rem, 6vw, 7rem);
  line-height: 0.92;
}

.disco__slide--monsta-musa .disco__slide-title {
  font-size: clamp(3rem, 7vw, 8rem);
  line-height: 0.92;
}

.disco__slide--friends .disco__slide-title {
  font-size: clamp(4rem, 9vw, 10.5rem);
  line-height: 0.88;
}

/* Monsta Musa cover — keep face centred */
.disco__slide--monsta-musa .disco__cover img {
  object-position: center 30%;
}


/* ── Milestone badge (Friends 300k+) ────────────────────── */

.disco__slide-milestone {
  font-family: var(--font-chaos);
  font-size: clamp(1.8rem, 3.5vw, 3.5rem);
  color: var(--orange);
  opacity: 0.3;
  transform: rotate(-4deg);
  display: inline-block;
  pointer-events: none;
  user-select: none;
  margin-bottom: -0.2rem;
}


/* ── Shared slide typography ─────────────────────────────── */

.disco__slide-title {
  display: block;
  line-height: 0.95;
  color: var(--white);
  letter-spacing: normal;
}


.disco__slide-year {
  display: block;
  font-family: var(--font-control);
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--silver);
  opacity: 0.75;
}

.disco__slide-feat {
  display: block;
  font-family: var(--font-control);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--silver);
  opacity: 0.7;
}

.disco__slide-badge {
  display: inline-block;
  font-family: var(--font-control);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
}

.disco__slide-stream {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-control);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.disco__slide-stream:hover,
.disco__slide-stream:focus-visible {
  opacity: 1;
}

.disco__slide-stream:focus-visible {
  outline: 1px solid var(--orange);
  outline-offset: 4px;
}


/* ── Persistent overlay (label + counter + dots) ─────────── */

.disco__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.disco__label {
  position: absolute;
  top: clamp(1.5rem, 4vh, 3rem);
  left: clamp(1.5rem, 6vw, 6rem);
  font-family: var(--font-control);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver);
  opacity: 0.6;
}

.disco__nav-counter {
  position: absolute;
  bottom: clamp(2rem, 4vh, 3rem);
  left: clamp(1.5rem, 6vw, 6rem);
  font-family: var(--font-control);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--silver);
  opacity: 0.7;
}

.disco__nav-dots {
  position: absolute;
  right: clamp(1.5rem, 3vw, 3rem);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.disco__nav-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--silver);
  opacity: 0.3;
  transition: opacity 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.disco__nav-dot.is-active {
  background: var(--orange);
  opacity: 1;
  transform: scale(1.5);
}


/* ── Floating musical notes ─────────────────────────────── */

.disco__note {
  position: absolute;
  font-family: var(--font-control);
  font-size: clamp(1rem, 2vw, 1.6rem);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}


/* ── Reduced motion ─────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  .disco__cover {
    animation: none;
    transform: translateY(-50%); /* restore centering without motion */
  }
  .disco__cover img {
    transition: none !important;
  }
}


/* ── Mobile (≤768px): drop pin, vertical stack ─────────── */

@media (max-width: 768px) {
  .section--discography {
    height: auto;
    overflow: visible;
  }

  .disco__viewport {
    height: auto;
    overflow: visible;
  }

  .disco__slide {
    position: relative;
    inset: auto;
    min-height: auto;
    opacity: 1 !important;
    display: block;
    padding: var(--space-xl) var(--space-md) var(--space-xl);
    border-bottom: 1px solid rgba(168, 169, 173, 0.05);
  }

  /* Cover art stacks above content on mobile */
  .disco__cover {
    position: relative !important;
    width: 100% !important;
    max-width: 320px;
    height: auto;
    aspect-ratio: 1 / 1;
    top: auto !important;
    right: auto !important;
    margin: 0 auto var(--space-lg);
    animation: none !important;
    transform: none !important;
    box-shadow: none;
  }

  .disco__cover img {
    -webkit-mask-image: none !important;
    mask-image: none !important;
    object-position: center center !important;
  }

  /* Content is normal flow beneath cover */
  .disco__content {
    position: static !important;
    width: 100% !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    justify-content: flex-start;
  }

  /* Scale title sizes for mobile */
  .disco__slide--hearts-desire .disco__slide-title { font-size: clamp(3rem, 12vw, 6rem); }
  .disco__slide--lady          .disco__slide-title { font-size: clamp(4rem, 14vw, 7rem); letter-spacing: -0.03em; }
  .disco__slide--dedicated     .disco__slide-title { font-size: clamp(2.5rem, 10vw, 5rem); }
  .disco__slide--monsta-musa   .disco__slide-title { font-size: clamp(2.5rem, 10vw, 5rem); }
  .disco__slide--friends       .disco__slide-title { font-size: clamp(3.5rem, 12vw, 7rem); }

  .disco__slide-stream {
    margin-top: var(--space-sm);
  }

  .disco__slide-milestone {
    font-size: clamp(1.5rem, 7vw, 2.5rem);
    opacity: 0.25;
  }

  .disco__slide-desc {
    font-size: clamp(0.85rem, 3.5vw, 1rem);
    max-width: 100%;
    opacity: 0.85;
  }

  /* Nav overlay, watermark, wave lines, and notes not meaningful without pin */
  .disco__overlay,
  .disco__watermark,
  .disco__wave,
  .disco__note {
    display: none;
  }
}


/* ============================================================
   17. VIDEOS — The Cinema
   ============================================================ */

.section--videos {
  background: radial-gradient(ellipse 120% 80% at 50% 30%, rgba(123,44,255,0.12) 0%, rgba(10,10,10,0) 60%), #0A0A0A;
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 10vh, 8rem) 0 0;
  contain: layout style;
  will-change: transform, opacity;
}

.vids__inner {
  position: relative;
  z-index: 1;
  padding: 0 clamp(2rem, 6vw, 6rem);
}

/* ── Section label ──────────────────────────────────────── */

.vids__label {
  display: block;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver);
  opacity: 0.6;
  margin-bottom: clamp(2rem, 5vh, 4rem);
}

/* ── Background watermark ───────────────────────────────── */

.vids__watermark {
  position: absolute;
  top: auto;
  bottom: 5%;
  right: -2vw;
  font-size: clamp(8rem, 20vw, 20rem);
  color: var(--white);
  opacity: 0.03;
  white-space: nowrap;
  transform: rotate(-3deg);
  transform-origin: bottom right;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ── Flagship ──────────────────────────────────────────── */

.vids__flagship {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(2rem, 5vh, 4rem);
}

.vids__flagship::before {
  content: '';
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 60% 50% at 30% 50%, rgba(255, 106, 0, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 75% 50%, rgba(123, 44, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Floating notes — positioned by JS within left/right margins */
.vids__note {
  position: absolute;
  font-size: clamp(1rem, 2vw, 1.8rem);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.vids__flagship-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #111;
  overflow: hidden;
  will-change: clip-path;
}

.vids__flagship-poster {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: pointer;
}

.vids__flagship-poster img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vids__play-mask {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.45);
  transition: background 0.3s ease;
}

.vids__flagship-poster:hover .vids__play-mask {
  background: rgba(10, 10, 10, 0.25);
}

.vids__play-icon {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  letter-spacing: 0.2em;
  color: var(--white);
  border: 1px solid rgba(245, 245, 245, 0.4);
  padding: 0.6em 1.2em;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.vids__flagship-poster:hover .vids__play-icon {
  border-color: var(--orange);
  color: var(--orange);
}

#vids-flagship-player {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: none;
}

.vids__flagship-info {
  display: flex;
  align-items: baseline;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-top: clamp(1rem, 2.5vh, 2rem);
  flex-wrap: wrap;
}

.vids__flagship-title {
  font-size: clamp(2.5rem, 7vw, 7rem);
  line-height: 0.88;
  color: var(--white);
  letter-spacing: -0.02em;
  margin: 0;
}

.vids__flagship-feat,
.vids__flagship-views {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  opacity: 0.65;
}

/* ── Video list zone — atmospheric photo layer ──────────── */

.vids__list-zone {
  position: relative;
  overflow: hidden;
  /* Bleed bg to section edges, keep content aligned with inner padding */
  margin: 0 calc(-1 * clamp(2rem, 6vw, 6rem));
  padding: clamp(2rem, 5vh, 4rem) clamp(2rem, 6vw, 6rem) clamp(3rem, 6vh, 5rem);
  border-left: 2px solid rgba(255, 106, 0, 0.3);
}

/* Grain texture over the list zone (item E) */
.vids__list-zone::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  opacity: 0.07;
  pointer-events: none;
  z-index: 3;
}

/* Artist photo atmospheric background (item B) */
.vids__list-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.vids__list-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.88);
  z-index: 1;
}

.vids__list-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: blur(3px);
  transform: scale(1.05); /* compensates for blur edge bleed */
}

/* Waveform SVG — 2 animated sine lines in list zone */
.vids__wave-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}

.vids__wave-line {
  fill: none;
  stroke: rgba(255, 106, 0, 0.12);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

/* ── Video list ────────────────────────────────────────── */

.vids__list-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 0;
  padding-bottom: clamp(1.5rem, 3vh, 2.5rem);
  position: relative;
  z-index: 2;
}

.vids__list-header::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--orange);
  flex-shrink: 0;
}

.vids__list-header-text {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver);
  opacity: 0.6;
}

.vids__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(168, 169, 173, 0.2);
  position: relative;
  z-index: 2;
}

/* Orange left-border bar slides up on hover (item C) */
.vids__list-item {
  border-bottom: 1px solid rgba(168, 169, 173, 0.2);
  position: relative;
}

.vids__list-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 0.35s ease;
}

.vids__list-item:hover::before {
  transform: scaleY(1);
}

.vids__list-item a {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  padding: 1.5rem 0;
  text-decoration: none;
  color: inherit;
}

.vids__list-index {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--silver);
  opacity: 0.4;
  flex-shrink: 0;
  width: 2rem;
}

.vids__list-title {
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  color: var(--white);
  line-height: 1;
  flex: 1;
  transition: transform 0.2s ease, color 0.2s ease;
}

/* Year as inline badge (item D) */
.vids__list-year {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  opacity: 0.55;
  flex-shrink: 0;
  border: 1px solid rgba(168, 169, 173, 0.2);
  padding: 0.15em 0.6em;
}

.vids__list-year:empty {
  display: none;
}

.vids__list-cta {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  opacity: 0;
  flex-shrink: 0;
  margin-left: auto;
  transition: opacity 0.3s ease;
}

.vids__list-item a:hover .vids__list-title {
  transform: translateX(8px);
  color: var(--orange);
}

.vids__list-item a:hover .vids__list-cta {
  opacity: 1;
}

/* ── Mobile (≤768px) ──────────────────────────────────── */

@media (max-width: 768px) {
  .vids__watermark {
    display: none;
  }

  .vids__flagship-title {
    font-size: clamp(2rem, 10vw, 4rem);
  }

  .vids__list-zone {
    /* Reset bleed on mobile — inner padding already handles spacing */
    margin-left: calc(-1 * clamp(1rem, 4vw, 2rem));
    margin-right: calc(-1 * clamp(1rem, 4vw, 2rem));
    padding-left: clamp(1rem, 4vw, 2rem);
    padding-right: clamp(1rem, 4vw, 2rem);
  }

  .vids__list-title {
    font-size: clamp(1.4rem, 7vw, 2.5rem);
  }
}


/* ============================================================
   18. PRESS
   ============================================================ */

.section--press {
  background: var(--black);
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 10vh, 8rem) 0 calc(var(--ticker-height) + clamp(4rem, 8vh, 7rem));
}

.press__inner {
  position: relative;
  z-index: 1;
  padding: 0 clamp(2rem, 6vw, 6rem);
}

/* ── Section label ──────────────────────────────────────── */

.press__label {
  display: block;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver);
  opacity: 0.6;
  margin-bottom: clamp(3rem, 7vh, 6rem);
}

/* ── Background watermark ───────────────────────────────── */

.press__watermark {
  position: absolute;
  top: -3vh;
  right: -2vw;
  font-size: clamp(6rem, 16vw, 16rem);
  color: var(--white);
  opacity: 0.05;
  white-space: nowrap;
  transform: rotate(-5deg);
  transform-origin: top right;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ── Waveform SVG ───────────────────────────────────────── */

.press__wave-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}

.press__wave-line {
  fill: none;
  stroke: rgba(168, 169, 173, 0.10);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

/* ── Primary item — NJ.com ──────────────────────────────── */

.press__item--primary {
  position: relative;
  z-index: 1;
  max-width: clamp(28rem, 62vw, 72rem);
}

/* ── Secondary item — Hudson County ────────────────────── */

.press__item--secondary {
  position: relative;
  z-index: 1;
  max-width: clamp(20rem, 44vw, 52rem);
  margin-left: auto;
  margin-right: clamp(2rem, 10vw, 10rem);
  margin-top: clamp(4rem, 8vh, 7rem);
}

/* ── Shared item elements ───────────────────────────────── */

.press__pub {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver);
  opacity: 0.55;
  margin-bottom: clamp(0.75rem, 1.5vh, 1.25rem);
}

.press__headline {
  font-style: italic;
  line-height: 1.1;
  margin: 0 0 clamp(1rem, 2.5vh, 2rem);
  color: var(--white);
}

.press__item--primary .press__headline {
  font-size: clamp(2rem, 5vw, 5.5rem);
}

.press__item--secondary .press__headline {
  font-size: clamp(1.5rem, 3vw, 3.2rem);
}

/* Headline link — explicit white, no underline */
.press__headline a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Hover: headline shifts right + turns orange */
.press__item:hover .press__headline,
.press__headline a:hover {
  color: var(--orange);
}

.press__item {
  transition: none; /* shift handled on headline child */
}

.press__headline {
  transition: transform 0.35s ease, color 0.3s ease;
}

.press__item:hover .press__headline {
  transform: translateX(6px);
}

/* ── Meta row ───────────────────────────────────────────── */

.press__meta {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.press__year {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--silver);
  opacity: 0.45;
}

.press__year:empty {
  display: none;
}

.press__read {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.press__read:hover {
  opacity: 0.75;
}

/* ── Orange divider line ────────────────────────────────── */

.press__divider {
  width: clamp(5rem, 12vw, 12rem);
  height: 1px;
  background: var(--orange);
  margin: clamp(3rem, 7vh, 6rem) 0;
  opacity: 0.7;
}

/* ── Mobile (≤768px) ──────────────────────────────────── */

@media (max-width: 768px) {
  .press__watermark {
    display: none;
  }

  .press__item--primary {
    max-width: 100%;
  }

  .press__item--secondary {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .press__item--primary .press__headline {
    font-size: clamp(1.8rem, 8vw, 3rem);
  }

  .press__item--secondary .press__headline {
    font-size: clamp(1.4rem, 6vw, 2.2rem);
  }
}


/* ============================================================
   19. CONTACT / BOOKING
   ============================================================ */

.section--contact {
  background: var(--black);
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 10vh, 8rem) 0 calc(var(--ticker-height) + clamp(5rem, 10vh, 8rem));
}

.contact__inner {
  position: relative;
  z-index: 1;
  padding: 0 clamp(2rem, 6vw, 6rem);
}

/* ── Section label ──────────────────────────────────────── */

.contact__label {
  display: block;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver);
  opacity: 0.6;
  margin-bottom: clamp(2rem, 5vh, 4rem);
}

/* ── Background watermark ───────────────────────────────── */

.contact__watermark {
  position: absolute;
  top: -4vh;
  right: -3vw;
  font-size: clamp(5rem, 14vw, 14rem);
  color: var(--white);
  opacity: 0.04;
  white-space: nowrap;
  transform: rotate(-4deg);
  transform-origin: top right;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ── Waveform SVG ───────────────────────────────────────── */

.contact__wave-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}

.contact__wave-line {
  fill: none;
  stroke: rgba(255, 106, 0, 0.10);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

/* ── Headline ───────────────────────────────────────────── */

.contact__headline {
  font-size: clamp(3rem, 10vw, 10rem);
  line-height: 0.9;
  color: var(--white);
  letter-spacing: -0.02em;
  margin: 0 0 clamp(2.5rem, 6vh, 5rem);
  max-width: 80vw;
}

/* ── Contact type tabs ──────────────────────────────────── */

.contact__tabs {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-bottom: clamp(2rem, 5vh, 4rem);
}

.contact__tab {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver);
  opacity: 0.45;
  cursor: pointer;
  transition: color 0.25s ease, opacity 0.25s ease;
  position: relative;
}

.contact__tab::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--orange);
  transition: width 0.3s ease;
}

.contact__tab.is-active {
  color: var(--orange);
  opacity: 1;
}

.contact__tab.is-active::after {
  width: 100%;
}

.contact__tab:hover:not(.is-active) {
  color: var(--white);
  opacity: 0.8;
}

/* ── Form layout ────────────────────────────────────────── */

.contact__form-zone {
  max-width: clamp(28rem, 55vw, 60rem);
  position: relative;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vh, 2.5rem);
}

/* ── Floating label fields ──────────────────────────────── */

.contact__field {
  position: relative;
}

.contact__input {
  display: block;
  width: 100%;
  background: var(--black);
  border: none;
  border-bottom: 1px solid rgba(168, 169, 173, 0.2);
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  padding: 1.4rem 0 0.5rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  /* Prevent autofill styling from overriding theme */
  -webkit-text-fill-color: var(--white);
  caret-color: var(--orange);
}

.contact__input:-webkit-autofill,
.contact__input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px var(--black) inset;
  -webkit-text-fill-color: var(--white);
}

.contact__textarea {
  resize: none;
  min-height: 7rem;
  overflow-y: auto;
}

/* Focus state — orange bottom border + subtle glow */
.contact__input:focus {
  border-bottom-color: var(--orange);
  box-shadow: 0 2px 12px rgba(255, 106, 0, 0.15);
}

/* Floating label */
.contact__floating-label {
  position: absolute;
  top: 1.1rem;
  left: 0;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--silver);
  opacity: 0.55;
  pointer-events: none;
  transform: none;
  transform-origin: left top;
  transition: transform 0.25s ease, opacity 0.25s ease, color 0.25s ease;
}

/* Float up ONLY when field is focused or JS has confirmed a value */
.contact__input:focus ~ .contact__floating-label,
.contact__input.has-value ~ .contact__floating-label {
  transform: translateY(-1.1rem) scale(0.82);
  opacity: 0.9;
  color: var(--orange);
}

/* Textarea label — slightly lower base position */
.contact__field--textarea .contact__floating-label {
  top: 1.3rem;
}

/* Error messages */
.contact__error {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 0.3rem;
  min-height: 1em;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.contact__error.is-visible {
  opacity: 1;
}

/* ── Submit button ──────────────────────────────────────── */

.contact__submit {
  width: 100%;
  background: transparent;
  border: 1px solid var(--orange);
  color: var(--orange);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  margin-top: clamp(0.5rem, 1vh, 1rem);
}

.contact__submit:hover {
  background: var(--orange);
  color: var(--black);
}

.contact__submit:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

/* ── Success state ──────────────────────────────────────── */

.contact__success {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 28rem;
  padding: 4rem 2rem;
  pointer-events: none;
  opacity: 0;
}

.contact__success-msg {
  font-family: var(--font-elegance);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--white);
  margin: 0;
  line-height: 1.6;
  text-align: center;
}

.contact__submit-error {
  display: none;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--orange);
}

/* ── Social links ───────────────────────────────────────── */

.contact__social {
  display: flex;
  gap: clamp(2rem, 4vw, 4rem);
  margin-top: clamp(3rem, 7vh, 6rem);
}

.contact__social-link {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver);
  text-decoration: none;
  opacity: 0.55;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.contact__social-link:hover {
  color: var(--orange);
  opacity: 1;
}

/* ── Mobile (≤768px) ──────────────────────────────────── */

@media (max-width: 768px) {
  .contact__watermark {
    display: none;
  }

  .contact__form-zone {
    max-width: 100%;
  }

  .contact__headline {
    font-size: clamp(2.5rem, 12vw, 5rem);
  }

  .contact__success {
    min-height: 18rem;
    padding: 3rem 1.5rem;
  }
}


/* ============================================================
   18. NEWSLETTER — The Inner Circle
   ============================================================ */

@keyframes newsletterGlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.section--newsletter {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(-45deg, #0A0A0A, #1a0800, #3d1200, #FF6A00, #3d1200, #1a0800, #0A0A0A);
  background-size: 400% 400%;
  animation: newsletterGlow 8s ease infinite;
}

/* Local grain layer over the warm bg */
.section--newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.nl__inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  width: 100%;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  text-align: center;
}

.nl__label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: clamp(1.2rem, 3vh, 2rem);
}

.nl__headline {
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--white);
  font-style: italic;
  line-height: 0.9;
  margin: 0 0 clamp(1.2rem, 3vh, 2rem);
}

.nl__subtext {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 clamp(2rem, 5vh, 3.5rem);
  line-height: 1.6;
}

.nl__form {
  position: relative;
}

.nl__form-group {
  display: flex;
  gap: 0;
  align-items: stretch;
}

.nl__email {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  padding: 0.75rem 0;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  outline: none;
  transition: border-color 0.25s ease;
}

.nl__email::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.nl__email:focus {
  border-bottom-color: rgba(255, 255, 255, 1);
}

.nl__submit {
  background: var(--white);
  color: var(--black);
  border: none;
  padding: 0.75rem 2.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
  flex-shrink: 0;
}

.nl__submit:hover {
  background: var(--orange);
  color: var(--white);
}

.nl__submit:disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

.nl__success,
.nl__error {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nl__success {
  color: var(--white);
  opacity: 0.85;
}

.nl__error {
  color: var(--orange);
}

/* ── Mobile ──────────────────────────────────────────── */

@media (max-width: 600px) {
  .nl__form-group {
    flex-direction: column;
    gap: 1rem;
  }

  .nl__email {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 0;
    text-align: center;
  }

  .nl__submit {
    padding: 0.85rem 2rem;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .section--newsletter {
    animation: none;
    background: radial-gradient(ellipse at center, #3d1200 0%, #0A0A0A 70%);
  }
}


/* ============================================================
   19. MORE MUSIC
   ============================================================ */

.section--more-music {
  background: radial-gradient(ellipse 120% 80% at 50% 30%, rgba(255,106,0,0.10) 0%, rgba(10,10,10,0) 60%), #0A0A0A;
  position: relative;
  overflow: hidden;
  padding: 0;
  contain: layout style;
  will-change: transform, opacity;
}

.music__list-zone {
  position: relative;
  overflow: hidden;
  margin: 0 calc(-1 * clamp(2rem, 6vw, 6rem));
  padding: clamp(3rem, 7vh, 5rem) clamp(2rem, 6vw, 6rem) clamp(4rem, 8vh, 6rem);
  border-left: 2px solid rgba(255, 106, 0, 0.3);
  background: radial-gradient(ellipse 120% 80% at 50% 30%, rgba(255,106,0,0.10) 0%, rgba(10,10,10,0) 60%), #0A0A0A;
}

/* Grain texture */
.music__list-zone::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  opacity: 0.07;
  pointer-events: none;
  z-index: 1;
}

.music__list-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: clamp(1.5rem, 4vh, 3rem);
  position: relative;
  z-index: 2;
}

.music__list-header::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--orange);
  flex-shrink: 0;
}

.music__list-header-text {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver);
  opacity: 0.6;
}

.music__list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
}

.music__list-item {
  border-bottom: 1px solid rgba(168, 169, 173, 0.2);
  position: relative;
}

.music__list-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease;
}

.music__list-item:hover::before {
  transform: scaleY(1);
}

.music__list-item a {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  padding: clamp(0.9rem, 2vh, 1.4rem) clamp(1rem, 2vw, 1.5rem);
  text-decoration: none;
  color: inherit;
}

.music__list-index {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--silver);
  opacity: 0.5;
  flex-shrink: 0;
  width: 2rem;
}

.music__list-title {
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  color: var(--white);
  line-height: 1;
  flex: 1;
  transition: transform 0.2s ease, color 0.2s ease;
}

.music__list-year {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  opacity: 0.5;
  flex-shrink: 0;
  padding: 0.15em 0.6em;
}

.music__list-cta {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  opacity: 0;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.music__list-item a:hover .music__list-title {
  transform: translateX(8px);
  color: var(--orange);
}

.music__list-item a:hover .music__list-cta {
  opacity: 1;
}

/* ── Mobile ──────────────────────────────────────────── */

@media (max-width: 768px) {
  .music__list-zone {
    margin-left: calc(-1 * clamp(1rem, 4vw, 2rem));
    margin-right: calc(-1 * clamp(1rem, 4vw, 2rem));
    padding-left: clamp(1rem, 4vw, 2rem);
    padding-right: clamp(1rem, 4vw, 2rem);
  }

  .music__list-title {
    font-size: clamp(1.2rem, 6vw, 2rem);
  }

  .music__list-year {
    display: none;
  }
}
