/* ==========================================================================
   The Fourth Missionary — reading site
   Design: warm paper editorial · gold light · four-missionary color system
   ========================================================================== */

:root {
  /* palette */
  --paper: #faf7f0;
  --paper-2: #f3eee2;
  --paper-3: #ece5d3;
  --ink: #232830;
  --ink-soft: #4a525d;
  --ink-faint: #7c838e;
  --gold: #b98f2f;
  --gold-bright: #c9a33f;
  --gold-deep: #8f6d1f;
  --line: #e3dbc8;
  --white: #ffffff;

  /* missionary colors — dark → light */
  --m1: #7d858f;
  --m1-bg: #f1f2f4;
  --m2: #5b6b82;
  --m2-bg: #eef1f5;
  --m3: #b45309;
  --m3-bg: #fbf1e5;
  --m4: #b98f2f;
  --m4-bg: #faf3df;

  --hero-bg: #14181f;
  --hero-bg-2: #1c222c;

  /* type */
  --serif-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --serif-body: "Source Serif 4", Georgia, "Times New Roman", serif;

  /* layout */
  --measure: 43rem;      /* reading column */
  --gutter: 1.5rem;

  --shadow-card: 0 1px 2px rgba(35, 40, 48, 0.06), 0 8px 24px -12px rgba(35, 40, 48, 0.14);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif-body);
  font-size: 1.125rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--gold-deep); color: #fff;
  padding: 0.6rem 1rem; z-index: 200; border-radius: 0 0 0.5rem 0;
}
.skip-link:focus { left: 0; }

/* ---------- top anchor (back-to-top target) ---------- */
.top-anchor { display: block; height: 0; }

