:root {
  --bg: #f5eee3;
  --bg-soft: #fbf7f0;
  --card: rgba(255, 250, 242, 0.84);
  --card-strong: rgba(255, 248, 238, 0.96);
  --ink: #1f1b18;
  --muted: #645950;
  --line: rgba(131, 103, 59, 0.2);
  --gold: #b7924e;
  --gold-deep: #8d6a2f;
  --emerald: #143b32;
  --emerald-soft: #2f6052;
  --ruby: #6d2633;
  --ruby-soft: rgba(109, 38, 51, 0.1);
  --shadow: 0 18px 60px rgba(41, 31, 18, 0.12);
  --shadow-soft: 0 20px 60px rgba(58, 40, 18, 0.08);
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --max-width: 1220px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(183, 146, 78, 0.14), transparent 34%),
    radial-gradient(circle at 85% 14%, rgba(20, 59, 50, 0.12), transparent 24%),
    radial-gradient(circle at 88% 88%, rgba(109, 38, 51, 0.1), transparent 24%),
    linear-gradient(180deg, #faf5ec 0%, #f5eee3 44%, #efe6d8 100%);
  line-height: 1.65;
}

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

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

.site-shell {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 56px;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  margin-top: 16px;
  border: 1px solid rgba(183, 146, 78, 0.16);
  border-radius: 999px;
  background: rgba(251, 247, 240, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 28px rgba(73, 53, 25, 0.06);
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.topnav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: flex-end;
}

.topnav a {
  font-size: 0.92rem;
  color: var(--muted);
  transition: color 180ms ease;
}

.topnav a:hover,
.footer-links a:hover,
.text-link:hover {
  color: var(--emerald);
}

.hero,
.section {
  position: relative;
}

.hero {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 34px;
  align-items: center;
  padding: 64px 0 40px;
}

.hero--immersive {
  display: block;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 40px 0 24px;
}

.hero-copy {
  padding: 22px 8px 22px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.02;
}

h1 {
  font-size: clamp(3.4rem, 8vw, 6.4rem);
  font-weight: 700;
  line-height: 0.94;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  margin-bottom: 14px;
}

h3 {
  font-size: clamp(1.55rem, 2.7vw, 2.1rem);
  font-weight: 600;
}

h4 {
  font-size: 1.6rem;
  font-weight: 600;
}

p {
  margin: 0;
}

.lead {
  max-width: 62ch;
  margin-top: 18px;
  font-size: 1.08rem;
  color: var(--muted);
}

.hero-actions,
.author-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff8f0;
  background: linear-gradient(180deg, #7f2b39 0%, #64212c 100%);
  box-shadow: 0 16px 30px rgba(81, 28, 40, 0.22);
}

.button-secondary {
  color: var(--ruby);
  background: rgba(255, 251, 244, 0.7);
  border-color: rgba(183, 146, 78, 0.34);
}

.scroll-top-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid rgba(255, 242, 226, 0.18);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(20, 59, 50, 0.98), rgba(14, 45, 38, 0.98));
  color: #fff8f0;
  box-shadow: 0 18px 34px rgba(20, 13, 11, 0.24);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 180ms ease,
    visibility 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.scroll-top-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(20, 13, 11, 0.28);
}

.scroll-top-button.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-button span {
  font-size: 1.35rem;
  line-height: 1;
}

.hero-facts,
.author-grid,
.two-column,
.section-split,
.include-grid,
.stage-grid,
.video-grid,
.journey-layout,
.perinatal-grid {
  display: grid;
  gap: 20px;
}

.hero-facts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
}

.fact-card {
  padding: 14px 0 0;
  border-top: 1px solid rgba(183, 146, 78, 0.24);
}

.fact-value {
  display: block;
  margin-bottom: 6px;
  color: var(--emerald);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
}

.fact-label {
  color: var(--muted);
  font-size: 0.94rem;
}

.frame-card,
.video-card {
  border: 1px solid rgba(183, 146, 78, 0.18);
  background: rgba(255, 250, 242, 0.8);
  box-shadow: var(--shadow-soft);
}

.frame-card {
  overflow: hidden;
  border-radius: 42px 16px 42px 16px;
  min-height: 100%;
}

