/* ═══════════════════════════════════════════════════════════════
   ROOTSMONIC SOUND — Premium Reggae / Dub Website Stylesheet
   Author: Rootsmonic Sound / Sompicollector
   ═══════════════════════════════════════════════════════════════ */

/* ─── CUSTOM PROPERTIES ──────────────────────────────────────── */
:root {
  /* Core palette */
  --black:         #0a0a0a;
  --black-rich:    #080808;
  --black-card:    #111111;
  --black-surface: #141414;
  --black-border:  #1e1e1e;

  --green-deep:    #0d3b2e;
  --green-mid:     #155d46;
  --green-bright:  #1db87a;
  --green-glow:    rgba(29, 184, 122, 0.15);
  --green-glow-strong: rgba(29, 184, 122, 0.35);

  --gold:          #c9a227;
  --gold-light:    #e6bc44;
  --gold-pale:     #f0d080;
  --gold-glow:     rgba(201, 162, 39, 0.2);
  --gold-glow-strong: rgba(201, 162, 39, 0.4);

  --red:           #8b1a1a;
  --red-mid:       #a52a2a;
  --red-warm:      #c0392b;

  --text-primary:  #f0ece0;
  --text-secondary: #a09880;
  --text-muted:    #5a5545;

  /* Typography */
  --font-display: 'Cinzel', serif;
  --font-heading: 'Rajdhani', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Sizing */
  --container-max: 1200px;
  --section-pad:   100px;
  --nav-h:         72px;

  /* Transitions */
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:      cubic-bezier(0, 0, 0.2, 1);
  --dur-fast:      150ms;
  --dur-mid:       300ms;
  --dur-slow:      600ms;
}

/* ─── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--black);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

img, video, iframe {
  max-width: 100%;
  display: block;
}

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ─── SCROLLBAR ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb {
  background: var(--green-mid);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: var(--green-bright); }

/* ─── SELECTION ──────────────────────────────────────────────── */
::selection {
  background: var(--gold-glow-strong);
  color: var(--gold-light);
}

/* ─── UTILITY ────────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad) 0;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green-bright);
  padding: 4px 12px;
  border: 1px solid var(--green-mid);
  border-radius: 2px;
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 3px;
  transition: all var(--dur-mid) var(--ease);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--dur-mid) var(--ease);
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  color: var(--black);
  box-shadow: 0 0 0 rgba(29,184,122,0);
}

.btn-primary::after {
  background: linear-gradient(135deg, var(--green-bright), var(--green-mid));
}

.btn-primary:hover {
  box-shadow: 0 0 32px var(--green-glow-strong), 0 4px 20px rgba(0,0,0,0.4);
  transform: translateY(-2px);
}

.btn-primary .btn-icon { font-size: 0.85rem; }

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-outline:hover {
  background: var(--gold-glow);
  box-shadow: 0 0 24px var(--gold-glow-strong);
  transform: translateY(-2px);
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-full { width: 100%; justify-content: center; }

/* ─── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

@supports selector(:has(*)) {
  .reveal:not(.visible) {
    opacity: 0;
    transform: translateY(32px);
  }
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════════════════════════
   NAVBAR — Premium cinematic Rootsmonic Sound style
═══════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(6,4,2,0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(201,162,39,0.08);
  transition: background var(--dur-slow) var(--ease),
              border-color var(--dur-slow) var(--ease),
              box-shadow var(--dur-slow) var(--ease);
}

.navbar.scrolled {
  background: rgba(6,4,2,0.97);
  border-bottom-color: rgba(201,162,39,0.14);
  box-shadow: 0 4px 32px rgba(0,0,0,0.72);
}

.nav-container {
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* ── Logo ── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 1.25rem;
  color: var(--green-bright);
  line-height: 1;
  filter: drop-shadow(0 0 6px var(--green-glow-strong));
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: var(--text-primary);
  white-space: nowrap;
}

.logo-sub {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--gold);
  white-space: nowrap;
  opacity: 0.85;
  margin-top: 1px;
}

/* ── Nav links ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(220,210,190,0.6);
  padding: 6px 10px;
  border-radius: 3px;
  white-space: nowrap;
  transition: color var(--dur-mid) var(--ease);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 1px;
  left: 10px;
  right: 10px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--dur-mid) var(--ease);
  transform-origin: right;
  opacity: 0.7;
}

.nav-link:hover {
  color: rgba(235,220,185,0.95);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link.active {
  color: rgba(235,220,185,0.95);
}

/* ── Contact CTA ── */
.nav-cta {
  color: rgba(201,162,39,0.9) !important;
  border: 1px solid rgba(201,162,39,0.28);
  border-radius: 3px;
  padding: 5px 12px;
  margin-left: 6px;
  transition: color var(--dur-mid) var(--ease),
              border-color var(--dur-mid) var(--ease),
              box-shadow var(--dur-mid) var(--ease);
}

.nav-cta:hover {
  color: rgba(235,200,80,1) !important;
  border-color: rgba(201,162,39,0.65);
  box-shadow: 0 0 12px rgba(201,162,39,0.18);
  background: transparent;
}

.nav-cta::after { display: none; }

/* ── Hamburger toggle ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 6px;
  z-index: 1001;
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(220,210,190,0.8);
  border-radius: 1px;
  transition: all var(--dur-mid) var(--ease);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(13,59,46,0.55) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(139,26,26,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 20% 70%, rgba(201,162,39,0.08) 0%, transparent 60%),
    var(--black-rich);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0,0,0,0.03) 2px,
      rgba(0,0,0,0.03) 4px
    );
  pointer-events: none;
}

/* ── Hero Particle System — Cinematic Reggae Firefly / Analog Dust ── */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  will-change: transform, opacity;
  animation: particleDriftUp var(--duration, 18s) var(--delay, 0s) infinite ease-in-out;
}

/* ─── Direction variants ─────────────────────────────────────── */
.hero-particle.drift-left {
  animation-name: particleDriftLeft;
}
.hero-particle.drift-right {
  animation-name: particleDriftRight;
}

/* ─── Occasional soft glow pulse on top of drift ────────────── */
.hero-particle.glow-pulse {
  animation:
    particleDriftUp   var(--duration, 18s) var(--delay, 0s) infinite ease-in-out,
    particleGlow      var(--glow-dur, 4s)  var(--glow-delay, 1s) infinite ease-in-out;
}
.hero-particle.glow-pulse.drift-left {
  animation:
    particleDriftLeft var(--duration, 18s) var(--delay, 0s) infinite ease-in-out,
    particleGlow      var(--glow-dur, 4s)  var(--glow-delay, 1s) infinite ease-in-out;
}
.hero-particle.glow-pulse.drift-right {
  animation:
    particleDriftRight var(--duration, 18s) var(--delay, 0s) infinite ease-in-out,
    particleGlow       var(--glow-dur, 4s)  var(--glow-delay, 1s) infinite ease-in-out;
}

/* ─── Keyframes ──────────────────────────────────────────────── */

/* Recht omhoog */
@keyframes particleDriftUp {
  0%   { opacity: 0;    transform: translateY(0) scale(1); }
  12%  { opacity: 0.85; }
  80%  { opacity: 0.55; }
  100% { opacity: 0;    transform: translateY(var(--travel, -160px)) scale(0.5); }
}

