/* ============================================================
   MODERN ANCESTRAL MAMAS — Main Stylesheet
   Palette: matched to official logo (olive green + amber gold)
   ============================================================ */

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

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

:root {
  /* Core brand colors — sourced from the MAM logo */
  --cream:       #FAF7F0;
  --cream-dark:  #F0E8D8;
  --sage:        #6B8C35;   /* olive green from logo background */
  --sage-light:  #D4E2A8;   /* light leaf tint */
  --sage-dark:   #3A5618;   /* dark olive for headings & nav */
  --leaf:        #8FB94A;   /* bright leaf green from logo */
  --gold:        #D4A432;   /* amber flower color from logo */
  --gold-light:  #F0CE70;   /* lighter amber tint */
  --brown:       #8B5E3C;
  --brown-light: #C4956A;
  --text:        #2A2410;
  --text-muted:  #7A6A52;
  --white:       #FFFFFF;
  --border:      #DDD5C0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--sage-dark);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}
.btn--primary:hover { background: var(--sage-dark); border-color: var(--sage-dark); }

.btn--outline {
  background: transparent;
  color: var(--sage);
  border-color: var(--sage);
}
.btn--outline:hover { background: var(--sage); color: var(--white); }

.btn--cream {
  background: var(--cream);
  color: var(--sage-dark);
  border-color: var(--cream);
}
.btn--cream:hover { background: var(--cream-dark); }

/* --- Navigation --- */
.nav {
  background: var(--sage-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav__logo-img {
  height: 48px;
  width: 48px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

.nav__logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--cream);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.nav__logo-text span {
  display: block;
  font-size: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-top: 1px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav__links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage-light);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--white); }

.nav__cta {
  background: var(--sage);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 4px;
  font-size: 12px !important;
  transition: background 0.2s !important;
}
.nav__cta:hover { background: var(--sage-dark) !important; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
}

/* --- Hero --- */
.hero {
  background: var(--sage-dark);
  background-image:
    radial-gradient(ellipse at 70% 50%, rgba(107,140,53,0.35) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(212,164,50,0.15) 0%, transparent 50%);
  padding: 90px 0 80px;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 16px;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 22px;
}

.hero__title em {
  font-style: italic;
  color: var(--sage-light);
}

.hero__description {
  font-size: 17px;
  color: rgba(250,246,240,0.8);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero__listen-on {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__listen-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  color: rgba(214,232,220,0.6);
}

.hero__platform-links {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.hero__platform-link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  background: rgba(250,246,240,0.08);
  border: 1px solid rgba(250,246,240,0.15);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--cream);
  transition: all 0.2s;
}
.hero__platform-link:hover {
  background: rgba(250,246,240,0.14);
  border-color: rgba(250,246,240,0.3);
}

.hero__platform-link svg { width: 16px; height: 16px; }

.hero__image {
  position: relative;
}

.hero__photo {
  width: 100%;
  aspect-ratio: 4/5;
  background: rgba(74,124,89,0.2);
  border-radius: 8px;
  border: 1px solid rgba(250,246,240,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.hero__photo-placeholder {
  text-align: center;
  color: rgba(250,246,240,0.4);
  padding: 40px;
}

.hero__photo-placeholder p {
  font-size: 13px;
  font-style: italic;
  margin-top: 12px;
  line-height: 1.5;
}

.hero__photo-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--cream);
  border-radius: 8px;
  padding: 14px 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.hero__photo-badge-number {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--sage-dark);
  line-height: 1;
}

.hero__photo-badge-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-top: 3px;
}

/* --- Section headers --- */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 38px);
  color: var(--sage-dark);
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 14px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Latest Episode --- */
.latest-episode {
  padding: 72px 0;
  background: var(--white);
}

.latest-episode__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.latest-episode__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
}

.latest-episode__title {
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 16px;
}

.latest-episode__description {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.75;
}