.hero-visual {
  margin: 0;
  position: relative;
  min-height: 580px;
}

.hero-visual--immersive {
  min-height: min(88vh, 860px);
  border-radius: 0 0 52px 52px;
  overflow: hidden;
  box-shadow: 0 30px 72px rgba(47, 33, 16, 0.16);
}

.hero-visual--symbolic {
  background:
    radial-gradient(circle at 22% 22%, rgba(183, 146, 78, 0.34), transparent 24%),
    radial-gradient(circle at 74% 24%, rgba(20, 59, 50, 0.24), transparent 28%),
    radial-gradient(circle at 50% 72%, rgba(109, 38, 51, 0.2), transparent 30%),
    linear-gradient(140deg, #f7f1e8, #e7dccb 54%, #d9d0c5);
}

.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.94) contrast(1.03);
  transform: scale(1.02);
  animation: drift 13s ease-in-out infinite alternate;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 59, 50, 0.04), transparent 30%),
    linear-gradient(0deg, rgba(16, 14, 12, 0.12), transparent 34%);
}

.hero-visual--immersive::after {
  background:
    linear-gradient(180deg, rgba(18, 15, 12, 0.08), rgba(18, 15, 12, 0.22) 36%, rgba(18, 15, 12, 0.7) 100%);
}

.hero-stage__content {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: clamp(34px, 5vw, 56px) clamp(20px, 4vw, 60px) clamp(28px, 5vw, 48px);
  text-align: center;
}

.eyebrow--light {
  justify-content: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 248, 240, 0.94);
}

.eyebrow--light::before {
  background: linear-gradient(90deg, transparent, rgba(255, 248, 240, 0.82));
}

.lead--light {
  max-width: 32ch;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 248, 240, 0.88);
}

.hero-stage__content h1 {
  max-width: 10.5ch;
  margin-left: auto;
  margin-right: auto;
  color: #fff8f0;
  text-shadow: 0 10px 30px rgba(10, 8, 6, 0.32);
}

.hero-facts--center {
  max-width: 960px;
  margin: 10px auto 0;
}

.hero-facts--center .fact-card {
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 244, 229, 0.22);
  border-radius: 24px;
  background: rgba(17, 45, 38, 0.44);
  backdrop-filter: blur(8px);
}

.hero-facts--center .fact-value,
.hero-facts--center .fact-label {
  color: #fff7ef;
}

@keyframes drift {
  from {
    transform: scale(1.02) translateY(0);
  }

  to {
    transform: scale(1.08) translateY(-10px);
  }
}

.section {
  padding: 42px 0;
}

.section-surface {
  padding: 54px clamp(20px, 4vw, 42px);
  border: 1px solid rgba(183, 146, 78, 0.16);
  border-radius: 48px 18px 48px 18px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  isolation: isolate;
}

.section-surface::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(183, 146, 78, 0.08), transparent 20%),
    radial-gradient(circle at 88% 22%, rgba(20, 59, 50, 0.06), transparent 18%),
    radial-gradient(circle at 72% 86%, rgba(109, 38, 51, 0.06), transparent 18%);
}

.section-surface > * {
  position: relative;
  z-index: 1;
}

.section-surface--milk {
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.9), rgba(252, 247, 239, 0.82));
}

.section-surface--gold {
  background: linear-gradient(180deg, rgba(251, 246, 236, 0.96), rgba(247, 239, 225, 0.88));
}

.section-surface--emerald {
  background: linear-gradient(180deg, rgba(247, 250, 247, 0.94), rgba(238, 245, 241, 0.9));
}

.section-surface--intent {
  border-color: rgba(183, 146, 78, 0.22);
  background: linear-gradient(180deg, rgba(18, 60, 51, 0.98), rgba(12, 42, 36, 0.98));
  box-shadow: 0 28px 78px rgba(26, 18, 15, 0.22);
}

.section-surface--intent::after {
  background:
    radial-gradient(circle at 14% 18%, rgba(183, 146, 78, 0.14), transparent 22%),
    radial-gradient(circle at 84% 24%, rgba(255, 247, 236, 0.06), transparent 18%),
    radial-gradient(circle at 78% 82%, rgba(183, 146, 78, 0.08), transparent 24%);
}

