/* ============================================================
   The Plain Word: The Gospels launch landing page
   Tokens from /design/design-system.md. Mobile-first.
   ============================================================ */

:root {
  /* Color */
  --paper: #FAF7F2;
  --ink: #2B2723;
  --deep-ink: #211E1B;
  --warm-gray: #6B6257;
  --muted: #8A8177;
  --clay: #A9553B;
  --clay-deep: #8F4630;
  --wash: #F0E9DE;
  --hairline: #E3DACB;
  --cream: #FBF3E6;

  /* Dawn gradient (cover concept B) */
  --dawn: linear-gradient(180deg, #3A3340 0%, #6E5560 30%, #B47B6E 58%, #E0A87C 80%, #F6DDBA 100%);

  /* Type */
  --serif: Charter, "Bitstream Charter", "Source Serif 4", "Iowan Old Style", Georgia, serif;
  --sans: "Avenir Next", Avenir, "Nunito Sans", "Segoe UI", system-ui, sans-serif;

  --shadow-card: 0 1px 2px rgba(43, 39, 35, 0.05), 0 10px 30px rgba(43, 39, 35, 0.08);
  --shadow-cover: 0 2px 4px rgba(33, 30, 27, 0.18), 0 24px 48px -12px rgba(33, 30, 27, 0.35);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

[id] { scroll-margin-top: 4.25rem; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.0625rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--clay); }

.container {
  width: 100%;
  max-width: 68rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow { max-width: 46rem; }

section { padding: 4rem 0; }

/* ---- Shared type ---- */

.eyebrow {
  display: block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--clay);
  margin: 0 0 1rem;
}

.eyebrow::before {
  content: "";
  display: block;
  width: 1.375rem;
  height: 2px;
  background: var(--clay);
  margin-bottom: 0.875rem;
}

.centered .eyebrow::before { margin-left: auto; margin-right: auto; }
.centered { text-align: center; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 1.25rem;
  text-wrap: balance;
}

h1 { font-size: clamp(2.375rem, 8.5vw, 3.875rem); }
h2 { font-size: clamp(1.75rem, 5.5vw, 2.625rem); }
h3 { font-size: clamp(1.25rem, 4vw, 1.625rem); }

.lede {
  font-size: clamp(1.0625rem, 2.6vw, 1.1875rem);
  color: var(--warm-gray);
  max-width: 38em;
  margin: 0 0 1.5rem;
}

.centered .lede { margin-left: auto; margin-right: auto; }

.cite {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}

/* ---- Buttons ---- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: none;
  border-radius: 6px;
  padding: 1rem 1.75rem;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.btn--primary {
  background: var(--clay);
  color: var(--cream);
  box-shadow: 0 2px 6px rgba(169, 85, 59, 0.25), 0 10px 24px -8px rgba(169, 85, 59, 0.45);
}

.btn--primary:hover {
  background: var(--clay-deep);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--clay);
  border: 1px solid var(--clay);
}

.btn--ghost:hover { background: rgba(169, 85, 59, 0.07); }

.btn--block { width: 100%; }

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
  margin-top: 1.125rem;
  padding: 0;
  list-style: none;
  font-family: var(--sans);
  font-size: 0.8125rem;
  color: var(--warm-gray);
}

.trust-line li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.trust-line svg { flex-shrink: 0; color: var(--clay); }

/* ============================================================
   Site nav (sticky, all pages)
   ============================================================ */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250, 247, 242, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.5rem;
}

