/* ============================================
   THE BLACK ACADEMIC EXPERIENCE — PODCAST WEBSITE
   Design System & Styles
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Primary Palette */
  --burnt-orange: #C45D2C;
  --burnt-orange-light: #D97B4A;
  --burnt-orange-dark: #A34A1F;
  --gold: #D4A844;
  --gold-light: #E8C76F;
  --gold-dark: #B08A2E;

  /* Neutrals */
  --black: #1A1A1A;
  --charcoal: #2D2D2D;
  --dark-gray: #4A4A4A;
  --medium-gray: #7A7A7A;
  --light-gray: #E8E4E0;
  --cream: #FFF8F0;
  --warm-white: #FEFCF9;
  --pure-white: #FFFFFF;

  /* Accent */
  --accent-amber: #F5A623;
  --accent-deep: #8B3A1B;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(196, 93, 44, 0.9) 50%, rgba(212, 168, 68, 0.85) 100%);
  --gradient-warm: linear-gradient(135deg, var(--burnt-orange) 0%, var(--gold) 100%);
  --gradient-dark: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 50%, var(--accent-deep) 100%);
  --gradient-card: linear-gradient(145deg, rgba(255, 248, 240, 0.7), rgba(255, 255, 255, 0.9));

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

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

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(26, 26, 26, 0.06);
  --shadow-md: 0 4px 20px rgba(26, 26, 26, 0.1);
  --shadow-lg: 0 8px 40px rgba(26, 26, 26, 0.14);
  --shadow-xl: 0 16px 60px rgba(26, 26, 26, 0.18);
  --shadow-glow: 0 0 30px rgba(196, 93, 44, 0.3);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --max-width: 1200px;
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: clamp(1rem, 2vw, 1.25rem); }

p {
  font-size: 1rem;
  color: var(--dark-gray);
  line-height: 1.8;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--burnt-orange);
  margin-bottom: var(--space-md);
  display: inline-block;
  position: relative;
}

.section-label::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gradient-warm);
  border-radius: 2px;
}

.section-title {
  margin-bottom: var(--space-lg);
  color: var(--black);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--medium-gray);
  max-width: 640px;
  font-weight: 400;
}

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

section {
  padding: var(--space-4xl) 0;
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: all var(--transition-base);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

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

.nav-logo img {
  height: 45px;
  width: 45px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pure-white);
  line-height: 1.2;
}

.nav-logo-text span {
  display: block;
  font-size: 0.65rem;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: var(--space-xs) 0;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-warm);
  border-radius: 2px;
  transition: width var(--transition-base);
}

.nav-links a:hover {
  color: var(--gold-light);
}

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

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

.nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  color: var(--pure-white);
  transition: all var(--transition-base);
}

.nav-social a:hover {
  background: var(--burnt-orange);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(196, 93, 44, 0.4);
}

.nav-social a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}

.mobile-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--pure-white);
  border-radius: 3px;
  transition: all var(--transition-base);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: var(--radius-full);
  background: rgba(212, 168, 68, 0.3);
  animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 40%; left: 80%; animation-delay: 1s; width: 6px; height: 6px; }
.particle:nth-child(3) { top: 70%; left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { top: 15%; left: 60%; animation-delay: 3s; width: 3px; height: 3px; }
.particle:nth-child(5) { top: 85%; left: 75%; animation-delay: 4s; width: 5px; height: 5px; }
.particle:nth-child(6) { top: 55%; left: 15%; animation-delay: 5s; }
.particle:nth-child(7) { top: 30%; left: 90%; animation-delay: 1.5s; width: 4px; height: 4px; }
.particle:nth-child(8) { top: 65%; left: 55%; animation-delay: 3.5s; width: 3px; height: 3px; }

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  padding-top: var(--nav-height);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: rgba(196, 93, 44, 0.2);
  border: 1px solid rgba(196, 93, 44, 0.3);
  border-radius: var(--radius-xl);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: var(--space-xl);
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease forwards;
}

.hero-badge .mic-icon {
  width: 16px;
  height: 16px;
  fill: var(--gold-light);
}