.section-surface--ruby {
  background: linear-gradient(180deg, rgba(252, 247, 245, 0.94), rgba(247, 238, 236, 0.9));
}

.section + .section {
  margin-top: 8px;
  padding-top: 56px;
}

.section + .section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(183, 146, 78, 0.34), transparent);
}

.section-surface + .section-surface::before {
  display: none;
}

.section-heading {
  max-width: 72ch;
  margin: 0 auto 30px;
  text-align: center;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.02rem;
}

.section-heading--intent {
  max-width: 60ch;
  margin-bottom: 36px;
}

.section-heading--intent h2 {
  color: #fff8f0;
}

.section-heading--intent p {
  color: rgba(255, 247, 238, 0.8);
}

.section-heading--intent .eyebrow {
  color: rgba(245, 221, 182, 0.94);
}

.section-heading--intent .eyebrow::before {
  background: linear-gradient(90deg, transparent, rgba(245, 221, 182, 0.84));
}

.section-heading .eyebrow {
  justify-content: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.paper-card,
.path-card,
.mini-feature {
  position: relative;
  background: transparent;
  box-shadow: none;
  border: 0;
}

.paper-card,
.path-card {
  padding: 10px 0 10px 24px;
}

.paper-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(180deg, rgba(109, 38, 51, 0.12), rgba(183, 146, 78, 0.9), rgba(20, 59, 50, 0.18));
}

.paper-card::after {
  content: "";
  position: absolute;
  left: -4px;
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ruby), var(--gold));
}

.paper-card > p + p,
.paper-card > h3 + p,
.paper-card > h4 + p,
.paper-card > p + .button,
.paper-card > h3 + .plain-list,
.paper-card > h4 + .plain-list,
.paper-card > h3 + .practice-stack,
.paper-card > h3 + .prayer-text,
.paper-card > h4 + .prayer-text {
  margin-top: 18px;
}

.accent-card {
  background: transparent;
}

.author-grid,
.two-column,
.section-split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.contact-list,
.plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li + li,
.plain-list li + li {
  margin-top: 12px;
}

.plain-list li {
  position: relative;
  padding-left: 20px;
  line-height: 1.72;
}

.plain-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--emerald));
}

.contact-list span {
  color: var(--gold-deep);
  font-weight: 700;
}

.small-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.detail-grid {
  margin-top: 20px;
}

.author-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.author-link {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border: 1px solid rgba(183, 146, 78, 0.18);
  border-radius: 24px;
  background: rgba(255, 252, 247, 0.56);
  transition: transform 180ms ease, color 180ms ease;
}

.author-link:hover {
  transform: translateY(-2px);
}

.author-link__label {
  color: var(--gold-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.author-link__value {
  color: var(--ink);
  font-size: 1.06rem;
  font-weight: 600;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.compact-heading {
  margin-top: 18px;
  margin-bottom: 18px;
}

.section-split--author {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
}

.compact-heading--support {
  max-width: 58ch;
  margin-left: auto;
  margin-right: auto;
}

.section-heading--journey {
  max-width: 92ch;
}

.section-heading--journey h2 {
  font-size: clamp(1.95rem, 3.2vw, 3.05rem);
}

.journey-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr) minmax(0, 0.95fr);
  align-items: start;
  gap: 24px;
}

.point-card {
  padding-left: 28px;
  isolation: isolate;
}

.point-card::after {
  content: "";
  position: absolute;
  inset: auto auto -10px -8px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 38, 51, 0.12), transparent 70%);
  filter: blur(8px);
  z-index: -1;
}

.point-card--success::after {
  background: radial-gradient(circle, rgba(20, 59, 50, 0.12), transparent 70%);
}

.point-label {
  display: inline-block;
  padding: 7px 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(109, 38, 51, 0.08);
  color: var(--ruby);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.point-card--success .point-label {
  background: rgba(20, 59, 50, 0.08);
  color: var(--emerald);
}

.path-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding-left: 10px;
}

