/* ============================================
   Mortgage Mom Radio — Ghost-style design
   Inspired by Creator Science layout
   ============================================ */

:root {
  --red:        #be1d22;
  --red-deep:   #8f1419;
  --red-bright: #ff4242;
  --orange:     #fca420;
  --cream:      #faf6f1;
  --paper:      #f5efe6;
  --ink:        #1a1614;
  --ink-soft:   #4a4340;
  --line:       #e8e0d4;
  --white:      #ffffff;

  --font-display: "Fraunces", Georgia, serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max: 1200px;
  --radius: 14px;
  --radius-lg: 22px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  transition: transform .15s ease, background .15s ease, color .15s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}
.btn:hover { transform: translateY(-1px); }

.btn--primary { background: var(--red); color: var(--white); }
.btn--primary:hover { background: var(--red-deep); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); }

.btn--white { background: var(--white); color: var(--ink); }
.btn--white:hover { background: var(--paper); }

.btn--lg { padding: 15px 26px; font-size: 15px; }

.link {
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 1px;
  transition: color .15s, border-color .15s;
}
.link:hover { color: var(--red); border-color: var(--red); }

/* ===== Eyebrow ===== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.eyebrow--light { color: rgba(255,255,255,0.85); }
.eyebrow__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red);
}

/* ===== Notice bar ===== */
.notice {
  background: var(--ink);
  color: var(--cream);
  font-size: 13px;
  line-height: 1.4;
}
.notice__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; padding: 10px 28px;
  flex-wrap: wrap;
}
.notice__text { color: var(--cream); }
.notice__text strong { color: var(--white); font-weight: 600; }
.notice__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 0 4px rgba(255,66,66,0.25);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(255,66,66,0.25); }
  50%     { box-shadow: 0 0 0 7px rgba(255,66,66,0.08); }
}
.notice__cta {
  font-weight: 600; color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 1px;
}

/* ===== Header ===== */
.header {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(8px);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px;
  max-width: var(--max);
  margin: 0 auto;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ink);
}
.brand__mark { width: 36px; height: 36px; color: var(--red); flex-shrink: 0; }
.brand__name {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}
.brand__name--accent {
  font-style: italic;
  font-weight: 500;
  color: var(--red);
}
/* Primary nav */
.nav { display: flex; align-items: center; }
.nav__list {
  display: flex; align-items: center;
  list-style: none; margin: 0; padding: 0;
  gap: 28px;
}
.nav__list a {
  font-size: 14px; font-weight: 500;
  color: var(--ink-soft);
  transition: color .15s;
  white-space: nowrap;
}
.nav__list a:hover { color: var(--red); }

/* More dropdown */
.nav__more { position: relative; }
.nav__more-btn {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: inherit;
  font-size: 14px; font-weight: 500;
  color: var(--ink-soft);
  background: transparent; border: 0; padding: 0;
  cursor: pointer;
  transition: color .15s;
  white-space: nowrap;
}
.nav__more-btn:hover,
.nav__more-btn.is-active { color: var(--red); }
.nav__more-btn.is-active { font-weight: 600; }
.nav__more-caret {
  transition: transform .2s;
}
.nav__more-btn[aria-expanded="true"] .nav__more-caret { transform: rotate(180deg); }
.nav__more-menu {
  position: absolute;
  top: calc(100% + 14px); right: -8px;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(26,22,20,0.10), 0 2px 6px rgba(26,22,20,0.04);
  padding: 8px;
  list-style: none; margin: 0;
  opacity: 0; visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .15s, transform .15s, visibility .15s;
  z-index: 60;
}
.nav__more-btn[aria-expanded="true"] + .nav__more-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__more-menu li { margin: 0; }
.nav__more-menu a {
  display: block;
  padding: 9px 14px;
  font-size: 14px;
  color: var(--ink);
  border-radius: 8px;
  transition: background .12s, color .12s;
  white-space: nowrap;
}
.nav__more-menu a:hover { background: var(--paper); color: var(--red); }
.nav__more-menu a.is-active { color: var(--red); font-weight: 600; background: var(--paper); }

/* Right side container */
.header__right { display: flex; align-items: center; gap: 16px; }

/* Hamburger toggle (mobile only) */
.nav__toggle {
  display: none;
  width: 40px; height: 40px;
  background: transparent; border: 0;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav__toggle:hover { background: var(--paper); }
.nav__toggle-bar {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav sheet — fixed full-viewport overlay so long menus stay scrollable
   even when mobile browser chrome (Safari URL bar) eats into 100vh.
   Sheet fills the viewport but reserves padding-top equal to header height so
   content scrolls UNDER the (still-visible, z-index 100 when open) header,
   keeping the hamburger toggle tappable to close. */
.mobile-nav {
  position: fixed;
  inset: 0;             /* full viewport — works regardless of header height */
  z-index: 60;
  background: var(--cream);
  padding: 88px 24px max(112px, calc(env(safe-area-inset-bottom) + 96px));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  height: 100dvh;       /* iOS dynamic viewport — falls back via height below */
  max-height: 100vh;
}
@media (max-width: 480px) {
  .mobile-nav { padding-top: 76px; }   /* smaller header on tiny screens */
}
/* While the sheet is open, lift the sticky header above it so the X (hamburger
   toggle) is always tappable to close. */
body.nav-open .header { z-index: 100; }
.mobile-nav[hidden] { display: none; }
.mobile-nav__list {
  list-style: none; margin: 0 0 18px; padding: 0;
  display: flex; flex-direction: column; gap: 2px;
}
.mobile-nav__list a {
  display: block;
  padding: 14px 4px;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid rgba(26,22,20,0.08);
  text-decoration: none;
}
.mobile-nav__list a.is-active { color: var(--red); font-weight: 600; }
.mobile-nav__list--secondary { margin-top: 6px; }
.mobile-nav__cta {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 6px;
}
/* Lock background scroll when the sheet is open */
body.nav-open { overflow: hidden; touch-action: none; }

/* ===== Hero ===== */
.hero {
  padding: 70px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -100px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(252,164,32,0.10), transparent 70%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero__title--script {
  font-style: italic;
  font-weight: 400;
  color: var(--red);
  font-variation-settings: "opsz" 144;
}
.hero__lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 520px;
}
.hero__cta {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero__meta {
  display: flex; gap: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero__meta > div {
  display: flex; flex-direction: column;
}
.hero__meta strong {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.hero__meta span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-top: 6px;
}

/* Portrait */
.hero__portrait {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  min-height: 480px;
}
.hero__portrait::before {
  content: "";
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(190,29,34,0.08), transparent 65%);
  z-index: 0;
}
.portrait__circle {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(160deg, var(--paper), #ebe0d0);
  box-shadow: 0 30px 60px -25px rgba(26,22,20,0.3);
  z-index: 1;
  border: 6px solid var(--cream);
}
.portrait__circle img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.45);
  transform-origin: center 35%;
}
.portrait__sticker {
  position: absolute;
  bottom: 6%; right: -10px;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--red);
  color: var(--cream);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  transform: rotate(-10deg);
  font-family: var(--font-display);
  z-index: 3;
  box-shadow: 0 12px 30px -10px rgba(190,29,34,0.55);
}
.portrait__sticker span { font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; opacity: 0.9; }
.portrait__sticker strong { font-size: 18px; font-weight: 700; margin: 3px 0; line-height: 1; font-style: italic; }

.portrait__chip {
  position: absolute;
  background: var(--white);
  color: var(--ink);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-flex; align-items: center; gap: 8px;
  z-index: 3;
  box-shadow: 0 10px 30px -10px rgba(26,22,20,0.2);
  border: 1px solid var(--line);
  white-space: nowrap;
}
.portrait__chip svg { width: 14px; height: 14px; color: var(--red); }
.portrait__chip--top {
  top: 8%; left: -20px;
  transform: rotate(-3deg);
}
.portrait__chip--bottom {
  bottom: 12%; left: -10px;
  transform: rotate(2deg);
}
.chip__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red);
}

/* ===== Strip ===== */
.strip {
  padding: 36px 0;
  background: var(--ink);
  color: var(--cream);
}
.strip__label {
  text-align: center;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(250,246,241,0.5);
  margin-bottom: 16px;
}
.strip__items {
  display: flex; justify-content: center; align-items: center;
  gap: 28px; flex-wrap: wrap;
}
.strip__item {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  color: var(--cream);
}
.strip__dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--red);
}

/* ===== Section heads ===== */
.section__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.028em;
  line-height: 1.05;
  color: var(--ink);
}
.section__lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-top: 16px;
  max-width: 540px;
}
.section__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 28px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

/* ===== Latest episode ===== */
.latest {
  padding: 90px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.latest__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}
