/* =====================================================
   Tammy Peterson | Sistine
   Brand-led design system: forest, antique gold, cream.
   No italics. No em dashes.
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Cormorant+Garamond:wght@300;400;500;600&family=Inter:wght@300;400;500;600;700&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--forest);
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ====== TOKENS ====== */
:root {
  --forest: #0e1814;
  --forest-2: #142420;
  --forest-soft: #1c2a25;
  --gold: #b59668;
  --gold-light: #d4b988;
  --gold-soft: #8a7350;
  --cream: #f4ece0;
  --cream-warm: #ebe1d1;
  --cream-deep: #d8cab1;
  --line: rgba(244, 236, 224, 0.08);
  --line-bright: rgba(244, 236, 224, 0.16);
  --text-muted: rgba(244, 236, 224, 0.55);

  --photo-banner: url("assets/banner/banner.jpg");
  --photo-portrait: url("assets/photos/portrait.jpg");
  --photo-portrait-2: url("assets/photos/portrait-2.jpg");
  --photo-couple-couch: url("assets/photos/couple-couch.jpg");
  --photo-couple-theater: url("assets/photos/couple-theater.jpg");
  --photo-hippie: url("assets/photos/hippie.jpg");
  --photo-stage-1: url("assets/photos/stage-1.jpg");
  --photo-stage-2: url("assets/photos/stage-2.jpg");
  --photo-silhouette: url("assets/photos/silhouette.jpg");
  --photo-laughing: url("assets/photos/laughing.jpg");
  --photo-couple-redcarpet: url("assets/photos/couple-redcarpet.jpg");
  --photo-podcast-art: url("assets/podcast/cover.png");
}

/* ====== BASE TYPOGRAPHY ====== */
h1, h2, h3, h4 {
  font-family: 'Cinzel', serif;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
}
h1 { font-size: 48px; line-height: 1.2; }
h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  font-size: 48px;
  line-height: 1.15;
}
h3 { font-size: 18px; line-height: 1.4; }
h4 { font-size: 16px; line-height: 1.4; }

p {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; transition: color 0.25s ease; }

/* ====== ACCENT (font-shift only — no longer colored) ====== */
.accent {
  color: inherit;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

/* Where headings have an inline accent fragment, drop the all-caps treatment */
h1 .accent, h2 .accent, h3 .accent {
  font-family: 'Cormorant Garamond', serif;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

/* ====== ORNAMENTS (unused — kept for future use) ====== */
.ornament {
  color: var(--cream);
  font-size: 14px;
  letter-spacing: 0.5em;
  text-align: center;
  margin-bottom: 28px;
}

/* ====== NAVIGATION ====== */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 56px;
  background: var(--forest);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
}
.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
  text-decoration: none;
}
.nav-logo:hover { color: var(--gold-light); }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-menu a {
  color: var(--cream);
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.nav-menu a:hover, .nav-menu a.is-active { color: var(--gold); }

.menu-toggle { display: none; }

/* ====== BUTTONS ====== */
.btn-gold,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 26px;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-gold {
  background: var(--gold);
  color: var(--forest);
}
.btn-gold:hover { background: var(--gold-light); }
.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: transparent;
}
.btn-outline:hover { color: var(--gold); }

.read-more {
  display: inline-block;
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  margin-top: 16px;
}
.read-more:hover { color: var(--gold-light); border-color: var(--gold-light); }

/* ====== HERO BANNER ====== */
.hero-banner {
  background-image: var(--photo-stage-1);
  background-size: cover;
  background-position: center 12%;
  min-height: 460px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 40px 56px;
}
.hero-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 24, 20, 0.35) 0%, transparent 30%, transparent 50%, rgba(14, 24, 20, 0.95) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
}
.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 26px;
  line-height: 1.55;
  color: var(--cream);
  margin-bottom: 36px;
}
.hero-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ====== INTRO ====== */
.intro {
  padding: 120px 56px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.intro h2 {
  font-size: 38px;
  margin-bottom: 32px;
}
.intro p {
  font-size: 22px;
  line-height: 1.7;
  color: rgba(244, 236, 224, 0.8);
  max-width: 760px;
  margin: 0 auto;
  font-weight: 300;
}

/* ====== FEATURE PORTRAIT ====== */
.feature-portrait {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--forest-2);
}
.feature-img {
  background-size: cover;
  background-position: center;
  min-height: 520px;
  position: relative;
}
.feature-img.use-portrait { background-image: var(--photo-portrait); }
.feature-img.use-portrait-2 { background-image: var(--photo-portrait-2); }
.feature-img.use-couple-couch { background-image: var(--photo-couple-couch); }
.feature-img.use-laughing { background-image: var(--photo-laughing); }
.feature-img.use-stage-1 { background-image: var(--photo-stage-1); }