.path-card::before {
  content: "";
  position: absolute;
  top: 32px;
  bottom: 32px;
  left: 39px;
  width: 1px;
  background: linear-gradient(180deg, var(--gold), rgba(20, 59, 50, 0.2), var(--ruby));
}

.stage-mini {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: flex-start;
}

.stage-mini p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.96rem;
}

.stage-number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-top: 2px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #d9c08a 60%, rgba(109, 38, 51, 0.92));
  color: #fff7ee;
  font-size: 0.88rem;
  font-weight: 800;
}

.include-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 24px;
  margin-top: 22px;
}

.mini-feature {
  padding: 20px 20px 18px;
  border: 1px solid rgba(183, 146, 78, 0.16);
  border-radius: 28px;
  background: rgba(255, 252, 247, 0.48);
}

.mini-feature h3,
.mini-feature h4 {
  margin-bottom: 10px;
}

.mini-feature .plain-list {
  margin-top: 12px;
}

.intention-card {
  margin: 0;
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  border-radius: 18px;
  background: rgba(183, 146, 78, 0.08);
  color: var(--ink);
  font-size: 1rem;
}

.text-link {
  color: var(--emerald-soft);
  font-weight: 700;
}

.journey-intro,
.journey-text {
  color: var(--muted);
  font-size: 1rem;
}

.journey-intro {
  margin-top: 14px;
  font-weight: 700;
}

.journey-intro--accent {
  color: var(--ruby);
}

.journey-text {
  margin-top: 14px;
}

.stage-block {
  padding: 28px 0 12px;
}

.stage-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 20px;
}

.stage-heading p {
  margin-top: 8px;
  color: var(--muted);
}

.stage-heading--compact {
  margin-bottom: 18px;
}

.stage-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(109, 38, 51, 0.18);
  background: rgba(109, 38, 51, 0.06);
  color: var(--ruby);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stage-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 28px;
  align-items: start;
}

.stage-grid--prosperity {
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
}

.stage-grid .media-card .image-shell--portrait {
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

.media-card {
  overflow: hidden;
  padding-left: 0;
  align-self: start;
}

.media-card::before,
.media-card::after {
  display: none;
}

.media-card > .image-shell:last-child {
  margin-bottom: 0;
}

.media-card--side {
  width: 100%;
}

.media-card--centered {
  margin-left: auto;
  margin-right: auto;
}

.media-card--author {
  max-width: 380px;
}

.media-inline {
  display: flex;
  justify-content: center;
  margin: 4px 0 6px;
}

.image-shell {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 42px 14px 42px 14px;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 18% 18%, rgba(183, 146, 78, 0.25), transparent 24%),
    radial-gradient(circle at 82% 24%, rgba(20, 59, 50, 0.28), transparent 26%),
    radial-gradient(circle at 60% 78%, rgba(109, 38, 51, 0.24), transparent 26%),
    linear-gradient(140deg, #f7f0e4, #e9decd 54%, #ddd4c9);
}

.image-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(17, 15, 13, 0.5));
}

.image-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 14%;
  opacity: 0;
  transition: opacity 360ms ease;
}

.image-shell--portrait {
  aspect-ratio: 5 / 6;
}

.image-shell--author {
  aspect-ratio: 4 / 5;
}

.ai-shell.is-loaded img {
  opacity: 1;
}

.image-label {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  color: #fff5ea;
  font-size: 0.92rem;
  font-weight: 600;
}

.parallel-note {
  margin: 18px 0 8px;
  padding: 4px 0 4px 18px;
  border-left: 1px solid rgba(109, 38, 51, 0.3);
  color: var(--ruby);
  font-weight: 700;
}

.notice-strip {
  margin-bottom: 22px;
  padding: 14px 18px;
  border-left: 2px solid rgba(183, 146, 78, 0.44);
  border-radius: 18px;
  background: rgba(255, 251, 244, 0.5);
  color: var(--gold-deep);
  font-weight: 700;
}

.prayer-text {
  max-height: 360px;
  overflow: auto;
  padding: 18px 18px 18px 20px;
  border-left: 1px solid rgba(183, 146, 78, 0.26);
  border-radius: 0 20px 20px 0;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.58), rgba(255, 249, 241, 0.3));
}

