/* ============================================================
   LISTEN VINYL — Main Stylesheet
   Retrofuturism Space Age Aesthetic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&family=Space+Mono:ital,wght@0,400;0,700;1,400&display=swap');

/* ── Custom Properties ──────────────────────────────────────── */
:root {
  /* Palette */
  --black:        #07090F;
  --space:        #0A0E1A;
  --navy:         #0E1628;
  --card-bg:      #111827;
  --card-border:  #1C2A40;
  --muted-blue:   #253550;
  --text:         #DDD8CC;
  --text-dim:     #8A9DB8;
  --text-faint:   #4A5A70;
  --amber:        #D4A843;
  --amber-light:  #F0C86A;
  --amber-dark:   #A07C28;
  --teal:         #00C8AF;
  --teal-dark:    #008F7D;
  --teal-faint:   #003D35;
  --red:          #E05252;
  --white:        #F5F0E8;

  /* Typography */
  --font-display: 'Orbitron', 'Courier New', monospace;
  --font-body:    'Space Grotesk', system-ui, sans-serif;
  --font-mono:    'Space Mono', monospace;

  /* Spacing */
  --gap:     clamp(1rem, 3vw, 2rem);
  --section: clamp(4rem, 8vw, 8rem);

  /* Effects */
  --glow-amber: 0 0 40px rgba(212,168,67,0.15);
  --glow-teal:  0 0 40px rgba(0,200,175,0.15);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.5);
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--space);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--amber);
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}
a:hover { color: var(--amber-light); }

/* ── Utility ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 3rem);
}

.container--narrow {
  max-width: 780px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

.tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3em 0.8em;
  border-radius: 2px;
  border: 1px solid;
}
.tag--amber {
  color: var(--amber);
  border-color: var(--amber-dark);
  background: rgba(212,168,67,0.08);
}
.tag--teal {
  color: var(--teal);
  border-color: var(--teal-dark);
  background: rgba(0,200,175,0.08);
}
.tag--muted {
  color: var(--text-dim);
  border-color: var(--muted-blue);
  background: rgba(37,53,80,0.4);
}

/* ── Header / Nav ────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,14,26,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 2rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text .listen {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.logo-text .vinyl {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.site-nav a {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 0.5rem 0.75rem;
  border-radius: 3px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--amber);
  background: rgba(212,168,67,0.06);
}

.nav-cta {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber) !important;
  border: 1px solid var(--amber-dark);
  padding: 0.45rem 1rem !important;
  border-radius: 3px;
  background: rgba(212,168,67,0.05) !important;
  transition: background 0.2s, border-color 0.2s !important;
}
.nav-cta:hover {
  background: rgba(212,168,67,0.15) !important;
  border-color: var(--amber) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--card-border);
  color: var(--text);
  padding: 0.4rem 0.6rem;
  border-radius: 3px;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
  /* Left-to-right gradient: dark left, slightly less dark right */
  background: linear-gradient(110deg, #04060D 0%, #07090F 50%, #0A0D18 100%);
}

/* Subtle left vignette so text is always readable */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(4,6,13,0.7) 0%,
    rgba(4,6,13,0.3) 45%,
    transparent 60%
  );
  z-index: 0;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Vinyl groove rings — pure CSS */
.hero-bg::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
  width: min(90vh, 900px);
  height: min(90vh, 900px);
  border-radius: 50%;
  background: 
    radial-gradient(ellipse at center,
      transparent 28%,
      rgba(212,168,67,0.04) 28.5%,
      transparent 29%,
      transparent 32%,
      rgba(212,168,67,0.03) 32.5%,
      transparent 33%,
      transparent 37%,
      rgba(212,168,67,0.025) 37.5%,
      transparent 38%,
      transparent 42%,
      rgba(212,168,67,0.02) 42.5%,
      transparent 43%,
      transparent 47%,
      rgba(0,200,175,0.015) 47.5%,
      transparent 48%,
      transparent 52%,
      rgba(0,200,175,0.01) 52.5%,
      transparent 53%,
      transparent 57%,
      rgba(212,168,67,0.008) 57.5%,
      transparent 58%
    );
  animation: groove-spin 120s linear infinite;
}

