/* ═══════════════════════════════════════════════════════════════════
   ZANE CORVO & THE VELVET REPLY — styles.css
   Dark editorial pop-soul. Standalone site.
   No frameworks. No build step.
═══════════════════════════════════════════════════════════════════ */

/* ───────────────────────────────────────────────
   1. CSS CUSTOM PROPERTIES
─────────────────────────────────────────────── */
:root {
  /* Colour palette */
  --bg: #0a0a0f;
  --bg-2: #12111a;
  --bg-3: #1a1828;
  --accent: #c9a84c;
  --accent-dark: #8b6914;
  --accent-glow: rgba(201, 168, 76, 0.15);
  --text: #f0ece4;
  --text-muted: #8a8070;
  --text-faint: #4a4540;
  --mint: #6b9e7a;
  --mint-dark: #4a7a5a;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-mono: 'DM Mono', 'Courier New', monospace;
  --font-body: 'DM Sans', system-ui, sans-serif;

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  /* Layout */
  --container-max: 1200px;
  --container-pad: clamp(1rem, 5vw, 3rem);
  --nav-height: 72px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 150ms;
  --dur-base: 280ms;
  --dur-slow: 500ms;

  /* Borders */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --border: 1px solid rgba(201, 168, 76, 0.15);
}

/* ───────────────────────────────────────────────
   1b. SKIP LINK
─────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  z-index: 99999;
  padding: 0.6rem 1.2rem;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: top var(--dur-fast) var(--ease);
}

.skip-link:focus {
  top: var(--space-sm);
}

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

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

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

ul, ol {
  list-style: none;
}

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

/* ───────────────────────────────────────────────
   3. GRAIN OVERLAY (global)
─────────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ───────────────────────────────────────────────
   4. CUSTOM CURSOR (desktop only)
─────────────────────────────────────────────── */
@media (pointer: fine) {
  body { cursor: none; }
  a, button, [role="button"], [tabindex="0"] { cursor: none; }
}

.cursor,
.cursor-follower {
  display: none;
  pointer-events: none;
  position: fixed;
  border-radius: 50%;
  z-index: 10003;
  transform: translate(-50%, -50%);
}

@media (pointer: fine) {
  .cursor {
    display: block;
    width: 8px;
    height: 8px;
    background: var(--accent);
    transition: transform var(--dur-fast) var(--ease),
                opacity var(--dur-fast) var(--ease);
  }

  .cursor-follower {
    display: block;
    width: 28px;
    height: 28px;
    border: 1px solid var(--accent);
    opacity: 0.4;
    transition: transform 180ms var(--ease),
                opacity var(--dur-fast) var(--ease),
                width var(--dur-base) var(--ease),
                height var(--dur-base) var(--ease);
  }

  body.cursor-hover .cursor {
    transform: translate(-50%, -50%) scale(1.5);
  }
  body.cursor-hover .cursor-follower {
    width: 48px;
    height: 48px;
    opacity: 0.6;
  }
}

/* ───────────────────────────────────────────────
   5. LAYOUT UTILITIES
─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section-header {
  margin-bottom: var(--space-lg);
}

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-xs);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
}

/* ───────────────────────────────────────────────
   6. FADE-UP ANIMATION
─────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--dur-slow) var(--ease),
              transform var(--dur-slow) var(--ease);
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger siblings */
.fade-up:nth-child(2) { transition-delay: 80ms; }
.fade-up:nth-child(3) { transition-delay: 160ms; }
.fade-up:nth-child(4) { transition-delay: 240ms; }

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html { scroll-behavior: auto; }
}

/* ───────────────────────────────────────────────
   7. BUTTONS
─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.75rem 1.75rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: background var(--dur-base) var(--ease),
              color var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease),
              transform var(--dur-fast) var(--ease);
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
  border: 1px solid var(--accent);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #e0bc5c;
  box-shadow: 0 0 24px var(--accent-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(240, 236, 228, 0.2);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

/* Focus ring */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

[role="button"]:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