.prayer-text p + p {
  margin-top: 14px;
}

.practice-stack {
  display: grid;
  gap: 14px;
}

.video-group {
  margin-top: 22px;
}

.video-group > h3 {
  margin-bottom: 16px;
}

.video-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.video-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.perinatal-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 20px;
  align-items: start;
}

.perinatal-grid--two {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.82fr);
  gap: 24px 32px;
}

.perinatal-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 24px;
  margin-top: 24px;
}

.journey-layout > *,
.two-column > *,
.section-split > *,
.stage-grid > *,
.perinatal-grid > *,
.perinatal-feature-grid > * {
  align-self: start;
}

.section-split {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 20px 32px;
}

.section-split--compact {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
}

.section-split .media-card--side,
.perinatal-grid--two .media-card--side,
.stage-grid--prosperity .media-card--side {
  max-width: 360px;
}

.author-copy h2 {
  font-size: clamp(2.3rem, 4vw, 3.7rem);
}

.author-copy p + p {
  margin-top: 14px;
}

.author-actions {
  margin-top: 24px;
}

.author-actions .button {
  min-width: 170px;
}

.perinatal-feature-grid .mini-feature {
  height: 100%;
}

.perinatal-cta-panel {
  margin-top: 28px;
  border-radius: 42px 16px 42px 16px;
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.92), rgba(249, 242, 235, 0.9));
}

.perinatal-cta-panel__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 5;
  background:
    radial-gradient(circle at 18% 18%, rgba(183, 146, 78, 0.18), transparent 24%),
    radial-gradient(circle at 82% 24%, rgba(20, 59, 50, 0.18), transparent 26%),
    linear-gradient(140deg, #f7f0e4, #e9decd 54%, #ddd4c9);
}

.perinatal-cta-panel__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 15, 13, 0.08), rgba(17, 15, 13, 0.26));
}

.perinatal-cta-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  opacity: 0;
  transition: opacity 360ms ease;
}

.perinatal-cta-panel__body {
  padding: 28px clamp(18px, 4vw, 44px) 34px;
  text-align: center;
}

.eyebrow--center {
  justify-content: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.perinatal-cta-panel h3 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.perinatal-cta-panel p {
  max-width: 56ch;
  margin: 14px auto 0;
  color: var(--muted);
}

.quote-stack--center {
  justify-items: center;
  margin: 22px auto 24px;
}

.intent-list-card {
  max-width: 940px;
  margin: 0 auto;
  padding: 30px 34px;
  border: 1px solid rgba(255, 243, 226, 0.22);
  border-radius: 34px 14px 34px 14px;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.97), rgba(249, 243, 235, 0.94));
  box-shadow: 0 22px 48px rgba(14, 11, 9, 0.14);
}

.intent-list-card h3 {
  margin: 0;
  text-align: center;
}

.intent-list-card .plain-list {
  max-width: 48ch;
  margin: 18px auto 0;
}

.intent-focus {
  max-width: 760px;
  margin: 28px auto 0;
  padding: 30px 28px 32px;
  border: 1px solid rgba(255, 233, 203, 0.16);
  border-radius: 38px 16px 38px 16px;
  background: linear-gradient(180deg, rgba(19, 69, 58, 0.96), rgba(16, 53, 45, 0.96));
  box-shadow: 0 24px 60px rgba(14, 10, 9, 0.24);
  text-align: center;
}

.intent-focus__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(109, 38, 51, 0.18);
  color: rgba(255, 237, 223, 0.96);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.intent-focus__quote {
  margin: 18px 0 0;
  padding: 18px 20px;
  border: 1px solid rgba(255, 245, 232, 0.1);
  border-radius: 24px;
  background: rgba(255, 248, 240, 0.08);
  color: #fff8f0;
  font-size: 1.05rem;
  line-height: 1.72;
}

.intent-focus__note {
  max-width: 48ch;
  margin: 18px auto 0;
  color: rgba(255, 247, 238, 0.82);
}

