/* ═══════════════════════════════════════════════════════════
   Long-form reading. Extends base.css; restates no palette value.
   The one job: get out of the way of the prose.
   ═══════════════════════════════════════════════════════════ */

.read-masthead {
  padding-block: var(--space-md);
  border-bottom: 1px solid var(--rule);
}

.read-masthead a {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  text-decoration-color: var(--rule-strong);
}

.chapter {
  width: min(38rem, 100% - var(--gutter) * 2);
  margin-inline: auto;
  padding-block: var(--space-xl) var(--space-2xl);
}

.chapter__head {
  margin-bottom: var(--space-xl);
  text-align: center;
}

.chapter__num {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.chapter__title {
  margin-top: var(--space-sm);
  font-size: var(--text-2xl);
  max-width: none;
}

/* Prose — slightly looser than the site default, and a narrower measure.
   Reading a chapter is a different job from scanning a landing page. */

.prose {
  font-size: clamp(1.15rem, 0.5vw + 1.05rem, 1.3rem);
  line-height: 1.72;
}

.prose p {
  max-width: none;
  hanging-punctuation: first last;
}

/* Indented paragraphs, book-style — but the first one after a break is flush. */
.prose p + p {
  margin-top: 0;
  text-indent: 1.5em;
}

.prose > p:first-of-type::first-line {
  font-variant-caps: small-caps;
  letter-spacing: 0.03em;
}

.scene-break {
  display: block;
  border: 0;
  margin-block: var(--space-lg);
  text-align: center;
  overflow: visible;
}

.scene-break::before {
  content: "· · ·";
  color: var(--text-muted);
  letter-spacing: 0.5em;
  font-size: var(--text-sm);
}

/* After a scene break, the next paragraph starts flush. */
.scene-break + p { text-indent: 0 !important; }

/* ── End of chapter ───────────────────────────────────────── */

.chapter-end {
  margin-top: var(--space-2xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--rule);
}

.chapter-end h2 {
  font-size: var(--text-xl);
}

.chapter-end p { max-width: none; }

.offer {
  margin-top: var(--space-lg);
  padding: var(--space-lg);
  background: var(--surface);
  border-radius: var(--radius-md);
}

.offer h3 { font-size: var(--text-lg); margin-bottom: var(--space-xs); }

.offer .meta,
.offer .list-form label { color: var(--text-muted-on-surface); }

.offer .list-form { margin-top: var(--space-md); }

.offer__alt {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--rule-carrying);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--text-muted-on-surface);
}

