:root {
  --burgundy: #651643;
  --gold: #f6bf66;
  --gold-light: #eee5d8;
  --cream: #fffbf5;
  --white: #fff;
  --text: #000;
  --muted: rgba(0, 0, 0, 0.5);
  --muted-inverse: rgba(255, 255, 255, 0.5);
  --font-serif: Georgia, "Times New Roman", serif;
  --font-sans: Inter, system-ui, sans-serif;
  --font-ui: Roboto, system-ui, sans-serif;
  --pad-section: 112px;
  --pad-x: 200px;
  --max: 1280px;
  --radius: 12px;
  --radius-pill: 40px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--cream);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

a:hover {
  text-decoration: underline;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.shell {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

/* Type */
.eyebrow {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.display {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--burgundy);
}

.display--hero {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.display--h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.display--h3 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.display--stat {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.lead {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
}

.body {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

.body--large {
  font-size: 18px;
}

/* Buttons & inputs */
.btn {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-pill);
  padding: 12px 24px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn--dark-text {
  background: var(--gold);
  color: #000;
}

.btn--burgundy {
  background: var(--burgundy);
  color: var(--white);
}

.btn:hover {
  filter: brightness(1.05);
}

.input {
  flex: 1;
  min-width: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
}

.input::placeholder {
  color: rgba(0, 0, 0, 0.6);
}

/* Hero */
/* Whole header ends flush with hero content (nav + hero__main); no extra band below */
.hero {
  --hero-pad-top: 40px;
  /* Same inset as desktop .hero__press--desktop bottom — use for mobile margin under logos */
  --hero-press-edge: clamp(12px, 2.5vw, 28px);
  position: relative;
  overflow: hidden;
  padding: var(--hero-pad-top) 0 0;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fffbf5;
  z-index: 0;
}

/* Center fixed; scale proportionally to cover entire header (may crop at edges) */
.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  max-width: none;
  opacity: 1;
  z-index: 1;
}

.hero__bg-gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(241, 236, 226, 0.8) 31%,
    rgba(241, 236, 226, 0) 61%
  );
}

.hero__top {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
  max-width: calc(var(--max) + 6rem);
  margin-inline: auto;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  font-size: 16px;
}

.nav__dropdown {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav__chevron {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
}

/* Mobile nav: hamburger top-right, slide-in panel — matches layout breakpoint */
@media (max-width: 1050px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    margin-left: auto;
    border: 1px solid var(--gold-light);
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    z-index: 4;
  }

  .nav-toggle__bars {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 22px;
  }

  .nav-toggle__bars span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--burgundy);
    border-radius: 1px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero__top,
  .site-header__inner {
    flex-wrap: nowrap;
    align-items: center;
  }

  #primary-nav.nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(100%, 320px);
    height: 100vh;
    height: 100dvh;
    margin: 0;
    padding: calc(48px + env(safe-area-inset-top, 0px)) 24px 32px;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    background: var(--cream);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    z-index: 6;
    overflow-y: auto;
    font-size: 17px;
  }

  #primary-nav.nav.is-open {
    transform: translateX(0);
  }

  .site-header--gold #primary-nav.nav {
    background: var(--gold-light);
  }

  .nav__dropdown {
    width: 100%;
  }

  body.nav-open {
    overflow: hidden;
  }

  /* Whole header above following page sections so fixed backdrop (inside header) dims them */
  body.nav-open header.hero,
  body.nav-open header.site-header {
    position: relative;
    z-index: 1;
  }

  /* Menu open: hero must not clip fixed panel; main must sit *below* dim (was z-index: 3 above overlay) */
  body.nav-open .hero {
    overflow: visible;
  }

  body.nav-open .hero__main {
    z-index: 0;
  }

  /*
    Z-order inside <header> (backdrop is a child of header — see nav.js):
    0 — .hero__main (forced when open)
    2 — .nav-backdrop (dim)
    3 — .hero__top / .site-header__inner (bar)
    4 — .nav-toggle
    6 — #primary-nav (slide panel on top)
  */
  body.nav-open .hero__top,
  body.nav-open .site-header__inner {
    position: relative;
    z-index: 3;
  }

  .nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 2;
  }

  body.nav-open .nav-backdrop {
    display: block;
  }
}