.latest__cover {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  padding: 36px;
  color: var(--cream);
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 30px 60px -30px rgba(190,29,34,0.4);
  position: relative;
  overflow: hidden;
}
.latest__cover::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(252,164,32,0.3), transparent 50%);
}
.cover__inner { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; justify-content: space-between; }
.cover__num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.85;
}
.cover__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-top: auto;
  margin-bottom: 24px;
}
.cover__wave {
  display: flex; align-items: flex-end; gap: 4px; height: 40px;
}
.cover__wave span {
  flex: 1;
  background: rgba(250,246,241,0.7);
  border-radius: 2px;
  animation: wave 1.4s ease-in-out infinite;
}
.cover__wave span:nth-child(1)  { height: 30%; animation-delay: 0.0s; }
.cover__wave span:nth-child(2)  { height: 60%; animation-delay: 0.1s; }
.cover__wave span:nth-child(3)  { height: 90%; animation-delay: 0.2s; }
.cover__wave span:nth-child(4)  { height: 50%; animation-delay: 0.3s; }
.cover__wave span:nth-child(5)  { height: 75%; animation-delay: 0.4s; }
.cover__wave span:nth-child(6)  { height: 40%; animation-delay: 0.5s; }
.cover__wave span:nth-child(7)  { height: 85%; animation-delay: 0.6s; }
.cover__wave span:nth-child(8)  { height: 55%; animation-delay: 0.7s; }
.cover__wave span:nth-child(9)  { height: 70%; animation-delay: 0.8s; }
.cover__wave span:nth-child(10) { height: 35%; animation-delay: 0.9s; }
.cover__wave span:nth-child(11) { height: 80%; animation-delay: 1.0s; }
.cover__wave span:nth-child(12) { height: 45%; animation-delay: 1.1s; }
.cover__wave span:nth-child(13) { height: 65%; animation-delay: 1.2s; }
.cover__wave span:nth-child(14) { height: 95%; animation-delay: 0.0s; }
.cover__wave span:nth-child(15) { height: 50%; animation-delay: 0.2s; }
.cover__wave span:nth-child(16) { height: 75%; animation-delay: 0.4s; }
.cover__wave span:nth-child(17) { height: 40%; animation-delay: 0.6s; }
.cover__wave span:nth-child(18) { height: 60%; animation-delay: 0.8s; }
.cover__wave span:nth-child(19) { height: 35%; animation-delay: 1.0s; }
.cover__wave span:nth-child(20) { height: 70%; animation-delay: 1.2s; }
@keyframes wave {
  0%,100% { transform: scaleY(0.6); }
  50%     { transform: scaleY(1); }
}

.player {
  display: flex; align-items: center; gap: 18px;
  padding: 18px;
  background: var(--white);
  border-radius: var(--radius);
  margin-top: 32px;
  box-shadow: 0 10px 30px -15px rgba(26,22,20,0.15);
}
.player__play {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .15s;
  flex-shrink: 0;
}
.player__play:hover { background: var(--red-deep); }
.player__play svg { width: 22px; height: 22px; margin-left: 3px; }
.player__meta { flex: 1; }
.player__title { font-weight: 600; font-size: 14px; margin-bottom: 8px; }
.player__bar {
  height: 4px; background: var(--line); border-radius: 2px;
  overflow: hidden;
}
.player__bar span {
  display: block; height: 100%; background: var(--red);
  border-radius: 2px;
}
.player__times {
  display: flex; justify-content: space-between;
  font-size: 11px; color: var(--ink-soft);
  margin-top: 6px;
  font-variant-numeric: tabular-nums;
}

.latest__listen {
  display: flex; align-items: center; gap: 16px;
  margin-top: 24px;
  font-size: 13px;
  color: var(--ink-soft);
  flex-wrap: wrap;
}
.latest__listen a {
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 1px;
  transition: color .15s, border-color .15s;
}
.latest__listen a:hover { color: var(--red); border-color: var(--red); }

/* ===== Episodes grid ===== */
.episodes { padding: 100px 0; }
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
  cursor: pointer;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -20px rgba(26,22,20,0.2);
}
.card__cover {
  aspect-ratio: 16/9;
  position: relative;
  display: flex; align-items: flex-end;
  padding: 18px;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.card__cover::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(252,164,32,0.18), rgba(190,29,34,0.18));
  mix-blend-mode: overlay;
}
.card__cover span { position: relative; z-index: 1; }
.card__cover--1 { background: linear-gradient(135deg, #be1d22, #8f1419); }
.card__cover--2 { background: linear-gradient(135deg, #1a1614, #4a4340); }
.card__cover--3 { background: linear-gradient(135deg, #fca420, #be1d22); }
.card__cover--4 { background: linear-gradient(135deg, #4a4340, #8f1419); }
.card__cover--5 { background: linear-gradient(135deg, #8f1419, #1a1614); }
.card__cover--6 { background: linear-gradient(135deg, #be1d22, #fca420); }

.card__body { padding: 22px; }
.card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  margin-bottom: 12px;
}
.card__body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.018em;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 10px;
}
.card__body p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.card__meta {
  display: flex; gap: 8px;
  font-size: 12px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===== Tools ===== */
.tools {
  padding: 100px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.tools__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.tool {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex; flex-direction: column;
}
.tool:hover {
  transform: translateY(-3px);
  border-color: var(--red);
  box-shadow: 0 20px 40px -20px rgba(190,29,34,0.2);
}
.tool__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(190,29,34,0.08);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.tool__icon svg { width: 22px; height: 22px; }
.tool h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 8px;
  color: var(--ink);
}
.tool p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 16px;
  flex: 1;
}
.tool__cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
}

/* ===== About / Quote ===== */
.about {
  padding: 110px 0;
  background: var(--cream);
}
.about__inner { max-width: 820px; margin: 0 auto; padding: 0 28px; text-align: center; }
.about__mark { width: 48px; height: 48px; margin: 0 auto 24px; color: var(--red); }
.about blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.3;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin-bottom: 28px;
}
.about cite {
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
}

/* ===== Opt-in ===== */
.optin {
  padding: 80px 0;
  background: var(--ink);
  color: var(--cream);
}
.optin__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.optin__text { max-width: 600px; }
.optin h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 8px 0 12px;
}
.optin p {
  color: rgba(250,246,241,0.7);
  font-size: 16px;
  line-height: 1.6;
}

/* ===== Footer ===== */
.footer {
  background: var(--ink);
  color: rgba(250,246,241,0.7);
  border-top: 1px solid rgba(250,246,241,0.08);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr;
  gap: 36px;
  padding: 70px 28px 50px;
}
.brand--footer { color: var(--cream); margin-bottom: 18px; }
.brand--footer .brand__mark { color: var(--cream); }
.brand--footer .brand__name--accent { color: var(--orange); }
.footer__bio {
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
}
.footer__col h4 {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 10px; font-size: 14px; line-height: 1.5; }
.footer__col a { transition: color .15s; }
.footer__col a:hover { color: var(--cream); }

.footer__legal {
  border-top: 1px solid rgba(250,246,241,0.08);
  padding: 32px 28px 28px;
}

.compliance {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: start;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(250,246,241,0.08);
  margin-bottom: 18px;
}
.compliance__main { min-width: 0; }
.compliance__line {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(250,246,241,0.75);
  margin-bottom: 8px;
}
.compliance__line strong {
  color: var(--cream);
  font-weight: 600;
}
.compliance__body {
  font-size: 11px;
  line-height: 1.7;
  color: rgba(250,246,241,0.5);
  margin: 14px 0 12px;
  max-width: 920px;
}
.compliance__links {
  font-size: 12px;
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap;
}
.compliance__links a {
  color: rgba(250,246,241,0.85);
  font-weight: 500;
  border-bottom: 1px solid rgba(250,246,241,0.25);
  padding-bottom: 1px;
  transition: color .15s, border-color .15s;
}
.compliance__links a:hover {
  color: var(--cream);
  border-color: var(--cream);
}
.compliance__sep {
  color: rgba(250,246,241,0.25);
}
.compliance__eho {
  flex-shrink: 0;
}
.compliance__eho img {
  width: 76px;
  height: auto;
  opacity: 0.95;
}

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
  color: rgba(250,246,241,0.5);
  flex-wrap: wrap; gap: 12px;
}
.footer__policies {
  display: flex; align-items: center; gap: 8px;
}
.footer__policies a {
  color: rgba(250,246,241,0.6);
  transition: color .15s;
}
.footer__policies a:hover { color: var(--cream); }
.footer__sep { color: rgba(250,246,241,0.3); }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero { padding: 50px 0 60px; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__portrait { order: -1; max-width: 380px; margin: 0 auto; min-height: 380px; }
  .portrait__circle { max-width: 320px; }
  .hero__portrait::before { width: 320px; height: 320px; }
  .latest__inner { grid-template-columns: 1fr; gap: 40px; }
  .latest__cover { max-width: 480px; margin: 0 auto; width: 100%; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .tools__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ===== Responsive nav breakpoints ===== */
@media (max-width: 1100px) {
  .header__inner { padding: 16px 24px; }
  .nav__list { gap: 22px; }
  .brand__name { font-size: 19px; }
}
@media (max-width: 960px) {
  .nav { display: none; }
  .nav__toggle { display: inline-flex; }
  .header__cta { padding: 10px 18px; font-size: 13px; }
}
@media (max-width: 480px) {
  .header__inner { padding: 14px 18px; }
  .header__right { gap: 10px; }
  .header__cta { padding: 9px 14px; font-size: 12.5px; }
  .brand__name { font-size: 17px; }
  .brand__mark { width: 32px; height: 32px; }
  .notice { font-size: 12px; }
  .notice__inner { padding: 8px 16px; gap: 10px; }
}

@media (max-width: 720px) {
  .header__cta { padding: 9px 16px; font-size: 13px; }
  .hero__meta { gap: 24px; flex-wrap: wrap; }
  .hero__meta strong { font-size: 22px; }
  .grid { grid-template-columns: 1fr; }
  .tools__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; padding: 50px 28px 40px; }
  .compliance { grid-template-columns: 1fr; gap: 20px; }
  .compliance__eho { order: -1; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .strip__items { gap: 14px; }
  .strip__item { font-size: 15px; }
  .optin__inner { flex-direction: column; align-items: flex-start; }
  .section__head { flex-direction: column; align-items: flex-start; }
}

/* ===========================================================
   Multi-page additions
   =========================================================== */

/* Active nav state */
.nav a.is-active {
  color: var(--red);
  font-weight: 600;
}

/* Page hero — used on all sub-pages */
.page-hero {
  padding: 80px 0 56px;
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
  border-bottom: 1px solid rgba(26,22,20,0.06);
}
.page-hero .container { max-width: 880px; }
.page-hero .eyebrow { margin-bottom: 18px; }
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 20px;
}
.page-hero__lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 640px;
}

/* Two-column layout used on podcast/contact pages */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.two-col .section__title { margin-bottom: 20px; font-size: 28px; }

/* Section variant */
.section--alt { background: var(--paper); }

/* Bullet list */
.bullets {
  list-style: none;
  padding: 0;
}
.bullets li {
  padding: 14px 0 14px 26px;
  border-bottom: 1px solid rgba(26,22,20,0.08);
  position: relative;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
}
.bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}
.bullets li:last-child { border-bottom: none; }

/* Listen / podcast platforms list */
.platforms {
  display: grid;
  gap: 12px;
}
.platform {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  background: var(--cream);
  border: 1px solid rgba(26,22,20,0.08);
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink);
  transition: all .18s;
}
.platform:hover {
  border-color: var(--red);
  transform: translateX(2px);
}
.platform strong {
  font-size: 16px;
  font-weight: 600;
}
.platform span {
  font-size: 14px;
  color: var(--ink-muted);
}

/* Section head with row layout */
.section__head--row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 32px;
}

/* Centered narrow column */
.center-narrow {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.center-narrow p { margin: 12px 0 24px; color: var(--ink-muted); font-size: 17px; line-height: 1.6; }
.hero__ctas--center { justify-content: center; }

/* Tools grid large variant */
.tools__grid--lg { gap: 20px; }

/* About page — bio block */
.bio__inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}
.bio__visual .portrait { width: 100%; max-width: 360px; }
.bio__visual .portrait img { width: 100%; height: auto; border-radius: 50%; display: block; }
.bio__text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 18px;
}

/* Credentials grid */
.creds {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 32px 0;
}
.cred {
  background: var(--cream);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
}
.cred strong {
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 6px;
}
.cred span {
  font-size: 13px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Muted helper text */
.muted {
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.5;
}
.muted.center { text-align: center; margin-top: 32px; }

/* Contact list */
.contact-list {
  display: grid;
  gap: 18px;
}
.contact-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(26,22,20,0.08);
  align-items: baseline;
}
.contact-item:last-child { border-bottom: none; }
.contact-item__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  font-weight: 600;
}
.contact-item a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: rgba(190,29,34,0.3);
  text-underline-offset: 3px;
}
.contact-item a:hover { text-decoration-color: var(--red); }