.intent-focus .button {
  min-width: min(100%, 340px);
  margin-top: 22px;
  color: #fff8f0;
  background: linear-gradient(180deg, #7f2b39 0%, #64212c 100%);
  border: 1px solid rgba(255, 228, 216, 0.12);
  box-shadow: 0 18px 34px rgba(54, 18, 27, 0.28);
}

.intent-focus .button:hover {
  border-color: rgba(255, 228, 216, 0.18);
}

.perinatal-cta-panel .button {
  min-width: min(100%, 360px);
  margin-left: auto;
  margin-right: auto;
}

.two-column--intent {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 22px 28px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.video-card {
  overflow: hidden;
  border-radius: 36px 12px 36px 12px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(183, 146, 78, 0.3);
  box-shadow: 0 20px 40px rgba(45, 32, 16, 0.15);
}

.video-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, rgba(20, 59, 50, 0.16), rgba(109, 38, 51, 0.16));
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 248, 240, 0.9);
  color: var(--emerald);
  font-size: 0.84rem;
  font-weight: 800;
}

.video-copy {
  padding: 18px 18px 20px;
  border-top: 1px solid rgba(183, 146, 78, 0.14);
}

.video-copy p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.cta-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-card--rich {
  justify-content: flex-start;
}

.quote-stack {
  display: grid;
  gap: 10px;
  margin: 16px 0 18px;
}

.quote-stack span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(109, 38, 51, 0.08);
  color: var(--ruby);
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 0.82rem;
}

.quote-stack span:nth-child(even) {
  background: rgba(20, 59, 50, 0.08);
  color: var(--emerald);
}

.footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 38px 0 0;
  margin-top: 24px;
  border-top: 1px solid rgba(183, 146, 78, 0.22);
}

.footer-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 700;
}

.footer p {
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-thumb {
  background: rgba(143, 106, 47, 0.32);
  border-radius: 999px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 250, 242, 0.7);
}