.hero__main {
  position: relative;
  z-index: 3;
  --hero-gap: clamp(2rem, 5vw, 4rem);
  display: grid;
  /* Two equal columns, max 750px each — scales down together (1:1 with portrait) */
  grid-template-columns: repeat(
    2,
    minmax(0, min(750px, calc((100% - var(--hero-gap)) / 2)))
  );
  gap: var(--hero-gap);
  align-items: start;
  justify-content: center;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
  max-width: calc(var(--max) + 6rem);
  margin-inline: auto;
  margin-top: 80px;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__copy .eyebrow {
  margin-bottom: -8px;
}

.hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  min-height: 0;
}

.hero__portrait-wrap {
  position: relative;
  width: 100%;
  max-width: 750px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.hero__portrait {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 0;
}

/* “As seen on” — desktop: overlay on portrait; mobile: under card-cta only */
.hero__press--desktop,
.hero__press--mobile {
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 20px;
  box-sizing: border-box;
}

.hero__press--desktop {
  position: absolute;
  left: 50%;
  bottom: var(--hero-press-edge);
  transform: translateX(-50%);
  z-index: 1;
  width: calc(100% - clamp(24px, 5vw, 48px));
  max-width: min(500px, 100%);
  pointer-events: none;
}

.hero__press--mobile {
  display: none;
  width: 100%;
  max-width: min(500px, 100%);
}

.hero__press img {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.card-cta {
  background: var(--white);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-cta__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.4;
  color: var(--burgundy);
}

.card-cta__sub {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 12px;
  line-height: 1.5;
  color: var(--text);
}

.signup-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
}

/* Stats */
.border-y {
  border-top: 1px solid var(--gold-light);
  border-bottom: 1px solid var(--gold-light);
}

.border-b {
  border-bottom: 1px solid var(--gold-light);
}

.border-all {
  border: 1px solid var(--gold-light);
}

.stats {
  background: var(--white);
}

.stats__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0 3rem;
  align-items: stretch;
  max-width: calc(var(--max) + 4rem);
}

.stats__item {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stats__rule {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1px;
  margin: 0 auto;
}

.stats__rule img {
  height: 100%;
  min-height: 120px;
  width: auto;
}

/* Narrative */
.section {
  padding: var(--pad-section) clamp(1.25rem, 4vw, 3rem);
}

.section--white {
  background: var(--white);
}

.section--cream {
  background: var(--cream);
}

.narrative__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.narrative__intro {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: left;
}

.narrative__intro .eyebrow {
  align-self: flex-start;
}

/* Pull quote */
.quote-card {
  margin: 0;
  background: var(--cream);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  padding: 24px 32px;
}

.quote-card p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.25;
  color: var(--burgundy);
}

.narrative__figure {
  margin: 0;
  width: min(800px, 100%);
  border: 16px solid var(--gold-light);
  border-radius: 4px;
  overflow: hidden;
  background: var(--gold-light);
}

.narrative__figure img {
  width: 100%;
  height: auto;
  max-height: 550px;
  object-fit: cover;
}

.narrative__captions {
  max-width: 720px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.narrative__caption {
  margin: 0;
}

/* Lose section */
.lose__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

.lose__heading {
  text-align: center;
  max-width: 900px;
}

.lose__cards {
  width: 100%;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

@media (min-width: 1051px) {
  .lose__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.danger-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
}

.danger-card__body {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.danger-card__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.25;
  color: var(--burgundy);
}

.danger-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.danger-card__media {
  position: relative;
  min-height: 320px;
  background: #222;
}

.danger-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.danger-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(101, 22, 67, 0.4),
    rgba(0, 0, 0, 0.4)
  );
  pointer-events: none;
}