/* Contact form */
.form {
  display: grid;
  gap: 16px;
}
.form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form input, .form textarea {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid rgba(26,22,20,0.12);
  border-radius: 8px;
  padding: 12px 14px;
  transition: border-color .15s;
}
.form input:focus, .form textarea:focus {
  outline: none;
  border-color: var(--red);
}
.form button { margin-top: 8px; }
.form__success {
  color: #1a7a3e;
  font-size: 14px;
  font-weight: 500;
}
.form__note {
  font-size: 13px;
  color: var(--ink-muted);
  font-style: italic;
}

/* Apply page grid */
.apply__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
}
.apply__card {
  display: block;
  padding: 32px;
  background: var(--cream);
  border: 1px solid rgba(26,22,20,0.08);
  border-radius: 16px;
  text-decoration: none;
  color: var(--ink);
  transition: all .18s;
}
.apply__card:hover {
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,22,20,0.06);
}
.apply__card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--ink);
}
.apply__card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-muted);
  margin-bottom: 16px;
}
.apply__card .apply__cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.01em;
}
.apply__card--primary {
  background: var(--ink);
  border-color: var(--ink);
}
.apply__card--primary h3 { color: var(--cream); }
.apply__card--primary p { color: rgba(250,246,241,0.7); }
.apply__card--primary .apply__cta { color: var(--orange); }
.apply__card--primary:hover {
  background: #2a2220;
  border-color: var(--red);
}

/* Steps list */
.steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 24px 0 0;
  text-align: left;
}
.steps li {
  counter-increment: step;
  padding: 20px 0 20px 56px;
  border-bottom: 1px solid rgba(26,22,20,0.08);
  position: relative;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
}
.steps li strong { font-weight: 600; color: var(--ink); }
.steps li:last-child { border-bottom: none; }

/* Inline link helper */
.inline-link {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(190,29,34,0.3);
}
.inline-link:hover { text-decoration-color: var(--red); }

/* Mobile responsive */
@media (max-width: 820px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .bio__inner { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .bio__visual { max-width: 240px; margin: 0 auto; }
  .creds { grid-template-columns: repeat(2, 1fr); }
  .apply__grid { grid-template-columns: 1fr; }
  .page-hero { padding: 56px 0 40px; }
  .section__head--row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .contact-item { grid-template-columns: 1fr; gap: 4px; }
}

/* Episode list/grid (new pages) */
.episodes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.episode {
  background: var(--cream);
  border: 1px solid rgba(26,22,20,0.08);
  border-radius: 14px;
  padding: 28px;
  transition: all .18s;
  cursor: pointer;
}
.episode:hover {
  border-color: rgba(190,29,34,0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26,22,20,0.06);
}
.episode__num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.episode__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.episode__summary {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-muted);
  margin: 0 0 18px;
}
.episode__meta {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  font-weight: 600;
}

/* Listen platforms inline */
.listen__platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 28px;
}
.listen__platforms a {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding-bottom: 4px;
}
.listen__platforms a:hover { color: var(--red); }

/* Mobile */
@media (max-width: 820px) {
  .episodes__grid { grid-template-columns: 1fr; gap: 16px; }
  .listen__platforms { gap: 18px; }
}

/* Referral Partners */
.partner-group { padding: 56px 0; }
.partner-group + .partner-group { padding-top: 0; }
.partner-group__head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(26,22,20,0.1);
}
.partner-group__head .section__title {
  font-size: 32px;
  margin: 0;
}
.partner-group__head .eyebrow { margin: 0; }

.partners__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.partner {
  background: var(--cream);
  border: 1px solid rgba(26,22,20,0.08);
  border-radius: 14px;
  padding: 28px;
  transition: all .18s;
}
.partner:hover {
  border-color: rgba(190,29,34,0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26,22,20,0.06);
}
.partner__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.partner__photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 18px;
  background: var(--paper);
  border: 2px solid rgba(26,22,20,0.06);
}
.partner__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.partner__phone {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.partner__phone:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.partner__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.partner__brokerage {
  font-size: 14px;
  color: var(--ink-muted);
  margin: 0 0 16px;
  font-weight: 500;
}
.partner__areas {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(26,22,20,0.08);
}
.partner__areas-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  margin-bottom: 6px;
}

@media (max-width: 820px) {
  .partners__grid { grid-template-columns: 1fr; gap: 14px; }
  .partner-group__head { flex-direction: column; gap: 8px; align-items: flex-start; }
}

/* ============ FREE TOOLS / CALCULATORS ============ */
.section--tight { padding: 32px 0 8px; }
.tool-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px;
  background: var(--paper);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  justify-content: center;
}
.tool-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.tool-nav a:hover { background: var(--red); color: #fff; border-color: var(--red); }

.calc { padding: 56px 0; }
.calc--alt { background: var(--paper); }
.calc__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: start;
}
.calc__intro { padding-top: 8px; }
.calc__title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 8px 0 14px;
  color: var(--ink);
}
.calc__lede {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 44ch;
}
.calc__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  margin-top: 24px;
}
.calc__form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.calc__hint {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(0,0,0,.42);
  margin-left: 4px;
}
.calc__form input,
.calc__form select {
  appearance: none;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 10px;
  padding: 12px 14px;
  width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.calc__form input:focus,
.calc__form select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(196, 30, 58, .12);
}
.calc__result {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 1px 0 rgba(0,0,0,.02), 0 16px 40px -28px rgba(0,0,0,.18);
  position: sticky;
  top: 24px;
}
.calc--alt .calc__result { background: #fff; }
.calc__big {
  border-bottom: 1px solid rgba(0,0,0,.08);
  padding-bottom: 18px;
  margin-bottom: 18px;
}
.calc__big-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.calc__big-num {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--red);
}
.calc__big--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.calc__big--split .calc__big-num { font-size: clamp(28px, 3.5vw, 36px); }
.calc__breakdown {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: grid;
  gap: 10px;
}
.calc__breakdown li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--ink-soft);
  padding: 6px 0;
  border-bottom: 1px dashed rgba(0,0,0,.06);
}
.calc__breakdown li:last-child { border-bottom: 0; }
.calc__breakdown li strong {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--ink);
  font-size: 15px;
}
.calc__breakdown li em {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  color: rgba(0,0,0,.42);
  margin-left: 4px;
}
.calc__breakdown-hi {
  background: rgba(196, 30, 58, .06);
  border-radius: 8px;
  padding: 8px 12px !important;
  margin-top: 4px;
}
.calc__breakdown-hi strong { color: var(--red) !important; }
.calc__foot {
  font-size: 12px;
  color: var(--ink-soft);
  margin: 12px 0 0;
  line-height: 1.5;
}
.calc__verdict {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 16px;
}
.calc__verdict--ok   { background: rgba(40, 140, 90, .10);  color: #1f6a4c; }
.calc__verdict--warn { background: rgba(210, 145, 30, .12); color: #8a5a10; }
.calc__verdict--bad  { background: rgba(196, 30, 58, .10);  color: var(--red); }

@media (max-width: 900px) {
  .calc__inner { grid-template-columns: 1fr; gap: 24px; }
  .calc__result { position: static; }
}
@media (max-width: 560px) {
  .calc__form { grid-template-columns: 1fr; }
  .calc__big--split { grid-template-columns: 1fr; }
}

/* ============ PODCAST PAGE — RSS DRIVEN ============ */
.podcast-hero {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: start;
}
.podcast-hero__cover img {
  width: 100%;
  display: block;
  border-radius: 16px;
  box-shadow: 0 4px 24px -4px rgba(0,0,0,.18);
}
.latest-ep {
  padding-top: 4px;
}
.latest-ep__title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
  letter-spacing: -.015em;
  color: var(--ink);
  margin: 10px 0 8px;
}
.latest-ep__meta {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: .02em;
  margin: 0 0 16px;
}
.latest-ep__desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 0 20px;
}
.latest-ep__audio {
  width: 100%;
  max-width: 560px;
  height: 44px;
  border-radius: 999px;
}
.episode--card {
  display: flex;
  flex-direction: column;
}
.episode__audio {
  width: 100%;
  height: 36px;
  margin-top: 14px;
  border-radius: 999px;
}
@media (max-width: 720px) {
  .podcast-hero { grid-template-columns: 1fr; }
  .podcast-hero__cover { max-width: 240px; }
}