/* Schuin naar links */
@keyframes particleDriftLeft {
  0%   { opacity: 0;    transform: translate(0, 0) scale(1); }
  12%  { opacity: 0.85; }
  80%  { opacity: 0.55; }
  100% { opacity: 0;    transform: translate(var(--drift-x, -40px), var(--travel, -160px)) scale(0.5); }
}

/* Schuin naar rechts */
@keyframes particleDriftRight {
  0%   { opacity: 0;    transform: translate(0, 0) scale(1); }
  12%  { opacity: 0.85; }
  80%  { opacity: 0.55; }
  100% { opacity: 0;    transform: translate(var(--drift-x, 40px), var(--travel, -160px)) scale(0.5); }
}

/* Glow pulse — zichtbare halo */
@keyframes particleGlow {
  0%   { box-shadow: 0 0 0px  0px transparent; }
  50%  { box-shadow: 0 0 10px 4px var(--glow-color, rgba(220,40,40,0.45)); }
  100% { box-shadow: 0 0 0px  0px transparent; }
}

/* ─── Reduced-motion: cut all particle animation ─────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero-particle {
    animation: none !important;
    opacity: 0 !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   HERO GLOBE — Cinematic rotating planet
═══════════════════════════════════════════════════════════════ */
.hero-globe {
  position: absolute;
  top: -8%;
  right: -6%;
  width: 480px;
  height: 480px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.42;
  /* Slow float up-and-down for depth */
  animation: globeFloat 18s ease-in-out infinite;
}

.globe-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* ── Sphere line rotation ───────────────────────────────────── */
.globe-lines {
  transform-origin: 160px 160px;
  animation: globeSpin 55s linear infinite;
}

/* ── Orbit ring 1 — slow counter rotation ───────────────────── */
.globe-orbit-1 {
  transform-origin: 160px 160px;
  transform: rotate(-18deg);
  animation: orbitSpin1 38s linear infinite;
}

/* ── Orbit ring 2 — steeper angle, opposite direction ───────── */
.globe-orbit-2 {
  transform-origin: 160px 160px;
  transform: rotate(32deg);
  animation: orbitSpin2 52s linear infinite reverse;
}

/* ── Signal dot 1 travelling the orbit ─────────────────────── */
.globe-signal-1 {
  transform-origin: 160px 160px;
  animation: signalOrbit1 38s linear infinite;
}

/* ── Signal dot 2 ───────────────────────────────────────────── */
.globe-signal-2 {
  transform-origin: 160px 160px;
  animation: signalOrbit2 52s linear infinite reverse;
}

/* ── Keyframes ──────────────────────────────────────────────── */

/* Gentle vertical float */
@keyframes globeFloat {
  0%   { transform: translateY(0px);   }
  50%  { transform: translateY(18px);  }
  100% { transform: translateY(0px);   }
}

/* Globe sphere line spin */
@keyframes globeSpin {
  from { transform: rotate(0deg);   }
  to   { transform: rotate(360deg); }
}

/* Orbit ring 1 */
@keyframes orbitSpin1 {
  from { transform: rotate(-18deg);         }
  to   { transform: rotate(calc(-18deg + 360deg)); }
}

/* Orbit ring 2 */
@keyframes orbitSpin2 {
  from { transform: rotate(32deg);          }
  to   { transform: rotate(calc(32deg + 360deg));  }
}

/* Signal dot 1 travels orbit 1 ellipse path */
@keyframes signalOrbit1 {
  from { transform: rotate(-18deg)   translateX(158px) rotate(18deg);  }
  to   { transform: rotate(342deg)   translateX(158px) rotate(-342deg);}
}

/* Signal dot 2 travels orbit 2 ellipse path */
@keyframes signalOrbit2 {
  from { transform: rotate(32deg)    translateX(155px) rotate(-32deg); }
  to   { transform: rotate(392deg)   translateX(155px) rotate(-392deg);}
}

/* ── Mobile: smaller, more hidden ──────────────────────────── */
@media (max-width: 767px) {
  .hero-globe {
    width: 260px;
    height: 260px;
    top: -5%;
    right: -14%;
    opacity: 0.28;
  }
}

/* ── Reduced motion: stop all rotation, keep static globe ──── */
@media (prefers-reduced-motion: reduce) {
  .hero-globe {
    animation: none;
    opacity: 0.25;
  }
  .globe-lines,
  .globe-orbit-1,
  .globe-orbit-2,
  .globe-signal-1,
  .globe-signal-2 {
    animation: none !important;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 24px;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 10px var(--green-bright);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: 0.7; }
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 16px;
}

.title-line {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 0.9;
  color: var(--text-primary);
  text-shadow: 0 0 80px rgba(240,236,224,0.1);
}

.title-line.gold {
  color: var(--gold);
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  letter-spacing: 0.35em;
  text-shadow:
    0 0 30px var(--gold-glow-strong),
    0 0 60px var(--gold-glow);
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--black-border);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: fadeInUp 1s 2s both;
}

.hero-scroll-indicator span {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--green-bright), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%   { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0.3); opacity: 0.2; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translate(-50%, 16px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}

/* ═══════════════════════════════════════════════════════════════
   LATEST MIX
═══════════════════════════════════════════════════════════════ */
.latest-mix {
  background: var(--black-rich);
  position: relative;
}

.latest-mix::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-mid), transparent);
}

.mix-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.mix-video-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow:
    0 24px 80px rgba(0,0,0,0.85),
    0 0 0 1px rgba(201, 162, 39, 0.25),
    0 0 40px rgba(201, 162, 39, 0.06);
  border: 1px solid rgba(201, 162, 39, 0.22);
  transition: box-shadow var(--dur-mid) var(--ease),
              border-color var(--dur-mid) var(--ease);
}

.mix-video-wrap:hover {
  box-shadow:
    0 28px 90px rgba(0,0,0,0.9),
    0 0 0 1px rgba(201, 162, 39, 0.45),
    0 0 60px rgba(201, 162, 39, 0.12);
  border-color: rgba(201, 162, 39, 0.4);
}

.mix-video-wrap iframe {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
}

.video-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0d1a15, #0a1208, #0d1a15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(29,184,122,0.02) 20px,
    rgba(29,184,122,0.02) 40px
  );
}

.video-thumb {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}

.play-btn-large {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px var(--green-glow-strong);
  transition: all var(--dur-mid) var(--ease);
}

.video-placeholder:hover .play-btn-large {
  transform: scale(1.1);
  box-shadow: 0 0 60px var(--green-glow-strong);
}

.play-icon {
  color: var(--black);
  font-size: 1.4rem;
  margin-left: 4px;
}

.video-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.mix-info { padding-top: 8px; }

.mix-number {
  display: none;
}

.cover-number {
  display: none;
}

.mix-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.2;
}