/* ───────────────────────────────────────────────
   8. NAVIGATION
─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-base) var(--ease),
              background var(--dur-base) var(--ease);
}

.site-header.scrolled {
  border-bottom-color: rgba(201, 168, 76, 0.12);
}

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

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  flex-shrink: 0;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
}

.nav-logo-feat {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  transition: color var(--dur-base) var(--ease);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--dur-base) var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}

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

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--text);
  transition: transform var(--dur-base) var(--ease),
              opacity var(--dur-base) var(--ease);
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 1023px) {
  .nav-hamburger {
    display: flex;
    background: rgba(10, 10, 15, 0.68);
    border-radius: var(--radius-md);
    padding: 6px;
    position: relative;
    z-index: 10002;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: #000;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: var(--space-lg);
    z-index: 10001;
    overflow-y: auto;
    padding-block: var(--nav-height) var(--space-lg);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    font-size: 1rem;
    letter-spacing: 0.2em;
  }
}

/* ───────────────────────────────────────────────
   9. HERO SECTION
─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-height);
  overflow: hidden;
  background-color: var(--bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Canvas for liquid/wave animations */
#hero-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Dark overlay so hero text is readable over the background image */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
    rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 300px 300px;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: var(--space-xl) var(--container-pad);
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 9rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: var(--space-md);
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xl);
}

.hero-cta {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  z-index: 2;
  animation: scroll-hint-bounce 2s ease-in-out infinite;
}

@keyframes scroll-hint-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

.hero-scroll-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll-hint { animation: none; }
  @keyframes scroll-hint-bounce {}
}

/* ───────────────────────────────────────────────
   10. LYRIC CAROUSEL SECTION
─────────────────────────────────────────────── */
.lyrics-section {
  background: var(--bg-2);
  border-top: var(--border);
  border-bottom: var(--border);
  padding: var(--space-xl) 0;
  overflow: hidden;
}

.lyric-carousel {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.lyric-track {
  position: relative;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lyric-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-md);
  opacity: 0;
  transform: translateX(24px);
  transition: opacity var(--dur-slow) var(--ease),
              transform var(--dur-slow) var(--ease);
  pointer-events: none;
}

.lyric-slide[aria-hidden="false"] {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.lyric-text {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: var(--space-sm);
}

.lyric-source {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
}

.lyric-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.lyric-prev,
.lyric-next {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 1rem;
  transition: border-color var(--dur-base) var(--ease),
              color var(--dur-base) var(--ease);
}

.lyric-prev:hover,
.lyric-next:hover,
.lyric-prev:focus-visible,
.lyric-next:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

.lyric-dots {
  display: flex;
  gap: 8px;
}

.lyric-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-faint);
  border: none;
  transition: background var(--dur-base) var(--ease),
              transform var(--dur-base) var(--ease);
}

.lyric-dot.active {
  background: var(--accent);
  transform: scale(1.4);
}

@media (prefers-reduced-motion: reduce) {
  .lyric-slide {
    transition: none;
  }
  .lyric-dot { transition: none; }
}

/* ───────────────────────────────────────────────
   11. MUSIC PLAYER SECTION
─────────────────────────────────────────────── */
.music-section {
  padding: var(--space-3xl) 0;
  background: var(--bg);
}

.player-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: var(--space-lg);
  align-items: start;
}

@media (max-width: 900px) {
  .player-layout {
    grid-template-columns: 1fr;
  }
}

/* ─── Playlist ─── */
.playlist {
  background: var(--bg-2);
  border: var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  max-height: 560px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-dark) var(--bg-2);
}

.playlist::-webkit-scrollbar {
  width: 4px;
}
.playlist::-webkit-scrollbar-track {
  background: var(--bg-2);
}
.playlist::-webkit-scrollbar-thumb {
  background: var(--accent-dark);
  border-radius: 2px;
}

.playlist-album-label {
  padding: 0.6rem var(--space-sm) 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--bg-3);
  border-top: var(--border);
  border-bottom: var(--border);
}

.playlist-album-label:first-child {
  border-top: none;
}

.playlist-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  width: 100%;
  padding: 0.85rem var(--space-sm);
  text-align: left;
  border-bottom: 1px solid rgba(201, 168, 76, 0.06);
  transition: background var(--dur-base) var(--ease),
              color var(--dur-base) var(--ease);
  position: relative;
}

.playlist-item:last-child {
  border-bottom: none;
}

.playlist-item:hover,
.playlist-item:focus-visible {
  background: var(--bg-3);
}

.playlist-item.active,
.playlist-item[aria-current="true"] {
  background: rgba(201, 168, 76, 0.08);
}