.banner-cta {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--gold-light);
  border-radius: 8px;
  padding: 24px;
}

.banner-cta__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.25;
  color: var(--burgundy);
}

.banner-cta__sub {
  margin: 4px 0 0;
  font-size: 16px;
}

/* About */
.about__photo {
  position: relative;
  min-height: min(560px, 90vw);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__photo-frame {
  position: relative;
  border-radius: 16px;
  overflow: visible;
  max-width: 480px;
}

.about__photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  border-radius: 16px;
  background-image: url(assets/about-frame.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center top;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.about__photo-frame:hover::after {
  opacity: 0.35;
}

.about__photo-bg {
  width: 100%;
  display: block;
}

.about__photo-overlay {
  position: absolute;
  inset: 0;
  background: var(--burgundy);
  border-radius: 16px;
  opacity: 0.95;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.about__photo-cutout {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  border-radius: 12px;
}

.about__copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

/* Field guide */
.field-guide__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.field-guide__header {
  max-width: 768px;
}

.field-guide__header .eyebrow {
  margin-bottom: 12px;
}

.fg-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fg-group__heading {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.fg-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-light);
  border-radius: 7.33px;
  color: var(--burgundy);
  font-size: 22px;
  line-height: 1;
}

.fg-group__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.fg-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.fg-row--short {
  grid-template-columns: repeat(3, 1fr);
}

.fg-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 202px;
  padding: 24px 32px;
  background: var(--white);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.4;
  color: var(--burgundy);
  text-decoration: none;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.fg-card--short {
  min-height: 174px;
}

.fg-card:hover {
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(101, 22, 67, 0.08);
  transform: translateY(-2px);
}

.fg-card__arrow {
  font-size: 16px;
  align-self: flex-start;
  margin-top: auto;
}

/* Footer */
.footer {
  background: var(--burgundy);
  color: var(--white);
  padding: 40px clamp(1.25rem, 4vw, 3rem) 80px;
}

.footer .shell {
  max-width: 1040px;
}

.footer__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--gold);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 40px;
}

.footer__cta-title {
  margin: 0;
  flex: 1 1 240px;
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.25;
  color: var(--burgundy);
}

.footer__form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex: 1 1 320px;
  justify-content: flex-end;
}

.input--footer {
  flex: 1 1 200px;
  max-width: 320px;
}

/* Horizontal rule assets: 1px stroke, full width of container */
img[src$="line-horizontal.svg"],
img[src$="line33.svg"],
img[src$="line34.svg"],
img[src$="line38.svg"],
img[src$="line45.svg"] {
  display: block;
  width: 100%;
  height: 1px;
  max-height: 1px;
  object-fit: fill;
}

.podcast-hero-line {
  margin-bottom: 16px;
}

.footer__main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid var(--muted-inverse);
  border-bottom: 1px solid var(--muted-inverse);
  margin-bottom: 40px;
}

.footer__nav {
  display: flex;
  gap: 120px;
  flex-wrap: wrap;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__label {
  margin: 0 0 4px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-inverse);
}

.footer a {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.4;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--muted-inverse);
}

.footer__legal p {
  margin: 0;
}

