/* Art direction: Premium medical professional / educator / podcaster → editorial, warm, authoritative
   Palette: Warm off-whites/cream, charcoal text, muted warm gold accent — NO teal
   Typography: Instrument Serif (display) + DM Sans (body) — editorial elegance meets clean readability
   Density: Spacious — generous whitespace, magazine-like editorial feel */

/* ========================================
   FONTS
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300..700;1,9..40,300..700&display=swap');

:root {
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;

  /* ========================================
     TYPE SCALE
     ======================================== */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    8rem);

  /* ========================================
     SPACING (4px base)
     ======================================== */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* ========================================
     RADIUS
     ======================================== */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* ========================================
     TRANSITIONS
     ======================================== */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* ========================================
     CONTENT WIDTHS
     ======================================== */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
  --content-full: 100%;
}

/* ========================================
   LIGHT MODE (default)
   ======================================== */
:root, [data-theme="light"] {
  /* Surfaces — warm cream/off-white */
  --color-bg:              #f8f7f4;
  --color-surface:         #f0eeea;
  --color-surface-2:       #e8e6e1;
  --color-surface-offset:  #f3f1ed;
  --color-surface-offset-2: #edeae5;
  --color-surface-dynamic: #e3e0db;
  --color-divider:         #d8d4ce;
  --color-border:          #ccc8c0;

  /* Text — charcoal hierarchy */
  --color-text:            #1a1a1a;
  --color-text-muted:      #6b6862;
  --color-text-faint:      #a9a59e;
  --color-text-inverse:    #f8f7f4;

  /* Primary Accent — muted warm gold */
  --color-primary:         #9a7b4f;
  --color-primary-hover:   #7d6340;
  --color-primary-active:  #614d32;
  --color-primary-highlight: #f0e8da;

  /* Success */
  --color-success:         #5a8a3a;
  --color-success-hover:   #477028;
  --color-success-highlight: #e5f0dc;

  /* Error */
  --color-error:           #b5403a;
  --color-error-hover:     #943430;
  --color-error-highlight: #f5e0de;

  /* Warning */
  --color-warning:         #b8772e;
  --color-warning-hover:   #996020;
  --color-warning-highlight: #f5eadb;

  /* Shadows (warm-tinted) */
  --shadow-sm: 0 1px 2px oklch(0.2 0.01 80 / 0.06);
  --shadow-md: 0 4px 12px oklch(0.2 0.01 80 / 0.08);
  --shadow-lg: 0 12px 32px oklch(0.2 0.01 80 / 0.12);
}

/* ========================================
   DARK MODE
   ======================================== */
[data-theme="dark"] {
  --color-bg:              #141312;
  --color-surface:         #1c1b19;
  --color-surface-2:       #242320;
  --color-surface-offset:  #1e1d1b;
  --color-surface-offset-2: #282724;
  --color-surface-dynamic: #302f2c;
  --color-divider:         #3a3835;
  --color-border:          #4a4742;

  --color-text:            #e0ddd8;
  --color-text-muted:      #9a9790;
  --color-text-faint:      #6a6760;
  --color-text-inverse:    #1a1a1a;

  --color-primary:         #c9a46e;
  --color-primary-hover:   #dbb882;
  --color-primary-active:  #a88a58;
  --color-primary-highlight: #2e2820;

  --color-success:         #7aaa5a;
  --color-success-hover:   #5e9040;
  --color-success-highlight: #1e2818;

  --color-error:           #d06660;
  --color-error-hover:     #b8504a;
  --color-error-highlight: #2e1a18;

  --color-warning:         #d89a4e;
  --color-warning-hover:   #c08438;
  --color-warning-highlight: #2e2418;

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.2);
  --shadow-md: 0 4px 12px oklch(0 0 0 / 0.3);
  --shadow-lg: 0 12px 32px oklch(0 0 0 / 0.4);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg:              #141312;
    --color-surface:         #1c1b19;
    --color-surface-2:       #242320;
    --color-surface-offset:  #1e1d1b;
    --color-surface-offset-2: #282724;
    --color-surface-dynamic: #302f2c;
    --color-divider:         #3a3835;
    --color-border:          #4a4742;

    --color-text:            #e0ddd8;
    --color-text-muted:      #9a9790;
    --color-text-faint:      #6a6760;
    --color-text-inverse:    #1a1a1a;

    --color-primary:         #c9a46e;
    --color-primary-hover:   #dbb882;
    --color-primary-active:  #a88a58;
    --color-primary-highlight: #2e2820;

    --color-success:         #7aaa5a;
    --color-success-hover:   #5e9040;
    --color-success-highlight: #1e2818;

    --color-error:           #d06660;
    --color-error-hover:     #b8504a;
    --color-error-highlight: #2e1a18;

    --color-warning:         #d89a4e;
    --color-warning-hover:   #c08438;
    --color-warning-highlight: #2e2418;

    --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.2);
    --shadow-md: 0 4px 12px oklch(0 0 0 / 0.3);
    --shadow-lg: 0 12px 32px oklch(0 0 0 / 0.4);
  }
}

