@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=DM+Sans:wght@300;400;500&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #1a1a2e;
  --navy-dark: #141425;
  --gold: #e8c97e;
  --gold-dim: rgba(232,201,126,0.85);
  --white: #ffffff;
  --off-white: #f9f7f2;
  --text: #1a1a1a;
  --text-muted: #666;
  --border: rgba(0,0,0,0.1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 15px;
  line-height: 1.7;
}

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

/* ── NAV ── */
.nav {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--white);
  line-height: 1.2;
}
.nav-logo span { color: var(--gold); font-style: italic; }
.nav-logo small {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  color: rgba(255,255,255,0.38);
  font-style: normal;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255,255,255,0.7);
}

/* ── HERO ── */
.hero {
  background: var(--navy);
  padding: 4rem 2.5rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(232,201,126,0.1);
}
.hero::after {
  content: '';
  position: absolute;
  right: 40px; top: -30px;
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(232,201,126,0.07);
}
.hero-byline {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 0.3rem;
}
.hero h1 em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 11px 22px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: 0.02em;
  display: inline-block;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.88; }

.btn-secondary {
  background: transparent;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  padding: 11px 22px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  transition: border-color 0.2s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.5); }

/* ── PLATFORMS ── */
.platforms {
  background: var(--navy-dark);
  padding: 0.9rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.platforms-label {
  font-size: 11px;
  color: rgba(255,255,255,0.32);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
}
.platform-pill {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 5px 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, color 0.2s;
}
.platform-pill:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.platform-pill svg { width: 13px; height: 13px; fill: var(--gold); flex-shrink: 0; }

/* ── SECTIONS ── */
.section { padding: 3.5rem 2.5rem; }
.section-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 1.75rem;
  line-height: 1.2;
}