/* ---------- progress bar ---------- */
.progress {
  position: fixed; inset: 0 0 auto 0; height: 3px; z-index: 120;
  background: transparent;
}
.progress span {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
  transition: width 80ms linear;
}

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.6rem var(--gutter);
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex; align-items: center; gap: 0.55rem;
  text-decoration: none; font-family: var(--serif-display);
  font-weight: 600; font-size: 1.02rem; letter-spacing: 0.01em;
  white-space: nowrap;
}
.brand-mark {
  display: grid; place-items: center;
  width: 1.85rem; height: 1.85rem; border-radius: 0.55rem;
  background: linear-gradient(135deg, var(--hero-bg), var(--hero-bg-2));
  color: var(--gold-bright); font-size: 0.85rem;
}
.section-nav {
  display: flex; align-items: center; gap: 0.15rem;
  overflow-x: auto; scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.section-nav::-webkit-scrollbar { display: none; }
.nav-link {
  position: relative;
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.45rem 0.7rem;
  font-family: var(--serif-display); font-size: 0.9rem; font-weight: 500;
  color: var(--ink-soft); text-decoration: none; border-radius: 0.5rem;
  white-space: nowrap;
  transition: color 0.15s ease, background 0.15s ease;
}
.nav-link::before {
  content: ""; width: 0.45rem; height: 0.45rem; border-radius: 50%;
  background: currentColor; opacity: 0.35;
}
.nav-link[data-m="1"]::before { background: var(--m1); }
.nav-link[data-m="2"]::before { background: var(--m2); }
.nav-link[data-m="3"]::before { background: var(--m3); }
.nav-link[data-m="4"]::before { background: var(--m4); }
.nav-link:hover { color: var(--ink); background: var(--paper-2); }
.nav-link.active {
  color: var(--gold-deep); background: var(--paper-2);
}
.nav-link.active::after {
  content: ""; position: absolute; left: 0.7rem; right: 0.7rem; bottom: 0.15rem;
  height: 2px; border-radius: 2px; background: var(--gold-bright);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 520px at 50% -120px, rgba(201, 163, 63, 0.16), transparent 60%),
    radial-gradient(900px 480px at 85% 120%, rgba(201, 163, 63, 0.07), transparent 55%),
    linear-gradient(180deg, var(--hero-bg) 0%, var(--hero-bg-2) 100%);
  color: #e9e6de;
  text-align: center;
  padding: clamp(5rem, 14vh, 8.5rem) var(--gutter) clamp(3.5rem, 9vh, 5.5rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  opacity: 0.5;
}
.hero-inner { max-width: 52rem; margin: 0 auto; position: relative; }

.hero-lights {
  display: flex; justify-content: center; gap: 0.9rem;
  margin-bottom: 1.8rem;
}
.light {
  width: 0.6rem; height: 0.6rem; border-radius: 50%;
  background: #4a525d;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
}
.light-1 { background: #59636e; }
.light-2 { background: #7a8696; }
.light-3 { background: #c98f4a; }
.light-4 {
  background: var(--gold-bright);
  box-shadow: 0 0 0 3px rgba(201, 163, 63, 0.22), 0 0 18px rgba(201, 163, 63, 0.75);
}

.hero-kicker {
  margin: 0 0 1.1rem;
  font-family: var(--serif-display); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(233, 230, 222, 0.62);
}
.hero-title {
  margin: 0 0 1.2rem;
  font-family: var(--serif-display); font-weight: 600;
  font-size: clamp(2.9rem, 9vw, 5.2rem);
  line-height: 1.04; letter-spacing: -0.01em;
  color: #f3efe6;
}
.hero-title em {
  font-style: italic; font-weight: 500;
  background: linear-gradient(100deg, var(--gold-bright), #e6c566 60%, var(--gold-bright));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero-objective {
  margin: 0 auto 1.4rem; max-width: 34rem;
  font-size: 1.05rem; font-style: italic; color: rgba(233, 230, 222, 0.75);
}
.hero-be {
  margin: 0;
  font-family: var(--serif-display); font-size: 1.5rem; font-weight: 500;
  color: var(--gold-bright); letter-spacing: 0.01em;
}
.hero-download { margin-top: 1.9rem; }
.hero-scroll {
  display: inline-grid; place-items: center;
  margin-top: 2.6rem; width: 2.6rem; height: 2.6rem; border-radius: 50%;
  color: rgba(233, 230, 222, 0.55); font-size: 0.95rem;
  border: 1px solid rgba(233, 230, 222, 0.22);
  text-decoration: none;
  animation: bob 2.4s ease-in-out infinite;
  transition: color 0.2s, border-color 0.2s;
}
.hero-scroll:hover { color: var(--gold-bright); border-color: var(--gold-bright); }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ---------- sections ---------- */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) var(--gutter) 0;
  scroll-margin-top: 5rem;
}
.section-head {
  display: flex; align-items: baseline; gap: 1rem;
  max-width: var(--measure); margin: 0 auto 1.8rem;
}
.section-head .section-num {
  font-family: var(--serif-display); font-size: 1.05rem; font-weight: 600;
  color: var(--gold); letter-spacing: 0.12em;
}
.section-head h2 {
  margin: 0;
  font-family: var(--serif-display); font-weight: 600;
  font-size: clamp(1.9rem, 4.5vw, 2.6rem); line-height: 1.15;
  letter-spacing: -0.01em;
}
.missionary .section-head h2 { font-size: clamp(1.7rem, 4vw, 2.3rem); }

/* ---------- prose ---------- */
.prose {
  max-width: var(--measure); margin: 0 auto;
  padding-bottom: clamp(3rem, 7vw, 4.5rem);
}
.prose p { margin: 0 0 1.35rem; }
.prose p:last-child { margin-bottom: 0; }

.prose-h {
  margin: 2.6rem 0 1rem;
  font-family: var(--serif-display); font-weight: 600;
  font-size: 1.35rem; line-height: 1.3; letter-spacing: -0.005em;
  color: var(--ink);
}
.section-head + .prose > .prose-h:first-child,
.prose > .lead + .prose-h { margin-top: 1.2rem; }

.lead {
  font-size: 1.28rem; line-height: 1.6;
  color: var(--ink);
}
.lead strong { color: var(--gold-deep); }

/* emphasis — the talk's own underlined sentences */
.em {
  background: linear-gradient(transparent 68%, rgba(201, 163, 63, 0.34) 68%);
  padding: 0 0.05em;
  border-radius: 2px;
}

/* bullet heads inside missionary sections */
.consequences-question {
  font-style: italic; color: var(--ink-soft); margin-bottom: 1.2rem;
}
.bullet-h {
  display: flex; align-items: baseline; gap: 0.6rem;
  margin: 2.2rem 0 0.7rem;
  font-family: var(--serif-display); font-weight: 600;
  font-size: 1.12rem; color: var(--ink);
}
.bullet-h i { font-size: 0.8rem; transform: translateY(-1px); }
.m1-section .bullet-h i { color: var(--m1); }
.m2-section .bullet-h i { color: var(--m2); }
.m3-section .bullet-h i { color: var(--m3); }
.m4-section .bullet-h i { color: var(--m4); }
.prose h3.prose-h + .bullet-h { margin-top: 1.1rem; }

/* the heart of the talk */
.heart-of-talk {
  padding: 1.1rem 1.4rem;
  border-left: 4px solid var(--gold-bright);
  background: var(--paper-2);
  border-radius: 0 0.6rem 0.6rem 0;
  font-size: 1.15rem;
}

/* stage directions from the talk */
.stage {
  font-style: italic; color: var(--ink-faint);
  border-left: 3px solid var(--line);
  padding-left: 1rem; margin-left: 0.25rem;
  font-size: 1.02rem;
}

/* ---------- pull quotes ---------- */
.pull {
  position: relative;
  margin: 2.4rem 0 2.6rem;
  padding: 0.2rem 1.4rem 0.2rem 3rem;
  font-family: var(--serif-display); font-weight: 500;
  font-size: 1.42rem; line-height: 1.45; letter-spacing: -0.005em;
  color: var(--gold-deep);
}
.pull i {
  position: absolute; left: 0.4rem; top: 0.45rem;
  font-size: 1.5rem; color: var(--gold);
  opacity: 0.55;
}
.pull p { margin: 0; }
.pull cite {
  display: block; margin-top: 0.6rem;
  font-family: var(--serif-body); font-style: italic;
  font-size: 1rem; color: var(--ink-faint);
}
.m1-pull { color: var(--m1); }
.m2-pull { color: var(--m2); }
.m3-pull { color: var(--m3); }
.m4-pull { color: var(--gold-deep); }

/* ---------- scripture figures ---------- */
.scripture {
  margin: 1.9rem 0 2.3rem;
  background: var(--paper-2);
  border-left: 3px solid var(--gold);
  border-radius: 0 0.7rem 0.7rem 0;
  padding: 1.15rem 1.5rem 1rem;
  box-shadow: var(--shadow-card);
}
.scripture blockquote {
  margin: 0;
  font-size: 1.05rem; line-height: 1.7;
  color: var(--ink-soft);
}
.scripture blockquote p { margin: 0 0 0.85rem; }
.scripture blockquote p:last-child { margin-bottom: 0; }
.scripture .vs {
  font-family: var(--serif-display); font-weight: 600; font-size: 0.82rem;
  color: var(--gold-deep); margin-right: 0.3rem;
}
.scripture figcaption {
  margin-top: 0.75rem;
  font-family: var(--serif-display); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-deep);
}
.scripture .see-also {
  display: block; margin-top: 0.3rem;
  text-transform: none; letter-spacing: 0.02em; font-weight: 500;
  color: var(--ink-faint);
}

/* ---------- choices grid ---------- */
.choices {
  margin: 1.8rem 0 2rem;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.4rem 1.4rem 1.1rem;
}
.choices-legend {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin-bottom: 1.1rem;
  font-family: var(--serif-display); font-size: 0.9rem; font-weight: 600;
}
.legend-item { display: inline-flex; align-items: center; gap: 0.45rem; color: var(--gold-deep); }
.legend-item i { font-size: 0.95rem; }
.legend-item.dark { color: var(--ink-faint); }
.legend-divider {
  font-family: var(--serif-body); font-style: italic; font-weight: 400;
  color: var(--ink-faint); font-size: 0.85rem;
}
.choices-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem 1.6rem;
}
.choices-grid li {
  padding: 0.55rem 0.75rem;
  font-size: 1rem; line-height: 1.45;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line);
  border-radius: 0.6rem;
}

