/* ============================================================
   WISDOM SPEEKS — GET TO IT | Official Single Release Website
   Go Go Records LLC | DMV / Washington, DC
   ============================================================ */

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

:root {
  /* ── Pulled directly from the album cover ── */
  --red:        #C9960C;   /* molten gold — replaces red as primary action */
  --red-dark:   #9A6E08;   /* deep gold for hover states */
  --gold:       #F0C040;   /* bright title-style gold */
  --gold-light: #FFE07A;   /* highlight shimmer */
  --gold-dark:  #8B6200;   /* deep amber shadow */
  --amber:      #B87333;   /* warm copper/whiskey tone */
  --spotlight:  #E8A020;   /* dramatic back-light orange-gold */
  --black:      #08070A;   /* near-black deep sky */
  --dark:       #100F14;   /* rich dark background */
  --dark2:      #1A1820;   /* card backgrounds */
  --dark3:      #242230;   /* elevated surfaces */
  --gray:       #2E2C38;   /* borders */
  --gray2:      #5A5670;   /* muted text */
  --light-gray: #A09CB8;   /* secondary text */
  --white:      #FFFFFF;
  --off-white:  #F2EFE8;   /* warm paper white */
  --dc-green:   #2E7D4F;   /* kept for success states */

  --font-display: 'Bebas Neue', 'Oswald', sans-serif;
  --font-heading: 'Oswald', 'Inter', sans-serif;
  --font-body:    'Inter', sans-serif;

  --transition: 0.3s ease;
  --radius:     8px;
  --radius-lg:  16px;
  --shadow:     0 4px 24px rgba(0,0,0,0.6);
  --shadow-lg:  0 8px 48px rgba(0,0,0,0.8);
  --glow-red:   0 0 40px rgba(201,150,12,0.55);  /* gold glow */
  --glow-gold:  0 0 40px rgba(240,192,64,0.55);  /* bright gold glow */
  --glow-amber: 0 0 40px rgba(184,115,51,0.4);   /* amber glow */
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
input, textarea, select, button { font-family: var(--font-body); }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header.light .section-title { color: var(--white); }
.section-header.light .section-eyebrow { color: var(--gold); }

.section-eyebrow {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1;
}

.section-title .accent { color: var(--gold); }
.section-title .accent-gold { color: var(--gold); }

.section-subtitle {
  margin-top: 16px;
  color: var(--light-gray);
  font-size: 1rem;
}
.section-subtitle-dark {
  margin-top: 16px;
  color: var(--gray2);
  font-size: 1rem;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
  background: rgba(8,7,10,0.97);
  box-shadow: 0 2px 20px rgba(201,150,12,0.2);
  backdrop-filter: blur(12px);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-ws {
  width: 42px; height: 42px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 1px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
}

.nav-links a:hover { color: var(--gold); }
.nav-links .nav-cta {
  background: linear-gradient(90deg, var(--gold-dark), var(--spotlight));
  color: var(--black) !important;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 700;
}
.nav-links .nav-cta:hover { background: linear-gradient(90deg, var(--spotlight), var(--gold)); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/cover-art.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(8,7,10,0.35) 0%,
      rgba(8,7,10,0.55) 40%,
      rgba(8,7,10,0.80) 75%,
      rgba(8,7,10,0.97) 100%
    ),
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201,150,12,0.12) 0%, transparent 70%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.label-badge {
  background: linear-gradient(90deg, var(--gold-dark), var(--spotlight));
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 5px 14px;
  border-radius: 20px;
}

.label-date {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold);
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 0.9;
  margin-bottom: 16px;
}

.title-artist {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 14vw, 11rem);
  font-weight: 400;
  letter-spacing: 4px;
  color: var(--white);
  text-transform: uppercase;
  text-shadow:
    0 0 80px rgba(201,150,12,0.7),
    0 0 30px rgba(240,192,64,0.4),
    0 4px 24px rgba(0,0,0,0.9);
  line-height: 0.9;
  margin-bottom: 4px;
}