.mix-subtitle {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.mix-description {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.mix-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
}

.meta-icon { font-size: 0.9rem; }

.mix-tracklist {
  margin-bottom: 32px;
  padding: 20px;
  border: 1px solid var(--black-border);
  border-radius: 4px;
  background: var(--black-surface);
}

.tracklist-header {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.tracklist {
  list-style: decimal;
  padding-left: 20px;
}

.tracklist li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  list-style: decimal;
}

.tracklist li:last-child { border-bottom: none; color: var(--text-muted); }

/* ── Timestamp tracklist (clickable) ── */
.tracklist--timestamps {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.tracklist--timestamps li {
  list-style: none;
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.tracklist--timestamps li:last-child {
  border-bottom: none;
}

.ts-link {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 7px 8px 7px 4px;
  text-decoration: none;
  border-radius: 4px;
  transition: background var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
}

.ts-link:hover {
  background: rgba(201, 162, 39, 0.07);
  box-shadow: inset 2px 0 0 var(--gold);
}

.ts-time {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold);
  opacity: 0.75;
  white-space: nowrap;
  transition: opacity var(--dur-fast) var(--ease);
}

.ts-title {
  font-size: 0.86rem;
  color: var(--text-secondary);
  transition: color var(--dur-fast) var(--ease);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ts-artist {
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color var(--dur-fast) var(--ease);
}

.ts-link:hover .ts-time   { opacity: 1; }
.ts-link:hover .ts-title  { color: var(--gold-light); }
.ts-link:hover .ts-artist { color: var(--text-secondary); }

/* Active track (currently playing in embedded player) */
.ts-link--active {
  background: rgba(201, 162, 39, 0.09);
  box-shadow: inset 2px 0 0 var(--gold);
}
.ts-link--active .ts-time   { opacity: 1; color: var(--gold-light); }
.ts-link--active .ts-title  { color: var(--gold-light); font-weight: 500; }
.ts-link--active .ts-artist { color: var(--text-secondary); }

@media (max-width: 480px) {
  .ts-link {
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto auto;
    gap: 2px 8px;
    padding: 8px 4px;
  }
  .ts-time {
    grid-row: 1 / 3;
    align-self: center;
  }
  .ts-title  { font-size: 0.84rem; }
  .ts-artist {
    grid-column: 2;
    font-size: 0.74rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   RIDDIM MIXES
═══════════════════════════════════════════════════════════════ */
.riddims {
  background: var(--black-surface);
  position: relative;
}

.riddims::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.riddims-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.riddim-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 6px;
  overflow: hidden;
  transition: transform var(--dur-mid) var(--ease), box-shadow var(--dur-mid) var(--ease), border-color var(--dur-mid) var(--ease);
}

.riddim-card:hover {
  transform: translateY(-6px);
  border-color: var(--green-mid);
  box-shadow: 0 16px 60px rgba(0,0,0,0.7), 0 0 30px var(--green-glow);
}

.card-cover {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  background: var(--black-card);
}

/* YouTube thumbnail */
.card-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--dur-slow) var(--ease);
}

.riddim-card:hover .card-thumb { transform: scale(1.06); }

.cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.65) 100%);
  z-index: 1;
}

.cover-number {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.55);
  z-index: 2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

.card-body {
  padding: 20px;
}

.card-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 8px;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.card-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--black-border);
  padding-top: 12px;
}

.card-duration {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* Card cover link wrapper */
.card-link {
  display: block;
  text-decoration: none;
}

.card-play {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 0.75rem;
  padding-left: 2px;
  transition: all var(--dur-mid) var(--ease);
  box-shadow: 0 0 0 rgba(29,184,122,0);
  text-decoration: none;
  flex-shrink: 0;
}

.card-play:hover {
  box-shadow: 0 0 20px var(--green-glow-strong);
  transform: scale(1.1);
}

/* ═══════════════════════════════════════════════════════════════
   SINGLES
═══════════════════════════════════════════════════════════════ */
.singles {
  background: var(--black-rich);
}

.singles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.single-card {
  border-radius: 6px;
  overflow: hidden;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  transition: transform var(--dur-mid) var(--ease), box-shadow var(--dur-mid) var(--ease), border-color var(--dur-mid) var(--ease);
  cursor: pointer;
}

.single-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 16px 60px rgba(0,0,0,0.7), 0 0 24px var(--gold-glow);
}

.single-link {
  display: block;
  text-decoration: none;
}

.single-artwork {
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  background: var(--black-card);
}

/* YouTube thumbnail */
.single-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--dur-slow) var(--ease);
}

.single-card:hover .single-thumb { transform: scale(1.06); }

.artwork-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.1);
  transition: background var(--dur-mid) var(--ease);
  z-index: 1;
}

.single-card:hover .artwork-overlay { background: rgba(0,0,0,0.45); }

.artwork-play {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 1.1rem;
  padding-left: 3px;
  opacity: 0;
  transform: scale(0.7);
  transition: all var(--dur-mid) var(--ease);
  box-shadow: 0 0 30px var(--green-glow-strong);
  z-index: 2;
}

.single-card:hover .artwork-play {
  opacity: 1;
  transform: scale(1);
}

.artwork-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.6);
  color: var(--gold);
  padding: 4px 8px;
  border-radius: 2px;
  z-index: 2;
  border: 1px solid rgba(201,162,39,0.3);
}

.single-info {
  padding: 16px 20px 20px;
}

.single-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: 0.03em;
}

.single-artist {
  font-size: 0.82rem;
  color: var(--green-bright);
  display: block;
  margin-bottom: 8px;
}

.single-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
}

.meta-dot { opacity: 0.4; }

/* ═══════════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════════ */
.about {
  background: var(--black-surface);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(13,59,46,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 56px;
  align-items: start;
}

/* Text column first on desktop, visual second */
.about-visual {
  position: relative;
  order: 2;
}

.about-content {
  order: 1;
}

.about-image-wrap {
  position: relative;
  border-radius: 8px;
  overflow: visible;
}

/* Real image card — cinematic 4:3 */
.about-img-card {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--black-border);
  background: linear-gradient(180deg, #0d1a14 0%, #080d0a 100%);
}

.about-real-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Dark gradient overlay on top of the photo */
.about-img-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(8,13,10,0.55) 100%),
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(13,59,46,0.3) 0%, transparent 70%);
  pointer-events: none;
}

/* Fallback placeholder (shown via onerror JS) */
.about-img-placeholder {
  aspect-ratio: 4/5;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(13,59,46,0.6) 0%, transparent 70%),
    linear-gradient(180deg, #0d1a14 0%, #080d0a 100%);
  border: 1px solid var(--black-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 0.4;
}

.about-img-icon {
  font-size: 5rem;
  color: var(--green-bright);
  filter: drop-shadow(0 0 20px var(--green-glow-strong));
}

.about-img-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  color: var(--text-primary);
}

/* Closing paragraph style */
.about-text--closing {
  color: var(--text-primary);
  border-left: 2px solid var(--green-bright);
  padding-left: 16px;
  font-style: normal;
}

.about-text--closing em {
  color: var(--gold);
  font-style: italic;
}

.about-badge-float {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(8, 8, 8, 0.85);
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.7), 0 0 16px var(--gold-glow);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 3;
}

.float-icon { font-size: 1.1rem; }

.about-vinyl {
  position: absolute;
  top: -30px;
  left: -30px;
  pointer-events: none;
  opacity: 0.15;
}

.vinyl-record {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, transparent 20%, rgba(255,255,255,0.05) 21%, transparent 22%),
    repeating-radial-gradient(circle at 50% 50%, transparent 0px, transparent 3px, rgba(255,255,255,0.03) 3px, rgba(255,255,255,0.03) 4px),
    #111;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spinVinyl 20s linear infinite;
}

.vinyl-label {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.1em;
}