/* ========================================
   GLOBAL STYLES
   ======================================== */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
}

h1 { font-size: var(--text-2xl); }
h2 { font-size: var(--text-xl); }
h3 { font-size: var(--text-lg); font-family: var(--font-body); font-weight: 600; }

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-interactive);
}

a:hover {
  color: var(--color-primary-hover);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.container {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.container--narrow {
  max-width: var(--content-narrow);
}

.container--default {
  max-width: var(--content-default);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-sm);
  font-weight: 500;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition-interactive),
              color var(--transition-interactive),
              box-shadow var(--transition-interactive),
              transform var(--transition-interactive);
  text-decoration: none;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background: var(--color-text);
  color: var(--color-text-inverse);
}

.btn-primary:hover {
  background: var(--color-text-muted);
  color: var(--color-text-inverse);
}

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

.btn-secondary:hover {
  background: var(--color-surface);
  color: var(--color-text);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text-muted);
  padding: var(--space-2) var(--space-4);
}

.btn-ghost:hover {
  color: var(--color-text);
  background: var(--color-surface);
}

/* ========================================
   NAV
   ======================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(from var(--color-bg) l c h / 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--color-divider);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-6);
  max-width: var(--content-wide);
  margin-inline: auto;
}

.site-logo {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text);
  text-decoration: none;
  line-height: 1;
}

.site-logo span {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: var(--space-1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}

.nav-links a {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: width var(--transition-interactive);
}

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

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

.nav-links a.active {
  color: var(--color-text);
}

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

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

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: color var(--transition-interactive),
              background var(--transition-interactive);
}

.theme-toggle:hover {
  color: var(--color-text);
  background: var(--color-surface);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  cursor: pointer;
  padding: var(--space-2);
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

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

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

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: 0;
  background: var(--color-bg);
  z-index: 99;
  padding-top: 80px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
  padding-top: var(--space-16);
  list-style: none;
}

.mobile-nav-links a {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text);
  text-decoration: none;
}

.mobile-nav-links a:hover {
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .nav-cta { display: none; }
}

/* ========================================
   HERO
   ======================================== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: var(--space-16) var(--space-6);
}

.hero-content {
  max-width: var(--content-wide);
  margin-inline: auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.hero-text h1 {
  font-size: var(--text-3xl);
  color: var(--color-text);
  margin-bottom: var(--space-4);
  line-height: 1.05;
}

.hero-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-3);
}

.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--color-primary);
  margin-bottom: var(--space-8);
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-left: auto;
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: var(--space-8) var(--space-4);
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .hero-text { order: 1; }
  .hero-image { order: 0; }
  .hero-image img {
    max-width: 280px;
    margin-inline: auto;
  }
  .hero-text h1 {
    font-size: var(--text-2xl);
  }
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) var(--space-6);
}

.section-title {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-3);
}

.section-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 60ch;
  margin-bottom: var(--space-10);
}

/* ========================================
   CARDS
   ======================================== */
.card {
  background: var(--color-surface);
  border: 1px solid oklch(from var(--color-text) l c h / 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: box-shadow var(--transition-interactive),
              transform var(--transition-interactive),
              border-color var(--transition-interactive);
}

a.card, .card[href] {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}

a.card:hover, .card[href]:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-border);
}

a.card:active, .card[href]:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: var(--space-6);
}