/* Starburst / atomic ring */
.hero-bg::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
  width: min(90vh, 900px);
  height: min(90vh, 900px);
  border-radius: 50%;
  border: 1px solid rgba(212,168,67,0.08);
  box-shadow: 
    0 0 0 40px rgba(212,168,67,0.02),
    0 0 0 120px rgba(212,168,67,0.015),
    0 0 0 240px rgba(0,200,175,0.01),
    0 0 200px rgba(212,168,67,0.06) inset;
}

@keyframes groove-spin {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: var(--section) 0;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--amber);
  opacity: 0.6;
}
.hero-eyebrow-text {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero-title em {
  font-style: normal;
  color: var(--amber);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.85rem 1.8rem;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn--primary {
  background: var(--amber);
  color: var(--black);
  border-color: var(--amber);
}
.btn--primary:hover {
  background: var(--amber-light);
  border-color: var(--amber-light);
  color: var(--black);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212,168,67,0.3);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--card-border);
}
.btn--outline:hover {
  border-color: var(--text-dim);
  color: var(--white);
  transform: translateY(-1px);
}

/* ── Ticker / Marquee ────────────────────────────────────────── */
.ticker {
  background: var(--navy);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  overflow: hidden;
  padding: 0.7rem 0;
}

.ticker-track {
  display: flex;
  gap: 3rem;
  animation: ticker-scroll 40s linear infinite;
  width: max-content;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  white-space: nowrap;
}
.ticker-item .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--amber);
  opacity: 0.6;
  flex-shrink: 0;
}
.ticker-item:nth-child(3n+1) .dot { background: var(--teal); }
.ticker-item:nth-child(3n+2) .dot { background: var(--amber); }

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Section Styles ──────────────────────────────────────────── */
.section {
  padding: var(--section) 0;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--card-border);
}

.section-title-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.section-eyebrow {
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.section-link {
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.section-link::after {
  content: '→';
  font-size: 0.75rem;
}
.section-link:hover { color: var(--amber-light); }

/* ── Article Cards ────────────────────────────────────────────── */

/* Featured / Hero card */
.card-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card-featured:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.card-featured__art {
  background: var(--navy);
  min-height: 320px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-featured__body {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Grid cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--muted-blue);
}

.card__art {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.card__title {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--white);
  margin-bottom: 0.6rem;
  letter-spacing: 0.01em;
}

.card__excerpt {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.1rem;
}

.card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--card-border);
  font-size: 0.78rem;
  color: var(--text-faint);
  font-family: var(--font-mono);
}

.card__read-more {
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.card__read-more::after { content: '→'; }
.card__read-more:hover { color: var(--amber-light); }

/* ── Vinyl Art Illustrations (CSS) ──────────────────────────── */
.vinyl-art {
  position: relative;
  width: 160px;
  height: 160px;
}
.vinyl-art__disc {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: 
    radial-gradient(circle at 50% 50%,
      #1a1a1a 0%,
      #0f0f0f 10%,
      #252525 10.5%,
      #0c0c0c 11%,
      #1f1f1f 20%,
      #0a0a0a 20.5%,
      #1a1a1a 35%,
      #080808 35.5%,
      #1c1c1c 50%,
      #060606 50.5%,
      #181818 70%,
      #040404 70.5%,
      #141414 100%
    );
  box-shadow: 0 0 60px rgba(0,0,0,0.8), 0 0 20px rgba(212,168,67,0.1);
  position: relative;
}
.vinyl-art__label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 35%;
  height: 35%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vinyl-art__hole {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--space);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

/* Card-specific vinyl art sizes */
.card__art .vinyl-art { width: 100px; height: 100px; opacity: 0.7; }

/* Featured vinyl */
.card-featured__art .vinyl-art {
  width: 220px;
  height: 220px;
  transform: rotate(-10deg);
  transition: transform 0.4s;
}
.card-featured:hover .vinyl-art {
  transform: rotate(-5deg) scale(1.04);
}

/* ── Atomic Ornament ─────────────────────────────────────────── */
.atomic-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212,168,67,0.12);
  pointer-events: none;
}