@media (max-width: 1180px) {
  .hero,
  .journey-layout,
  .two-column--intent,
  .section-split,
  .section-split--author,
  .section-split--compact,
  .stage-grid--prosperity,
  .perinatal-feature-grid {
    grid-template-columns: 1fr;
  }

  .video-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    padding-top: 48px;
  }

  .hero-visual {
    min-height: 480px;
  }

  .section-heading--journey h2 {
    font-size: clamp(2.2rem, 4.6vw, 3rem);
  }

  .author-grid,
  .include-grid,
  .stage-grid,
  .video-grid,
  .author-links,
  .perinatal-grid,
  .perinatal-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stage-grid--prosperity {
    grid-template-columns: 1fr;
  }

  .section-split .media-card--side,
  .perinatal-grid--two .media-card--side,
  .stage-grid--prosperity .media-card--side,
  .media-card--centered,
  .media-card--author {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(var(--max-width), calc(100% - 20px));
    padding-bottom: 40px;
  }

  .topbar {
    position: static;
    flex-direction: column;
    align-items: stretch;
    margin-top: 10px;
    border-radius: 28px;
    padding: 14px;
    gap: 12px;
    background: rgba(251, 247, 240, 0.9);
  }

  .brand {
    font-size: 1.3rem;
    line-height: 1;
  }

  .topnav {
    gap: 10px 12px;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .topnav::-webkit-scrollbar {
    display: none;
  }

  .topnav a {
    white-space: nowrap;
  }

  .hero {
    gap: 20px;
    padding: 26px 0 14px;
  }

  .hero--immersive {
    padding: 18px 0 12px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-facts,
  .author-grid,
  .two-column,
  .section-split,
  .include-grid,
  .stage-grid,
  .video-grid,
  .author-links,
  .perinatal-grid,
  .perinatal-grid--two,
  .perinatal-feature-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-visual--immersive {
    min-height: max(720px, calc(100svh - 28px));
    border-radius: 0 0 36px 36px;
  }

  .hero-stage__content {
    padding: 26px 18px 24px;
    gap: 14px;
  }

  .hero-facts--center {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 6px;
  }

  .hero-facts--center .fact-card {
    padding: 14px 14px 12px;
    border-radius: 20px;
  }

  .fact-card {
    padding-top: 12px;
  }

  .fact-value {
    font-size: 1.72rem;
  }

  .section {
    padding: 24px 0;
  }

  .section-surface {
    padding: 28px 18px;
    border-radius: 34px 14px 34px 14px;
  }

  .section + .section {
    margin-top: 12px;
    padding-top: 28px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-heading--journey h2 {
    font-size: clamp(1.86rem, 8.6vw, 2.5rem);
  }

  .compact-heading--support {
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .section-heading--intent {
    margin-bottom: 28px;
  }

  .paper-card,
  .path-card,
  .mini-feature {
    padding-left: 16px;
  }

  .author-link {
    padding: 16px 18px;
  }

  .author-link__value {
    font-size: 1rem;
  }

  .scroll-top-button {
    right: 14px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }

  .author-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .author-actions .button {
    width: 100%;
  }

  .mini-feature {
    padding: 18px 18px 16px;
    border-radius: 24px;
  }

  .stage-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stage-chip {
    width: fit-content;
  }

  .path-card {
    gap: 16px;
    padding-left: 0;
  }

  .path-card::before {
    top: 24px;
    bottom: 24px;
    left: 15px;
  }

  .stage-mini {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
  }

  .stage-number {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }

  h2 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }

  h3 {
    font-size: clamp(1.55rem, 8vw, 1.95rem);
  }

  .lead,
  .section-heading p,
  .journey-text,
  .journey-intro,
  .plain-list li,
  .video-copy p,
  .small-note {
    font-size: 0.98rem;
  }

  .lead {
    margin-top: 16px;
    max-width: none;
  }

  .section-heading p,
  .journey-text,
  .journey-intro {
    line-height: 1.62;
  }

  .plain-list li {
    padding-left: 18px;
    line-height: 1.58;
  }

  .contact-list li + li,
  .plain-list li + li {
    margin-top: 10px;
  }

  .notice-strip,
  .intention-card {
    padding: 14px 16px;
  }

  .intent-list-card {
    padding: 22px 18px;
    border-radius: 28px 12px 28px 12px;
  }

  .intent-list-card .plain-list {
    max-width: none;
    margin-top: 16px;
  }

  .intent-focus {
    margin-top: 18px;
    padding: 22px 16px 24px;
    border-radius: 30px 14px 30px 14px;
  }

  .intent-focus__quote {
    padding: 14px 14px;
    font-size: 0.98rem;
  }

  .intent-focus__note {
    margin-top: 14px;
  }

  .image-shell {
    margin-bottom: 16px;
    border-radius: 28px 12px 28px 12px;
    aspect-ratio: 5 / 4;
  }

  .image-shell--portrait {
    aspect-ratio: 5 / 6;
  }

  .image-shell--author {
    aspect-ratio: 4 / 5;
  }

  .section-split {
    gap: 22px;
  }

  .perinatal-grid--two {
    gap: 20px;
  }

  .perinatal-feature-grid {
    gap: 16px;
  }

  .section-split .media-card--side,
  .perinatal-grid--two .media-card--side,
  .stage-grid--prosperity .media-card--side,
  .media-card--centered {
    max-width: none;
  }

  .image-label {
    left: 14px;
    right: 14px;
    bottom: 14px;
    font-size: 0.88rem;
  }

  .prayer-text {
    max-height: 300px;
    padding: 14px 14px 14px 16px;
    border-radius: 0 16px 16px 0;
  }

  .video-group {
    margin-top: 18px;
  }

  .video-card {
    border-radius: 28px 12px 28px 12px;
  }

  .video-copy {
    padding: 16px 16px 18px;
  }

  .play-badge {
    left: 12px;
    bottom: 12px;
    min-height: 32px;
    padding: 0 12px;
  }

  .quote-stack {
    margin: 14px 0 16px;
  }

  .quote-stack span {
    max-width: 100%;
  }

  .perinatal-cta-panel {
    margin-top: 22px;
  }

  .perinatal-cta-panel__media {
    aspect-ratio: 4 / 3;
  }

  .perinatal-cta-panel__body {
    padding: 22px 16px 24px;
  }

  .perinatal-cta-panel h3 {
    font-size: clamp(1.9rem, 9vw, 2.45rem);
  }

  .perinatal-cta-panel .button {
    width: 100%;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 10px 14px;
  }
}