.latest-episode__guest {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.latest-episode__guest-dot {
  width: 6px;
  height: 6px;
  background: var(--sage);
  border-radius: 50%;
  flex-shrink: 0;
}

.latest-episode__guest-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.latest-episode__player {
  background: var(--cream);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.latest-episode__player iframe {
  width: 100%;
  display: block;
}

.episode-player-placeholder {
  padding: 48px 32px;
  text-align: center;
  background: var(--cream-dark);
}

.episode-player-placeholder p {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 10px;
}

/* --- Episode Grid --- */
.episodes-section {
  padding: 72px 0;
  background: var(--cream);
}

.episodes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.episode-card {
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.episode-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(26,60,46,0.1);
}

.episode-card__top {
  background: var(--sage-dark);
  padding: 24px;
  position: relative;
}

.episode-card__number {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-light);
  opacity: 0.7;
}

.episode-card__body {
  padding: 22px;
}

.episode-card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--sage-dark);
  margin-bottom: 10px;
  line-height: 1.35;
  font-family: 'Playfair Display', serif;
}

.episode-card__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.episode-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.episode-card__guest {
  font-size: 12px;
  color: var(--sage);
  font-weight: 500;
}

.episode-card__listen {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown);
  display: flex;
  align-items: center;
  gap: 5px;
}

.episodes-grid__cta {
  text-align: center;
  margin-top: 40px;
}

/* --- About Strip --- */
.about-strip {
  padding: 80px 0;
  background: var(--sage-dark);
}

.about-strip__inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: center;
}

.about-strip__photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  background: rgba(74,124,89,0.3);
  border: 1px solid rgba(250,246,240,0.1);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-strip__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-strip__photo-placeholder {
  color: rgba(250,246,240,0.3);
  font-size: 13px;
  font-style: italic;
  text-align: center;
  padding: 20px;
}

.about-strip__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 14px;
}

.about-strip__name {
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--cream);
  margin-bottom: 20px;
}

.about-strip__bio {
  font-size: 16px;
  color: rgba(250,246,240,0.78);
  line-height: 1.8;
  margin-bottom: 32px;
}

/* --- Email Opt-in --- */
.optin {
  padding: 80px 0;
  background: var(--cream-dark);
  text-align: center;
}

.optin__icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.optin__title {
  font-size: clamp(26px, 3.5vw, 36px);
  margin-bottom: 14px;
}

.optin__description {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.optin__form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.optin__input {
  flex: 1;
  min-width: 200px;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.2s;
}
.optin__input:focus {
  outline: none;
  border-color: var(--sage);
}
.optin__input::placeholder { color: #b0a898; }

.optin__fine-print {
  font-size: 12px;
  color: var(--text-muted);
}

/* Kit embed override */
.kit-form-container {
  max-width: 460px;
  margin: 0 auto;
}

/* --- Sponsor Strip --- */
.sponsor-strip {
  padding: 48px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.sponsor-strip__label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.sponsor-strip__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.sponsor-logo {
  opacity: 0.7;
  transition: opacity 0.25s;
  display: flex;
  align-items: center;
}
.sponsor-logo:hover { opacity: 1; }

.sponsor-logo--img img {
  height: 44px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.25s;
}
.sponsor-logo--img:hover img {
  filter: grayscale(0%);
}

/* --- Footer --- */
.footer {
  background: var(--sage-dark);
  padding: 56px 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--cream);
  margin-bottom: 12px;
}

.footer__brand-desc {
  font-size: 13px;
  color: rgba(250,246,240,0.5);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Footer logo/tagline aliases used on inner pages */
.footer__logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--cream);
  margin-bottom: 12px;
}
.footer__tagline {
  font-size: 13px;
  color: rgba(250,246,240,0.5);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer__social,
.footer__socials {
  display: flex;
  gap: 12px;
}

.footer__socials a {
  width: 36px;
  height: 36px;
  background: rgba(250,246,240,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250,246,240,0.6);
  transition: all 0.2s;
  text-decoration: none;
}
.footer__socials a:hover {
  background: var(--sage);
  color: var(--white);
}
.footer__socials a svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  background: rgba(250,246,240,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(250,246,240,0.6);
  transition: all 0.2s;
  text-decoration: none;
}
.footer__social-link:hover {
  background: var(--sage);
  color: var(--white);
}

.footer__col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,246,240,0.4);
  margin-bottom: 18px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer__links a {
  font-size: 14px;
  color: rgba(250,246,240,0.65);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--cream); }

.footer__bottom {
  border-top: 1px solid rgba(250,246,240,0.1);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copyright {
  font-size: 12px;
  color: rgba(250,246,240,0.3);
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a {
  font-size: 12px;
  color: rgba(250,246,240,0.3);
  transition: color 0.2s;
}
.footer__bottom-links a:hover { color: rgba(250,246,240,0.6); }

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: var(--sage-dark);
  padding: 64px 0 56px;
  text-align: center;
}

.page-hero__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 14px;
}