.nav-wordmark {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.nav-wordmark em { font-style: italic; color: var(--clay); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-links a:not(.btn) {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--warm-gray);
  text-decoration: none;
  transition: color 140ms ease;
}

.nav-links a:not(.btn):hover { color: var(--ink); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-cta {
  padding: 0.55rem 1.05rem;
  font-size: 0.875rem;
  border-radius: 6px;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  margin-right: -0.5rem;
  cursor: pointer;
  color: var(--ink);
}

.nav-toggle svg { display: block; }
.nav-toggle .icon-close { display: none; }
.site-nav.is-open .nav-toggle .icon-open { display: none; }
.site-nav.is-open .nav-toggle .icon-close { display: block; }

@media (max-width: 899px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--hairline);
    box-shadow: 0 16px 32px -12px rgba(43, 39, 35, 0.18);
    padding: 0.5rem 1.5rem 1rem;
  }

  .site-nav.is-open .nav-links { display: flex; }

  .nav-links a:not(.btn) {
    padding: 0.8rem 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--hairline);
  }

  .nav-links a:not(.btn):last-of-type { border-bottom: none; }

  .nav-toggle { display: block; }

  .nav-cta .nav-cta-price { display: none; }

  /* At 375px the wordmark + full CTA + hamburger overflowed the viewport by
     10px, so the whole page could be dragged sideways. Tighten the CTA. */
  .nav-cta { padding: 0.6rem 0.9rem; font-size: 0.875rem; }
}

@media (max-width: 430px) {
  .nav-cta .nav-cta-rest { display: none; }
}

/* ============================================================
   Subpage scaffolding (about, faq, contact)
   ============================================================ */

.page-hero { padding: 3.5rem 0 1rem; }

.page-hero h1 { font-size: clamp(2.125rem, 7vw, 3.25rem); }

.page-body { padding-top: 1.5rem; }

.page-body h2 { font-size: clamp(1.375rem, 4vw, 1.75rem); margin-top: 2.75rem; }

.page-body p { max-width: 38em; }

.contact-card {
  background: #FFFDFA;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  padding: 2rem 1.75rem;
  margin: 2rem 0;
}

.contact-card .email {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.25rem, 4.5vw, 1.625rem);
  color: var(--clay);
  text-decoration: none;
  word-break: break-all;
}

.contact-card .email:hover { text-decoration: underline; }

.contact-card p { margin: 0.875rem 0 0; color: var(--warm-gray); font-size: 0.9875rem; }

.faq-group { margin-top: 2.5rem; }

.faq-group > h2 {
  font-size: 1.0625rem;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1rem;
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: relative;
  padding: 3.5rem 0 4.5rem;
  overflow: hidden;
}

.hero::before {
  /* soft dawn glow behind the cover */
  content: "";
  position: absolute;
  right: -20%;
  top: -10%;
  width: 34rem;
  height: 34rem;
  background: radial-gradient(closest-side, rgba(224, 168, 124, 0.28), rgba(224, 168, 124, 0));
  pointer-events: none;
}

.hero .container {
  position: relative;
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-copy .signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.0625rem, 2.8vw, 1.25rem);
  color: var(--clay);
  border-left: 2px solid var(--clay);
  padding-left: 1rem;
  margin: 1.5rem 0 2rem;
  max-width: 30em;
}

.hero-cta { display: flex; flex-direction: column; align-items: flex-start; }

/* ---- The book cover, rendered in CSS (concept B: dawn) ---- */

.cover-wrap {
  display: flex;
  justify-content: center;
  /* Top-align: the copy column is far taller than the cover, so centring it
     dropped the book well below the headline and past the fold. */
  align-self: start;
  padding-top: 0.75rem;
  perspective: 1800px;
}

/* ---- The paperback, shown as an object rather than a flat rectangle ---- */

.book3d {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 2 / 3;
  transform: rotateY(-12deg) rotate(0.7deg);
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
  filter:
    drop-shadow(0 26px 42px rgba(33, 30, 27, 0.26))
    drop-shadow(0 8px 14px rgba(33, 30, 27, 0.14));
}

.book3d:hover {
  transform: rotateY(-6deg) rotate(0.3deg) translateY(-5px);
}

.book3d__face {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px 9px 9px 3px;
  border: 1px solid rgba(33, 30, 27, 0.10);
  background: var(--paper);
}