/* ---------- comparison cards ---------- */
.comparison {
  max-width: 72rem; margin: 0 auto;
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}
.comparison-intro {
  max-width: var(--measure); margin: 0 auto 1.5rem;
  font-family: var(--serif-display); font-size: 1.3rem; font-weight: 500;
  text-align: center; color: var(--ink);
}
.cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  align-items: start;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--m1);
  border-radius: 0.9rem;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.card.m2 { border-top-color: var(--m2); }
.card.m3 { border-top-color: var(--m3); }
.card.m4 { border-top-color: var(--m4); }
.card-head {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 1rem 1.1rem 0.85rem;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.card-head .card-num {
  display: grid; place-items: center;
  width: 2.1rem; height: 2.1rem; border-radius: 0.6rem;
  font-family: var(--serif-display); font-weight: 700; font-size: 1.15rem;
  color: #fff;
}
.card.m1 .card-num { background: var(--m1); }
.card.m2 .card-num { background: var(--m2); }
.card.m3 .card-num { background: var(--m3); }
.card.m4 .card-num {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-bright));
  box-shadow: 0 0 0 3px rgba(201, 163, 63, 0.25);
}
.card-head h3 {
  margin: 0;
  font-family: var(--serif-display); font-weight: 600; font-size: 1.12rem;
}
.card-body { padding: 1rem 1.1rem 1.2rem; }
.card-body h4 {
  margin: 0 0 0.5rem;
  font-family: var(--serif-display); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-faint);
}
.card-body h4:not(:first-child) { margin-top: 1.05rem; }
.card-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 0.42rem;
}
.card-list li {
  position: relative; padding-left: 1.15rem;
  font-size: 0.95rem; line-height: 1.5; color: var(--ink-soft);
}
.card-list.char li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 0.5rem; height: 0.5rem; border-radius: 2px;
  transform: rotate(45deg);
}
.card.m1 .card-list.char li::before { background: var(--m1); }
.card.m2 .card-list.char li::before { background: var(--m2); }
.card.m3 .card-list.char li::before { background: var(--m3); }
.card.m4 .card-list.char li::before { background: var(--m4); }
.card-list.cons li::before {
  content: ""; position: absolute; left: 0.2rem; top: 0.66em;
  width: 0.45rem; height: 0.45rem; border-radius: 50%;
  border: 2px solid currentColor;
}
.card.m1 .card-list.cons li { color: var(--m1); }
.card.m2 .card-list.cons li { color: var(--m2); }
.card.m3 .card-list.cons li { color: var(--m3); }
.card.m4 .card-list.cons li { color: var(--gold-deep); }