/* ============ ABOUT PAGE ============ */
.section__lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 64ch;
  margin: 8px 0 24px;
}
.section__lede.center { margin-left: auto; margin-right: auto; }
.center { text-align: center; }
.eyebrow.center { justify-content: center; display: flex; }
.section__head--center { text-align: center; margin-bottom: 28px; }
.section__head--center .section__lede { margin-left: auto; margin-right: auto; }
.two-col--narrow { max-width: 920px; margin-left: auto; margin-right: auto; }

/* Pull quote — the founder mission statement */
.big-quote {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: -.005em;
  margin: 18px 0 0;
  padding: 28px 32px;
  border-left: 4px solid var(--red);
  background: rgba(196, 30, 58, .04);
  border-radius: 4px 14px 14px 4px;
}
.big-quote cite {
  display: block;
  margin-top: 18px;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* Timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.timeline__item {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  padding: 22px 22px 24px;
  position: relative;
}
.timeline__year {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 28px;
  color: var(--red);
  letter-spacing: -.01em;
  margin-bottom: 10px;
  line-height: 1;
}
.timeline__title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 19px;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 10px;
  letter-spacing: -.01em;
}
.timeline__item p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

/* Programs grid */
.programs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}
.program {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color .15s ease, transform .15s ease;
}
.program:hover {
  border-color: var(--red);
  transform: translateY(-1px);
}
.program strong {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -.005em;
}
.program span {
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .timeline { grid-template-columns: 1fr; }
  .programs { grid-template-columns: repeat(2, 1fr); }
  .two-col--narrow .two-col__col,
  .two-col--narrow > div { margin-bottom: 18px; }
}
@media (max-width: 520px) {
  .programs { grid-template-columns: 1fr; }
  .big-quote { padding: 22px 20px; font-size: 18px; }
}

/* About — team list */
.team-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 8px;
}
.team-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}
.team-list li strong {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: -.005em;
}
.team-list li span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink-soft);
  text-transform: uppercase;
}

/* ===== Home: latest episode audio + clickable card link ===== */
.latest__audio {
  width: 100%;
  max-width: 480px;
  display: block;
  margin: 18px 0 14px;
}
.latest__meta-line {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 18px;
}
/* Make .card behave like a link (it's now an <a>) without losing original styling */
a.card {
  text-decoration: none;
  color: inherit;
  display: block;
}
a.card:hover h3 { color: var(--red); }

/* ===== Testimonials ===== */
.testimonials { padding: 100px 0; background: var(--cream); }
.testimonials--home { background: var(--paper); border-top: 1px solid var(--line); }