.playlist-item.active .playlist-title {
  color: var(--accent);
}

.playlist-item.active .playlist-play-icon {
  opacity: 1;
  color: var(--accent);
}

.playlist-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 300;
  color: var(--text-muted);
  min-width: 22px;
  flex-shrink: 0;
}

.playlist-title {
  flex: 1;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text);
  transition: color var(--dur-base) var(--ease);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.playlist-duration {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 300;
  color: var(--text-muted);
  flex-shrink: 0;
}

.playlist-play-icon {
  font-size: 0.6rem;
  opacity: 0;
  color: var(--accent);
  flex-shrink: 0;
  transition: opacity var(--dur-base) var(--ease);
}

.playlist-item:hover .playlist-play-icon,
.playlist-item:focus-visible .playlist-play-icon {
  opacity: 0.5;
}

/* ─── Video Stage ─── */
.video-stage {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-sm));
}

.video-facade {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg-3);
  border: var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.video-facade:hover .video-facade-overlay,
.video-facade:focus-visible .video-facade-overlay {
  background: rgba(10, 10, 15, 0.3);
}

.video-facade:hover .video-play-btn,
.video-facade:focus-visible .video-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-facade-thumb {
  position: absolute;
  inset: 0;
}

.video-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.video-facade-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 15, 0.5);
  transition: background var(--dur-base) var(--ease);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  color: var(--accent);
  transition: transform var(--dur-base) var(--ease);
}

.video-play-btn svg {
  width: 100%;
  height: 100%;
}

.video-facade-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-sm);
  background: linear-gradient(to top, rgba(10, 10, 15, 0.9), transparent);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.video-now-playing-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.video-now-playing-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

/* Injected iframe */
#video-player-container {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: none;
}

#video-player-container.active {
  display: block;
}

#video-player-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ───────────────────────────────────────────────
   11.5. STORY TEASER SECTION
─────────────────────────────────────────────── */
.story-section {
  padding: var(--space-3xl) 0;
  background: var(--bg);
  border-top: var(--border);
}

.story-teaser {
  max-width: 48rem;
  margin-top: var(--space-xl);
}

.story-lead {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.story-body {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

/* ───────────────────────────────────────────────
   12. ABOUT SECTION
─────────────────────────────────────────────── */
.about-section {
  padding: var(--space-3xl) 0;
  background: var(--bg-2);
  border-top: var(--border);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
  }
  .about-visual {
    order: -1;
  }
}

.about-raven-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.raven-glyph {
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.6;
  line-height: 1;
}

/* Vinyl disc */
.vinyl-disc {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--bg-3) 18%, transparent 18%),
    repeating-radial-gradient(circle at center,
      #1a1828 0px,
      #12111a 2px,
      #1a1828 4px,
      #12111a 6px
    );
  border: 2px solid rgba(201, 168, 76, 0.1);
  position: relative;
  animation: vinyl-spin 8s linear infinite;
  box-shadow:
    0 0 0 4px rgba(201, 168, 76, 0.05),
    0 8px 40px rgba(0, 0, 0, 0.6);
}

.vinyl-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-dark) 0%, var(--bg-3) 100%);
  border: 1px solid var(--accent);
}

@keyframes vinyl-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .vinyl-disc { animation: none; }
}

.about-body {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.8;
}

.about-body em {
  color: var(--accent);
  font-style: italic;
}

.about-body strong {
  color: var(--text);
  font-weight: 400;
}

.about-stats {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: var(--border);
}

.about-stat dt {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.about-stat dd {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

/* ───────────────────────────────────────────────
   13. ALBUMS SECTION
─────────────────────────────────────────────── */
.albums-section {
  padding: var(--space-3xl) 0;
  background: var(--bg);
  border-top: var(--border);
}

.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.album-card {
  background: var(--bg-2);
  border: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease);
}

.album-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.5);
}

.album-art {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.album-art-system {
  background:
    radial-gradient(ellipse at 30% 40%, rgba(201, 168, 76, 0.2) 0%, transparent 60%),
    var(--bg-3);
}

.album-art-mint {
  background:
    radial-gradient(ellipse at 70% 60%, rgba(107, 158, 122, 0.2) 0%, transparent 60%),
    var(--bg-3);
}

.album-art-designed {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(176, 122, 138, 0.2) 0%, transparent 60%),
    var(--bg-3);
}