/* ── EPISODES ── */
.episodes { display: flex; flex-direction: column; }
.episode {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.episode:last-child { border-bottom: none; }
.episode-link {
  text-decoration: none;
  color: var(--text);
  border: 1.5px solid #c8c8c8;
  border-radius: 8px;
  padding: 1.1rem 1rem;
  margin-bottom: 0.75rem;
  transition: border-color 0.2s, background 0.2s;
}
.episode-link:last-child { margin-bottom: 0; }
.episode-link:hover { border-color: var(--navy); background: #fafafa; }
.episode-link.episode { border-bottom: 1.5px solid #c8c8c8; }
.ep-num {
  font-size: 11px;
  color: var(--text-muted);
  min-width: 34px;
  font-variant-numeric: tabular-nums;
}
.ep-thumb {
  width: 54px; height: 54px;
  border-radius: 6px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ep-thumb svg { width: 22px; height: 22px; fill: var(--gold); }
.ep-info { flex: 1; min-width: 0; }
.ep-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.ep-guest {
  font-size: 11px;
  color: var(--gold-dim);
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.ep-guest svg { width: 11px; height: 11px; fill: var(--gold-dim); }
.ep-meta { font-size: 12px; color: var(--text-muted); margin-top: 3px; }
.ep-tag {
  font-size: 10px;
  padding: 2px 9px;
  border-radius: 20px;
  border: 0.5px solid #0f6e56;
  color: #0f6e56;
  background: #e1f5ee;
  font-weight: 400;
}
.ep-play {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: transparent;
}
.ep-play:hover { border-color: var(--navy); background: var(--navy); }
.ep-play svg { width: 14px; height: 14px; fill: var(--text-muted); margin-left: 2px; }
.ep-play:hover svg { fill: var(--gold); }

/* ── ABOUT STRIP ── */
.about-strip {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-inner {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2.75rem 2.5rem;
  max-width: 860px;
}
.avatar {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.about-text p { font-size: 14px; line-height: 1.8; color: #444; }
.about-text strong {
  color: var(--navy);
  font-weight: 500;
  font-size: 17px;
  display: block;
  margin-bottom: 0.5rem;
}
.about-link {
  font-size: 13px;
  color: var(--navy);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 0.9rem;
}
.about-link svg { width: 14px; height: 14px; fill: var(--navy); }
.about-link:hover { text-decoration: underline; }

/* ── BLOG ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.blog-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.1rem;
  cursor: pointer;
  transition: background 0.15s;
}
.blog-card:hover { background: var(--off-white); }
.blog-cat {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8b6914;
  background: #faeeda;
  border-radius: 20px;
  padding: 2px 9px;
  display: inline-block;
  margin-bottom: 0.55rem;
}
.blog-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  font-weight: 400;
}
.blog-date { font-size: 11px; color: var(--text-muted); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(232,201,126,0.08);
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.4rem;
}
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
}

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  padding: 2.25rem 2.5rem;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--white);
}
.footer-logo span { color: var(--gold); font-style: italic; }
.footer-logo small {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  color: rgba(255,255,255,0.32);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-top: 2px;
}
.footer-socials {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-socials a {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.footer-socials a:hover { color: var(--gold); }
.footer-socials svg { width: 14px; height: 14px; fill: currentColor; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-nav { display: flex; gap: 1.5rem; }
.footer-nav a { font-size: 12px; color: rgba(255,255,255,0.38); transition: color 0.2s; }
.footer-nav a:hover { color: rgba(255,255,255,0.7); }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.22); }

/* ── ABOUT PAGE ── */
.about-content {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  padding: 3.5rem 2.5rem;
  align-items: start;
}
.about-avatar-lg {
  width: 180px; height: 180px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  color: var(--gold);
}
.about-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  margin-bottom: 0.3rem;
}
.about-body .subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}
.about-body p { color: #444; margin-bottom: 1rem; line-height: 1.8; }
.about-socials {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 1.75rem;
}
.about-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--navy);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 7px 14px;
  transition: background 0.15s, border-color 0.15s;
  width: fit-content;
}
.about-social-btn:hover { background: var(--off-white); border-color: #ccc; }
.about-social-btn svg { width: 14px; height: 14px; fill: var(--navy); flex-shrink: 0; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3.5rem 2.5rem;
}
.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 0.75rem;
}
.contact-info p { color: #444; font-size: 14px; line-height: 1.8; margin-bottom: 1.5rem; }
.contact-links { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text);
  transition: color 0.2s;
}
.contact-link:hover { color: var(--navy); }
.contact-link svg { width: 16px; height: 16px; fill: var(--gold); flex-shrink: 0; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form input,
.contact-form textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--navy); }
.contact-form textarea { height: 120px; resize: vertical; }
.contact-form .btn-primary { align-self: flex-start; }

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  /* Nav */
  .nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--navy);
    padding: 1rem 1.25rem 1.5rem;
    gap: 1rem;
    z-index: 99;
  }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero { padding: 2.5rem 1.25rem 3.5rem; }
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 14px; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-btns .btn-primary,
  .hero-btns .btn-secondary { text-align: center; }

  /* Platforms */
  .platforms { padding: 0.75rem 1.25rem; gap: 0.6rem; }
  .platform-pill { font-size: 11px; padding: 4px 10px; }

  /* Sections */
  .section { padding: 2.5rem 1.25rem; }
  .section h2 { font-size: 24px; }

  /* Episodes */
  .ep-title { font-size: 13px; }
  .ep-thumb { width: 44px; height: 44px; }

  /* About strip */
  .about-inner { flex-direction: column; padding: 2rem 1.25rem; }
  .avatar { width: 64px; height: 64px; font-size: 20px; }

  /* Blog scroll */
  .blog-scroll { margin: 0 -1.25rem; padding: 0 1.25rem 1rem; }
  .blog-scroll-inner .blog-card { width: 240px; }

  /* Blog drawer */
  .drawer { width: 96vw; max-height: 90vh; }
  .drawer-title { font-size: 18px; }
  .drawer-header { padding: 1.25rem 1rem 1rem; }
  .drawer-body { padding: 1.25rem 1rem; font-size: 14px; }

  /* About page */
  .about-content { grid-template-columns: 1fr; padding: 2rem 1.25rem; }
  .about-avatar-lg { width: 100px; height: 100px; font-size: 30px; }
  .about-body h2 { font-size: 24px; }

  /* Contact page */
  .contact-grid { grid-template-columns: 1fr; padding: 2rem 1.25rem; gap: 2rem; }

  /* Work With Me */
  .wwm-grid { grid-template-columns: 1fr; }
  .wwm-stats { grid-template-columns: 1fr 1fr; }
  .wwm-audience { padding: 2rem 1.25rem; }
  .wwm-cta { padding: 2.5rem 1.25rem; }
  .wwm-cta h2 { font-size: 24px; }
  .wwm-cta-btns { flex-direction: column; align-items: center; }
  .wwm-honest { padding: 1.25rem; }

  /* Page hero */
  .page-hero { padding: 2rem 1.25rem; }
  .page-hero h1 { font-size: 26px; }

  /* Blog post pages */
  .post-hero { padding: 2rem 1.25rem 1.75rem; }
  .post-hero h1 { font-size: 24px; }
  .post-body { padding: 2rem 1.25rem; }
  .post-body p { font-size: 15px; }

  /* Footer */
  .footer { padding: 1.75rem 1.25rem; }
  .footer-top { flex-direction: column; gap: 1.25rem; }
  .footer-socials { flex-wrap: wrap; gap: 0.75rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .footer-nav { flex-wrap: wrap; gap: 0.75rem; }

  /* Episode blocks on episodes page */
  .ep-block-title { font-size: 17px; }
}