/* Source-stat tiles (Google / Yelp summary) */
.t-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 24px 0 44px;
}
.t-stats--big { justify-content: center; gap: 28px; margin: 0; }
.t-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  color: inherit;
  transition: transform .15s ease, border-color .15s ease;
}
.t-stat:hover { transform: translateY(-2px); border-color: var(--ink-soft); }
.t-stat--big {
  flex-direction: column;
  align-items: flex-start;
  border-radius: var(--radius);
  padding: 28px 32px;
  min-width: 280px;
  gap: 8px;
}
.t-stat__rating {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.t-stat--big .t-stat__rating { font-size: 52px; }
.t-stat__stars { display: inline-flex; gap: 2px; }
.t-stat__label {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.t-stat--big .t-stat__label { font-size: 14px; margin-top: 4px; }
.t-stat__cta {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  margin-top: 8px;
}

/* Stars */
.star { width: 18px; height: 18px; fill: #d8d3cc; }
.star.is-filled { fill: #fca420; }
.t-stat--big .star { width: 22px; height: 22px; }

/* Grid */
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */
.t-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.t-card:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -20px rgba(26,22,20,0.18); }
.t-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.t-card__head .stars { display: inline-flex; gap: 2px; }
.t-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.t-source__icon { width: 16px; height: 16px; }
.t-card__text {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 22px;
  flex: 1;
  font-family: var(--font-display);
  font-style: italic;
}
.t-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.t-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.t-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  margin: 0;
}
.t-card__meta {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin: 2px 0 0;
  letter-spacing: 0.02em;
}

@media (max-width: 980px) {
  .t-grid { grid-template-columns: repeat(2, 1fr); }
  .t-stats--big { flex-direction: column; }
  .t-stat--big { width: 100%; min-width: 0; }
}
@media (max-width: 640px) {
  .t-grid { grid-template-columns: 1fr; }
  .testimonials { padding: 70px 0; }
}

/* ============================================================ */
/* Licensing page + US map                                       */
/* ============================================================ */

/* --- Hero CTA row --- */
.page-hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* --- Summary stat strip --- */
.lic-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line, #e8e3da);
  border: 1px solid var(--line, #e8e3da);
  border-radius: 18px;
  overflow: hidden;
  margin: 0 auto 64px;
  max-width: 820px;
}
.lic-summary__stat {
  background: #fff;
  padding: 28px 20px;
  text-align: center;
}
.lic-summary__stat strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 44px;
  font-weight: 600;
  color: var(--red, #c8102e);
  line-height: 1;
  margin-bottom: 8px;
}
.lic-summary__stat span {
  font-size: 13px;
  color: var(--ink-muted, #7a7264);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* --- Map block on licensing page --- */
.lic-map {
  background: #fff;
  border: 1px solid var(--line, #e8e3da);
  border-radius: 24px;
  padding: 40px 32px;
  margin-bottom: 72px;
}
.lic-map__header {
  text-align: center;
  margin-bottom: 28px;
}
.lic-map__header .section__title { margin-bottom: 8px; }

/* --- US Map (shared by home + licensing) --- */
.us-map {
  position: relative;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  aspect-ratio: 1000 / 600;
}
.us-map__svg {
  width: 100%;
  height: 100%;
  display: block;
}
.us-map .state {
  fill: #efe9dd;
  stroke: #ffffff;
  stroke-width: 1.2;
  transition: fill 120ms ease, transform 120ms ease;
  transform-origin: center;
}
.us-map .state:hover {
  fill: #d4cab6;
  cursor: default;
}
.us-map .state.is-licensed {
  fill: #c8102e;
}
.us-map .state.is-licensed:hover {
  fill: #e21c3a;
  filter: drop-shadow(0 4px 10px rgba(200,16,46,0.25));
}
.us-map .map__inset-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  fill: #7a7264;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  pointer-events: none;
}
.us-map__tooltip {
  position: absolute;
  background: #1a1814;
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  pointer-events: none;
  opacity: 0;
  transition: opacity 100ms ease;
  z-index: 5;
  min-width: 140px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  line-height: 1.45;
}
.us-map__tooltip strong { font-weight: 600; }
.us-map__tooltip .tip-num {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #ffb1ba;
  font-variant-numeric: tabular-nums;
}
.us-map__tooltip .tip-sub {
  font-size: 11px;
  color: #b8b1a3;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* --- Licensing cards grid --- */
.section__title--centered { text-align: center; margin-bottom: 40px; }
.lic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 56px;
}
.lic-card {
  background: #fff;
  border: 1px solid var(--line, #e8e3da);
  border-radius: 16px;
  padding: 24px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
  scroll-margin-top: 100px;
}
.lic-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(30,20,10,0.08);
  border-color: #d4cab6;
}
.lic-card__head {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line, #e8e3da);
}
.lic-card__code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #c8102e 0%, #8b0a20 100%);
  color: #fff;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.lic-card__state {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 2px;
  line-height: 1.1;
}
.lic-card__type {
  font-size: 12px;
  color: var(--ink-muted, #7a7264);
  margin: 0;
  line-height: 1.35;
}
.lic-card__details {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  margin: 0 0 18px;
  align-items: end;
}
.lic-card__details > div { margin: 0; }
.lic-card__details dt {
  font-size: 11px;
  color: var(--ink-muted, #7a7264);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.lic-card__details dd { margin: 0; }
.lic-card__num {
  font-family: 'Inter', sans-serif;
  font-feature-settings: 'tnum' 1;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink, #1a1814);
  letter-spacing: 0.01em;
}
.lic-card__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  background: #e8e3da;
  color: #7a7264;
}
.lic-card__status.is-active {
  background: rgba(46,160,67,0.12);
  color: #1e7a32;
}
.lic-card__status.is-active::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2ea043;
}
.lic-card__verify {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--red, #c8102e);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.lic-card__verify:hover { text-decoration: underline; }

/* --- Compliance note --- */
.lic-note {
  background: #faf6ef;
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 24px;
}
.lic-note p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-muted, #4a463f);
  margin: 0 0 12px;
}
.lic-note p:last-child { margin-bottom: 0; }
.lic-note a { color: var(--red, #c8102e); }
.lic-note__states strong { color: var(--ink, #1a1814); }

/* --- Homepage map section --- */
.home-map { padding: 80px 0; }
.home-map__head {
  margin-bottom: 32px;
}
.home-map__map {
  margin-bottom: 32px;
}
.home-map__states {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 760px;
  margin: 0 auto;
}
.state-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line, #e8e3da);
  border-radius: 999px;
  padding: 6px 14px 6px 6px;
  font-size: 13px;
  color: var(--ink, #1a1814);
  text-decoration: none;
  transition: border-color 120ms ease, transform 120ms ease;
}
.state-chip:hover {
  border-color: var(--red, #c8102e);
  transform: translateY(-1px);
}
.state-chip__code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--red, #c8102e);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* --- Mobile --- */
@media (max-width: 700px) {
  .lic-summary { grid-template-columns: 1fr; }
  .lic-summary__stat { padding: 20px; }
  .lic-summary__stat strong { font-size: 36px; }
  .lic-map { padding: 24px 16px; }
  .lic-card { padding: 20px; }
  .lic-card__state { font-size: 20px; }
  .home-map { padding: 56px 0; }
  .us-map__tooltip { font-size: 12px; padding: 8px 11px; }
}

/* ============================================================ */
/* Newsletter signup                                             */
/* ============================================================ */

.newsletter {
  padding: 96px 0;
  background:
    radial-gradient(1200px 600px at 100% 0%, rgba(200,16,46,0.06), transparent 60%),
    radial-gradient(800px 400px at 0% 100%, rgba(200,16,46,0.05), transparent 60%),
    #faf6ef;
  border-top: 1px solid var(--line, #e8e3da);
  border-bottom: 1px solid var(--line, #e8e3da);
}
.newsletter__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.newsletter__text {}
.newsletter__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 600;
  line-height: 1.05;
  margin: 14px 0 18px;
  color: var(--ink, #1a1814);
  letter-spacing: -0.01em;
}
.newsletter__title .italic {
  font-style: italic;
  color: var(--red, #c8102e);
  font-weight: 500;
}
.newsletter__lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-muted, #4a463f);
  max-width: 480px;
  margin: 0 0 24px;
}
.newsletter__perks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.newsletter__perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--ink, #1a1814);
}
.newsletter__perks li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red, #c8102e);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

/* --- Form --- */
.newsletter__form-wrap {
  background: #fff;
  border: 1px solid var(--line, #e8e3da);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 18px 48px rgba(30,20,10,0.08);
}
.signup-form {
  display: block;
}
.signup-form__row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 14px;
  margin-bottom: 16px;
}
.signup-form__field {
  display: block;
}
.signup-form__label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--ink-muted, #7a7264);
  margin-bottom: 6px;
}
.signup-form input[type="text"],
.signup-form input[type="email"] {
  width: 100%;
  font: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid #d9d2c5;
  border-radius: 10px;
  background: #faf6ef;
  color: var(--ink, #1a1814);
  transition: border-color 120ms ease, background 120ms ease, box-shadow 120ms ease;
  -webkit-appearance: none;
  appearance: none;
}
.signup-form input[type="text"]:focus,
.signup-form input[type="email"]:focus {
  outline: none;
  border-color: var(--red, #c8102e);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(200,16,46,0.12);
}
.signup-form__submit {
  width: 100%;
  margin: 0;
}
.signup-form__note {
  margin: 14px 0 0;
  font-size: 12px;
  color: var(--ink-muted, #7a7264);
  text-align: center;
  line-height: 1.5;
}

/* --- Compact variant (footer-style) --- */
.signup-form--compact .signup-form__row {
  grid-template-columns: 1fr;
}

/* --- Dedicated newsletter page --- */
.newsletter-page {
  max-width: 760px;
  margin: 0 auto;
}
.newsletter-page__card {
  background: #fff;
  border: 1px solid var(--line, #e8e3da);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 24px 56px rgba(30,20,10,0.08);
  margin-bottom: 56px;
}
.newsletter-page__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
.newsletter-page__col h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--ink, #1a1814);
}
.newsletter-page__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.newsletter-page__col li {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-muted, #4a463f);
  padding-left: 18px;
  position: relative;
}
.newsletter-page__col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red, #c8102e);
}
.newsletter-page__col li strong {
  color: var(--ink, #1a1814);
  font-weight: 600;
}
.newsletter-page__quote {
  background: #faf6ef;
  border-left: 4px solid var(--red, #c8102e);
  border-radius: 0 16px 16px 0;
  padding: 32px 36px;
  margin: 0;
}
.newsletter-page__quote p {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.45;
  color: var(--ink, #1a1814);
  margin: 0 0 14px;
  font-weight: 400;
}
.newsletter-page__quote cite {
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-muted, #7a7264);
  text-transform: uppercase;
  font-weight: 500;
}

/* --- Thanks page --- */
.thanks { text-align: center; }
.thanks__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--red, #c8102e);
  margin-bottom: 24px;
}
.thanks__ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* --- Mobile --- */
@media (max-width: 880px) {
  .newsletter { padding: 64px 0; }
  .newsletter__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .newsletter__form-wrap { padding: 24px; }
  .signup-form__row { grid-template-columns: 1fr; }
  .newsletter-page__card { padding: 28px 20px; }
  .newsletter-page__details {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .newsletter-page__quote { padding: 24px; }
  .newsletter-page__quote p { font-size: 18px; }
}

/* ============================================================
   FREE GUIDES (tools page #guides section) + tool-nav badge
   ============================================================ */
.tool-nav__guides {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.tool-nav__badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--red);
  color: #fff;
  line-height: 1;
}
.tool-nav__guides:hover .tool-nav__badge { background: #fff; color: var(--red); }

.guides-section {
  border-top: 1px solid var(--line);
}
.guides-section__head {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}
.guides-section__head .eyebrow {
  justify-content: center;
}
.guides-section__head .section__lede {
  margin-top: 0.75rem;
  color: var(--ink-soft);
  font-size: 1.125rem;
}
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.guide-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.guide-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px -16px rgba(26, 24, 20, 0.18);
  border-color: rgba(200, 16, 46, 0.35);
}
.guide-card__cover {
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #FAF6EF;
  border-bottom: 1px solid var(--line);
}
.guide-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.guide-card:hover .guide-card__cover img {
  transform: scale(1.03);
}
.guide-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.guide-card__meta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.guide-card__title {
  font-family: var(--font-display, "Fraunces", Georgia, serif);
  font-size: 1.375rem;
  line-height: 1.25;
  margin: 0;
  color: var(--ink);
}
.guide-card__copy {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.guide-card .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}
.guides-section__note {
  text-align: center;
  margin-top: 2.5rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.guides-section__note a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Newsletter signup pending state (after submit, before Ghost wired) */
.signup-form__pending {
  margin: 0.75rem 0 0;
  padding: 0.75rem 1rem;
  background: rgba(200, 16, 46, 0.06);
  border-left: 3px solid var(--red);
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.45;
  border-radius: 4px;
}
.signup-form__pending strong { color: var(--red); }
.signup-form__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

@media (max-width: 720px) {
  .guides-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .guide-card__cover {
    aspect-ratio: 16 / 9;
  }
}

.tools__footnote {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.tools__footnote a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}

/* ============================================================
   LIVE SHOW PAGE  (/live.html)
   ============================================================ */

/* --- Hero / countdown --- */
.live-hero {
  background: linear-gradient(180deg, #faf6f1 0%, #f0e5d4 100%);
  position: relative;
  overflow: hidden;
}
.live-hero__dot {
  background: var(--red);
  animation: live-pulse 1.8s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(190,29,34,0.55); }
  50%      { box-shadow: 0 0 0 8px rgba(190,29,34,0); }
}

.countdown {
  margin: 2.5rem auto 0;
  max-width: 720px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.5rem 1.5rem 1.75rem;
  box-shadow: 0 20px 48px -28px rgba(26, 22, 20, 0.18);
}
.countdown__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}
.countdown__row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0.5rem;
}
.countdown__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  min-width: 64px;
}
.countdown__num {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--red);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}
.countdown__unit {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.countdown__sep {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--line);
  line-height: 1;
  align-self: flex-start;
  padding-top: 0.2rem;
}
.countdown__live[hidden] { display: none !important; }
.countdown__live {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  color: var(--red);
  font-size: 1.05rem;
}
.countdown__live-dot {
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
  animation: live-pulse 1.4s ease-in-out infinite;
}

/* --- Stage (player + chat) --- */
.live-stage {
  padding-top: 4rem;
}
.live-stage__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.85fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: stretch;
}
.live-stage__player {
  display: flex;
  flex-direction: column;
}
.live-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px -32px rgba(0,0,0,0.4);
}
.live-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.live-player__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.live-player__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--ink);
  color: #fff;
  line-height: 1.2;
}
.live-player__badge--replay { background: var(--ink-soft); }
.live-player__badge--live   { background: var(--red); animation: live-pulse 1.6s ease-in-out infinite; }
.live-player__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.3;
}

/* --- Chat / question form panel --- */
.live-stage__side {
  display: flex;
  flex-direction: column;
}
.live-chat {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.live-chat__head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 1rem;
}
.live-chat__dot {
  width: 10px; height: 10px;
  background: var(--red);
  border-radius: 50%;
  animation: live-pulse 1.4s ease-in-out infinite;
}
.live-chat__live iframe {
  width: 100%;
  flex: 1;
  border: 0;
  border-radius: 10px;
  min-height: 380px;
  background: #fff;
}
.live-chat__copy {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0 0 1rem;
}
.live-q-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.live-q-form .signup-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.live-q-form textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--ink);
  resize: vertical;
  min-height: 88px;
}
.live-q-form textarea:focus {
  outline: 2px solid rgba(190,29,34,0.35);
  outline-offset: 1px;
  border-color: var(--red);
}
.live-q-form .signup-form__submit {
  align-self: stretch;
  margin-top: 0.25rem;
}
.live-q-form .signup-form__note strong { color: var(--red); }

/* --- SMS band --- */
.live-sms {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color: #fff;
}
.live-sms__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
}
.live-sms__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.15;
  margin: 0.6rem 0 0.8rem;
  color: #fff;
}
.live-sms__lede {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0;
}
.live-sms .eyebrow--light { color: rgba(255,255,255,0.9); }
.live-sms .eyebrow--light .eyebrow__dot { background: #fff; }
.live-sms__cta {
  text-align: right;
}
.live-sms__cta .btn--white {
  background: #fff;
  color: var(--red);
  border: 1px solid #fff;
}
.live-sms__cta .btn--white:hover {
  background: var(--cream);
  color: var(--red-deep);
}
.live-sms__sub {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}

/* --- What to expect --- */
.section__head--center {
  text-align: center;
  display: block;
  margin: 0 auto 2.5rem;
  max-width: 720px;
}
.section__head--center .eyebrow { justify-content: center; }
.live-expect {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.live-expect__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.live-expect__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -20px rgba(26, 22, 20, 0.18);
}
.live-expect__num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--red);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 1rem;
}
.live-expect__card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
  margin: 0 0 0.5rem;
  line-height: 1.25;
}
.live-expect__card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