.book3d__spine {
  /* the gutter shadow where the cover wraps to the spine */
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: 0;
  width: 26px;
  border-radius: 3px 0 0 3px;
  background: linear-gradient(
    90deg,
    rgba(33, 30, 27, 0.30) 0%,
    rgba(33, 30, 27, 0.10) 38%,
    rgba(255, 255, 255, 0.24) 72%,
    rgba(33, 30, 27, 0) 100%
  );
  pointer-events: none;
}

.book3d__pages {
  /* the block of page edges, visible along the fore-edge as the book turns */
  position: absolute;
  z-index: 1;
  top: 1.1%;
  bottom: 1.1%;
  right: -9px;
  width: 11px;
  border-radius: 0 3px 3px 0;
  background:
    repeating-linear-gradient(
      180deg,
      #efe8dc 0px, #efe8dc 1px,
      #dcd2c2 1px, #dcd2c2 2px
    ),
    linear-gradient(90deg, #cfc4b2, #f6f1e7 40%, #ded4c4);
  box-shadow: inset -1px 0 2px rgba(33, 30, 27, 0.18);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .book3d { transition: none; }
  .book3d:hover { transform: rotateY(-12deg) rotate(0.7deg); }
}

.cover {
  position: relative;
  width: min(17rem, 68vw);
  aspect-ratio: 2 / 3;
  border-radius: 4px 10px 10px 4px;
  background: var(--dawn);
  box-shadow: var(--shadow-cover);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  padding: 2.25rem 1.5rem 1.75rem;
  transform: rotate(0.8deg);
  overflow: hidden;
}

.cover::before {
  /* spine highlight */
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 10px;
  background: linear-gradient(90deg, rgba(33, 30, 27, 0.28), rgba(251, 243, 230, 0.12) 55%, rgba(33, 30, 27, 0) 100%);
  pointer-events: none;
}

.cover::after {
  /* faint horizon haze */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 30% at 50% 72%, rgba(251, 243, 230, 0.22), rgba(251, 243, 230, 0) 70%);
  pointer-events: none;
}

.cover-top {
  position: relative;
  z-index: 1;
  color: var(--cream);
}

.cover-kicker {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.5625rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(251, 243, 230, 0.75);
  margin-bottom: 1.375rem;
}

.cover-wordmark {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.75rem, 6vw, 2.125rem);
  line-height: 1.18;
  letter-spacing: 0.01em;
  color: var(--cream);
}

.cover-wordmark .the {
  display: block;
  font-size: 0.52em;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-bottom: 0.35em;
  color: rgba(251, 243, 230, 0.85);
}

.cover-wordmark .plain { font-style: italic; }

.cover-bottom {
  position: relative;
  z-index: 1;
  width: 100%;
  color: rgba(43, 39, 35, 0.82);
}

.cover-rule {
  width: 1.75rem;
  height: 1px;
  background: rgba(43, 39, 35, 0.4);
  margin: 0 auto 0.75rem;
}

.cover-subtitle {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.cover-books {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.5625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(43, 39, 35, 0.6);
}

/* ============================================================
   Problem section
   ============================================================ */

.problem { background: var(--wash); }

.problem .stats {
  display: grid;
  gap: 1rem;
  margin: 2.25rem 0;
}

.stat-card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  padding: 1.375rem 1.5rem;
  box-shadow: var(--shadow-card);
}

.stat-card .figure {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 2.375rem;
  line-height: 1;
  color: var(--clay);
  margin-bottom: 0.5rem;
}

.stat-card p {
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--warm-gray);
}

.stat-card .cite { display: block; }

.problem .turn {
  font-size: clamp(1.0625rem, 2.6vw, 1.1875rem);
  max-width: 38em;
}

.problem .turn strong { color: var(--clay); font-weight: 700; }

/* ============================================================
   Comparison (the centerpiece)
   ============================================================ */

.compare { padding-top: 4.5rem; padding-bottom: 4.5rem; }

.verse-card {
  text-align: left;
  background: #FFFDFA;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  margin-top: 1.75rem;
  overflow: hidden;
}