/* ---------- closing banner ---------- */
.closing {
  max-width: 52rem; margin: 0 auto clamp(4rem, 9vw, 6rem);
  text-align: center;
  background:
    radial-gradient(700px 300px at 50% -80px, rgba(201, 163, 63, 0.18), transparent 60%),
    linear-gradient(180deg, var(--hero-bg), var(--hero-bg-2));
  color: #e9e6de;
  border-radius: 1.2rem;
  padding: clamp(2.8rem, 6vw, 4.2rem) var(--gutter);
  box-shadow: 0 24px 60px -30px rgba(20, 24, 31, 0.55);
}
.closing-lights {
  display: flex; justify-content: center; gap: 0.9rem; margin-bottom: 1.6rem;
}
.closing-kicker {
  margin: 0 0 0.6rem;
  font-family: var(--serif-display); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(233, 230, 222, 0.6);
}
.closing-line {
  margin: 0 0 1rem;
  font-family: var(--serif-display); font-weight: 600;
  font-size: clamp(2.1rem, 6vw, 3.4rem); line-height: 1.1;
  color: #f3efe6;
}
.closing-line em {
  font-style: italic; font-weight: 500;
  background: linear-gradient(100deg, var(--gold-bright), #e6c566 60%, var(--gold-bright));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.closing-sub {
  margin: 0; font-style: italic; font-size: 1.1rem;
  color: rgba(233, 230, 222, 0.72);
}

/* ---------- footer ---------- */
.site-footer {
  text-align: center;
  padding: 2.6rem var(--gutter) 3.4rem;
  border-top: 1px solid var(--line);
  color: var(--ink-faint);
  font-size: 0.98rem;
}
.footer-title {
  margin: 0 0 0.3rem;
  font-family: var(--serif-display); font-weight: 600; font-size: 1.3rem;
  color: var(--ink);
}
.footer-meta { margin: 0 0 0.25rem; }
.footer-note { margin: 0 0 1.4rem; font-style: italic; }
.footer-lights {
  display: flex; justify-content: center; gap: 0.8rem; margin-bottom: 1.6rem;
}
.footer-pdf {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--gold-deep); text-decoration: none;
  font-family: var(--serif-display); font-size: 0.95rem; font-weight: 600;
  margin-bottom: 1.4rem;
}
.footer-pdf:hover { color: var(--gold); }
.footer-more {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  color: var(--ink-soft); text-decoration: none;
  font-family: var(--serif-display); font-size: 0.95rem; font-weight: 600;
  margin-bottom: 1.6rem;
}
.footer-more:hover { color: var(--gold-deep); }
.footer-more i { font-size: 0.8rem; }
.footer-top {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--gold-deep); text-decoration: none;
  font-family: var(--serif-display); font-size: 0.95rem; font-weight: 600;
}
.footer-top:hover { color: var(--gold); }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  body { font-size: 1.0625rem; }
  .section-head { gap: 0.7rem; }
  .choices-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .pull { padding-left: 2.4rem; font-size: 1.3rem; }
  .site-header { padding: 0.5rem 0.8rem; }
  .brand-name { display: none; }
  .nav-link { padding: 0.4rem 0.55rem; font-size: 0.85rem; }
}
@media (max-width: 380px) {
  .section-head h2 { font-size: 1.55rem; }
}