/* --- Replay grid --- */
.live-replays-section .section__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2rem;
}
.link--lg {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 500;
  white-space: nowrap;
}
.link--lg:hover { color: var(--red-deep); }
.live-replays {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.live-replay {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.live-replay:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -20px rgba(26, 22, 20, 0.2);
  border-color: rgba(190,29,34,0.4);
}
.live-replay__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}
.live-replay__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.live-replay:hover .live-replay__thumb img { transform: scale(1.04); }
.live-replay__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}
.live-replay__play svg {
  width: 52px;
  height: 52px;
  color: #fff;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}
.live-replay__body {
  padding: 1.25rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.live-replay__body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.3;
  margin: 0;
  color: var(--ink);
}
.live-replay__cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.02em;
}

/* --- Responsive --- */
@media (max-width: 980px) {
  .live-stage__grid {
    grid-template-columns: 1fr;
  }
  .live-sms__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  .live-sms__cta { text-align: center; }
  .live-replays-section .section__head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .countdown { padding: 1.25rem 0.75rem 1.5rem; }
  .countdown__row { gap: 0.25rem; }
  .countdown__cell { min-width: 50px; }
  .countdown__num { font-size: 2.25rem; }
  .countdown__sep { font-size: 1.8rem; padding-top: 0.1rem; }
}

/* ---------- Live player poster (lite-youtube pattern) ---------- */
.live-player {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #111;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px -28px rgba(0,0,0,0.55);
}
.live-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.live-player__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: #111;
  cursor: pointer;
  display: block;
}
.live-player__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.3s ease;
  filter: brightness(0.85);
}
.live-player__poster:hover img { transform: scale(1.02); filter: brightness(0.95); }
.live-player__playicon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.45));
  transition: transform 0.25s ease;
}
.live-player__poster:hover .live-player__playicon { transform: translate(-50%, -50%) scale(1.07); }

/* =========================================================
   SPONSORS / ADVERTISERS PAGE
   ========================================================= */

/* ---------- Sponsor hero ---------- */
.sp-hero {
  background:
    radial-gradient(ellipse at top right, rgba(190,29,34,0.07), transparent 60%),
    linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
  padding: 5rem 0 4.5rem;
  border-bottom: 1px solid var(--line);
}
.sp-hero__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}
.sp-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 1rem 0 1.4rem;
  color: var(--ink);
}
.sp-hero__title em {
  font-style: italic;
  color: var(--red);
  font-weight: 500;
}
.sp-hero__lede {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 38rem;
  margin-bottom: 2rem;
}
.sp-hero__cta {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.sp-hero__panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.8rem 1.6rem;
  box-shadow: 0 20px 40px -28px rgba(0,0,0,0.18);
}
.sp-hero__panel-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: var(--ink);
}
.sp-hero__panel-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.sp-hero__panel-list li {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-soft);
  padding-left: 1.2rem;
  position: relative;
}
.sp-hero__panel-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.6rem;
}
.sp-hero__panel-list strong { color: var(--ink); font-weight: 600; }

/* ---------- Audience snapshot ---------- */
.sp-audience { padding: 5rem 0; background: var(--cream); }
.aud-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin: 2.5rem 0 1.5rem;
}
.aud-stat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.6rem 1.4rem;
}
.aud-stat__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.02em;
}
.aud-stat__label {
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  margin-top: 0.4rem;
  margin-bottom: 0.9rem;
  font-weight: 600;
}
.aud-stat__body { font-size: 0.9rem; line-height: 1.55; color: var(--ink-soft); margin: 0; }
.aud-note {
  text-align: center;
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-top: 1.5rem;
}
.aud-note a { color: var(--red); font-weight: 600; }

/* ---------- Formats ---------- */
.sp-formats { padding: 5rem 0; background: var(--paper); }
.sp-format-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  margin-top: 2.5rem;
}
.sp-format {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2rem 1.8rem;
}
.sp-format__tag {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 0.7rem;
  padding: 0.25rem 0.7rem;
  background: rgba(190,29,34,0.08);
  border-radius: 999px;
}
.sp-format__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 0.7rem;
  color: var(--ink);
}
.sp-format__body { font-size: 0.98rem; line-height: 1.6; color: var(--ink-soft); margin: 0; }

/* ---------- Who fits ---------- */
.sp-fits { padding: 5rem 0; background: var(--cream); }
.sp-fits__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}
.sp-fits__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem 1.5rem;
}
.sp-fits__list li {
  font-size: 1rem;
  line-height: 1.4;
  color: var(--ink);
  padding: 0.9rem 1rem 0.9rem 2.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  position: relative;
}
.sp-fits__list li::before {
  content: "✓";
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red);
  font-weight: 700;
}
.sp-fits__note {
  margin-top: 1.6rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.55;
  padding: 1rem 1.2rem;
  background: var(--white);
  border-left: 3px solid var(--red);
  border-radius: 4px;
}
.sp-fits__note strong { color: var(--ink); }

/* ---------- Current sponsors ---------- */
.sp-current { padding: 5rem 0; background: var(--paper); }
.sp-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2.5rem;
}
.sp-logo {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.sp-logo--placeholder {
  background:
    repeating-linear-gradient(45deg,
      var(--white),
      var(--white) 10px,
      var(--paper) 10px,
      var(--paper) 20px);
  border: 1px dashed #d4c9b5;
  color: var(--ink-soft);
}
.sp-logo__label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  background: var(--white);
  border-radius: 999px;
  border: 1px solid var(--line);
}

/* ---------- Sponsor quote ---------- */
.sp-quote {
  background: var(--ink);
  color: var(--cream);
  padding: 5rem 0;
}
.sp-quote__inner {
  max-width: 50rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.sp-quote__mark {
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--red);
  line-height: 0.5;
  margin: 0 0 1rem;
  font-weight: 700;
}
.sp-quote__body {
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  margin: 0 0 1.5rem;
}
.sp-quote__attr { font-size: 0.85rem; color: rgba(250,246,241,0.6); margin: 0; }
.sp-quote__placeholder {
  font-style: italic;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background: rgba(255,255,255,0.08);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
}

/* ---------- Rate card request ---------- */
.sp-rate { padding: 5rem 0; background: var(--cream); }
.sp-rate__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3.5rem;
  align-items: start;
}
.sp-rate__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 1rem 0 1.2rem;
}
.sp-rate__bullets {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.sp-rate__bullets li {
  font-size: 0.98rem;
  color: var(--ink);
  padding-left: 1.6rem;
  position: relative;
  line-height: 1.5;
}
.sp-rate__bullets li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}
.sp-rate__form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 2rem 1.8rem;
  box-shadow: 0 24px 50px -32px rgba(0,0,0,0.22);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.signup-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  font-weight: 600;
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(190,29,34,0.12);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 5rem; }
.hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.sp-rate__form .signup-form__submit { width: 100%; margin-top: 0.4rem; }
.sp-rate__fineprint {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin: 0;
  text-align: center;
}

