/* ══════════════════════════════════════════════════
   apes_chapter.css — Chapter page styles
   Requires: apes_base.css
══════════════════════════════════════════════════ */

/* ── Chapter wrapper ── */
.chapter-wrap {
  max-width: var(--prose-w);
  margin: 0 auto;
  padding: 3.5rem 1.5rem 4rem;
}

/* ── Chapter heading ── */
.chapter-heading {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule);
}

.chapter-number {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.chapter-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
}

/* ── Epigraph ── */
.epigraph {
  border-left: 3px solid var(--accent);
  padding: 0.75rem 1.25rem;
  margin: 0 auto 2.5rem;
  max-width: 480px;
}

.epigraph p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0.25rem;
}

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

/* ── Prose paragraphs ── */
.prose p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  line-height: 1.82;
  color: var(--ink);
  margin-bottom: 1.1em;
  text-indent: 1.8em;
}

.prose p.no-indent { text-indent: 0; }

/* ── Section divider ── */
hr.highlightDiv {
  border: none;
  border-top: 0.6px solid var(--accent);
  margin: 2.5rem 0;
}

/* ── One-liners / aphorisms ── */
.one-liner {
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  font-style: italic;
  color: #888;
  text-align: center;
  margin: 1.4rem auto;
  padding: 0.35rem 2rem;
  text-indent: 0 !important;
  letter-spacing: 0.04em;
}

/* ── Inline figures ── */
.inline-figure {
  margin: 2rem auto;
  text-align: center;
}

.inline-figure.wide img { max-width: 100%; }

.inline-figure figcaption {
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.5rem;
  letter-spacing: 0.04em;
}

/* ── Narrator aside ── */
.narrator {
  background: #f0ece5;
  border-left: 4px solid var(--ink);
  border-radius: 2px;
  padding: 1.5rem 1.75rem;
  margin: 2.5rem 0;
}

.narrator-label {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.narrator p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
  text-indent: 0;
}

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

/* ── Chapter navigation ── */
.chapter-nav {
  max-width: var(--prose-w);
  margin: 0 auto 0.5rem;
  padding: 1.5rem 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--rule);
  gap: 1rem;
}

.chapter-nav a {
  font-family: 'Raleway', sans-serif;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

.chapter-nav a:hover { color: var(--accent); }

/* ── Responsive ── */
@media (max-width: 720px) {
  .chapter-nav { flex-direction: column; text-align: center; }
}