.hero h1 {
  color: var(--pure-white);
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero h1 .highlight {
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
  max-width: 580px;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-warm);
  color: var(--pure-white);
  box-shadow: 0 4px 20px rgba(196, 93, 44, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(196, 93, 44, 0.5);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-outline {
  background: transparent;
  color: var(--pure-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.05);
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: var(--space-2xl);
  margin-top: var(--space-3xl);
  animation: fadeInUp 0.8s ease 0.8s forwards;
  opacity: 0;
}

.hero-stat {
  text-align: center;
}

.hero-stat .number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-light);
}

.hero-stat .label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
#about {
  background: var(--warm-white);
  position: relative;
}

#about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--light-gray), transparent);
}

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

.about-image {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image-wrapper img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-image-wrapper:hover img {
  transform: scale(1.03);
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  border-radius: var(--radius-lg);
  background: var(--gradient-warm);
  z-index: -1;
  opacity: 0.3;
}

.about-content h2 {
  margin-bottom: var(--space-lg);
}

.about-content p {
  margin-bottom: var(--space-lg);
  font-size: 1.05rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: var(--pure-white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.about-feature:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.about-feature .icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(196, 93, 44, 0.1), rgba(212, 168, 68, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.about-feature h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black);
}

.about-feature p {
  font-size: 0.8rem;
  color: var(--medium-gray);
  margin-bottom: 0;
  line-height: 1.5;
}

/* ============================================
   EPISODES SECTION
   ============================================ */
#episodes {
  background: var(--cream);
  position: relative;
}

.episodes-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-2xl);
}

.episodes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.episode-card {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  position: relative;
}

.episode-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.episode-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.episode-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.episode-card:hover .episode-card-image img {
  transform: scale(1.05);
}

.episode-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26, 26, 26, 0.7) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: var(--space-md);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.episode-card:hover .episode-card-overlay {
  opacity: 1;
}

.play-btn {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: var(--burnt-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(196, 93, 44, 0.5);
  transition: all var(--transition-base);
}

.play-btn:hover {
  transform: scale(1.1);
  background: var(--burnt-orange-dark);
}

.play-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--pure-white);
  margin-left: 2px;
}

.episode-card-content {
  padding: var(--space-lg);
}

.episode-date {
  font-size: 0.8rem;
  color: var(--burnt-orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-sm);
}

.episode-card-content h3 {
  margin-bottom: var(--space-sm);
  line-height: 1.3;
  transition: color var(--transition-fast);
}

.episode-card:hover .episode-card-content h3 {
  color: var(--burnt-orange);
}

.episode-card-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--medium-gray);
  margin-bottom: var(--space-md);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.episode-listen-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--burnt-orange);
  transition: all var(--transition-fast);
}

.episode-listen-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform var(--transition-fast);
}

.episode-listen-link:hover {
  color: var(--burnt-orange-dark);
}

.episode-listen-link:hover svg {
  transform: translateX(4px);
}

/* ============================================
   HOSTS SECTION
   ============================================ */
#hosts {
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
}

#hosts::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, rgba(212, 168, 68, 0.08) 0%, transparent 70%);
}

.hosts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
}

.host-card {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  position: relative;
}

.host-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
}

.host-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.host-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.host-card:hover .host-card-image img {
  transform: scale(1.05);
}

.host-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, transparent, rgba(26, 26, 26, 0.4));
}

.host-card-content {
  padding: var(--space-xl);
  text-align: center;
}

.host-card-content h3 {
  font-size: 1.4rem;
  margin-bottom: var(--space-xs);
  color: var(--black);
}

.host-role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--burnt-orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-md);
}

.host-card-content p {
  font-size: 0.95rem;
  color: var(--medium-gray);
  line-height: 1.7;
}

/* ============================================
   LISTEN ON SECTION
   ============================================ */
#listen {
  background: var(--gradient-dark);
  position: relative;
  text-align: center;
  padding: var(--space-3xl) 0;
}

#listen .section-label {
  color: var(--gold-light);
}

#listen .section-label::after {
  background: var(--gold-light);
}

#listen .section-title {
  color: var(--pure-white);
}

#listen .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 auto var(--space-2xl);
}

.platforms-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
  margin-top: var(--space-xl);
}

.platform-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--pure-white);
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
  min-width: 200px;
}

.platform-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(212, 168, 68, 0.2);
}