.page-hero__title {
  font-size: clamp(32px, 5vw, 48px);
  color: var(--cream);
  margin-bottom: 16px;
}

.page-hero__subtitle {
  font-size: 17px;
  color: rgba(250,246,240,0.7);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Episodes Archive --- */
.episodes-archive {
  padding: 64px 0;
}

.episodes-archive__search {
  max-width: 480px;
  margin: 0 auto 48px;
  position: relative;
}

.episodes-archive__search input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  border: 2px solid var(--border);
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.2s;
}

.episodes-archive__search input:focus {
  outline: none;
  border-color: var(--sage);
}

.episodes-archive__search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 18px;
}

.episodes-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.episode-row {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 26px 30px;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 24px;
  align-items: center;
  transition: transform 0.15s, box-shadow 0.15s;
}

.episode-row:hover {
  transform: translateX(3px);
  box-shadow: 0 6px 20px rgba(26,60,46,0.08);
}

.episode-row__number {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--sage);
  text-align: center;
  line-height: 1;
}

.episode-row__ep-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  display: block;
  text-align: center;
}

.episode-row__title {
  font-size: 17px;
  font-weight: 600;
  color: var(--sage-dark);
  margin-bottom: 5px;
  font-family: 'Playfair Display', serif;
}

.episode-row__meta {
  font-size: 13px;
  color: var(--text-muted);
}

.episode-row__meta span + span::before {
  content: " · ";
}

.episode-row__cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  white-space: nowrap;
  border: 2px solid var(--sage);
  padding: 9px 18px;
  border-radius: 4px;
  transition: all 0.2s;
}
.episode-row__cta:hover {
  background: var(--sage);
  color: var(--white);
}

/* --- Work With Us --- */
.wwu-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin: 48px 0;
  background: var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.wwu-stat {
  background: var(--white);
  padding: 32px 20px;
  text-align: center;
}

.wwu-stat__number {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--sage-dark);
  line-height: 1;
  margin-bottom: 8px;
}

.wwu-stat__label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

.wwu-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
}

.wwu-package {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 32px 28px;
  position: relative;
}

.wwu-package--featured {
  border-color: var(--sage);
}

.wwu-package__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sage);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.wwu-package__name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
}