@keyframes spinVinyl {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.about-content { position: relative; }

.about-text {
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 20px;
  font-size: 1.02rem;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 4px;
  transition: border-color var(--dur-mid) var(--ease), box-shadow var(--dur-mid) var(--ease);
}

.pillar:hover {
  border-color: var(--green-mid);
  box-shadow: 0 0 20px var(--green-glow);
}

.pillar-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.pillar-body h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.pillar-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════
   FEATURED RELEASE
═══════════════════════════════════════════════════════════════ */
.featured-release {
  background: var(--black-rich);
  position: relative;
  overflow: hidden;
}

.featured-release::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.featured-release::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 70% 50%, rgba(201,162,39,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.featured-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Cover artwork */
.featured-cover {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.8), 0 0 40px var(--gold-glow);
  border: 1px solid rgba(201,162,39,0.2);
  aspect-ratio: 1 / 1;
}

.featured-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--dur-slow) var(--ease);
}

.featured-cover:hover .featured-cover-img {
  transform: scale(1.04);
}

.featured-cover-placeholder {
  display: none;
  width: 100%;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(201,162,39,0.18) 0%, transparent 70%),
    linear-gradient(135deg, #1a1208 0%, #0a0a08 100%);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.featured-placeholder-icon {
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.5;
  filter: drop-shadow(0 0 16px var(--gold-glow-strong));
}

.featured-placeholder-text {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  opacity: 0.5;
}

.featured-cover-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}

/* Info panel */
.featured-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.featured-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,162,39,0.35);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
  width: fit-content;
}

.featured-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.05;
  margin-bottom: 10px;
  text-shadow: 0 0 60px rgba(240,236,224,0.08);
}

.featured-artist {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 12px;
  display: block;
}

.featured-genre {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.featured-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 36px;
}

.featured-btn {
  width: fit-content;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
}

.featured-btn::after {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.featured-btn:hover {
  box-shadow: 0 0 32px var(--gold-glow-strong), 0 4px 20px rgba(0,0,0,0.4);
  transform: translateY(-2px);
}

/* ─── RECORDS TITLE ──────────────────────────────────────────── */
.records-title {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  letter-spacing: 0.02em;
  word-break: break-word;
}

.records-dot {
  color: var(--gold);
  font-weight: 700;
}

/* Button group — stacks buttons with gap */
.featured-btn-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

/* YouTube button — deep red-toned dark variant */
.featured-btn--yt {
  background: linear-gradient(135deg, #5c1010, #8b1a1a);
  color: var(--text-primary);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  border: 1px solid rgba(192, 57, 43, 0.4);
  width: fit-content;
}

.featured-btn--yt::after {
  background: linear-gradient(135deg, #8b1a1a, #c0392b);
}

.featured-btn--yt:hover {
  box-shadow: 0 0 28px rgba(192, 57, 43, 0.45), 0 4px 20px rgba(0,0,0,0.5);
  transform: translateY(-2px);
  border-color: rgba(192, 57, 43, 0.7);
}

/* ─── FEATURED TRACKLIST ─────────────────────────────────────── */
.featured-tracklist {
  list-style: none;
  padding: 0;
  margin: 0 0 36px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(201, 162, 39, 0.15);
}

.featured-tracklist li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease);
  border-radius: 3px;
}

/* Clickable track row — the <a> fills the full row */
.featured-tracklist .track-link {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 9px 4px;
  text-decoration: none;
  cursor: pointer;
  border-radius: 3px;
}

.featured-tracklist li:hover,
.featured-tracklist .track-link:hover {
  background: rgba(201, 162, 39, 0.07);
}

.track-num {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  opacity: 0.7;
  min-width: 22px;
  letter-spacing: 0.04em;
  transition: opacity var(--dur-fast) var(--ease);
}

.featured-tracklist li:hover .track-num,
.featured-tracklist .track-link:hover .track-num {
  opacity: 1;
}

.track-title {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
  transition: color var(--dur-mid) var(--ease), text-shadow var(--dur-mid) var(--ease);
}

.featured-tracklist li:hover .track-title,
.featured-tracklist .track-link:hover .track-title {
  color: var(--gold-pale);
  text-shadow: 0 0 12px rgba(201, 162, 39, 0.4), 0 0 24px rgba(201, 162, 39, 0.15);
}

/* Active track highlight */
.featured-tracklist .track-link--active .track-num {
  opacity: 1;
  color: var(--gold);
}
.featured-tracklist .track-link--active .track-title {
  color: var(--gold-light);
  font-weight: 500;
}
.featured-tracklist li:has(.track-link--active) {
  background: rgba(201, 162, 39, 0.1);
}

/* Inline album player (appears under the cover when a track is clicked) */
.album-player-wrap {
  margin-top: 1rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.2);
  background: var(--black-rich);
}
.album-player-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 8px 12px 6px;
  background: rgba(201, 162, 39, 0.07);
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.album-player-wrap .youtube-wrap {
  border-radius: 0;
}
.album-player-wrap .youtube-wrap iframe {
  border-radius: 0;
}

/* ═══════════════════════════════════════════════════════════════
   COMING SOON
═══════════════════════════════════════════════════════════════ */
.coming-soon {
  background: var(--black-rich);
  position: relative;
  overflow: hidden;
}

.coming-soon--alt {
  background: var(--black-surface);
  border-top: 1px solid var(--black-border);
}

/* Subtle animated fire-glow background pulse */
.coming-soon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(139, 26, 26, 0.12), transparent 70%);
  pointer-events: none;
}

.coming-soon-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: center;
}

/* Cover image */
.coming-soon-cover {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.85), 0 0 48px rgba(139, 26, 26, 0.3);
  flex-shrink: 0;
}

.coming-soon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.9);
  transition: filter var(--dur-slow) var(--ease);
}

.coming-soon-cover:hover .coming-soon-img {
  filter: brightness(1.05);
}

.coming-soon-placeholder {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a0808, #2d0f0f);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-align: center;
  padding: 24px;
}

.coming-soon-placeholder-icon {
  font-size: 2.4rem;
  opacity: 0.5;
}

/* Cinematic gold badge on top of cover */
.coming-soon-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='80' height='80' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E"),
    linear-gradient(135deg, rgba(18,12,4,0.88) 0%, rgba(28,20,6,0.92) 100%);
  color: #d4a843;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(201,162,39,0.45);
  box-shadow:
    0 0 10px rgba(201,162,39,0.15),
    0 2px 8px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,214,99,0.08);
  backdrop-filter: blur(4px);
  animation: badge-glow 3.5s ease-in-out infinite;
}

@keyframes badge-glow {
  0%, 100% { box-shadow: 0 0 10px rgba(201,162,39,0.15), 0 2px 8px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,214,99,0.08); }
  50%       { box-shadow: 0 0 18px rgba(201,162,39,0.30), 0 2px 8px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,214,99,0.12); }
}

/* Info column */
.coming-soon-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.coming-soon-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  margin: 10px 0 8px;
  letter-spacing: 0.01em;
}

.coming-soon-artist {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--red-warm);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.coming-soon-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.coming-soon-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 36px;
}

/* Label (record label credit) */
.coming-soon-label {
  font-family: var(--font-accent, var(--font-body));
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold, #c9a227);
  opacity: 0.7;
  margin-bottom: 20px;
}