.verse-card > header {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--hairline);
  background: var(--paper);
}

.verse-grid { display: grid; }

.verse {
  padding: 1.75rem 1.5rem;
}

.verse-label {
  display: block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.875rem;
}

.verse p {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.7;
}

.verse--trad {
  background: var(--wash);
  border-bottom: 1px solid var(--hairline);
}

.verse--trad .verse-label { color: var(--muted); }

.verse--trad p { color: var(--warm-gray); }

.verse--plain .verse-label { color: var(--clay); }

.verse--plain .verse-label::after {
  content: "";
  display: block;
  width: 1.375rem;
  height: 2px;
  background: var(--clay);
  margin-top: 0.5rem;
}

.compare-note {
  margin-top: 2rem;
  font-style: italic;
  color: var(--warm-gray);
  text-align: center;
}

/* ============================================================
   Five reasons
   ============================================================ */

.reasons { background: var(--paper); padding-top: 4.5rem; }

.reason {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem 1.5rem;
  padding: 2.25rem 0;
  border-top: 1px solid var(--hairline);
}

.reason:first-of-type { margin-top: 2.5rem; }

.reason .num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  line-height: 0.9;
  color: var(--clay);
}

.reason h3 { margin-bottom: 0.75rem; }

.reason p {
  margin: 0 0 1rem;
  color: var(--warm-gray);
  max-width: 36em;
}

.reason p:last-child { margin-bottom: 0; }

.reason p strong { color: var(--ink); }

/* ============================================================
   Excerpt (book interior)
   ============================================================ */

.excerpt { background: var(--wash); padding-top: 4.5rem; padding-bottom: 4.5rem; }

.book-page {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 3px;
  box-shadow: var(--shadow-cover);
  max-width: 40rem;
  margin: 2.5rem auto 0;
  padding: 2.75rem 1.625rem 2.5rem;
}

.book-page .kicker {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 1.5rem;
}

.book-page .chapter-num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--clay);
  text-align: center;
  margin-bottom: 1.25rem;
}

.book-page .chapter-rule {
  width: 1.875rem;
  height: 2px;
  background: var(--clay);
  margin: 0 auto 1.125rem;
}

.book-page .summary {
  font-style: italic;
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--warm-gray);
  text-align: center;
  max-width: 26em;
  margin: 0 auto 2.25rem;
}

.book-page .section-head {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 2rem 0 1rem;
}

.book-page .section-head::before {
  content: "";
  display: block;
  width: 1.375rem;
  height: 2px;
  background: var(--clay);
  margin-bottom: 0.625rem;
}

.book-page p {
  margin: 0 0 1.3em;
  font-size: 1.0625rem;
  line-height: 1.75;
}

.book-page .callout {
  background: var(--wash);
  border-left: 2px solid var(--clay);
  padding: 1.125rem 1.125rem 1.125rem 1.25rem;
  margin-top: 2rem;
}

.book-page .callout-label {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.625rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 0.5rem;
}

.book-page .callout p {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.excerpt-source {
  text-align: center;
  margin-top: 1.25rem;
}

/* ============================================================
   Email capture
   ============================================================ */

.capture { padding-top: 3.5rem; padding-bottom: 3.5rem; }

.capture-card {
  background: #FFFDFA;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  padding: 2.25rem 1.5rem;
  text-align: center;
}

.capture-card h2 { font-size: clamp(1.5rem, 4.5vw, 1.9rem); }

.capture-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 26rem;
  margin: 1.5rem auto 0;
}

.capture-form input[type="email"] {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 0.9375rem 1rem;
  border: 1px solid var(--hairline);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  width: 100%;
}

.capture-form input[type="email"]:focus {
  outline: 2px solid var(--clay);
  outline-offset: 1px;
  border-color: var(--clay);
}

.capture-success {
  display: none;
  margin: 1.25rem auto 0;
  font-style: italic;
  color: var(--clay);
}

.capture-form.is-done { display: none; }