.album-art-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.album-art-glyph {
  font-size: 6rem;
  line-height: 1;
  opacity: 0.15;
  color: var(--text);
}

.album-art-system .album-art-glyph { color: var(--accent); }
.album-art-mint .album-art-glyph { color: var(--mint); }
.album-art-designed .album-art-glyph { color: #b07a8a; }

.album-info {
  padding: var(--space-md);
}

.album-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.album-meta {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.album-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.album-tracklist {
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style: decimal;
  padding-left: 1.2rem;
}

.album-tracklist li {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  list-style-type: decimal;
}

/* ───────────────────────────────────────────────
   14. VIDEOS SECTION
─────────────────────────────────────────────── */
.videos-section {
  padding: var(--space-3xl) 0;
  background: var(--bg-2);
  border-top: var(--border);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
}

.video-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.video-card-facade {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: var(--border);
  background: var(--bg-3);
}

.video-card-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity var(--dur-base) var(--ease),
              transform var(--dur-slow) var(--ease);
}

.video-card-facade:hover .video-card-thumb,
.video-card-facade:focus-visible .video-card-thumb {
  opacity: 0.85;
  transform: scale(1.03);
}

.video-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 15, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-base) var(--ease);
}

.video-card-facade:hover .video-card-overlay,
.video-card-facade:focus-visible .video-card-overlay {
  background: rgba(10, 10, 15, 0.25);
}

.video-card-play {
  font-size: 1.8rem;
  color: var(--accent);
  opacity: 0.8;
  transition: transform var(--dur-base) var(--ease),
              opacity var(--dur-base) var(--ease);
}

.video-card-facade:hover .video-card-play,
.video-card-facade:focus-visible .video-card-play {
  transform: scale(1.15);
  opacity: 1;
}

.video-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.video-card-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ───────────────────────────────────────────────
   15. VELVET REPLY SECTION
─────────────────────────────────────────────── */
.velvet-section {
  padding: var(--space-3xl) 0;
  background: var(--bg-3);
  border-top: var(--border);
  border-bottom: var(--border);
}

.velvet-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (max-width: 900px) {
  .velvet-layout {
    grid-template-columns: 1fr;
  }

  .velvet-visual {
    order: -1;
  }
}

.velvet-text {
  /* text side */
}

.velvet-visual {
  overflow: hidden;
  border-radius: 2px;
}

.velvet-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  aspect-ratio: 3 / 4;
}

.velvet-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: var(--space-sm);
}

.velvet-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--text);
  margin-bottom: var(--space-md);
}

.velvet-body {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.velvet-body em {
  color: var(--mint);
  font-style: italic;
}

.velvet-quote {
  border-left: 2px solid var(--mint);
  padding-left: var(--space-md);
  text-align: left;
  max-width: 480px;
}

.velvet-quote p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: var(--space-xs);
}

.velvet-quote footer {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mint);
}

/* ───────────────────────────────────────────────
   16. CONNECT SECTION
─────────────────────────────────────────────── */
.connect-section {
  padding: var(--space-3xl) 0;
  background: var(--bg);
  border-top: var(--border);
}

.connect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.connect-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-lg) var(--space-md);
  background: var(--bg-2);
  border: var(--border);
  border-radius: var(--radius-md);
  transition: border-color var(--dur-base) var(--ease),
              background var(--dur-base) var(--ease),
              transform var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease);
  text-align: center;
}

.connect-card:hover,
.connect-card:focus-visible {
  border-color: rgba(201, 168, 76, 0.35);
  background: var(--bg-3);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.connect-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.connect-icon svg {
  width: 100%;
  height: 100%;
}

.connect-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.connect-handle {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text);
}

.connect-hashtag {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

/* ───────────────────────────────────────────────
   17. FOOTER
─────────────────────────────────────────────── */
.site-footer {
  padding: var(--space-xl) 0;
  background: var(--bg-2);
  border-top: var(--border);
}

.footer-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  text-align: center;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-muted);
  font-style: italic;
  max-width: 500px;
}

/* ───────────────────────────────────────────────
   18. VIDEO MODAL
─────────────────────────────────────────────── */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.video-modal[hidden] {
  display: none;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.video-modal-inner {
  position: relative;
  width: 100%;
  max-width: 900px;
  z-index: 1;
}

.video-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  border: var(--border);
  border-radius: 50%;
  background: rgba(10, 10, 15, 0.85);
  transition: color var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease);
}