/* Button */
.coming-soon-btn {
  width: fit-content;
  background: linear-gradient(135deg, #5c1010, #8b1a1a);
  color: var(--text-primary);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  border: 1px solid rgba(192, 57, 43, 0.4);
}

.coming-soon-btn::after {
  background: linear-gradient(135deg, #8b1a1a, #c0392b);
}

.coming-soon-btn:hover {
  box-shadow: 0 0 32px rgba(192, 57, 43, 0.5), 0 4px 20px rgba(0,0,0,0.5);
  transform: translateY(-2px);
  border-color: rgba(192, 57, 43, 0.7);
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════════ */
.contact {
  background: var(--black-rich);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red-mid), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

/* Simplified contact — no form, centred info items */
.contact-simple {
  display: flex;
  flex-direction: column;
  gap: 36px;
  max-width: 560px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 8px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-value {
  color: var(--text-primary);
  font-size: 0.95rem;
  line-height: 1.6;
}

a.contact-value:hover { color: var(--green-bright); }

.contact-value--link {
  color: var(--green-bright);
  text-decoration: none;
  transition: color var(--dur-mid) var(--ease);
}

.contact-value--link:hover {
  color: var(--gold-light);
}

.contact-sub {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.5;
  font-style: italic;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--black-border);
  border-radius: 3px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  transition: all var(--dur-mid) var(--ease);
}

.social-link:hover {
  border-color: var(--green-bright);
  color: var(--green-bright);
  background: var(--green-glow);
  box-shadow: 0 0 16px var(--green-glow);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--black-surface);
  border: 1px solid var(--black-border);
  border-radius: 3px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.93rem;
  padding: 12px 16px;
  transition: border-color var(--dur-mid) var(--ease), box-shadow var(--dur-mid) var(--ease);
  width: 100%;
  -webkit-appearance: none;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a5545' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-bright);
  box-shadow: 0 0 0 3px var(--green-glow);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: -8px;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--black-rich);
  border-top: 1px solid var(--black-border);
  padding: 60px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--black-border);
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 16px;
}

.footer-links-col h4 {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color var(--dur-mid) var(--ease);
}

.footer-links-col a:hover { color: var(--text-primary); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-credit {
  font-family: var(--font-heading);
  letter-spacing: 0.15em;
  font-style: italic;
  color: var(--green-mid) !important;
}

/* ═══════════════════════════════════════════════════════════════
   ARTIST SINGLE RELEASE SECTION
═══════════════════════════════════════════════════════════════ */

.artist-singles-section {
  padding: var(--section-pad) 0;
  background: var(--black-rich);
  border-top: 1px solid var(--black-border);
}

.artist-singles-section .section-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.single-release-block {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2.5rem;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 12px;
  padding: 2rem;
}

/* ── YouTube embed ── */
.single-embed {
  flex: 0 0 auto;
  width: 100%;
  max-width: 420px;
}

.youtube-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}

.youtube-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

/* ── Single info ── */
.single-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  justify-content: center;
}

.release-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--black-rich);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 20px;
  width: fit-content;
}

.single-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold-light);
  margin: 0;
  letter-spacing: 0.05em;
}

.single-artist-name {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin: 0;
}

.single-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0.25rem 0 0;
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
}

.single-yt-btn {
  margin-top: 0.75rem;
  align-self: flex-start;
}

.single-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.artist-singles-section--alt {
  background: var(--black-surface);
  border-top: 1px solid var(--black-border);
}

@media (max-width: 680px) {
  .single-release-block {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .single-embed {
    max-width: 100%;
    width: 100%;
  }

  .single-title {
    font-size: 1.4rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   EXPLORE ROOTSMONIC SOUND
═══════════════════════════════════════════════════════════════ */
.explore {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201,162,39,0.05), transparent 65%),
    radial-gradient(ellipse 40% 60% at 10% 100%, rgba(29,184,122,0.04), transparent 60%),
    transparent;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

/* Card base */
.explore-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px 28px 28px;
  background:
    linear-gradient(160deg, rgba(22,16,8,0.92) 0%, rgba(10,8,4,0.96) 100%);
  border: 1px solid rgba(201,162,39,0.14);
  border-radius: 8px;
  text-decoration: none;
  overflow: hidden;
  transition:
    transform 0.28s cubic-bezier(0.25,0.46,0.45,0.94),
    border-color 0.28s ease,
    box-shadow 0.28s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
}

.explore-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,162,39,0.38);
  box-shadow:
    0 16px 48px rgba(0,0,0,0.6),
    0 0 0 1px rgba(201,162,39,0.1);
}

/* Green accent variant for Dub Studio */
.explore-card--green {
  border-color: rgba(29,184,122,0.16);
}
.explore-card--green:hover {
  border-color: rgba(29,184,122,0.42);
  box-shadow:
    0 16px 48px rgba(0,0,0,0.6),
    0 0 0 1px rgba(29,184,122,0.1);
}
.explore-card--green .explore-card-icon { color: var(--green-bright); }
.explore-card--green .explore-card-cta  { color: var(--green-bright); }
.explore-card--green .explore-card-glow {
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(29,184,122,0.12), transparent 70%);
}
.explore-card--green:hover .explore-card-glow { opacity: 1; }

/* Icon */
.explore-card-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}
.explore-card:hover .explore-card-icon {
  opacity: 1;
  transform: scale(1.06);
}

/* Body */
.explore-card-body {
  flex: 1;
}

.explore-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.explore-card-desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* CTA row */
.explore-card-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
  transition: opacity 0.2s ease, gap 0.2s ease;
}
.explore-card:hover .explore-card-cta {
  opacity: 1;
  gap: 12px;
}