/* ── About Strip ─────────────────────────────────────────────── */
.about-strip {
  background: var(--navy);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: var(--section) 0;
  position: relative;
  overflow: hidden;
}

.about-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(28,42,64,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28,42,64,0.3) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.about-strip::after {
  content: '';
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(212,168,67,0.06);
  box-shadow:
    0 0 0 40px rgba(212,168,67,0.02),
    0 0 0 80px rgba(0,200,175,0.015);
  pointer-events: none;
}

.about-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-strip__heading {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.about-strip__heading em {
  font-style: normal;
  color: var(--amber);
}

.about-strip__text {
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-size: 0.97rem;
}

.about-strip__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat {
  text-align: center;
  padding: 1rem;
  border: 1px solid var(--card-border);
  border-radius: 4px;
  background: rgba(7,9,15,0.4);
}
.stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat__label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.52rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ── Newsletter Strip ────────────────────────────────────────── */
.newsletter {
  background: linear-gradient(135deg, rgba(212,168,67,0.06) 0%, rgba(0,200,175,0.04) 100%);
  border-top: 1px solid rgba(212,168,67,0.12);
  border-bottom: 1px solid rgba(0,200,175,0.08);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 38px,
    rgba(212,168,67,0.015) 38px,
    rgba(212,168,67,0.015) 39px
  );
  pointer-events: none;
}

.newsletter__inner {
  max-width: 600px;
  text-align: center;
}

.newsletter__eyebrow {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.newsletter__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.newsletter__text {
  color: var(--text-dim);
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
}

.newsletter__form {
  display: flex;
  gap: 0.75rem;
  max-width: 460px;
  margin: 0 auto;
}

.newsletter__input {
  flex: 1;
  background: var(--navy);
  border: 1px solid var(--card-border);
  border-radius: 3px;
  padding: 0.75rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter__input::placeholder { color: var(--text-faint); }
.newsletter__input:focus { border-color: var(--amber-dark); }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--card-border);
  padding: clamp(2.5rem, 5vw, 4rem) 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  color: var(--text-dim);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 260px;
}

.footer-nav h4 {
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 1rem;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  font-size: 0.88rem;
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--amber); }

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

.footer-bottom p {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-faint);
}

/* ── Hero Vinyl Disc (right side) ───────────────────────────── */
.hero-vinyl {
  pointer-events: none;
  z-index: 0;
}

/* Amber glow beneath disc */
.hero-vinyl::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,0.08) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
}

.hero-vinyl__disc {
  width: clamp(380px, 45vw, 560px);
  height: clamp(380px, 45vw, 560px);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%,
      transparent 0%,
      transparent 28%,
      #0d0d0d 28.5%, #1a1a1a 30%, #080808 30.5%,
      #191919 34%, #060606 34.5%, #151515 38%,
      #040404 38.5%, #121212 43%, #030303 43.5%,
      #0f0f0f 48%, #020202 48.5%, #0d0d0d 54%,
      #010101 54.5%, #0b0b0b 59%, #010101 59.5%,
      #090909 65%, #000000 65.5%, #070707 72%,
      #000000 72.5%, #050505 80%, #000000 80.5%,
      #030303 88%, #000000 88.5%, #020202 100%
    );
  box-shadow:
    0 0 120px rgba(0,0,0,0.95),
    0 0 60px rgba(212,168,67,0.06),
    0 0 1px rgba(212,168,67,0.15);
  position: relative;
  animation: disc-idle 30s linear infinite;
}