.video-modal-close:hover,
.video-modal-close:focus-visible {
  color: var(--accent);
  border-color: var(--accent);
}

@media (max-width: 600px) {
  .video-modal-close {
    top: 8px;
    right: 8px;
    z-index: 10;
    color: var(--text);
    border-color: rgba(240, 236, 228, 0.4);
    background: rgba(10, 10, 15, 0.9);
  }
}

.video-modal-player {
  aspect-ratio: 16 / 9;
  background: var(--bg);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.video-modal-player iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ───────────────────────────────────────────────
   18b. PHOTO MODAL
─────────────────────────────────────────────── */
.photo-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.photo-modal[hidden] {
  display: none;
}

.photo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.photo-modal-inner {
  position: relative;
  width: 100%;
  max-width: 1000px;
  max-height: 90vh;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.photo-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  border: var(--border);
  border-radius: 50%;
  background: rgba(10, 10, 15, 0.85);
  cursor: pointer;
  transition: color var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease);
}

.photo-modal-close:hover,
.photo-modal-close:focus-visible {
  color: var(--accent);
  border-color: var(--accent);
}

@media (max-width: 600px) {
  .photo-modal-close {
    top: 8px;
    right: 8px;
    z-index: 10;
    color: var(--text);
    border-color: rgba(240, 236, 228, 0.4);
    background: rgba(10, 10, 15, 0.9);
  }
}

.photo-modal-prev,
.photo-modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.5rem;
  border: var(--border);
  border-radius: 50%;
  background: rgba(10, 10, 15, 0.6);
  cursor: pointer;
  transition: color var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease),
              background var(--dur-base) var(--ease);
  z-index: 2;
}

.photo-modal-prev { left: -60px; }
.photo-modal-next { right: -60px; }

.photo-modal-prev:hover,
.photo-modal-prev:focus-visible,
.photo-modal-next:hover,
.photo-modal-next:focus-visible {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(10, 10, 15, 0.85);
}

.photo-modal-figure {
  margin: 0;
  max-height: calc(90vh - 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.photo-modal-img {
  max-width: 100%;
  max-height: calc(90vh - 120px);
  object-fit: contain;
  border-radius: var(--radius-md);
  display: block;
}

.photo-modal-caption {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-top: 0.75rem;
  text-align: center;
  max-width: 600px;
}

.photo-modal-counter {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

@media (max-width: 1100px) {
  .photo-modal-prev { left: 8px; }
  .photo-modal-next { right: 8px; }
}

@media (max-width: 600px) {
  .photo-modal-prev,
  .photo-modal-next {
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
  }

  .photo-modal-inner {
    max-width: 100%;
  }
}

/* ───────────────────────────────────────────────
   19. PRINT STYLES
─────────────────────────────────────────────── */
@media print {
  body {
    background: #fff;
    color: #000;
  }

  .site-header,
  .cursor,
  .cursor-follower,
  .hero-grain,
  .hero-scroll-hint,
  .lyric-controls,
  .video-facade,
  .video-stage,
  .connect-grid,
  .video-modal,
  .photo-modal,
  #video-player-container {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
  }

  .hero-title,
  .section-title,
  .album-title {
    color: #000;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.7rem;
    color: #555;
  }

  .connect-card a[href]::after {
    display: none;
  }
}

/* ───────────────────────────────────────────────
   HERO BACKGROUND PHOTO
─────────────────────────────────────────────── */
.hero {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* ───────────────────────────────────────────────
   ABOUT — REAL PORTRAIT PHOTO
─────────────────────────────────────────────── */
.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 2px;
}

.about-visual {
  overflow: hidden;
  border-radius: 2px;
  min-height: 320px;
}

/* ───────────────────────────────────────────────
   ALBUM COVERS
─────────────────────────────────────────────── */
.album-cover-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.album-cover-link::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background var(--dur-base) var(--ease);
}

.album-cover-link:hover::after,
.album-cover-link:focus-visible::after {
  background: rgba(0, 0, 0, 0.25);
}

.album-cover-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

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

/* ───────────────────────────────────────────────
   PLAYLIST THUMBNAILS
─────────────────────────────────────────────── */
.playlist-thumb {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
  margin-right: 0.75rem;
}

/* ───────────────────────────────────────────────
   PRESS / PHOTOS SECTION
─────────────────────────────────────────────── */
.press-section {
  padding: var(--space-2xl) 0;
  background: var(--bg-2);
}

.press-group-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  margin-top: 3rem;
}