.capture-card.is-done .capture-success { display: block; }

/* ============================================================
   Offer stack
   ============================================================ */

.offer { background: var(--wash); padding-top: 4.5rem; padding-bottom: 4.5rem; }

.offer-card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  margin-top: 2.25rem;
  padding: 2rem 1.5rem;
  display: grid;
  gap: 2rem;
}

.offer-cover { display: flex; justify-content: center; align-items: flex-start; }

.offer-cover .cover {
  width: min(13rem, 60vw);
  transform: rotate(-1deg);
  padding: 1.75rem 1.125rem 1.375rem;
}

.offer-list {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
}

.offer-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 0.9875rem;
  line-height: 1.6;
}

.offer-list li:last-child { border-bottom: none; }

.offer-list svg {
  flex-shrink: 0;
  margin-top: 0.3rem;
  color: var(--clay);
}

.offer-list strong { color: var(--ink); }

.price-line {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.price-line .price {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 2.75rem;
  line-height: 1;
  color: var(--ink);
}

.price-line .terms {
  font-family: var(--sans);
  font-size: 0.8125rem;
  color: var(--warm-gray);
}

/* ============================================================
   Founder note
   ============================================================ */

.founder { padding-top: 4.5rem; padding-bottom: 4.5rem; }

.founder .container {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.founder-media {
  position: relative;
  width: 100%;
  max-width: 20rem;
  aspect-ratio: 4 / 5;
  margin: 0 auto;
  border-radius: 10px;
  background: linear-gradient(160deg, var(--wash) 0%, #E8DBC9 60%, #DEC9AE 100%);
  border: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.founder-media .monogram {
  font-family: var(--serif);
  font-style: italic;
  font-size: 3rem;
  color: var(--clay);
}

.founder-media .slot-note {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.625rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

.founder-copy p {
  margin: 0 0 1.25rem;
  max-width: 36em;
}

.founder-sig {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--clay);
  margin-top: 1.5rem;
}

.founder-sig .role {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.375rem;
}

/* ============================================================
   FAQ
   ============================================================ */

.faq { background: var(--wash); padding-top: 4.5rem; padding-bottom: 4.5rem; }

.faq-list { margin-top: 2rem; }

.faq-item {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.375rem;
  line-height: 1;
  color: var(--clay);
  transition: transform 160ms ease;
  flex-shrink: 0;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item .answer {
  padding: 0 1.25rem 1.25rem;
  color: var(--warm-gray);
  font-size: 0.9875rem;
}

.faq-item .answer p { margin: 0 0 0.875rem; }
.faq-item .answer p:last-child { margin-bottom: 0; }

/* ============================================================
   Final CTA
   ============================================================ */

.final-cta {
  background: var(--deep-ink);
  color: var(--cream);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  /* dawn on the horizon */
  content: "";
  position: absolute;
  left: 50%;
  bottom: -28rem;
  transform: translateX(-50%);
  width: 64rem;
  height: 40rem;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(224, 168, 124, 0.4), rgba(180, 123, 110, 0.18) 55%, rgba(33, 30, 27, 0) 75%);
  pointer-events: none;
}

.final-cta .container { position: relative; }

.final-cta h2 { color: var(--cream); }

.final-cta .eyebrow { color: #E0A87C; }
.final-cta .eyebrow::before { background: #E0A87C; }

.final-cta .lede { color: rgba(251, 243, 230, 0.75); }

.final-cta .hero-cta { align-items: center; }

.final-cta .trust-line { color: rgba(251, 243, 230, 0.65); justify-content: center; }
.final-cta .trust-line svg { color: #E0A87C; }

.guarantee {
  max-width: 34rem;
  margin: 2.75rem auto 0;
  border: 1px solid rgba(251, 243, 230, 0.22);
  border-radius: 10px;
  padding: 1.625rem 1.5rem;
  text-align: left;
}

.guarantee h3 {
  color: var(--cream);
  font-size: 1.125rem;
  margin-bottom: 0.625rem;
}

.guarantee p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(251, 243, 230, 0.75);
}

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  background: var(--deep-ink);
  border-top: 1px solid rgba(251, 243, 230, 0.12);
  padding: 2.25rem 0 5.5rem; /* bottom padding clears the sticky bar */
  color: rgba(251, 243, 230, 0.55);
  font-family: var(--sans);
  font-size: 0.8125rem;
}

.footer-cols {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.25rem;
}

@media (min-width: 640px) {
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
}

.footer-col h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(251, 243, 230, 0.45);
  margin: 0 0 0.875rem;
}

.footer-col a {
  display: block;
  color: rgba(251, 243, 230, 0.7);
  text-decoration: none;
  padding: 0.25rem 0;
  font-size: 0.875rem;
}

.footer-col a:hover { color: var(--cream); text-decoration: underline; }

.site-footer .attribution {
  font-family: var(--serif);
  font-style: italic;
  color: rgba(251, 243, 230, 0.7);
  margin: 0 0 1rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem 1.5rem;
  margin-bottom: 1rem;
}

.site-footer a {
  color: rgba(251, 243, 230, 0.7);
  text-decoration: none;
}

.site-footer a:hover { color: var(--cream); text-decoration: underline; }

.site-footer .fineprint { margin: 0; }

/* ============================================================
   Sticky mobile CTA bar
   ============================================================ */

.sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--hairline);
  padding: 0.625rem 1rem;
  padding-bottom: calc(0.625rem + env(safe-area-inset-bottom, 0px));
  transform: translateY(110%);
  transition: transform 240ms ease;
}

.sticky-bar.is-visible { transform: translateY(0); }

/* Label and button share one row; the urgency note sits beneath.
   All three were previously flex siblings, which crushed the label to 78px
   and pushed the button 21px off the right edge of a 375px screen. */
.sticky-bar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.sticky-bar .label {
  flex: 1 1 auto;
  min-width: 0;
  font-family: var(--sans);
  font-size: 0.75rem;
  line-height: 1.3;
  color: rgba(43, 39, 35, 0.68);
}

.sticky-bar .label strong { display: block; font-size: 0.875rem; color: var(--ink); }

.sticky-bar .btn {
  flex: 0 0 auto;
  padding: 0.7rem 1.1rem;
  font-size: 0.875rem;
  white-space: nowrap;
}

.sticky-bar .urgency-line {
  margin: 0.4rem 0 0;
  padding: 0;
  max-width: none;
  background: none;
  border-left: none;
  border-radius: 0;
  font-size: 0.6875rem;
  line-height: 1.3;
  text-align: center;
}

@media (max-width: 400px) {
  .sticky-bar .btn-rest { display: none; }
}

/* ============================================================
   Reveal on scroll (progressive enhancement)
   ============================================================ */

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

.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .sticky-bar { transition: none; }
}

/* ============================================================
   Breakpoints
   ============================================================ */

@media (min-width: 720px) {
  section { padding: 5.5rem 0; }

  .hero { padding: 5rem 0 6rem; }

  .hero .container {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
  }

  .cover { width: min(19rem, 34vw); }

  .problem .stats { grid-template-columns: repeat(3, 1fr); }

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

  .verse { padding: 2.25rem 2rem; }

  .verse--trad {
    border-bottom: none;
    border-right: 1px solid var(--hairline);
  }

  .reason {
    grid-template-columns: 6.5rem 1fr;
    gap: 2rem;
    padding: 3rem 0;
  }

  .book-page { padding: 3.5rem 3.25rem 3rem; }

  .capture-form { flex-direction: row; }
  .capture-form input[type="email"] { flex: 1; }
  .capture-form .btn { flex-shrink: 0; }

  .offer-card {
    grid-template-columns: minmax(0, 15rem) 1fr;
    padding: 2.75rem 2.5rem;
  }

  .founder .container {
    grid-template-columns: minmax(0, 20rem) 1fr;
    gap: 4rem;
  }

  .sticky-bar { display: none; } /* desktop keeps the in-page CTAs */
}

@media (min-width: 1000px) {
  .offer-card { gap: 3rem; }
}

/* ============================================================
   Free chapter slide-in
   ============================================================ */
.slidein {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  max-width: 22rem;
  background: var(--paper, #FAF7F2);
  border: 1px solid rgba(43, 43, 43, 0.12);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(43, 43, 43, 0.18);
  padding: 1.25rem 1.25rem 1.1rem;
  transform: translateY(calc(100% + 2rem));
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s;
  pointer-events: none;
}
.slidein.is-visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.slidein-close {
  position: absolute; top: 0.4rem; right: 0.65rem;
  background: none; border: none; font-size: 1.35rem; line-height: 1;
  color: rgba(43,43,43,0.45); cursor: pointer; padding: 0.25rem;
}
.slidein-close:hover { color: var(--ink, #2B2B2B); }
.slidein-kicker {
  font-family: var(--sans); font-size: 0.6875rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--clay, #B0603F); margin: 0 0 0.35rem;
}
.slidein-title { font-size: 1.25rem; margin: 0 0 0.35rem; }
.slidein-sub { font-size: 0.875rem; color: rgba(43,43,43,0.75); margin: 0 0 0.85rem; line-height: 1.55; }
.slidein-form { display: flex; gap: 0.5rem; }
.slidein-form input {
  flex: 1; min-width: 0; padding: 0.7rem 0.85rem; font-size: 0.9375rem;
  border: 1px solid rgba(43,43,43,0.2); border-radius: 8px; background: #fff;
  font-family: inherit;
}
.slidein-form .btn { padding: 0.7rem 1rem; font-size: 0.9375rem; white-space: nowrap; }
.slidein-success { display: none; font-size: 0.9rem; color: var(--clay, #B0603F); margin: 0.5rem 0 0; }
.slidein.is-done .slidein-form { display: none; }
.slidein.is-done .slidein-success { display: block; }
@media (max-width: 640px) {
  .slidein { left: 0.75rem; right: 0.75rem; max-width: none; bottom: 5.25rem; }
}

/* ============================================================
   Sample chapter gate + first-reader quote
   ============================================================ */
.gate-fade {
  position: relative;
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 95%);
  mask-image: linear-gradient(to bottom, black 0%, transparent 95%);
}
.gate-cta { text-align: center; padding: 0.75rem 0 0.5rem; }
.gate-line {
  font-style: italic;
  font-size: 1.0625rem;
  color: var(--ink, #2B2B2B);
  margin: 0 0 1rem;
}
.gate-alt { font-family: var(--sans); font-size: 0.875rem; margin: 0.85rem 0 0; color: rgba(43,43,43,0.65); }
.gate-alt a { color: var(--clay, #B0603F); }

.first-reader {
  max-width: 38rem;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.first-reader blockquote {
  font-size: 1.375rem;
  line-height: 1.55;
  font-style: italic;
  margin: 0 0 0.75rem;
  color: var(--ink, #2B2B2B);
}
.first-reader cite {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(43,43,43,0.55);
}

/* ============================================================
   Gift section
   ============================================================ */
.gift { padding: 5rem 0; background: #fff; }
.gift h2 { margin-bottom: 1.25rem; }
.gift .lede { max-width: 36rem; margin-left: auto; margin-right: auto; }
.gift-how {
  max-width: 34rem;
  margin: 2rem auto;
  background: var(--paper, #FAF7F2);
  border: 1px solid rgba(43, 43, 43, 0.1);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  text-align: left;
}
.gift-how p { margin: 0; font-size: 0.9675rem; line-height: 1.65; }
.gift-sub {
  font-family: var(--sans);
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(43,43,43,0.55);
  margin-top: 1rem;
}

/* Hero quote + CTA assurance */
.first-reader--hero { max-width: 26rem; margin: 1.75rem 0 0; text-align: left; }
.first-reader--hero blockquote { font-size: 1rem; line-height: 1.5; margin-bottom: 0.4rem; }
.first-reader--hero cite { font-size: 0.6875rem; }
.cta-assure { font-family: var(--sans); font-size: 0.8125rem; color: rgba(43,43,43,0.6); margin-top: 0.75rem; }

/* Launch-price urgency */
.urgency-line {
  font-family: var(--sans);
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--clay, #B0603F);
  background: rgba(176, 96, 63, 0.07);
  border-left: 3px solid var(--clay, #B0603F);
  padding: 0.65rem 0.9rem;
  border-radius: 0 8px 8px 0;
  margin: 0 0 1.25rem;
}
.urgency-line--center { max-width: 30rem; margin: 0 auto 1.5rem; text-align: left; }

/* ============ Reader review cards (hero) ============ */
.review-stack { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; max-width: 540px; }
.review-card { background: rgba(255, 255, 255, 0.65); border: 1px solid rgba(176, 96, 63, 0.16); border-radius: 14px; padding: 16px 18px; display: flex; gap: 14px; align-items: flex-start; box-shadow: 0 1px 4px rgba(43, 43, 43, 0.04); }
.review-avatar { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%; background: #b0603f; color: #fff; font-family: "Nunito Sans", sans-serif; font-weight: 700; font-size: 16px; display: flex; align-items: center; justify-content: center; }
.review-card blockquote { margin: 0; font-family: "Source Serif 4", Georgia, serif; font-size: 0.98rem; line-height: 1.55; color: #2b2b2b; font-style: italic; }
.review-card cite { display: block; margin-top: 7px; font-style: normal; font-family: "Nunito Sans", sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.4px; color: #6b6459; }
.review-card cite .review-tag { font-weight: 400; color: #8a8378; }
@media (max-width: 640px) { .review-card { padding: 14px 15px; } }

/* ============================================================
   FAITH STRIP — answers the faithfulness objection above the fold.
   Two of six exit surveys named it ("tacky paraphrase ... Like The
   Living Bible"), so it sits with the buy button, not in the FAQ.
   ============================================================ */
.faith-strip {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0.85rem 0 0;
  padding: 0.6rem 0.8rem;
  max-width: 30rem;
  background: rgba(176, 96, 63, 0.055);
  border-left: 2px solid var(--clay);
  border-radius: 0 5px 5px 0;
  font-family: var(--sans);
  font-size: 0.855rem;
  line-height: 1.45;
  color: #5a534a;
}
.faith-strip svg { flex-shrink: 0; margin-top: 2px; color: var(--clay); }
.faith-strip strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   LOOK INSIDE — real page images under the hero.
   Horizontal scroll on every width: the cards are 4:5 and stay
   legible rather than shrinking to fit a row on small screens.
   ============================================================ */
.peek { padding-top: 3.6rem; padding-bottom: 3.6rem; }
.peek h2 { margin-top: 0.35rem; }
.peek .lede { margin-bottom: 0; }

.peek-strip {
  display: flex;
  gap: 1rem;
  margin: 1.9rem 0 1.4rem;
  padding: 0.25rem 1.25rem 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.peek-card {
  flex: 0 0 auto;
  width: min(268px, 68vw);
  margin: 0;
  scroll-snap-align: center;
}
.peek-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(33, 30, 27, 0.09);
  box-shadow: 0 10px 26px rgba(33, 30, 27, 0.11);
}
.peek-note {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: #6b6459;
}
.peek-note a { color: var(--clay); text-decoration: underline; }

/* Centre the strip once the cards no longer overflow. */
@media (min-width: 1180px) {
  .peek-strip { justify-content: center; overflow-x: visible; }
}
@media (max-width: 640px) {
  .peek { padding-top: 2.8rem; padding-bottom: 2.8rem; }
  .peek-strip { gap: 0.75rem; padding-left: 1rem; padding-right: 1rem; }
}