/* ---------- PDF download button ---------- */
.pdf-btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.55rem 1.15rem;
  border: 1px solid rgba(201, 163, 63, 0.55); border-radius: 999px;
  color: var(--gold-bright); font-family: var(--serif-display);
  font-size: 0.92rem; font-weight: 600; letter-spacing: 0.01em;
  text-decoration: none; white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.pdf-btn:hover { background: rgba(201, 163, 63, 0.12); border-color: var(--gold-bright); }
.pdf-btn.solid {
  background: var(--gold-bright); border-color: var(--gold-bright); color: #14181f;
}
.pdf-btn.solid:hover { background: #d9b454; }
.pdf-btn i { font-size: 0.85rem; }
.header-pdf { display: inline-flex; }
@media (max-width: 720px) {
  .header-pdf { display: none; }
}
/* ---------- print / PDF (compact, paper-friendly) ---------- */
@media print {
  @page { size: A4; margin: 1.15cm 1.5cm 1.35cm; }

  html, body { background: #ffffff !important; }
  body {
    font-size: 10.5pt; line-height: 1.45; color: #232830;
    -webkit-print-color-adjust: exact; print-color-adjust: exact;
  }
  p { orphans: 2; widows: 2; }
  h1, h2, h3, h4, .section-head, .bullet-h, figcaption { break-after: avoid; }

  .progress, .site-header, .skip-link, .hero-scroll, .footer-top,
  .pdf-btn, .download-link, .site-footer { display: none !important; }

  a { color: inherit; text-decoration: none; }
  .em { background: none; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--gold); }

  /* ---- cover page (light, ink-friendly) ---- */
  .hero {
    height: 25.5cm;
    background: #faf7f0 !important;
    color: #232830 !important;
    border-bottom: 0;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    padding: 2cm 1cm;
    page-break-after: always;
  }
  .hero::after { display: none; }
  .hero-title { color: #232830; font-size: 2.6rem; }
  .hero-title em {
    background: none; -webkit-text-fill-color: var(--gold-deep); color: var(--gold-deep);
  }
  .hero-kicker { color: #7c838e; }
  .hero-objective { color: #4a525d; }
  .hero-be { color: var(--gold-deep); }
  .hero-lights { margin-bottom: 2rem; }
  .hero-lights .light-4 {
    background: var(--gold-bright);
    box-shadow: 0 0 0 3px rgba(201, 163, 63, 0.3);
  }

  /* ---- flowing body (no forced page breaks) ---- */
  .section { padding: 0; }
  .section-head { margin: 1rem 0 0.75rem; break-inside: avoid; }
  .section-head h2 { font-size: 1.45rem; }
  .section-num { font-size: 0.9rem; }
  .prose { max-width: 100%; padding-bottom: 0; }
  .prose p { margin-bottom: 0.55rem; }
  .lead { font-size: 1.08rem; }
  .prose-h { font-size: 1.12rem; margin: 1.15rem 0 0.5rem; }
  .bullet-h { font-size: 1rem; margin: 0.95rem 0 0.4rem; }
  .heart-of-talk { padding: 0.7rem 0.9rem; font-size: 1rem; break-inside: avoid; }
  .stage { font-size: 0.95rem; break-inside: avoid; }

  .pull {
    margin: 1.05rem 0 1.15rem; padding: 0.1rem 0 0.1rem 1.3rem;
    font-size: 1.16rem; break-inside: avoid;
  }
  .pull i { display: none; }

  .scripture {
    margin: 0.85rem 0 1.05rem; padding: 0.7rem 0.95rem 0.65rem;
    break-inside: avoid;
  }
  .scripture blockquote { font-size: 0.92rem; line-height: 1.5; }
  .scripture blockquote p { margin-bottom: 0.5rem; }
  .scripture figcaption { margin-top: 0.45rem; }

  .choices { margin: 1.1rem 0 1.2rem; padding: 0.85rem; break-inside: avoid; }
  .choices-legend { margin-bottom: 0.65rem; }
  .choices-grid { grid-template-columns: repeat(2, 1fr); gap: 0.3rem 0.8rem; }
  .choices-grid li { font-size: 0.88rem; padding: 0.3rem 0.55rem; }

  /* comparison cards 2x2 */
  .comparison { max-width: 100%; padding: 0.3rem 0 0.8rem; }
  .comparison-intro { margin-bottom: 0.7rem; font-size: 1.05rem; }
  .cards { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .card { break-inside: avoid; }
  .card-head { padding: 0.65rem 0.8rem 0.55rem; }
  .card-head .card-num { width: 1.7rem; height: 1.7rem; font-size: 0.95rem; }
  .card-head h3 { font-size: 1.05rem; }
  .card-body { padding: 0.55rem 0.8rem 0.75rem; }
  .card-body h4 { font-size: 0.68rem; margin-bottom: 0.3rem; }
  .card-body h4:not(:first-child) { margin-top: 0.65rem; }
  .card-list { gap: 0.28rem; }
  .card-list li { font-size: 0.79rem; line-height: 1.38; }

  /* ---- closing block (flows in, no extra page) ---- */
  .closing {
    margin-top: 1.4rem;
    padding: 1.6rem 1rem 0.6rem;
    border-top: 2px solid var(--gold);
    text-align: center;
    background: none !important;
    color: #232830 !important;
    border-radius: 0;
    box-shadow: none;
  }
  .closing-lights { margin-bottom: 1.1rem; }
  .closing-lights .light-4 {
    background: var(--gold-bright);
    box-shadow: 0 0 0 3px rgba(201, 163, 63, 0.3);
  }
  .closing-kicker { color: #7c838e; }
  .closing-line { color: #232830; font-size: 1.7rem; }
  .closing-line em {
    background: none; -webkit-text-fill-color: var(--gold-deep); color: var(--gold-deep);
  }
  .closing-sub { color: #4a525d; }
}