.title-single {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 8px;
  color: var(--gold);
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(240,192,64,0.6);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 2px;
  margin-top: 16px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.hero-tagline {
  font-size: 1rem;
  font-style: italic;
  color: var(--light-gray);
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
}

.tag {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(90deg, var(--gold-dark), var(--spotlight));
  color: var(--black);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: linear-gradient(90deg, var(--spotlight), var(--gold));
  transform: translateY(-2px);
  box-shadow: var(--glow-gold);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-ghost:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--glow-gold);
}

/* ===== HERO SPECS ===== */
.hero-specs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 20px 32px;
  max-width: 720px;
  margin: 0 auto;
}

.spec-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 24px;
}

.spec-val {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.spec-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--light-gray);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.spec-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

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

/* ===== ANNIVERSARY BANNER ===== */
.anniversary-banner {
  background: linear-gradient(90deg, #8B6200 0%, #C9960C 30%, #F0C040 50%, #C9960C 70%, #8B6200 100%);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}

.banner-inner {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  animation: marquee 30s linear infinite;
  padding-left: 100%;
}

.banner-inner i { color: var(--dark); font-size: 10px; }

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

/* ===== ABOUT SECTION ===== */
.about-section {
  background: linear-gradient(180deg, var(--black) 0%, #0E0C12 50%, var(--black) 100%);
}

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

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, #1A1510 0%, #2A2010 50%, #0E0C08 100%);
  border: 2px solid rgba(201,150,12,0.4);
  box-shadow: 0 0 60px rgba(201,150,12,0.12), 0 16px 48px rgba(0,0,0,0.5);
}

/* Real artist photo */
.about-artist-photo {
  width: 100%;
  display: block;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 5%;
  border-radius: var(--radius-lg);
  transition: transform 0.5s ease;
  box-shadow: 0 8px 40px rgba(201, 150, 12, 0.25), 0 0 0 1px rgba(201, 150, 12, 0.15);
}

.about-image-wrap:hover .about-artist-photo {
  transform: scale(1.03);
}

/* Keep placeholder styles in case needed as fallback */
.about-image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #1A1510 0%, #2A2010 50%, #0E0C08 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--white);
  box-shadow: inset 0 0 60px rgba(201,150,12,0.08);
}

.about-image-placeholder i {
  font-size: 80px;
  color: var(--gold);
  opacity: 0.7;
}

.about-image-placeholder span {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 3px;
}
.about-image-placeholder .img-sub {
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--light-gray);
  letter-spacing: 0;
}

.about-image-badge {
  position: absolute;
  bottom: 16px; left: 16px;
  background: linear-gradient(90deg, var(--gold-dark), var(--spotlight));
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.stat-box {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 16px 12px;
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--gold);
  line-height: 1;
}

.stat-num sup { font-size: 14px; }

.stat-desc {
  display: block;
  font-size: 11px;
  color: var(--light-gray);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.about-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-body {
  color: var(--light-gray);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--off-white);
  font-size: 0.9rem;
}
.highlight-item i { color: var(--gold); font-size: 14px; flex-shrink: 0; }

.about-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
}

.social-link.web { background: rgba(200,16,46,0.15); border: 1px solid rgba(200,16,46,0.3); color: var(--red); }
.social-link.ig { background: rgba(131,58,180,0.15); border: 1px solid rgba(131,58,180,0.3); color: #c13584; }
.social-link.email { background: rgba(212,175,55,0.15); border: 1px solid rgba(212,175,55,0.3); color: var(--gold); }
.social-link:hover { transform: translateY(-2px); opacity: 0.9; }

/* ===== SINGLE SECTION ===== */
.single-section {
  background: linear-gradient(180deg, var(--black) 0%, #0E0D10 100%);
}

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

.single-art-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.single-art-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background-image: url('../images/cover-art.jpg');
  background-size: cover;
  background-position: center top;
  border: 2px solid rgba(201,150,12,0.5);
  border-radius: var(--radius-lg);
  box-shadow:
    0 0 60px rgba(201,150,12,0.35),
    0 0 120px rgba(184,115,51,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.art-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding: 24px;
  background: rgba(8,7,10,0.0);
  width: 100%;
  height: 100%;
  justify-content: flex-end;
}

.art-title {
  display: none;
}

.art-artist {
  display: none;
}

.art-ft {
  display: none;
}

.art-logo {
  display: none;
}

.single-play-btn {
  position: absolute;
  bottom: -20px;
  right: 24px;
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--spotlight));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--black);
  cursor: pointer;
  box-shadow: var(--glow-gold);
  transition: var(--transition);
  border: 3px solid var(--black);
  z-index: 2;
}
.single-play-btn:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: scale(1.1);
}