/* Ambient glow behind card */
.explore-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(201,162,39,0.09), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.explore-card:hover .explore-card-glow { opacity: 1; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */

/* ─── 960px — navbar switches to hamburger ───────────────────── */
@media (max-width: 960px) {
  .nav-links {
    position: fixed;
    inset: 0;                          /* full viewport */
    width: 100%;
    background: rgba(6,4,2,0.97);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: calc(var(--nav-h, 64px) + 24px) 32px 32px;
    gap: 0;
    transform: translateX(100%);
    transition: transform var(--dur-mid) var(--ease);
    z-index: 999;
    flex-wrap: nowrap;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links.open { transform: translateX(0); }

  .nav-links li {
    width: 100%;
    max-width: 320px;
    text-align: center;
    flex-shrink: 0;
  }

  .nav-link {
    font-size: 1.1rem;
    letter-spacing: 0.16em;
    padding: 14px 0;
    width: 100%;
    display: block;
    border-bottom: 1px solid rgba(201,162,39,0.10);
    color: rgba(220,210,190,0.75);
  }

  .nav-link:hover,
  .nav-link.active { color: var(--gold); }
  .nav-link::after { display: none; }

  .nav-cta {
    margin-top: 24px;
    margin-bottom: 24px;
    border: 1px solid rgba(201,162,39,0.35);
    border-radius: 3px;
    padding: 12px 28px;
    color: rgba(201,162,39,0.95) !important;
    display: inline-block;
    width: auto;
  }

  .nav-toggle { display: flex; z-index: 1000; }
}

/* ─── 1024px — tablet landscape ─────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; }

  .explore-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .mix-feature {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .featured-inner {
    grid-template-columns: 260px 1fr;
    gap: 40px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual {
    order: 1;
    max-width: 100%;
    margin: 0 auto;
  }

  .about-content {
    order: 2;
  }
}

/* ─── 900px — tablet portrait ────────────────────────────────── */
@media (max-width: 900px) {
  .riddims-grid,
  .singles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ─── 768px — mobile ─────────────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --section-pad: 44px;
    --nav-h: 60px;
  }

  /* Prevent horizontal scroll */
  body { overflow-x: hidden; }
  * { max-width: 100%; }
  img, iframe, video { max-width: 100%; }

  /* ── Navigation ── */
  .logo-text { font-size: 0.92rem; }
  .logo-sub  { font-size: 0.55rem; }
  .logo-icon { font-size: 1.15rem; }

  .nav-links {
    position: fixed;
    inset: 0;
    width: 100%;
    background: rgba(6,4,2,0.97);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: calc(var(--nav-h, 60px) + 24px) 32px 32px;
    gap: 0;
    transform: translateX(100%);
    transition: transform var(--dur-mid) var(--ease);
    z-index: 999;
    flex-wrap: nowrap;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links.open { transform: translateX(0); }

  .nav-links li {
    width: 100%;
    max-width: 320px;
    text-align: center;
    flex-shrink: 0;
  }

  .nav-link {
    font-size: 1.1rem;
    letter-spacing: 0.16em;
    padding: 14px 0;
    width: 100%;
    display: block;
    border-bottom: 1px solid rgba(201,162,39,0.10);
    color: rgba(220,210,190,0.75);
  }

  .nav-link:hover,
  .nav-link.active { color: var(--gold); }
  .nav-link::after { display: none; }

  .nav-cta {
    margin-top: 24px;
    margin-bottom: 24px;
    border: 1px solid rgba(201,162,39,0.35);
    border-radius: 3px;
    padding: 12px 28px;
    color: rgba(201,162,39,0.95) !important;
    display: inline-block;
    width: auto;
  }

  .nav-toggle { display: flex; z-index: 1000; }

  /* ── Explore grid ── */
  .explore-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* ── Hero ── */
  .hero {
    min-height: auto;
    padding-top: var(--nav-h);
    padding-bottom: 48px;
  }

  .hero-content {
    padding: 32px 20px 0;
    max-width: 100%;
  }

  /* Title — fixed small size, no clamp overflow */
  .title-line {
    font-size: 2.6rem;
    letter-spacing: 0.05em;
    line-height: 1;
  }

  .title-line.gold {
    font-size: 1rem;
    letter-spacing: 0.28em;
    margin-top: 4px;
  }

  .hero-title {
    gap: 0;
    margin-bottom: 12px;
  }

  .hero-tagline {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    margin-bottom: 12px;
  }

  .hero-description {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 24px;
    padding: 0 4px;
  }

  /* Buttons — compact, stacked */
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 28px;
    gap: 10px;
  }

  .btn {
    justify-content: center;
    font-size: 0.8rem;
    padding: 11px 20px;
    letter-spacing: 0.1em;
  }

  /* Stats — compact row */
  .hero-stats {
    flex-wrap: nowrap;
    gap: 0;
    margin-bottom: 0;
  }

  .stat { padding: 0 12px; }

  .stat-num { font-size: 1.2rem; }

  .stat-label { font-size: 0.62rem; letter-spacing: 0.15em; }

  .stat-divider { height: 28px; }

  /* ── Section headers ── */
  .section-title {
    font-size: clamp(1.4rem, 6vw, 2rem);
    margin-bottom: 10px;
  }

  .section-subtitle { font-size: 0.88rem; }

  .section-header { margin-bottom: 36px; }

  /* ── Latest Mix ── */
  .mix-feature { gap: 28px; }

  .mix-video-wrap {
    border-radius: 4px;
  }

  .mix-title { font-size: 1.4rem; }

  .mix-description { font-size: 0.88rem; }

  .mix-meta { gap: 10px; flex-wrap: wrap; }

  .meta-item { font-size: 0.78rem; }

  .mix-tracklist { padding: 14px; }

  .tracklist li { font-size: 0.8rem; }

  /* ── Riddim & Singles grids ── */
  .riddims-grid,
  .singles-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Limit card cover height on mobile so cards don't dominate */
  .card-cover {
    max-height: 200px;
  }

  .card-thumb {
    max-height: 200px;
  }

  .single-artwork {
    max-height: 200px;
  }

  .single-thumb {
    max-height: 200px;
  }

  .card-body { padding: 14px; }

  .card-title { font-size: 1rem; }

  .card-desc { font-size: 0.82rem; margin-bottom: 10px; }

  /* ── About ── */
  .about-vinyl { display: none; }

  /* ── Featured Release ── */
  .featured-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .featured-cover {
    max-width: 280px;
    margin: 0 auto;
  }

  .featured-title { font-size: 2rem; }

  .featured-desc { font-size: 0.92rem; margin-bottom: 24px; }

  .featured-btn { width: 100%; justify-content: center; }
  .featured-btn-group { width: 100%; align-items: stretch; }

  .coming-soon-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .coming-soon-cover {
    max-width: 280px;
    margin: 0 auto;
  }

  .coming-soon-btn { width: 100%; justify-content: center; }

  .about-grid { gap: 28px; }

  .about-img-card {
    aspect-ratio: unset;
    height: 240px;
    max-height: 260px;
  }

  .about-real-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
  }

  .about-badge-float {
    padding: 8px 12px;
    font-size: 0.7rem;
    gap: 6px;
    bottom: 12px;
    right: 12px;
  }

  .about-text { font-size: 0.9rem; line-height: 1.75; }

  .pillar { padding: 12px 14px; }

  .pillar-body h4 { font-size: 0.82rem; }

  .pillar-body p { font-size: 0.78rem; }

  /* ── Contact ── */
  .contact-grid { gap: 32px; }

  .contact-info { gap: 20px; }

  /* ── Footer ── */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
    padding-bottom: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   PAGE HERO — used on all inner pages
═══════════════════════════════════════════════════════════════ */
.page-hero {
  padding: calc(var(--nav-h) + 64px) 0 64px;
  text-align: center;
  background: var(--black-rich);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-mid), transparent);
}

.page-hero-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green-bright);
  padding: 4px 12px;
  border: 1px solid var(--green-mid);
  border-radius: 2px;
  margin-bottom: 16px;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 12px 0 16px;
  letter-spacing: 0.02em;
}

.page-hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Nav active state for inner pages */
.nav-link.active {
  color: var(--text-primary);
}

.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* AI Disclaimer block */
.ai-disclaimer {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  padding: 28px 32px;
  margin-top: 48px;
}

.ai-disclaimer-title {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.ai-disclaimer-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Artist grid */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.artist-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 6px;
  padding: 28px 20px;
  text-align: center;
  cursor: default;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-mid) var(--ease),
              border-color var(--dur-mid) var(--ease),
              box-shadow var(--dur-mid) var(--ease),
              background var(--dur-mid) var(--ease);
}

/* Subtle inner glow layer on hover */
.artist-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, var(--green-glow), transparent 70%);
  opacity: 0;
  transition: opacity var(--dur-mid) var(--ease);
  pointer-events: none;
}

.artist-card:hover {
  transform: translateY(-5px);
  border-color: var(--green-bright);
  background: var(--black-surface);
  box-shadow: 0 16px 48px rgba(0,0,0,0.7), 0 0 28px var(--green-glow), 0 0 2px var(--green-mid);
}

.artist-card:hover::before {
  opacity: 1;
}

.artist-icon {
  font-size: 2rem;
  color: var(--green-bright);
  margin-bottom: 14px;
  display: block;
  filter: drop-shadow(0 0 6px var(--green-glow-strong));
  transition: filter var(--dur-mid) var(--ease), transform var(--dur-mid) var(--ease);
}