.feature-text {
  padding: 32px 56px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.feature-text .label {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.feature-text h2 {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 32px;
}
.feature-text p {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 19px;
  line-height: 1.7;
  color: rgba(244, 236, 224, 0.78);
  margin-bottom: 24px;
}

/* ====== EPISODES SECTION ====== */
.episodes-section {
  padding: 56px 56px;
}
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-header h2 {
  font-size: 40px;
  margin-bottom: 16px;
}
.section-header p {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 18px;
  color: rgba(244, 236, 224, 0.6);
}

.episode-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}
.ep-card {
  background: var(--forest-2);
  text-align: center;
  transition: all 0.3s ease;
  overflow: hidden;
}
.ep-card:hover {
  background: var(--forest-soft);
  transform: translateY(-4px);
}
.ep-thumb-link {
  display: block;
  overflow: hidden;
}
.ep-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease, transform 0.5s ease;
}
.ep-thumb-link:hover .ep-thumb {
  opacity: 0.9;
  transform: scale(1.02);
}
.ep-card-body {
  padding: 32px 32px 36px;
}
.ep-num {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.ep-card h3 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.4;
  margin-bottom: 16px;
}
.ep-card .guest {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: rgba(244, 236, 224, 0.7);
  font-size: 17px;
  margin-bottom: 20px;
}
.ep-card p {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(244, 236, 224, 0.7);
  margin-bottom: 24px;
}
.ep-card a.read-more { font-size: 10px; }

/* loading / empty / error state for the dynamic episode lists */
.episodes-empty {
  grid-column: 1 / -1;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 18px;
  color: var(--text-muted);
  padding: 32px 16px;
}

/* ====== QUOTE SECTION ====== */
.quote-section {
  padding: 64px 56px;
  text-align: center;
  background: var(--forest-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.quote-section.has-bg,
.quote-section.has-bg-stage {
  background-size: cover;
  position: relative;
}
.quote-section.has-bg {
  background-image: var(--photo-silhouette);
  background-position: center;
}
.quote-section.has-bg-stage {
  background-image: var(--photo-stage-2);
  background-size: 110%;
  background-position: 78% 30%;
}
.quote-section.has-bg::before,
.quote-section.has-bg-stage::before {
  content: '';
  position: absolute;
  inset: 0;
}
.quote-section.has-bg::before { background: rgba(14, 24, 20, 0.84); }
.quote-section.has-bg-stage::before { background: rgba(14, 24, 20, 0.55); }
.quote-section blockquote {
  position: relative;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 36px;
  line-height: 1.45;
  color: var(--cream);
  max-width: 900px;
  margin: 0 auto;
}
.quote-mark {
  position: relative;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 110px;
  color: var(--cream);
  line-height: 0.5;
  display: block;
  margin-bottom: 32px;
}
.quote-section cite {
  position: relative;
  display: block;
  margin-top: 36px;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--text-muted);
  font-style: normal;
  text-transform: uppercase;
}

/* ====== FOOTER ====== */
.footer {
  background: var(--forest);
  padding: 40px 56px 20px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.footer-brand h3 {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--cream);
  margin-bottom: 16px;
}
.footer-brand p {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 19px;
  color: rgba(244, 236, 224, 0.6);
  line-height: 1.5;
  max-width: 360px;
}
.footer h4 {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-weight: 500;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 12px; }
.footer ul a {
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 18px;
}
.footer ul a:hover { color: var(--gold); }
.footer-bottom {
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 0.32em;
  color: rgba(244, 236, 224, 0.4);
  text-transform: uppercase;
}

/* ====== ABOUT PAGE ====== */
.page-hero {
  padding: 28px 56px 24px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.page-hero.with-bg {
  background-image: var(--photo-silhouette);
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-hero.with-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(14, 24, 20, 0.7) 0%,
    rgba(14, 24, 20, 0.45) 60%,
    rgba(14, 24, 20, 0.3) 100%
  );
}
.page-hero.with-bg > * {
  position: relative;
  z-index: 2;
}
.page-hero.with-bg .lead {
  font-size: 30px;
  max-width: 820px;
  line-height: 1.5;
}
.page-hero .hero-cite {
  display: block;
  margin-top: 36px;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--text-muted);
  font-style: normal;
  text-transform: uppercase;
  text-align: center;
}
.page-hero h1 {
  font-size: 52px;
  margin-bottom: 16px;
}
.page-hero h1.h1-prose {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--cream);
  font-size: 60px;
  line-height: 1.15;
}
.page-hero .lead {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 24px;
  color: rgba(244, 236, 224, 0.78);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.55;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  padding: 48px 56px;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}