/* ===== AUDIO PREVIEW PLAYER ===== */
.audio-player {
  display: none;
  background: var(--dark2);
  border: 1px solid rgba(201,150,12,0.3);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 32px;
  box-shadow: 0 4px 20px rgba(201,150,12,0.1);
}
.audio-player.active { display: block; animation: fadeInUp 0.3s ease; }
.audio-info { margin-bottom: 10px; }
.audio-title {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--gold);
  letter-spacing: 1px;
}
.audio-artist {
  display: block;
  font-size: 11px;
  color: var(--light-gray);
  margin-top: 2px;
}
.audio-progress-wrap { margin-bottom: 8px; }
.audio-progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
  margin-bottom: 6px;
}
.audio-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--spotlight));
  border-radius: 4px;
  transition: width 0.1s linear;
}
.audio-time {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--light-gray);
}
.audio-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}
.audio-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--spotlight));
  border: none;
  color: var(--black);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.audio-btn:hover { transform: scale(1.1); }
.audio-volume {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.audio-volume input[type="range"] {
  width: 100%;
  accent-color: var(--gold);
  cursor: pointer;
}
.audio-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold);
  background: rgba(201,150,12,0.1);
  border: 1px solid rgba(201,150,12,0.3);
  padding: 3px 8px;
  border-radius: 20px;
  white-space: nowrap;
}

.single-tech-specs {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 40px;
}

.single-tech-specs h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,150,12,0.25);
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 13px;
}
.spec-row span:first-child { color: var(--light-gray); }
.spec-row span:last-child { color: var(--white); font-weight: 600; text-align: right; }

.single-quote {
  background: linear-gradient(135deg, rgba(201,150,12,0.12), rgba(184,115,51,0.06));
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--off-white);
  margin-bottom: 36px;
}

.single-content-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.sonic-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

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

.sonic-icon {
  width: 44px; height: 44px;
  background: rgba(201,150,12,0.15);
  border: 1px solid rgba(201,150,12,0.35);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}

.sonic-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.sonic-text p { font-size: 0.85rem; color: var(--light-gray); margin: 0; }

.single-radio-fit, .single-why {
  margin-bottom: 24px;
}

.single-radio-fit h4, .single-why h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.format-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.format-tag {
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 4px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--off-white);
  line-height: 1.4;
}
.why-list li i { color: var(--gold); font-size: 12px; margin-top: 3px; flex-shrink: 0; }

/* ===== BUY SECTION ===== */
.buy-section {
  background: linear-gradient(180deg, #08070A 0%, #130F08 40%, #1A1508 70%, #08070A 100%);
}

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

.buy-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.buy-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,150,12,0.5);
  box-shadow: 0 12px 48px rgba(201,150,12,0.2);
}

.buy-card.featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, #1A1810 0%, #241E08 60%, #1A1810 100%);
  box-shadow: 0 0 50px rgba(201,150,12,0.2);
  transform: scale(1.04);
}

.buy-card.featured:hover {
  transform: scale(1.04) translateY(-6px);
  box-shadow: 0 16px 60px rgba(240,192,64,0.3);
}

.buy-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.buy-card-badge.gold { background: linear-gradient(90deg, var(--gold-dark), var(--gold)); color: var(--black); }
.buy-card-badge.red  { background: var(--spotlight); color: var(--black); }

.buy-card-icon {
  width: 64px; height: 64px;
  background: rgba(201,150,12,0.12);
  border: 1px solid rgba(201,150,12,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 16px;
}

.buy-card.featured .buy-card-icon {
  background: rgba(240,192,64,0.15);
  border-color: rgba(240,192,64,0.45);
  color: var(--gold-light);
}

.buy-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 8px;
}

.buy-card-price {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(201,150,12,0.4);
}

.buy-card.featured .buy-card-price { color: var(--gold-light); text-shadow: 0 0 30px rgba(240,192,64,0.5); }