.card-title {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.card-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.card-label {
  font-size: var(--text-xs);
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  border-top: 1px solid var(--color-divider);
  padding: var(--space-12) var(--space-6);
  background: var(--color-surface);
}

.footer-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-12);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.footer-brand .site-logo {
  font-size: var(--text-xl);
}

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-base);
  color: var(--color-text-muted);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  text-decoration: none;
}

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

.social-links {
  display: flex;
  gap: var(--space-4);
  list-style: none;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  transition: color var(--transition-interactive),
              background var(--transition-interactive);
}

.social-links a:hover {
  color: var(--color-text);
  background: var(--color-surface-2);
}

.footer-bottom {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-top: var(--space-8);
  margin-top: var(--space-8);
  border-top: 1px solid var(--color-divider);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

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

.footer-bottom a:hover {
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-3);
    text-align: center;
  }
}

/* ========================================
   FORMS
   ======================================== */
.form-group {
  margin-bottom: var(--space-5);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.form-input {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-interactive),
              box-shadow var(--transition-interactive);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px oklch(from var(--color-primary) l c h / 0.15);
}

.form-input::placeholder {
  color: var(--color-text-faint);
}

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

/* ========================================
   EMAIL SIGNUP
   ======================================== */
.email-signup {
  display: flex;
  gap: var(--space-3);
  max-width: 480px;
}

.email-signup .form-input {
  flex: 1;
}

@media (max-width: 480px) {
  .email-signup {
    flex-direction: column;
  }
}

/* ========================================
   MODAL / POPUP
   ======================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: oklch(0 0 0 / 0.4);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--color-bg);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  max-width: 480px;
  width: 100%;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.open .modal {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  cursor: pointer;
}

.modal-close:hover {
  color: var(--color-text);
  background: var(--color-surface);
}

.modal h2 {
  margin-bottom: var(--space-3);
}

.modal p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  margin-bottom: var(--space-6);
  line-height: 1.6;
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.fade-in {
  opacity: 1;
}

@supports (animation-timeline: scroll()) {
  .fade-in {
    opacity: 0;
    animation: reveal-fade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 100%;
  }
}

@keyframes reveal-fade {
  to { opacity: 1; }
}

/* ========================================
   BADGE
   ======================================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-3);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-full);
  background: var(--color-primary-highlight);
  color: var(--color-primary);
}

/* ========================================
   PAGE-SPECIFIC: PODCAST
   ======================================== */
.podcast-section {
  padding: clamp(var(--space-10), 6vw, var(--space-20)) var(--space-6);
}

.podcast-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-8);
  align-items: start;
  margin-bottom: var(--space-8);
}

.podcast-icon {
  width: 80px;
  height: 80px;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.podcast-meta {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-4);
  flex-wrap: wrap;
}

.podcast-meta a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding: var(--space-2) var(--space-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  text-decoration: none;
}

.podcast-meta a:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.episode-card {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  border: 1px solid oklch(from var(--color-text) l c h / 0.06);
}

.episode-number {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text-faint);
  min-width: 48px;
  text-align: center;
}

.episode-title {
  font-weight: 500;
  font-size: var(--text-base);
  color: var(--color-text);
}

/* ========================================
   PAGE-SPECIFIC: NEWSLETTER
   ======================================== */
.newsletter-hero {
  text-align: center;
  padding: var(--space-20) var(--space-6);
}

.newsletter-hero .doc-populi-logo {
  margin-inline: auto;
  margin-bottom: var(--space-8);
}

.newsletter-features {
  max-width: var(--content-narrow);
  margin-inline: auto;
  padding: 0 var(--space-6);
}

.newsletter-feature {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  margin-bottom: var(--space-6);
}

.newsletter-feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--color-primary-highlight);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========================================
   PAGE-SPECIFIC: CONTACT
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  max-width: var(--content-wide);
  margin-inline: auto;
}

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

.contact-info p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  line-height: 1.6;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .podcast-header {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .podcast-icon {
    margin-inline: auto;
  }
  .podcast-meta {
    justify-content: center;
  }
}

/* ========================================
   DIVIDER
   ======================================== */
.divider {
  border: none;
  height: 1px;
  background: var(--color-divider);
  margin: var(--space-12) 0;
}