.hero-vinyl__label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 29%;
  height: 29%;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #8B1A1A, #3D0808);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 0 6%;
}

.hero-vinyl__label-text {
  font-family: var(--font-display);
  font-size: clamp(0.22rem, 0.4vw, 0.32rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(232,192,96,0.9);
  line-height: 1.3;
}

.hero-vinyl__hole {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.8%;
  height: 1.8%;
  border-radius: 50%;
  background: var(--space);
}

.hero-vinyl__sheen {
  position: absolute;
  top: 8%;
  left: 12%;
  width: 22%;
  height: 40%;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), transparent);
  border-radius: 50%;
  pointer-events: none;
}

/* Orbit rings around hero vinyl */
.hero-vinyl__orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(212,168,67,0.06);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

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

/* ── Section: Discovery Strip ────────────────────────────────── */
.discovery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.card--horizontal {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0;
}
.card--horizontal .card__art {
  aspect-ratio: auto;
  min-height: 120px;
}
.card--horizontal .card__body {
  padding: 1rem 1.25rem;
}

/* ── Misc decorative ─────────────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0.5rem 0;
}
.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--card-border);
}
.divider-icon {
  color: var(--amber);
  opacity: 0.5;
  font-size: 0.8rem;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .card-featured { grid-template-columns: 1fr; }
  .card-featured__art { min-height: 220px; }
  .about-strip__inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .discovery-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .site-nav { display: none; }
  .site-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--black);
    border-bottom: 1px solid var(--card-border);
    padding: 1rem;
    gap: 0.25rem;
  }
  .nav-toggle { display: block; }
  .cards-grid { grid-template-columns: 1fr; }
  .newsletter__form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-bg::before, .hero-bg::after { right: -40%; opacity: 0.5; }
  .about-strip__stats { grid-template-columns: 1fr 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 400px) {
  .hero-title { font-size: 2rem; }
  .about-strip__stats { grid-template-columns: 1fr; }
}

/* ── Card hover accent line ─────────────────────────────────── */
.card::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--teal));
  opacity: 0;
  transition: opacity 0.3s;
}
.card:hover::before { opacity: 1; }

/* ── Card Art Themes ─────────────────────────────────────────── */
.art--blue-note {
  background: linear-gradient(135deg, #0A1628 0%, #152040 40%, #0A1628 100%);
}
.art--gear {
  background: linear-gradient(135deg, #12100A 0%, #1E1A0F 40%, #0A0E0C 100%);
}
.art--discovery {
  background: linear-gradient(135deg, #080D18 0%, #0E1525 40%, #06100C 100%);
}
.art--jazz {
  background: linear-gradient(135deg, #14080A 0%, #1E0F12 40%, #0A0A14 100%);
}

.art-label--blue-note { background: radial-gradient(circle, #1a3a6e, #0a1e40); }
.art-label--columbia { background: radial-gradient(circle, #8B1A1A, #500E0E); }
.art-label--xo       { background: radial-gradient(circle, #1a4a3a, #0a2820); }

/* Gear icon art */
.gear-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gear-art__platter {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a2218, #1a160e);
  border: 3px solid #3a3020;
  position: relative;
  box-shadow: 0 0 20px rgba(212,168,67,0.15);
}
.gear-art__platter::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 60%;
  height: 60%;
  border-radius: 50%;
  border: 1px solid rgba(212,168,67,0.2);
}
.gear-art__arm {
  position: absolute;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #3a3020, #D4A843);
  top: 30%;
  right: 20%;
  transform-origin: right center;
  transform: rotate(-30deg);
  border-radius: 2px;
}

/* Number badges */
.card__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--amber-dark);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--amber);
  background: rgba(212,168,67,0.08);
  flex-shrink: 0;
}