.press-group-label:first-of-type {
  margin-top: 0;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.press-grid--nerdcore {
  grid-template-columns: repeat(3, 1fr);
}

.press-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4 / 3;
  background: var(--surface, #1a1828);
}

.press-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.press-photo:hover img {
  transform: scale(1.04);
}

.press-photo[role="button"] {
  cursor: pointer;
}

.press-photo:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .press-photo img {
    transition: none;
  }
}

@media (max-width: 600px) {
  .press-grid,
  .press-grid--nerdcore {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── Back to Top ─── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 200;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-2);
  border: 1px solid var(--accent);
  color: var(--accent);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
  pointer-events: none;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 0 20px var(--accent-glow);
  outline: none;
}

.back-to-top svg {
  width: 18px;
  height: 18px;
}

/* ── footer badge row ── */
.footer-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

/* ── humanXai badge ── */
.footer-hx-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.75;
  transition: opacity 280ms ease;
}
.footer-hx-badge:hover { opacity: 1; }
.footer-hx-logo {
  height: 48px;
  width: auto;
}

/* ── Z&A Records badge ── */
.footer-label-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.75;
  transition: opacity 280ms ease;
}
.footer-label-badge:hover { opacity: 1; }
.footer-label-logo {
  height: 48px;
  width: auto;
}

/* ───────────────────────────────────────────────
   20. RADIO SECTION
─────────────────────────────────────────────── */
.radio-section {
  padding: var(--space-2xl) 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.radio-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.radio-cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 3.5rem 2.5rem;
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: var(--bg-2);
  position: relative;
}

.radio-cta-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 80% at 50% 0%, rgba(212, 175, 55, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.radio-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.radio-pulse {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.radio-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: radio-pulse-anim 1.8s ease-in-out infinite;
}

@keyframes radio-pulse-anim {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.5; }
}

@media (prefers-reduced-motion: reduce) {
  .radio-pulse-dot { animation: none; }
}

.radio-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.radio-cta-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.radio-cta-body {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--text-faint, rgba(255,255,255,0.35));
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

.radio-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.25rem;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--dur-base) var(--ease), color var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}

.radio-cta-btn:hover,
.radio-cta-btn:focus-visible {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 0 28px var(--accent-glow);
  outline: none;
}

/* ───────────────────────────────────────────────
   21. ALBUM SUBSECTION LABELS
─────────────────────────────────────────────── */
.albums-subsection-label {
  grid-column: 1 / -1;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  margin-bottom: 0.5rem;
  margin-top: 2rem;
}

.albums-subsection-label:first-of-type {
  margin-top: 0;
}

/* ───────────────────────────────────────────────
   22. COMING SOON ALBUM CARD
─────────────────────────────────────────────── */
.album-card--coming-soon {
  border-color: rgba(180, 210, 255, 0.2);
}

.album-card--coming-soon .album-art-wrap {
  filter: saturate(0.4) brightness(0.7);
}

.album-card--coming-soon .album-title {
  color: rgba(200, 220, 255, 0.9);
}

.album-coming-soon-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(180, 210, 255, 0.8);
  border: 1px solid rgba(180, 210, 255, 0.3);
  padding: 0.2em 0.6em;
  margin-bottom: 0.5rem;
}

/* ───────────────────────────────────────────────
   23. VELVET REPLY EXPANDED SPOTLIGHT
─────────────────────────────────────────────── */
.velvet-expanded .velvet-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  padding-bottom: 0.1em;
  transition: color var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease);
}

.velvet-expanded .velvet-cta:hover,
.velvet-expanded .velvet-cta:focus-visible {
  color: #fff;
  border-color: #fff;
  outline: none;
}

/* ───────────────────────────────────────────────
   24. FOOTER YOUTUBE TEXT LINK
─────────────────────────────────────────────── */
.footer-yt-link {
  display: block;
  text-align: center;
  margin-top: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--text-faint, rgba(255,255,255,0.3));
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-yt-link:hover,
.footer-yt-link:focus-visible {
  color: var(--text-muted);
  outline: none;
}