.buy-card-features {
  text-align: left;
  margin-bottom: 28px;
  width: 100%;
  flex: 1;
}

.buy-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--light-gray);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  line-height: 1.5;
}

.buy-card-features li strong {
  color: var(--white);
}

.buy-card-features li em {
  color: var(--gold);
  font-style: italic;
}

.buy-card-features li i { color: var(--dc-green); font-size: 12px; flex-shrink: 0; margin-top: 3px; }

.btn-buy {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(90deg, var(--gold-dark), var(--spotlight));
  color: var(--black);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
}

.btn-buy:hover { background: linear-gradient(90deg, var(--spotlight), var(--gold)); transform: translateY(-2px); box-shadow: var(--glow-gold); }
.btn-buy.gold { background: linear-gradient(90deg, var(--gold), var(--gold-light)); color: var(--black); }
.btn-buy.gold:hover { background: linear-gradient(90deg, var(--gold-light), var(--gold)); }
.btn-buy.red  { background: linear-gradient(90deg, var(--amber), var(--spotlight)); color: var(--black); }
.btn-buy.red:hover { background: linear-gradient(90deg, var(--spotlight), var(--amber)); }

.buy-notice {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray2);
  line-height: 1.8;
}
.buy-notice a { color: var(--gold); }
.buy-notice a:hover { text-decoration: underline; }
.buy-notice i { color: var(--dc-green); margin-right: 4px; }

/* ===== CHECKOUT MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(8px);
  overflow-y: auto;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 520px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: var(--gold-dark); color: var(--black); }

.modal-header {
  text-align: center;
  margin-bottom: 28px;
}
.modal-header h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 8px;
}
.modal-header p {
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 600;
}
.modal-price {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-top: 8px;
  text-shadow: 0 0 20px rgba(201,150,12,0.4);
}

/* ===== FORM STYLES ===== */
.checkout-form, .contact-form, .mailing-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-group label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--light-gray);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--white);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: rgba(201,150,12,0.06);
}

.form-group select option { background: var(--dark2); color: var(--white); }
.form-group small { font-size: 11px; color: var(--gray2); }

.form-row { width: 100%; }
.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.card-input-wrap { position: relative; }
.card-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray2);
}
.card-input-wrap input { padding-left: 40px; }

.checkbox-group { flex-direction: row !important; align-items: center !important; }
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--light-gray);
  cursor: pointer;
}
.checkbox-label input { width: auto; accent-color: var(--red); }