.about-portrait {
  aspect-ratio: 3/4;
  background-image: var(--photo-couple-redcarpet);
  background-size: cover;
  background-position: center 60%;
  background-repeat: no-repeat;
  position: sticky;
  top: 110px;
}
.about-prose p {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.85;
  margin-bottom: 28px;
  color: rgba(244, 236, 224, 0.88);
}
.about-prose a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease;
}
.about-prose a:hover {
  color: var(--gold-light);
}
.about-prose p:first-of-type::first-letter {
  font-family: 'Cinzel', serif;
  font-size: 88px;
  color: var(--cream);
  float: left;
  line-height: 0.85;
  padding: 8px 18px 0 0;
  font-weight: 500;
}
.about-prose h3 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--cream);
  margin: 28px 0 14px;
}

.about-photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin: 32px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-photo {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
}
.about-photo.couple-couch { background-image: var(--photo-couple-couch); }
.about-photo.headshot {
  background-image: var(--photo-hippie);
  background-size: cover;
  background-position: center 30%;
}
.about-photo.couple-theater { background-image: var(--photo-couple-theater); }

/* ====== PODCAST PAGE ====== */
.pod-hero {
  background: var(--forest-2);
  padding: 48px 56px;
  border-bottom: 1px solid var(--line);
}
.pod-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.pod-cover {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
}
.pod-info .ornament {
  text-align: left;
  margin-bottom: 24px;
}
.pod-info h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 56px;
  line-height: 1.15;
  margin-bottom: 24px;
  text-align: left;
}
.pod-info p {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 19px;
  line-height: 1.65;
  color: rgba(244, 236, 224, 0.8);
  margin-bottom: 32px;
}
.pod-platforms {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.pod-platforms a {
  color: var(--cream);
  border: none;
  padding: 12px 0;
  margin-right: 12px;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.pod-platforms a:hover {
  color: var(--gold);
}

.pod-list {
  padding: 40px 56px;
  max-width: 1100px;
  margin: 0 auto;
}
.pod-row {
  display: grid;
  grid-template-columns: 160px 60px 1fr 200px 60px;
  gap: 24px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: padding 0.25s ease;
}
.pod-row:hover { padding-left: 16px; }
.ep-thumb-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--forest-2);
}
.ep-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.pod-row:hover .ep-thumb-wrap img { transform: scale(1.04); }
.pod-row .num {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.pod-row h4 {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--cream);
  margin-bottom: 6px;
  line-height: 1.3;
}
.pod-row .guest {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: rgba(244, 236, 224, 0.6);
  font-size: 16px;
}
.pod-row .date {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--text-muted);
  text-transform: uppercase;
  text-align: right;
}
.pod-row .play {
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* ====== CONTACT PAGE ====== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  padding: 20px 56px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-grid.contact-grid-form-only {
  grid-template-columns: 1fr;
  max-width: 720px;
}
.contact-info {
  background: var(--forest-2);
  padding: 40px 36px;
  border: 1px solid var(--line-bright);
}
.contact-info h3 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--cream);
  margin-bottom: 32px;
}
.info-item {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.info-item .label {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.info-item .value {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--cream);
}

.contact-form {
  background: var(--forest-2);
  padding: 28px 32px;
  border: none;
  display: flex;
  flex-direction: column;
}

/* Contact page color reversal: lighter green outside, darker form box, lighter inputs */
body.page-contact { background: var(--forest-2); }
.page-contact .page-hero { background: var(--forest); border-bottom: none; }
.page-contact .contact-grid { background: var(--forest-2); }
.page-contact .contact-form { background: var(--forest); }
.page-contact .field input,
.page-contact .field select,
.page-contact .field textarea { background: var(--forest-2); }
.page-contact .field input:focus,
.page-contact .field select:focus,
.page-contact .field textarea:focus { background: var(--forest-soft); }
.contact-form h3 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--cream);
  margin-bottom: 20px;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--forest);
  border: none;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: var(--cream);
  transition: background 0.25s ease;
  box-sizing: border-box;
}
.field input,
.field select {
  height: 44px;
  padding: 0 14px;
}
.field textarea {
  padding: 10px 14px;
  min-height: 120px;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: #0a1310;
}
.submit-btn {
  display: inline-block;
  width: auto;
  height: 44px;
  background: var(--gold);
  color: var(--forest);
  border: none;
  padding: 0 28px;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 16px;
  font-weight: 500;
  transition: background 0.3s ease;
  align-self: center;
}
.submit-btn:hover {
  background: var(--gold-light);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .nav { padding: 20px 24px; }
  .nav-tag { display: none; }
  .nav-menu { gap: 20px; }
  .nav-menu a { font-size: 10px; letter-spacing: 0.2em; }

  .hero-banner { min-height: 480px; padding: 60px 24px; }
  .hero-tagline { font-size: 22px; }

  .intro,
  .episodes-section,
  .pod-list { padding: 80px 24px; }

  .feature-portrait,
  .pod-hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 24px;
  }
  .feature-img { min-height: 420px; }
  .feature-text { padding: 60px 24px; }

  .episode-grid { grid-template-columns: 1fr; gap: 24px; }

  .about-photo-strip { grid-template-columns: 1fr; }
  .about-photo { aspect-ratio: 4/3; }

  .pod-row {
    grid-template-columns: 110px 50px 1fr 50px;
    gap: 16px;
  }
  .pod-row .date { display: none; }
  .pod-row .guest { display: block; margin-top: 4px; }

  .quote-section { padding: 80px 24px; }
  .quote-section blockquote { font-size: 26px; }

  .footer { padding: 60px 24px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  /* Hide the Explore column on mobile (it duplicates the top nav) */
  .footer-grid > div:nth-child(2) { display: none; }

  .about-portrait { position: static; }

  h1 { font-size: 36px; }
  h2 { font-size: 30px; }
  .feature-text h2,
  .section-header h2,
  .page-hero h1,
  .pod-info h1 { font-size: 32px; }
}