/* ---------- Bottom CTA strip ---------- */
.cta-strip { background: var(--paper); padding: 3rem 0; border-top: 1px solid var(--line); }
.cta-strip__inner { text-align: center; }
.cta-strip h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  margin: 0 0 0.6rem;
  color: var(--ink);
}
.cta-strip p { color: var(--ink-soft); margin: 0; font-size: 1.02rem; }
.cta-strip a { color: var(--red); font-weight: 600; }

/* ---------- Section head helper (re-used) ---------- */
.section-head { max-width: 44rem; margin-bottom: 1rem; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 0.8rem 0 0.8rem;
  color: var(--ink);
}
.section-lede {
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .sp-hero__inner,
  .sp-fits__inner,
  .sp-rate__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .aud-grid { grid-template-columns: repeat(2, 1fr); }
  .sp-format-grid { grid-template-columns: 1fr; }
  .sp-logos { grid-template-columns: repeat(2, 1fr); }
  .sp-fits__list { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .sp-hero { padding: 3rem 0; }
  .aud-grid { grid-template-columns: 1fr; }
  .sp-logos { grid-template-columns: 1fr; }
  .signup-form__row { grid-template-columns: 1fr; }
  .sp-quote__body { font-size: 1.25rem; }
}

/* =========================================================
   PRESS / MEDIA KIT PAGE
   ========================================================= */

/* ---------- Press hero ---------- */
.pr-hero {
  background:
    radial-gradient(ellipse at top left, rgba(190,29,34,0.06), transparent 60%),
    linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
  padding: 5rem 0 4.5rem;
  border-bottom: 1px solid var(--line);
}
.pr-hero__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
}
.pr-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 1rem 0 1.4rem;
  color: var(--ink);
}
.pr-hero__title em {
  font-style: italic;
  color: var(--red);
  font-weight: 500;
}
.pr-hero__lede {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 38rem;
  margin-bottom: 2rem;
}
.pr-hero__cta {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.pr-hero__contact {
  background: var(--ink);
  color: var(--cream);
  border-radius: 18px;
  padding: 1.8rem 1.6rem;
  box-shadow: 0 24px 50px -28px rgba(0,0,0,0.45);
}
.pr-hero__contact-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  margin: 0 0 1.2rem;
  letter-spacing: 0.01em;
}
.pr-hero__contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1rem; }
.pr-hero__contact-list li { display: flex; flex-direction: column; gap: 0.2rem; }
.pr-hero__contact-label {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: rgba(250,246,241,0.55);
  font-weight: 600;
}
.pr-hero__contact a { color: var(--orange); font-weight: 500; word-break: break-all; }
.pr-hero__contact a:hover { color: #ffce6a; }
.pr-hero__contact span:not(.pr-hero__contact-label) { color: rgba(250,246,241,0.9); font-size: 0.95rem; }

/* ---------- Press quick stats ---------- */
.pr-stats { background: var(--ink); padding: 2.5rem 0; color: var(--cream); }
.pr-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.pr-stat { text-align: center; }
.pr-stat__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.02em;
}
.pr-stat__label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: rgba(250,246,241,0.7);
  margin-top: 0.5rem;
  font-weight: 600;
}

/* ---------- Bios ---------- */
.pr-bios { padding: 5rem 0; background: var(--cream); }
.pr-bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.4rem;
  margin-top: 2.5rem;
}
.pr-bio--long { grid-column: span 2; }
.pr-bio {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pr-bio__head { display: flex; align-items: center; justify-content: space-between; }
.pr-bio__tag {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--red);
  font-weight: 700;
  background: rgba(190,29,34,0.08);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
}
.pr-bio__copy {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.4rem 0.9rem;
  cursor: pointer;
  transition: all 0.15s ease;
}
.pr-bio__copy:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.pr-bio__copy.is-copied { background: var(--red); color: var(--white); border-color: var(--red); }
.pr-bio__body { font-size: 1rem; line-height: 1.65; color: var(--ink); margin: 0; }
.pr-bio__body--long p { margin: 0 0 0.9rem; font-size: 1rem; line-height: 1.65; }
.pr-bio__body--long p:last-child { margin-bottom: 0; }
.pr-bio__note {
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-style: italic;
  text-align: center;
}

/* ---------- Speaking topics ---------- */
.pr-topics { padding: 5rem 0; background: var(--paper); }
.pr-topic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.pr-topic {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  border-radius: 10px;
  padding: 1.6rem 1.7rem;
}
.pr-topic__title {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  margin: 0 0 0.6rem;
  color: var(--ink);
  line-height: 1.3;
}
.pr-topic__body { font-size: 0.96rem; line-height: 1.55; color: var(--ink-soft); margin: 0; }

/* ---------- Downloadable assets ---------- */
.pr-assets { padding: 5rem 0; background: var(--cream); }
.pr-assets__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-top: 2.5rem;
}
.pr-asset {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.pr-asset:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -22px rgba(0,0,0,0.22); }
.pr-asset__preview {
  aspect-ratio: 4 / 3;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pr-asset__preview img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pr-asset__preview--logo { background: var(--cream); padding: 1.2rem; }
.pr-asset__preview--logo img { object-fit: contain; }
.pr-asset__preview--logo-light { background: var(--cream); }
.pr-asset__preview--logo-dark { background: var(--ink); }
.pr-asset__meta { padding: 1rem 1.1rem; border-top: 1px solid var(--line); }
.pr-asset__name { display: block; font-weight: 600; font-size: 0.92rem; color: var(--ink); }
.pr-asset__detail {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pr-assets__bundle {
  margin-top: 2.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.6rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.pr-assets__bundle h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.3rem;
  color: var(--ink);
}
.pr-assets__bundle p {
  font-size: 0.96rem;
  color: var(--ink-soft);
  margin: 0;
  max-width: 38rem;
  line-height: 1.5;
}

/* ---------- Press mentions ---------- */
.pr-press { padding: 5rem 0; background: var(--paper); }
.pr-press__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  margin-top: 2.5rem;
}
.pr-mention {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.6rem 1.8rem;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.pr-mention:hover {
  transform: translateY(-2px);
  border-color: var(--red);
  box-shadow: 0 20px 40px -22px rgba(190,29,34,0.18);
}
.pr-mention__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.7rem;
}
.pr-mention__outlet {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--red);
}
.pr-mention__year {
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.pr-mention__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  color: var(--ink);
}
.pr-mention__blurb {
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  font-style: italic;
}
.pr-mention__link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--red);
  margin-top: auto;
}