.wwu-package__price {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--sage-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.wwu-package__duration {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.wwu-package__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.wwu-package__features li {
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.wwu-package__features li::before {
  content: "✓";
  color: var(--sage);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.wwu-contact {
  background: var(--sage-dark);
  border-radius: 12px;
  padding: 56px 48px;
  text-align: center;
  margin: 48px 0;
}

.wwu-contact__title {
  font-size: clamp(22px, 3vw, 30px);
  color: var(--cream);
  margin-bottom: 12px;
}

.wwu-contact__desc {
  font-size: 16px;
  color: rgba(250,246,240,0.7);
  max-width: 460px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.wwu-contact__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 520px;
  margin: 0 auto;
}

.wwu-contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.wwu-contact__input,
.wwu-contact__textarea {
  padding: 13px 16px;
  border: 2px solid rgba(250,246,240,0.12);
  border-radius: 4px;
  background: rgba(250,246,240,0.06);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: border-color 0.2s;
}

.wwu-contact__input::placeholder,
.wwu-contact__textarea::placeholder {
  color: rgba(250,246,240,0.3);
}

.wwu-contact__input:focus,
.wwu-contact__textarea:focus {
  outline: none;
  border-color: var(--sage);
}

.wwu-contact__textarea {
  resize: vertical;
  min-height: 100px;
}

/* --- About Page --- */
.about-content {
  padding: 72px 0;
}

.about-split {
  padding: 72px 0;
}

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

.about-split--reverse .about-split__inner {
  grid-template-columns: 1fr 380px;
}

.about-split__photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 8px;
  overflow: hidden;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-split__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-split__photo-placeholder {
  color: var(--sage);
  font-size: 13px;
  font-style: italic;
  text-align: center;
  padding: 20px;
}

.about-split__name {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 6px;
}

.about-split__title {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 24px;
}

.about-split__bio p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 18px;
}

.about-split__credentials {
  margin-top: 20px;
  margin-bottom: 24px;
}

.about-split__credential {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.about-split__credential:last-child { border-bottom: none; }

.about-split__instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sage);
  text-decoration: none;
  transition: color 0.2s;
}
.about-split__instagram:hover { color: var(--sage-dark); }

.about-values {
  background: var(--cream-dark);
  padding: 64px 0;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.about-value-card {
  background: var(--white);
  padding: 28px;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.about-value-card__icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.about-value-card__title {
  font-size: 18px;
  color: var(--sage-dark);
  margin-bottom: 10px;
}

.about-value-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__image { display: none; }
  .latest-episode__inner { grid-template-columns: 1fr; }
  .episodes-grid { grid-template-columns: repeat(2, 1fr); }
  .about-strip__inner { grid-template-columns: 1fr; }
  .about-strip__photo { max-width: 280px; }
  .wwu-stats { grid-template-columns: repeat(2, 1fr); }
  .wwu-packages { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .about-split__inner { grid-template-columns: 1fr !important; }
  .about-split__photo { max-width: 300px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .episode-row { grid-template-columns: 48px 1fr; }
  .episode-row__cta { display: none; }
  .wwu-contact__row { grid-template-columns: 1fr; }
  .about-values__grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .episodes-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .wwu-stats { grid-template-columns: 1fr 1fr; }
  .wwu-contact { padding: 40px 24px; }
}

/* --- Mobile nav open state --- */
.nav--open .nav__links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--sage-dark);
  padding: 20px 24px 28px;
  gap: 20px;
  border-top: 1px solid rgba(250,246,240,0.1);
  z-index: 99;
}

/* --- Utility --- */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 56px 0;
}

/* ============================================================
   MOBILE POLISH
   Sitewide safety net + utilities for pages that use inline
   grid styles. Media query overrides use !important to beat
   inline styles on specific elements tagged with these classes.
   ============================================================ */

/* Prevent any rogue element from causing horizontal scroll */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* Allow long headings / words to break so big serif titles don't
   push the grid column wider than the viewport on narrow phones. */
h1, h2, h3, h4, p { overflow-wrap: break-word; word-wrap: break-word; }

/* Grid children need min-width: 0 to actually shrink below their
   intrinsic min-content width. This is the classic CSS grid "1fr
   won't shrink" issue — without this, big serif titles overflow. */
.hero__inner > *,
.hero__content,
.latest-episode__inner > *,
.about-strip > .container > div > *,
.mobile-stack > *,
.host-card > * {
  min-width: 0;
}

/* Images never exceed container */
img, video, iframe {
  max-width: 100%;
  height: auto;
}
iframe { height: auto; }

/* Utility: stack any grid or flex row to single column on mobile.
   Apply to any element whose inline `grid-template-columns` should
   collapse at phone/tablet widths. */
@media (max-width: 768px) {
  .mobile-stack {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .mobile-stack--tight {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  /* The two-col host cards on index.html: image + text side-by-side.
     On very small screens they need to stack so the text gets room. */
  .host-card {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    text-align: center;
    justify-items: center;
  }
  .host-card > img {
    margin: 0 auto;
  }
  /* Featured card on favorites (180px + 1fr) — stack and shrink padding */
  .feature-card-mobile {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    padding: 32px 24px !important;
  }
}

/* Tighter container padding on small phones so content gets more room */
@media (max-width: 480px) {
  .container,
  .container--narrow,
  .nav__inner,
  .hero__inner {
    padding-left: 18px;
    padding-right: 18px;
  }
  /* Nav logo text scales down so logo + hamburger always fit */
  .nav__logo-text { font-size: 15px; }
  .nav__logo-text span { font-size: 9px; }
  .nav__logo-img { height: 40px; width: 40px; }
  /* Reduce vertical section padding a touch on small phones */
  .hero { padding: 64px 0 56px; }
  .latest-episode,
  .episodes-section,
  .about-strip,
  .optin,
  .sponsor-strip { padding-top: 56px; padding-bottom: 56px; }
}

/* Very narrow (iPhone SE and similar) — extra safety on nav logo */
@media (max-width: 360px) {
  .nav__logo-text { font-size: 13px; letter-spacing: 0; }
  .nav__logo-text span { font-size: 8px; }
  .nav__inner { padding: 14px 16px; }
}