/* Inheritor Index */
.index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.index-card {
  background: var(--white);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.index-card .display--stat {
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.index-card .body {
  flex: 1;
}

.index-card__source {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}

@media (max-width: 768px) {
  .index-grid {
    grid-template-columns: 1fr;
  }
}

/* Responsive */
@media (max-width: 1050px) {
  .hero__main {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .hero__visual {
    display: none;
  }

  .hero__press--mobile {
    display: block;
    margin-bottom: var(--hero-press-edge);
  }

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

  .stats__rule {
    display: none;
  }

  .danger-card {
    grid-template-columns: 1fr;
  }

  .danger-card__media {
    order: -1;
    min-height: 240px;
  }

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

  .about__photo-frame {
    margin-inline: auto;
  }

  .fg-row,
  .fg-row--short {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --pad-section: 72px;
  }

  .footer__nav {
    gap: 40px;
  }

  .wt-stats__row {
    flex-wrap: wrap;
  }

  .podcast-episodes__row {
    flex-direction: column;
  }
}

/* ——— Subpages: shared chrome ——— */
.site-header {
  position: relative;
  padding: 40px 0 80px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.site-header--gold {
  background: var(--gold-light);
}

.site-header--cream {
  background: var(--cream);
}

/* Blog: hero image flush to bottom of gold header (no default 80px band under content) */
.site-header--blog-hero {
  padding-bottom: 0;
}

@media (max-width: 1050px) {
  .site-header--blog-hero {
    padding-bottom: clamp(32px, 6vw, 80px);
  }
}

.site-header__inner {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav a.is-active {
  color: var(--burgundy);
  font-weight: 700;
}

/* About page: intro below nav; hero row height = image intrinsic */
.about-intro-stack {
  display: flex;
  flex-direction: column;
  background: var(--gold-light);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.about-intro-stack__header.site-header {
  flex: 0 0 auto;
  padding: 40px 0 20px;
  box-shadow: none;
  background: transparent;
}

.about-hero {
  flex: 0 0 auto;
  background: var(--gold-light);
}

.about-hero__inner {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(1.5rem, 4vw, 3rem);
  row-gap: 0;
  align-items: stretch;
}

.about-hero__copy {
  align-self: center;
  padding-block: clamp(24px, 4vw, 40px);
}

.about-hero__figure {
  margin: 0;
  padding: 0;
  width: 100%;
  align-self: end;
  border-radius: 0;
  overflow: hidden;
  line-height: 0;
}

.about-hero__photo {
  display: block;
  margin: 0;
  margin-left: auto;
  padding: 0;
  width: 50%;
  max-width: 100%;
  height: auto;
}

.page-section {
  padding: var(--pad-section) clamp(1.25rem, 4vw, 3rem);
}

.page-section--tight-top {
  padding-top: 48px;
}

.page-hero-block {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

.page-hero-block__grid {
  display: grid;
  grid-template-columns: minmax(0, 480px) minmax(200px, 1fr);
  gap: 80px;
  align-items: start;
}

/* wealth-transfer: desktop — side card right-aligned in column */
.page-hero-block__grid--mt-side {
  align-items: center;
}

.page-hero-block__grid--mt-side .mt-side-card {
  justify-self: end;
}

/* Blog hero: same two-column rhythm as index .hero__main; visual hidden on small screens */
.page-hero-block__grid--blog {
  --blog-hero-gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: repeat(
    2,
    minmax(0, min(750px, calc((100% - var(--blog-hero-gap)) / 2)))
  );
  gap: var(--blog-hero-gap);
  align-items: stretch;
  justify-content: center;
}

/* Like .about-hero: copy vertically centered, photo anchored to bottom of gold band */
@media (min-width: 1051px) {
  .blog-hero-copy {
    align-self: center;
  }

  .blog-hero-visual {
    align-self: end;
  }
}

@media (max-width: 1050px) {
  .about-hero__inner {
    grid-template-columns: 1fr;
  }

  .about-hero__figure {
    order: -1;
  }

  .about-hero__copy {
    padding-block: 24px clamp(16px, 4vw, 32px);
  }

  .page-hero-block__grid {
    grid-template-columns: 1fr;
  }

  .blog-hero-visual {
    display: none;
  }

  /* wealth-transfer hero: side card full width, content-height (compact) */
  .page-hero-block__grid--mt-side {
    align-items: stretch;
    gap: clamp(1.25rem, 3vw, 1.5rem);
  }

  .page-hero-block__grid--mt-side .mt-side-card {
    justify-self: stretch;
    align-self: start;
    max-width: none;
    width: 100%;
    box-sizing: border-box;
    padding: 24px;
    gap: 12px;
  }
}

.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: var(--max);
  margin-inline: auto;
}

.cred-card {
  background: var(--cream);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Desktop: shared row heights so cred-cta boxes start at the same Y */
@media (min-width: 1051px) {
  .credentials-grid {
    grid-template-rows: auto auto auto;
  }

  .cred-card {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    gap: 40px;
  }
}

.cred-card__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cred-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--burgundy);
}

.cred-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cred-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.5;
}

.cred-list li::before {
  content: "→";
  color: var(--burgundy);
  flex-shrink: 0;
}

.cred-cta-box {
  background: var(--white);
  border: 1px solid var(--gold-light);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 12px;
}

.cred-cta-box__badge {
  display: block;
  width: 220px;
  height: 48px;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}

.cred-cta-box > .body {
  flex: 1 1 auto;
  margin: 0;
  min-height: 0;
}

.cred-cta-box > .btn {
  align-self: flex-start;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
}

.cred-cta-box__link {
  align-self: flex-start;
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.35;
  color: var(--burgundy);
  word-break: break-all;
}

.prose-block {
  max-width: 900px;
  margin-inline: auto;
}

.prose-block p {
  margin: 0 0 1rem;
  font-size: 16px;
  line-height: 1.5;
}

.prose-block .display--h3 {
  margin-bottom: 32px;
}

.book-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.book-row__cover {
  min-height: 119px;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.book-row__cover img {
  width: 42.5%;
  height: auto;
  object-fit: contain;
}

.book-row__body {
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.mini-articles {
  margin-top: 24px;
}

.mt-genx-banner {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: 0;
}

.mt-genx-banner__col {
  min-width: 0;
}

.mt-genx-banner__text {
  margin: 0;
  font-size: 12px;
}

.mt-genx-banner__rule {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  padding-inline: 12px;
}

.mt-genx-banner__line {
  display: block;
  width: 1px;
  height: 48px;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .mt-genx-banner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    row-gap: 16px;
  }

  .mt-genx-banner__rule {
    padding-inline: 0;
    padding-block: 0;
    align-self: center;
  }

  .mt-genx-banner__line {
    width: min(200px, 100%);
    height: 1px;
  }
}

.mt-side-card {
  background: var(--white);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wt-stats__row {
  display: flex;
  align-items: stretch;
  max-width: calc(var(--max) + 4rem);
  margin-inline: auto;
  border-top: 1px solid var(--gold-light);
  border-bottom: 1px solid var(--gold-light);
  background: var(--white);
}

.wt-stat {
  flex: 1;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wt-stat__rule {
  width: 1px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wt-stat__rule img {
  height: 140px;
  width: auto;
}

.timing-card {
  background: var(--cream);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  padding: 40px;
}

.timing-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timing-list li {
  display: flex;
  gap: 16px;
  align-items: center;
}

.timing-list .mini-arrow {
  width: 28px;
  height: 28px;
  background: var(--gold-light);
  border-radius: 4.67px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--burgundy);
  flex-shrink: 0;
}

.split-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--max);
  margin-inline: auto;
}

.split-2__visual {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  min-height: 360px;
}

.split-2__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.connect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
  box-sizing: border-box;
}

.connect-grid .lead {
  margin-top: clamp(14px, 2vw, 24px);
  margin-bottom: clamp(14px, 2vw, 24px);
}

.connect-form {
  background: var(--white);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.connect-form label {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.connect-form .input,
.connect-form textarea {
  width: 100%;
}

.connect-form textarea {
  min-height: 120px;
  resize: vertical;
  font-family: var(--font-sans);
  font-size: 16px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.social-chip {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border: 1px solid var(--gold-light);
  border-radius: 8px;
  background: var(--cream);
}

.social-chip a {
  display: inline-flex;
  line-height: 0;
  color: inherit;
  text-decoration: none;
}

.blog-hero-copy .lead {
  margin-top: clamp(20px, 3vw, 32px);
  margin-bottom: clamp(20px, 3vw, 32px);
}

.blog-hero-visual {
  position: relative;
  width: 100%;
  max-width: min(749px, 100%);
  justify-self: end;
  line-height: 0;
  pointer-events: none;
}

.blog-hero-visual img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1050px) {
  .credentials-grid,
  .book-row,
  .connect-grid,
  .split-2 {
    grid-template-columns: 1fr;
  }

  .credentials-grid {
    grid-template-rows: none;
  }

  .cred-card {
    grid-row: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    grid-template-rows: unset;
  }

  .wt-stat__rule {
    display: none;
  }

  .wt-stats__row {
    flex-direction: column;
  }
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.blog-mini-card {
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  padding: 24px 32px;
  min-height: 202px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
  text-decoration: none;
  color: inherit;
}

.blog-mini-card:hover {
  box-shadow: 0 8px 24px rgba(101, 22, 67, 0.08);
}

.blog-mini-card .eyebrow {
  margin-bottom: 8px;
}

.blog-mini-card h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.4;
  color: var(--burgundy);
  font-weight: 400;
}

.article-prose {
  max-width: 900px;
  margin-inline: auto;
  padding: 72px clamp(1.25rem, 4vw, 360px) var(--pad-section);
}

.article-prose h2,
.article-prose h3,
.article-prose h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--burgundy);
}

.article-prose h2 {
  font-size: 40px;
  line-height: 1.2;
}

.article-prose h4 {
  font-size: 32px;
  line-height: 1.3;
}

.check-row {
  display: flex;
  gap: 16px;
  align-items: center;
}

.check-row img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.pull-quote-burgundy {
  border-left: 8px solid var(--burgundy);
  padding: 40px 64px;
  background: var(--gold-light);
  border-radius: 8px;
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.25;
  color: var(--burgundy);
}

.podcast-hero-visual {
  position: relative;
  width: 480px;
  height: 480px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 16px;
  justify-self: end;
}

.podcast-hero-visual__layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1050px) {
  .podcast-hero-visual {
    justify-self: center;
  }
}

@media (max-width: 520px) {
  .podcast-hero-visual {
    width: min(480px, 100%);
    height: auto;
    aspect-ratio: 1;
  }
}

.podcast-subscribe {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.podcast-subscribe a {
  display: inline-flex;
  line-height: 0;
  text-decoration: none;
}

.podcast-subscribe a:hover {
  text-decoration: none;
  filter: brightness(1.05);
}

.podcast-subscribe img {
  height: 40px;
  width: auto;
}

.podcast-episodes {
  padding: 80px clamp(1.25rem, 4vw, 3rem);
  background: var(--white);
}

.podcast-episodes h2 {
  font-family: var(--font-serif);
  font-size: 40px;
  color: var(--burgundy);
  margin: 0 0 24px;
}

.podcast-episodes__line {
  margin-bottom: 24px;
}

.podcast-pagination__line {
  margin-top: 32px;
}

.podcast-episodes__row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.podcast-episode-card {
  flex: 1 1 280px;
  display: flex;
  gap: 31px;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.podcast-episode-card__cover {
  width: 188px;
  height: 188px;
  border-radius: 8px;
  border: 1px solid #e9e1da;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.podcast-episode-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.podcast-episode-card__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 8px;
  background-image: url(assets/about-frame.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center top;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.podcast-episode-card:hover .podcast-episode-card__cover::after {
  opacity: 0.35;
}

.episode-hero-media {
  border-radius: 8px;
  overflow: hidden;
  margin-top: 40px;
}

.episode-hero-media img {
  width: 100%;
  display: block;
  height: 675px;
  object-fit: cover;
}

.pagination-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.pagination-bar .btn-outline {
  background: transparent;
  border: 1px solid var(--burgundy);
  color: var(--burgundy);
}

.page-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}