.order-summary {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 16px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 4px 0;
  color: var(--light-gray);
}
.summary-row.total {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 8px;
  padding-top: 12px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

.btn-checkout {
  padding: 16px 24px;
  background: linear-gradient(90deg, var(--gold-dark), var(--spotlight));
  color: var(--black);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-checkout:hover { background: linear-gradient(90deg, var(--spotlight), var(--gold)); transform: translateY(-2px); box-shadow: var(--glow-gold); }
.btn-checkout:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.checkout-security {
  text-align: center;
  font-size: 12px;
  color: var(--gray2);
  letter-spacing: 1px;
}
.checkout-security i { color: var(--dc-green); }

/* SendOwl intro message */
.sendowl-intro {
  background: rgba(201, 150, 12, 0.08);
  border: 1px solid rgba(201, 150, 12, 0.2);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 13px;
  color: var(--light-gray);
  margin-bottom: 20px;
  line-height: 1.5;
}
.sendowl-intro i { color: var(--gold); margin-right: 6px; }
.sendowl-intro strong { color: var(--gold); }

/* ===== SUCCESS MODAL ===== */
.success-box {
  text-align: center;
}
.success-icon {
  font-size: 64px;
  color: var(--dc-green);
  margin-bottom: 20px;
  animation: popIn 0.5s cubic-bezier(0.68,-0.55,0.265,1.55);
}
@keyframes popIn {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.success-box h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 12px;
}
.success-box p { color: var(--light-gray); font-size: 0.95rem; margin-bottom: 8px; }
.success-sub { color: var(--gold) !important; font-size: 1rem !important; margin-bottom: 24px !important; }

/* ===== STREAM SECTION ===== */
.stream-section {
  background: linear-gradient(180deg, var(--black) 0%, #0C0B10 100%);
}

.stream-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.stream-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 20px;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--white);
  transition: var(--transition);
}

.stream-card i { font-size: 36px; }
.stream-card:hover { transform: translateY(-4px); }

.stream-card.spotify { border-color: rgba(30,215,96,0.3); }
.stream-card.spotify i { color: #1DB954; }
.stream-card.spotify:hover { background: rgba(29,185,84,0.1); border-color: #1DB954; }

.stream-card.apple { border-color: rgba(252,60,68,0.3); }
.stream-card.apple i { color: #FC3C44; }
.stream-card.apple:hover { background: rgba(252,60,68,0.1); border-color: #FC3C44; }

.stream-card.tidal { border-color: rgba(0,255,255,0.2); }
.stream-card.tidal i { color: #00DCEC; }
.stream-card.tidal:hover { background: rgba(0,220,236,0.1); border-color: #00DCEC; }

.stream-card.amazon { border-color: rgba(255,153,0,0.3); }
.stream-card.amazon i { color: #FF9900; }
.stream-card.amazon:hover { background: rgba(255,153,0,0.1); border-color: #FF9900; }

.stream-card.youtube { border-color: rgba(255,0,0,0.3); }
.stream-card.youtube i { color: #FF0000; }
.stream-card.youtube:hover { background: rgba(255,0,0,0.1); border-color: #FF0000; }

.stream-card.soundcloud { border-color: rgba(255,85,0,0.3); }
.stream-card.soundcloud i { color: #FF5500; }
.stream-card.soundcloud:hover { background: rgba(255,85,0,0.1); border-color: #FF5500; }

.stream-card.deezer { border-color: rgba(255,0,119,0.3); }
.stream-card.deezer i { color: #FF0077; }
.stream-card.deezer:hover { background: rgba(255,0,119,0.1); border-color: #FF0077; }

.stream-card.pandora { border-color: rgba(1,135,201,0.3); }
.stream-card.pandora i { color: #0187C9; }
.stream-card.pandora:hover { background: rgba(1,135,201,0.1); border-color: #0187C9; }

.presave-cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(201,150,12,0.12), rgba(184,115,51,0.06));
  border: 1px solid rgba(201,150,12,0.25);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.presave-cta p {
  font-size: 1.05rem;
  color: var(--off-white);
  margin-bottom: 20px;
}

.presave-hashtags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.presave-hashtags span {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
}
.presave-hashtags span:hover { background: rgba(212,175,55,0.15); }

/* ===== PRESS SECTION ===== */
.press-section {
  background: linear-gradient(180deg, #0C0B10 0%, var(--black) 100%);
}

.press-quote-hero {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
  position: relative;
}

.pq-marks {
  font-family: var(--font-display);
  font-size: 120px;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.35;
  margin-bottom: 16px;
}

.press-quote-hero p {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--off-white);
  line-height: 1.7;
  margin-bottom: 16px;
}

.pq-source {
  font-size: 13px;
  color: var(--light-gray);
  font-weight: 600;
  letter-spacing: 1px;
}

.press-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.press-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.press-card:hover {
  border-color: rgba(201,150,12,0.45);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(201,150,12,0.12);
}

.press-card-icon {
  width: 48px; height: 48px;
  background: rgba(201,150,12,0.12);
  border: 1px solid rgba(201,150,12,0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 16px;
}

.press-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 12px;
}

.press-card p {
  font-size: 0.9rem;
  color: var(--light-gray);
  line-height: 1.7;
  margin-bottom: 16px;
}

.press-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.press-link:hover { border-color: var(--gold); color: var(--gold-light); }
.press-link i { font-size: 14px; }

.radio-target {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
}

.radio-target h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.radio-item {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.radio-item strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.radio-item span {
  font-size: 12px;
  color: var(--light-gray);
}

.broadcast-specs {
  background: var(--dark2);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.broadcast-specs h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.broadcast-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.broadcast-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 16px;
  background: rgba(0,0,0,0.3);
  border-radius: var(--radius);
}

.broadcast-item label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray2);
}

.broadcast-item span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

/* ===== SOCIAL SECTION ===== */
.social-section {
  background: linear-gradient(180deg, #08070A 0%, #100E06 50%, #08070A 100%);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: var(--transition);
}
.social-card i { font-size: 28px; flex-shrink: 0; }
.social-card div { display: flex; flex-direction: column; gap: 2px; }
.social-card strong { font-size: 14px; font-weight: 700; color: var(--white); }
.social-card span { font-size: 12px; color: var(--light-gray); }
.social-card:hover { transform: translateY(-3px); }

.social-card.ig i { color: #c13584; }
.social-card.ig:hover { border-color: #c13584; }
.social-card.tw i { color: #1DA1F2; }
.social-card.tw:hover { border-color: #1DA1F2; }
.social-card.fb i { color: #1877F2; }
.social-card.fb:hover { border-color: #1877F2; }
.social-card.tt i { color: #69C9D0; }
.social-card.tt:hover { border-color: #69C9D0; }
.social-card.yt i { color: #FF0000; }
.social-card.yt:hover { border-color: #FF0000; }
.social-card.web i { color: var(--gold); }
.social-card.web:hover { border-color: var(--gold); }

.social-caption-box {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}

.social-caption-box h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.social-caption-text {
  font-size: 0.95rem;
  color: var(--off-white);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.caption-hashtags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
}

.caption-hashtags span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.btn-copy {
  padding: 10px 24px;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-copy:hover { background: var(--gold); color: var(--black); }

/* ===== MAILING SECTION ===== */
.mailing-section {
  background: linear-gradient(90deg, #8B6200 0%, #C9960C 30%, #B87333 60%, #C9960C 80%, #8B6200 100%);
  padding: 72px 0;
}

.mailing-box {
  display: flex;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
}

.mailing-content { flex: 1; min-width: 280px; }
.mailing-content h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.mailing-content p { color: rgba(255,255,255,0.85); font-size: 0.95rem; }

.mailing-form {
  display: flex;
  flex-direction: row !important;
  gap: 12px;
  flex: 1;
  min-width: 320px;
  flex-wrap: wrap;
}

.mailing-form input {
  flex: 1;
  min-width: 180px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--white);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}
.mailing-form input::placeholder { color: rgba(255,255,255,0.5); }
.mailing-form input:focus { border-color: var(--white); background: rgba(255,255,255,0.2); }

.mailing-form .btn-primary {
  background: var(--black);
  border-color: var(--black);
  white-space: nowrap;
}
.mailing-form .btn-primary:hover { background: var(--dark2); }

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: linear-gradient(180deg, var(--black) 0%, #0E0D12 100%);
}

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

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 4px;
}

.contact-info > p {
  color: var(--light-gray);
  margin-bottom: 28px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

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

.contact-item i {
  width: 40px; height: 40px;
  background: rgba(201,150,12,0.12);
  border: 1px solid rgba(201,150,12,0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}

.contact-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-item strong {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--light-gray);
}
.contact-item a, .contact-item span {
  font-size: 0.95rem;
  color: var(--off-white);
  word-break: break-word;
}
.contact-item a:hover { color: var(--gold); }

.contact-inquiries h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.contact-inquiries ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-inquiries li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--off-white);
}
.contact-inquiries li i { color: var(--gold); font-size: 12px; }

.contact-form-wrap {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.full-width { width: 100%; }

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-artist {
  display: block;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--white);
  text-transform: uppercase;
}

.footer-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--light-gray);
  text-transform: uppercase;
}

.footer-tagline {
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gray2);
  line-height: 1.6;
  max-width: 300px;
}

.footer-links-col h4 {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

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

.footer-links-col a {
  font-size: 0.88rem;
  color: var(--gray2);
  transition: var(--transition);
}
.footer-links-col a:hover { color: var(--white); }

.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer-social a {
  width: 36px; height: 36px;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gray2);
  transition: var(--transition);
}

.footer-social a:hover { background: linear-gradient(135deg, var(--gold-dark), var(--spotlight)); color: var(--black); border-color: var(--gold); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gray2);
  transition: var(--transition);
}
.footer-contact a:hover { color: var(--white); }
.footer-contact i { color: var(--gold); font-size: 12px; }

.footer-bottom {
  padding: 28px 0;
  text-align: center;
}

.footer-anniversary {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold);
  text-shadow: 0 0 12px rgba(201,150,12,0.4);
  margin-bottom: 8px;
}

.footer-copy {
  font-size: 13px;
  color: var(--gray2);
  margin-bottom: 4px;
}

.footer-legal {
  font-size: 13px;
  color: var(--gray2);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
}

.footer-legal a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.footer-support {
  font-size: 11px;
  color: var(--gray);
  margin-top: 4px;
}

.footer-support a {
  color: var(--gray2);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: var(--transition);
}

.footer-support a:hover {
  color: var(--gold);
}

/* ===== TOAST NOTIFICATION ===== */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  box-shadow: var(--shadow);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  white-space: nowrap;
}

.toast.show { transform: translateX(-50%) translateY(0); }
.toast.success { border-color: var(--gold); }
.toast.success i { color: var(--gold); }
.toast.error { border-color: var(--amber); }
.toast.error i { color: var(--amber); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrap { max-width: 380px; }
  .single-grid { grid-template-columns: 1fr; gap: 40px; }
  .buy-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .buy-card.featured { transform: none; }
  .buy-card.featured:hover { transform: translateY(-6px); }
  .stream-grid { grid-template-columns: repeat(4, 1fr); }
  .press-cards { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links { display: none; flex-direction: column; gap: 8px; position: absolute; top: 72px; left: 0; right: 0; background: var(--dark); padding: 20px 24px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .title-artist { font-size: clamp(3.5rem, 18vw, 7rem); }
  .title-single { font-size: clamp(1.1rem, 3.5vw, 2rem); }
  .hero-specs { gap: 8px; padding: 16px 20px; }
  .spec-item { padding: 0 12px; }
  .spec-divider { display: none; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .stream-grid { grid-template-columns: repeat(2, 1fr); }
  .radio-grid { grid-template-columns: repeat(2, 1fr); }
  .broadcast-grid { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr 1fr; }
  .mailing-box { flex-direction: column; gap: 28px; }
  .mailing-form { flex-direction: column !important; }
  .footer-top { grid-template-columns: 1fr; }
  .modal-box { padding: 28px 20px; }
  .form-row.two-col { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-actions .btn { padding: 12px 20px; font-size: 12px; }
  .buy-grid { max-width: 100%; }
  .stream-grid { grid-template-columns: repeat(2, 1fr); }
  .social-grid { grid-template-columns: 1fr; }
  .hero-specs { flex-direction: column; gap: 12px; padding: 20px; }
  .spec-divider { display: none; }
  .footer-top { grid-template-columns: 1fr; }
}

/* ===== UTILITY ===== */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* Active nav link */
.nav-links a.active-nav { color: var(--gold) !important; }

/* Affiliate nav link */
.nav-aff-link {
  color: var(--gold) !important;
  border: 1px solid rgba(201,150,12,0.4) !important;
  padding: 6px 14px !important;
  border-radius: 20px !important;
  font-size: 12px !important;
}
.nav-aff-link:hover {
  background: rgba(201,150,12,0.15) !important;
  color: var(--gold-light) !important;
}

/* Full-width button helper */
button.full-width { width: 100%; }

/* ===== AFFILIATE PROMO BANNER (on buy section) ===== */
.affiliate-promo-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
  background: linear-gradient(135deg, rgba(201,150,12,0.1) 0%, rgba(184,115,51,0.08) 100%);
  border: 1px solid rgba(201,150,12,0.35);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
}

.aff-promo-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.aff-promo-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--gold-dark), var(--spotlight));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--black);
  flex-shrink: 0;
  box-shadow: var(--glow-gold);
}

.aff-promo-left strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 4px;
}

.aff-promo-left p {
  font-size: 0.88rem;
  color: var(--light-gray);
  line-height: 1.5;
}

.aff-highlight {
  color: var(--gold);
  font-weight: 700;
}

.btn-aff-promo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(90deg, var(--gold-dark), var(--spotlight));
  color: var(--black);
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-aff-promo:hover {
  background: linear-gradient(90deg, var(--spotlight), var(--gold));
  transform: translateY(-2px);
  box-shadow: var(--glow-gold);
}