/* ---------- Booking section ---------- */
.pr-book { padding: 5rem 0; background: var(--cream); }
.pr-book__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3.5rem;
  align-items: start;
}
.pr-book__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 1rem 0 1.2rem;
}
.pr-book__bullets {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.pr-book__bullets li {
  font-size: 0.98rem;
  color: var(--ink);
  padding-left: 1.6rem;
  position: relative;
  line-height: 1.5;
}
.pr-book__bullets li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}
.pr-book__form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 2rem 1.8rem;
  box-shadow: 0 24px 50px -32px rgba(0,0,0,0.22);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.pr-book__form .signup-form__submit { width: 100%; margin-top: 0.4rem; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .pr-hero__inner,
  .pr-book__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .pr-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .pr-bio-grid { grid-template-columns: 1fr; }
  .pr-bio--long { grid-column: auto; }
  .pr-topic-grid { grid-template-columns: 1fr; }
  .pr-assets__grid { grid-template-columns: repeat(2, 1fr); }
  .pr-press__grid { grid-template-columns: 1fr; }
  .pr-assets__bundle { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  .pr-hero { padding: 3rem 0; }
  .pr-stats__grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .pr-assets__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Aidium form mounts
   ------------------------------------------------------------
   Wrappers around Aidium's drop-in <div data-aidium-form="...">.
   We can't fully restyle Aidium's injected markup from here (it's
   shadow / iframe / their own classes), but we control the
   surrounding container so the embed sits flush inside our cards
   and gets our spacing + note styling.
   ============================================================ */
.aidium-mount {
  display: block;
  width: 100%;
}
.aidium-mount [data-aidium-form] {
  min-height: 200px;
  display: block;
}
.aidium-mount [data-aidium-form]:empty::before {
  content: "Loading signup form…";
  display: block;
  padding: 1.25rem 0;
  color: var(--ink-soft);
  font-size: 0.9375rem;
  font-style: italic;
}
.aidium-mount__note {
  margin-top: 0.875rem;
  font-size: 0.8125rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.aidium-mount--compact [data-aidium-form] {
  min-height: 260px;
}

/* Inputs / buttons that Aidium injects often use generic tag selectors.
   Nudge them toward our brand without overstepping (Aidium may render in
   shadow DOM, in which case these are no-ops — that's fine). */
.aidium-mount input[type="text"],
.aidium-mount input[type="email"],
.aidium-mount input[type="tel"],
.aidium-mount textarea,
.aidium-mount select {
  font-family: var(--font-body) !important;
  border-radius: 10px !important;
}
.aidium-mount button,
.aidium-mount input[type="submit"] {
  background: var(--red) !important;
  color: var(--white) !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  border-radius: 999px !important;
  border: none !important;
  cursor: pointer;
}
.aidium-mount button:hover,
.aidium-mount input[type="submit"]:hover {
  background: var(--red-deep) !important;
}


/* ============================================================
   Ghost integration styles
   Added during Ghost theme conversion (v1.0).
   ============================================================ */

/* Ghost custom font support — picks up font selected in admin */
:root {
  --gh-font-heading: 'Fraunces', Georgia, serif;
  --gh-font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Koenig editor cards — required by gscan.
   These let Ghost's "wide" and "full" width cards (images, embeds, galleries)
   break out of the normal content column. */
.kg-canvas {
  max-width: 720px;
  margin: 0 auto;
}
.kg-canvas .kg-width-wide,
.kg-canvas figure.kg-card.kg-width-wide {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: min(1100px, calc(100vw - 32px));
  max-width: none;
  margin-block: 2rem;
}
.kg-canvas .kg-width-full,
.kg-canvas figure.kg-card.kg-width-full {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  max-width: none;
  margin-block: 2rem;
}
.kg-canvas .kg-width-full img,
.kg-canvas .kg-width-wide img {
  width: 100%;
  height: auto;
}
.kg-canvas figure {
  margin: 1.5rem 0;
}
.kg-canvas figcaption {
  font-size: 0.85rem;
  color: var(--ink-soft, #666);
  text-align: center;
  margin-top: 0.5rem;
}

/* Koenig audio card (used by podcast episodes) */
.kg-canvas .kg-audio-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f6f3ee;
  border: 1px solid #e6e0d4;
  border-radius: 12px;
  margin: 1.5rem 0;
}
.kg-canvas .kg-audio-card .kg-audio-thumbnail {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
}
.kg-canvas .kg-audio-card audio {
  width: 100%;
}

/* Bookmark cards (used for related posts) */
.kg-canvas .kg-bookmark-card {
  margin: 1.5rem 0;
}

/* Ghost members error message */
.signup-form__error {
  color: #c2410c;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}
.signup-form__error:not([hidden]) {
  display: block;
}

/* Visually-hidden label utility for form labels */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* Archive / tag / author page styles */
.archive { padding-block: 4rem; }
.archive__head { margin-bottom: 3rem; max-width: 720px; }
.archive__title { font-family: var(--gh-font-heading); font-size: clamp(2rem, 5vw, 3.5rem); margin: 0.5rem 0; }
.archive__desc { color: var(--ink-soft, #555); font-size: 1.1rem; }
.archive__count { color: var(--ink-soft, #888); font-size: 0.9rem; margin-top: 0.5rem; }

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.post-grid--dense { gap: 1.5rem; }

.post-card {
  background: #fff;
  border: 1px solid #e6e0d4;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.post-card:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.post-card__image { display: block; aspect-ratio: 16/9; overflow: hidden; }
.post-card__image img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 1.25rem 1.5rem 1.5rem; }
.post-card__tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand-red, #c2410c);
  text-decoration: none;
  margin-bottom: 0.5rem;
}
.post-card__title {
  font-family: var(--gh-font-heading);
  font-size: 1.35rem;
  line-height: 1.25;
  margin: 0 0 0.5rem;
}
.post-card__title a { color: inherit; text-decoration: none; }
.post-card__title a:hover { text-decoration: underline; }
.post-card__excerpt { color: var(--ink-soft, #555); font-size: 0.95rem; margin: 0 0 0.75rem; }
.post-card__meta { font-size: 0.8rem; color: #888; display: flex; gap: 0.5rem; }
.post-card__sep { color: #ccc; }

/* Individual post template */
.post__hero { padding: 3rem 0 1.5rem; }
.post__tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-red, #c2410c);
  text-decoration: none;
  margin-bottom: 0.75rem;
}
.post__title {
  font-family: var(--gh-font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}
.post__lede { font-size: 1.2rem; color: var(--ink-soft, #555); margin: 0 0 1.5rem; max-width: 700px; }
.post__meta { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; color: #666; flex-wrap: wrap; }
.post__author { display: flex; align-items: center; gap: 0.5rem; color: inherit; text-decoration: none; }
.post__author-img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
.post__meta-sep { color: #ccc; }
.post__feature-image { margin: 2rem auto; }
.post__feature-image img { width: 100%; height: auto; border-radius: 12px; }
.post__container { padding-block: 2rem 4rem; }
.post__body { font-size: 1.1rem; line-height: 1.7; }
.post__body h2, .post__body h3 { font-family: var(--gh-font-heading); margin-top: 2rem; }
.post__body p { margin-bottom: 1.25rem; }
.post__body a { color: var(--brand-red, #c2410c); }
.post__tags { margin: 2rem auto; max-width: 720px; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.post__tag-chip {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: #f6f3ee;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--ink-soft, #555);
  text-decoration: none;
}
.post__author-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  max-width: 720px;
  margin: 3rem auto;
  padding: 1.5rem;
  background: #faf7f1;
  border-radius: 14px;
}
.post__author-card-img { width: 64px; height: 64px; border-radius: 50%; flex: 0 0 64px; object-fit: cover; }
.post__author-card h3 { margin: 0 0 0.5rem; font-family: var(--gh-font-heading); }

.related { padding-block: 3rem; }
.related__title { font-family: var(--gh-font-heading); font-size: 1.75rem; margin-bottom: 2rem; text-align: center; }

/* Newsletter inline at end of post */
.newsletter-inline {
  max-width: 720px;
  margin: 3rem auto;
  padding: 2rem;
  background: #faf7f1;
  border: 1px solid #e6e0d4;
  border-radius: 14px;
  text-align: center;
}
.newsletter-inline__title { font-family: var(--gh-font-heading); font-size: 1.5rem; margin: 0 0 0.5rem; }
.newsletter-inline__lede { color: var(--ink-soft, #555); margin: 0 0 1.25rem; }

/* Newsletter landing page */
.newsletter-landing { padding-block: 5rem 6rem; }
.newsletter-landing__inner { max-width: 680px; margin: 0 auto; text-align: center; }
.newsletter-landing__head h1 { font-family: var(--gh-font-heading); font-size: clamp(2.25rem, 5vw, 3.5rem); line-height: 1.1; }
.newsletter-landing__lede { font-size: 1.2rem; color: var(--ink-soft, #555); margin: 1rem 0 2rem; }
.newsletter-landing__form { max-width: 480px; margin: 0 auto; }
.newsletter-landing__body { margin-top: 3rem; text-align: left; }

/* Episode archive page */
.episodes-archive { padding-block: 4rem; }
.episodes-archive__head { max-width: 720px; margin-bottom: 2rem; }
.episodes-archive__head h1 { font-family: var(--gh-font-heading); font-size: clamp(2rem, 5vw, 3.5rem); }
.episodes-archive__lede { color: var(--ink-soft, #555); font-size: 1.1rem; }
.episodes-archive__count { color: var(--ink-soft, #888); font-size: 0.9rem; margin-bottom: 2rem; }
.episodes-archive__body { max-width: 720px; margin: 3rem auto 0; }

/* Static page template */
.page__hero { padding-block: 3rem 1rem; }
.page__title { font-family: var(--gh-font-heading); font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.1; margin: 0; }
.page__lede { font-size: 1.2rem; color: var(--ink-soft, #555); margin-top: 1rem; max-width: 700px; }
.page__feature-image { margin: 2rem auto; }
.page__feature-image img { width: 100%; height: auto; border-radius: 12px; }
.page__container { padding-block: 2rem 5rem; }
.page__body { font-size: 1.1rem; line-height: 1.7; max-width: 720px; margin: 0 auto; }

/* Author page */
.author { padding-block: 4rem; }
.author__head { display: flex; align-items: center; gap: 2rem; margin-bottom: 3rem; }
.author__avatar { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; }
.author__name { font-family: var(--gh-font-heading); font-size: 2.5rem; margin: 0; }
.author__bio { color: var(--ink-soft, #555); margin-top: 0.5rem; }
.author__link { color: var(--brand-red, #c2410c); text-decoration: none; }

/* Latest-episode feature on homepage */
.latest-episode { padding-block: 4rem; background: #faf7f1; }
.latest-episode__inner { display: grid; grid-template-columns: 320px 1fr; gap: 3rem; align-items: center; }
.latest-episode__art img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 14px; }
.latest-episode__title { font-family: var(--gh-font-heading); font-size: clamp(1.75rem, 4vw, 2.5rem); margin: 0.5rem 0 1rem; line-height: 1.2; }
.latest-episode__title a { color: inherit; text-decoration: none; }
.latest-episode__excerpt { font-size: 1.1rem; color: var(--ink-soft, #555); margin: 0 0 1rem; }
.latest-episode__meta { font-size: 0.9rem; color: #888; display: flex; gap: 0.5rem; margin-bottom: 1.5rem; }
@media (max-width: 720px) {
  .latest-episode__inner { grid-template-columns: 1fr; }
}

/* Error page */
.error { padding-block: 6rem; text-align: center; }
.error__inner { max-width: 600px; margin: 0 auto; }
.error__code { font-family: var(--gh-font-heading); font-size: 5rem; font-weight: 700; color: var(--brand-red, #c2410c); margin: 0; line-height: 1; }
.error__title { font-family: var(--gh-font-heading); font-size: 2rem; margin: 1rem 0; }
.error__message { color: var(--ink-soft, #555); margin-bottom: 2rem; }
.error__cta { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