.platform-card svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.platform-card .platform-name {
  font-weight: 600;
  font-size: 1rem;
}

.platform-card .platform-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
#newsletter {
  background: linear-gradient(135deg, var(--cream) 0%, rgba(196, 93, 44, 0.06) 100%);
  position: relative;
}

.newsletter-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.newsletter-content h2 {
  margin-bottom: var(--space-md);
}

.newsletter-content p {
  margin-bottom: var(--space-xl);
}

.newsletter-form {
  display: flex;
  gap: var(--space-md);
  max-width: 500px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--pure-white);
  transition: border-color var(--transition-fast);
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--burnt-orange);
}

.newsletter-form input::placeholder {
  color: var(--medium-gray);
}

.newsletter-form .btn-primary {
  white-space: nowrap;
}

.newsletter-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.newsletter-graphic-inner {
  width: 300px;
  height: 300px;
  border-radius: var(--radius-full);
  background: var(--gradient-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: float 6s ease-in-out infinite;
  box-shadow: var(--shadow-glow);
}

.newsletter-graphic-inner svg {
  width: 120px;
  height: 120px;
  fill: var(--pure-white);
  opacity: 0.9;
}

.newsletter-graphic-ring {
  position: absolute;
  width: 360px;
  height: 360px;
  border: 2px dashed rgba(196, 93, 44, 0.2);
  border-radius: var(--radius-full);
  animation: pulse 4s ease-in-out infinite;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
#contact {
  background: var(--warm-white);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
  align-items: start;
}

.contact-info h2 {
  margin-bottom: var(--space-md);
}

.contact-info > p {
  margin-bottom: var(--space-xl);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

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

.contact-detail .icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(196, 93, 44, 0.1), rgba(212, 168, 68, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.contact-detail span {
  font-size: 0.95rem;
  color: var(--dark-gray);
}

.contact-detail a {
  color: var(--burnt-orange);
  font-weight: 500;
}

.contact-detail a:hover {
  text-decoration: underline;
}

.contact-form-wrapper {
  background: var(--pure-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
  padding: 14px 18px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--warm-white);
  transition: all var(--transition-fast);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--burnt-orange);
  background: var(--pure-white);
  box-shadow: 0 0 0 4px rgba(196, 93, 44, 0.1);
}

.form-group textarea {
  min-height: 140px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.contact-form .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-2xl);
  animation: scaleIn 0.5s ease;
}

.form-success.show {
  display: block;
}

.form-success .checkmark {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: var(--gradient-warm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.form-success .checkmark svg {
  width: 30px;
  height: 30px;
  fill: var(--pure-white);
}

.form-success h3 {
  margin-bottom: var(--space-sm);
}

.form-success p {
  color: var(--medium-gray);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand .nav-logo {
  margin-bottom: var(--space-lg);
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--pure-white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-lg);
}

.footer-col ul li {
  margin-bottom: var(--space-sm);
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: var(--burnt-orange);
  color: var(--pure-white);
  transform: translateY(-3px);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

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

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .about-grid {
    gap: var(--space-2xl);
  }

  .episodes-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .container {
    padding: 0 var(--space-lg);
  }

  section {
    padding: var(--space-3xl) 0;
  }

  /* Mobile Nav */
  .mobile-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--nav-height) + var(--space-xl)) var(--space-xl);
    gap: var(--space-lg);
    transition: right var(--transition-base);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .nav-social {
    display: none;
  }

  /* Hero */
  .hero-content {
    padding: calc(var(--nav-height) + var(--space-xl)) 0;
  }

  .hero-stats {
    gap: var(--space-lg);
  }

  .hero-stat .number {
    font-size: 1.5rem;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about-image {
    order: -1;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  /* Episodes */
  .episodes-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }

  /* Hosts */
  .hosts-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  /* Newsletter */
  .newsletter-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-graphic {
    display: none;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

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

  .hero-stats {
    flex-direction: column;
    gap: var(--space-md);
  }

  .platforms-grid {
    flex-direction: column;
  }

  .platform-card {
    width: 100%;
  }
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
}

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

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

::-webkit-scrollbar-thumb:hover {
  background: var(--burnt-orange);
}

/* --- Selection --- */
::selection {
  background: rgba(196, 93, 44, 0.2);
  color: var(--black);
}