@media (max-width: 600px) {
  .pod-row {
    grid-template-columns: 80px 1fr 40px;
    gap: 12px;
  }
  .pod-row .num { display: none; }

  .nav-logo { letter-spacing: 0.18em; font-size: 19px; }

  .nav-menu { display: none; }
  .menu-toggle {
    display: block;
    background: transparent;
    border: 1px solid var(--line-bright);
    color: var(--gold);
    padding: 10px 16px;
    min-height: 40px;
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    cursor: pointer;
  }
  .nav-menu.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--forest);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 24px;
    gap: 20px;
  }

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

  /* Stack hero CTAs but size them to fit their label, like the Send Message button on contact */
  .hero-cta-row { flex-direction: column; align-items: center; gap: 14px; }
  .btn-gold, .btn-outline { text-align: center; justify-content: center; }

  /* Tighter portrait + section padding on phone-class widths */
  .feature-img { min-height: 300px; }
  .feature-text { padding: 40px 24px; }
  .episodes-section,
  .pod-list,
  .intro { padding: 48px 20px; }

  /* Shrink the podcast cover so it isn't a giant 1:1 square */
  .pod-cover { max-width: 280px; margin: 0 auto; }

  /* Quotes at small widths */
  .quote-section { padding: 56px 20px; }
  .quote-section blockquote { font-size: 22px; line-height: 1.45; }

  /* Hero a touch tighter */
  .hero-banner { min-height: 420px; padding: 48px 20px; }
  .hero-tagline { font-size: 20px; }

  /* Contact page: lose horizontal slack and shrink the headline */
  .opt1-pagehead { padding: 32px 20px 12px; }
  .opt1-pagehead h1 { font-size: 32px; }
  .opt1-wrap { padding: 16px 20px 56px; gap: 36px; }

  /* About hero quote scales down */
  .page-hero.with-bg .lead { font-size: 22px; }
}