.artist-card:hover .artist-icon {
  filter: drop-shadow(0 0 14px var(--green-glow-strong));
  transform: scale(1.15);
}

.artist-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
  transition: color var(--dur-mid) var(--ease);
}

.artist-card:hover .artist-name {
  color: var(--green-bright);
}

.artist-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-family: var(--font-heading);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--dur-mid) var(--ease);
}

.artist-card:hover .artist-label {
  color: var(--green-bright);
  opacity: 0.7;
}

/* ─── ARTIST CARD PORTRAIT ───────────────────────────────────── */
.artist-card--linked {
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.artist-portrait {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--black-surface);
}

.artist-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform var(--dur-slow) var(--ease), filter var(--dur-slow) var(--ease);
  filter: brightness(0.85) saturate(0.9);
}

.artist-card--linked:hover .artist-portrait-img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1.1);
}

.artist-portrait-fallback {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background: var(--black-surface);
}

.artist-portrait-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.7) 0%, transparent 50%);
  transition: opacity var(--dur-mid) var(--ease);
}

.artist-card--linked:hover .artist-portrait-overlay {
  opacity: 0.5;
}

@media (max-width: 900px) {
  .artists-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .artists-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-hero {
    padding: calc(var(--nav-h) + 40px) 0 48px;
  }
  .page-hero-title {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }
  .ai-disclaimer {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .artists-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* ─── 480px — small phones ───────────────────────────────────── */
@media (max-width: 480px) {
  :root { --section-pad: 32px; }

  .container { padding: 0 14px; }

  /* Hero — further reduced on very small screens */
  .title-line {
    font-size: 2.1rem;
    letter-spacing: 0.04em;
  }

  .title-line.gold {
    font-size: 0.85rem;
    letter-spacing: 0.24em;
  }

  .hero-content { padding: 24px 14px 0; }

  .hero-description { font-size: 0.84rem; }

  .hero-actions { max-width: 240px; }

  .btn { font-size: 0.76rem; padding: 10px 18px; }

  .stat { padding: 0 10px; }

  .stat-num { font-size: 1.05rem; }

  .stat-label { font-size: 0.58rem; }

  .stat-divider { height: 22px; }

  /* Logo */
  .logo-text { font-size: 0.85rem; }

  /* Sections */
  .section-title { font-size: 1.3rem; }

  .mix-info { padding-top: 0; }

  .mix-title { font-size: 1.2rem; }

  .mix-number { font-size: 0.65rem; }

  .mix-meta { gap: 8px; }

  .about-img-card {
    height: 200px;
    max-height: 210px;
  }

  .section-cta { margin-top: 24px; }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 0.9rem;
    padding: 10px 12px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   ARCHIVE PAGE
═══════════════════════════════════════════════════════════════ */

.archive-section {
  background: var(--black-rich);
}

/* Each album block */
.archive-album {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 64px;
  box-shadow: 0 16px 56px rgba(0,0,0,0.6);
  transition: box-shadow var(--dur-mid) var(--ease);
}

.archive-album:last-child {
  margin-bottom: 0;
}

.archive-album:hover {
  box-shadow: 0 20px 72px rgba(0,0,0,0.75), 0 0 24px var(--gold-glow);
}

/* Top band: player + meta side-by-side */
.archive-album-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
}

/* YouTube player embed */
.archive-player-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  min-width: 0;
}

.archive-player-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Album meta panel */
.archive-album-meta {
  padding: 28px 24px 24px;
  background: var(--black-surface);
  border-left: 1px solid var(--black-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.archive-release-type {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 2px;
  padding: 3px 10px;
  width: fit-content;
}

.archive-album-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: 0.02em;
  overflow-wrap: break-word;
}

.archive-album-artist {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-bright);
}

.archive-album-date {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.archive-album-desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
  border-top: 1px solid var(--black-border);
  padding-top: 14px;
  margin-top: auto;
}

/* Tracklist section below the player */
.archive-tracklist-wrap {
  padding: 24px 28px 28px;
  border-top: 1px solid var(--black-border);
}

.archive-tracklist-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.archive-tracklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.archive-track {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  cursor: pointer;
  border-radius: 3px;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}

.archive-track:hover {
  background: rgba(201, 162, 39, 0.07);
}

.archive-track-num {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  min-width: 18px;
  text-align: right;
}

.archive-track-time {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: var(--gold);
  opacity: 0.8;
  min-width: 36px;
  letter-spacing: 0.03em;
  transition: opacity var(--dur-fast) var(--ease);
}

.archive-track:hover .archive-track-time {
  opacity: 1;
}

.archive-track-title {
  font-family: var(--font-body);
  font-size: 0.87rem;
  color: var(--text-secondary);
  transition: color var(--dur-fast) var(--ease), text-shadow var(--dur-fast) var(--ease);
}

.archive-track:hover .archive-track-title {
  color: var(--gold-pale);
  text-shadow: 0 0 10px rgba(201,162,39,0.3);
}

/* Currently playing track */
.archive-track--active {
  background: rgba(201, 162, 39, 0.1);
}

.archive-track--active .archive-track-time {
  opacity: 1;
  color: var(--gold-light);
}

.archive-track--active .archive-track-title {
  color: var(--gold-pale);
}

.archive-track--active .archive-track-num {
  color: var(--gold);
}

/* ─── ARCHIVE RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
  .archive-album-top {
    grid-template-columns: 1fr;
  }
  .archive-album-meta {
    border-left: none;
    border-top: 1px solid var(--black-border);
  }
  .archive-tracklist {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .archive-tracklist-wrap,
  .archive-album-meta {
    padding: 20px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   ARTIST PAGE
═══════════════════════════════════════════════════════════════ */

/* Thin cinematic header bar above the content section */
.artist-page-header {
  padding: calc(var(--nav-h) + 48px) 0 48px;
  background: var(--black-rich);
  position: relative;
}

.artist-page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-mid), transparent);
}

/* Two-column layout: image left, info right */
.artist-page-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: start;
}

/* Portrait image card */
.artist-page-img-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(0,0,0,0.8), 0 0 32px var(--green-glow);
  border: 1px solid var(--black-border);
  background: var(--black-surface);
}

.artist-page-img-wrap img {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  filter: brightness(0.92) saturate(0.95);
}

/* Fallback if no image */
.artist-page-img-fallback {
  display: none;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3 / 4;
  background: var(--black-surface);
  font-size: 3rem;
  color: var(--green-bright);
  filter: drop-shadow(0 0 16px var(--green-glow-strong));
}

/* Info column */
.artist-page-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 8px;
}

.artist-page-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin: 12px 0 10px;
}

.artist-page-role {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 36px;
}

.artist-page-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 28px;
}

.artist-page-desc {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 480px;
}

.artist-page-back {
  font-size: 0.82rem;
  width: fit-content;
}

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .artist-page-layout {
    grid-template-columns: 280px 1fr;
    gap: 40px;
  }
}

@media (max-width: 680px) {
  .artist-page-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .artist-page-img-wrap img {
    aspect-ratio: 4 / 5;
    max-height: 420px;
  }

  .artist-page-img-wrap {
    max-width: 320px;
    margin: 0 auto;
  }

  .artist-page-info {
    padding-top: 0;
    text-align: center;
    align-items: center;
  }

  .artist-page-divider {
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }

  .artist-page-desc {
    text-align: center;
  }

  .artist-page-back {
    width: 100%;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════════════ */

.contact-page-wrap {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 680px;
  margin: 0 auto;
}

.contact-block {
  background: var(--black-surface);
  border: 1px solid var(--black-border);
  border-radius: 8px;
  padding: 36px 40px;
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}

.contact-block:hover {
  border-color: rgba(56, 161, 79, 0.25);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 24px rgba(56,161,79,0.06);
}

.contact-block-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.contact-block-icon {
  font-size: 1.1rem;
  color: var(--green-bright);
  filter: drop-shadow(0 0 6px var(--green-glow));
  line-height: 1;
}

.contact-block-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin: 0;
}

/* ─── Channel cards ────────────────────────────────────────── */

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.channel-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--black-border);
  border-radius: 6px;
  text-decoration: none;
  transition: background var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease);
}

.channel-card:hover {
  background: rgba(56, 161, 79, 0.06);
  border-color: rgba(56, 161, 79, 0.3);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 0 16px rgba(56,161,79,0.08);
  transform: translateX(4px);
}

.channel-logo-wrap {
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--black-border);
  background: var(--black-rich);
}

.channel-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.channel-logo-fallback {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1.4rem;
  color: var(--green-bright);
  filter: drop-shadow(0 0 8px var(--green-glow));
}

.channel-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.channel-name {
  font-family: var(--font-heading);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.channel-handle {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.channel-arrow {
  font-size: 1.1rem;
  color: var(--green-bright);
  opacity: 0.5;
  transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
  flex-shrink: 0;
}

.channel-card:hover .channel-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* ─── Email link ───────────────────────────────────────────── */

.contact-email-link {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 162, 39, 0.3);
  padding-bottom: 2px;
  transition: color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease),
              text-shadow var(--dur-fast) var(--ease);
}

.contact-email-link:hover {
  color: var(--gold-light);
  border-color: var(--gold);
  text-shadow: 0 0 16px rgba(201,162,39,0.4);
}

/* ─── Contact page responsive ─────────────────────────────── */

@media (max-width: 600px) {
  .contact-block {
    padding: 24px 20px;
  }

  .channel-card {
    padding: 12px 14px;
  }

  .channel-logo-wrap {
    width: 40px;
    height: 40px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SIGNAL TICKER — Cinematic Reggae Broadcast Bar
═══════════════════════════════════════════════════════════════ */
.signal-ticker {
  /* Sits inside .hero, anchored just above the scroll indicator */
  position: absolute;
  bottom: 100px;  /* above the scroll-indicator (32px bottom + ~60px height + 8px gap) */
  left: 0;
  right: 0;
  width: 100%;
  height: 36px;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      rgba(10, 8, 4, 0.88) 0%,
      rgba(18, 12, 4, 0.93) 60%,
      rgba(10, 8, 4, 0.88) 100%
    );
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top:    1px solid rgba(201, 162, 39, 0.22);
  border-bottom: 1px solid rgba(201, 162, 39, 0.14);
  box-shadow:
    0 -2px 16px rgba(201, 162, 39, 0.07),
    0  2px 16px rgba(201, 162, 39, 0.07);
  transition: box-shadow 0.4s ease;
  /* Above globe/particles (z:1) but below hero-content (z:2) — we need z:2 too,
     but hero-content is a sibling so we can safely use 3 here */
  z-index: 3;
  pointer-events: none;
}

/* Hover: slightly brighter */
.signal-ticker:hover {
  box-shadow:
    0 -1px 20px rgba(201, 162, 39, 0.14),
    0  1px 20px rgba(201, 162, 39, 0.14);
}

/* ── Analog grain texture ───────────────────────────────────── */
.ticker-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* SVG noise grain as data URI */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='36'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='36' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
  background-repeat: repeat;
  mix-blend-mode: overlay;
  opacity: 0.6;
}

/* ── Moving light shimmer across bar ───────────────────────── */
.ticker-shimmer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 38%,
    rgba(201, 162, 39, 0.055) 48%,
    rgba(255, 220, 120, 0.035) 50%,
    rgba(201, 162, 39, 0.055) 52%,
    transparent 62%,
    transparent 100%
  );
  background-size: 220% 100%;
  animation: tickerShimmer 9s ease-in-out infinite;
}

@keyframes tickerShimmer {
  0%   { background-position: 160% 0; }
  60%  { background-position: -40% 0; }
  100% { background-position: -40% 0; }
}

/* ── Track + scroll ─────────────────────────────────────────── */
.ticker-track {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  /* Left/right fade edges */
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 5%,
    black 95%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 5%,
    black 95%,
    transparent 100%
  );
}

.ticker-inner {
  display: flex;
  align-items: center;
  white-space: nowrap;
  /* Animation: scroll left one full segment width */
  animation: tickerScroll 52s linear infinite;
  will-change: transform;
}

/* ── Ticker text items ──────────────────────────────────────── */
.ticker-phrase {
  font-family: 'Rajdhani', 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(201, 162, 39, 0.72);
  padding: 0 2px;
}

/* Color variants */
.ticker-phrase.gold {
  color: rgba(220, 175, 40, 0.95);
  text-shadow: 0 0 8px rgba(220, 175, 40, 0.35);
}
.ticker-phrase.green {
  color: rgba(29, 184, 122, 0.82);
}
.ticker-phrase.ember {
  color: rgba(200, 100, 30, 0.80);
}
.ticker-phrase.dim {
  color: rgba(201, 162, 39, 0.38);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
}

/* Separator diamonds */
.ticker-sep {
  font-size: 0.38rem;
  color: rgba(201, 162, 39, 0.35);
  padding: 0 14px;
  flex-shrink: 0;
  vertical-align: middle;
}

/* Gap spacer between A and B segments (equals one full width) */
.ticker-gap {
  display: inline-block;
  width: 80px;
  flex-shrink: 0;
}

/* ── Scroll keyframe ────────────────────────────────────────── */
/* Scrolls exactly half the inner width (segment A = segment B)
   so the loop is perfectly seamless */
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Mobile ─────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .signal-ticker {
    height: 30px;
    bottom: 90px;
  }
  .ticker-phrase {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }
  .ticker-sep {
    padding: 0 10px;
    font-size: 0.32rem;
  }
  .ticker-inner {
    /* Slightly slower on mobile */
    animation-duration: 68s;
  }
  .ticker-gap {
    width: 40px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE NAV — FORCE VISIBILITY OVERRIDE
   Ensures every nav item shows in the open mobile menu,
   regardless of any conflicting/cached rules above.
═══════════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .nav-links.open {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 4px !important;
    position: fixed !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    max-height: 100vh !important;
    padding: calc(var(--nav-h, 64px) + 24px) 24px 32px !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    background: rgba(6,4,2,0.97) !important;
    z-index: 999 !important;
    transform: translateX(0) !important;
  }

  .nav-links.open li {
    display: block !important;
    width: 100% !important;
    max-width: 320px !important;
    flex-shrink: 0 !important;
  }

  .nav-links.open .nav-link,
  .nav-links.open .nav-link.active,
  .nav-links.open .nav-cta {
    display: block !important;
    width: 100% !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}
    width: 50px;
  }
}

/* ── Reduced motion: pause scrolling, keep bar visible ─────── */
@media (prefers-reduced-motion: reduce) {
  .ticker-inner {
    animation-play-state: paused;
  }
  .ticker-shimmer {
    animation: none;
  }
}
