/* Reading-experience refinements for chapter pages.
   Keep this file small: restraint over decoration. */

/* Literary paragraphing: indented, no gaps between paragraphs */
.chapter-body p,
section.level1 > p {
  margin-bottom: 0;
  text-indent: 1.6em;
}

.chapter-body p:first-of-type,
section.level1 > p:first-of-type,
.chapter-body h2 + p,
.chapter-body hr + p {
  text-indent: 0;
}

/* Drop cap on the chapter's first letter — one candlelit flourish */
.chapter-body > p:first-of-type::first-letter {
  float: left;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3.3em;
  line-height: 0.82;
  padding: 0.04em 0.09em 0 0;
  color: #c9a06a;
}

/* Epigraph: Vanessa's words above the chapter, set apart and quiet */
.epigraph {
  margin: 2.4rem auto 3rem;
  max-width: 30rem;
}

.epigraph blockquote,
.chapter-body blockquote {
  border-left: none;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.8;
  color: #a49c8e;
}

.epigraph blockquote p,
.chapter-body blockquote p {
  text-indent: 0 !important;
  margin-bottom: 0.6rem;
}

/* Quoted writing inside a chapter (her poems, the chat threads) */
.chapter-body blockquote {
  margin: 1.8rem auto;
  max-width: 32rem;
}

/* Scene break marker: centered, breathing room, no indent on the next line */
.scene-break {
  text-align: center;
  text-indent: 0 !important;
  margin: 2.2rem 0 !important;
  color: #8b8478;
  letter-spacing: 0.5em;
}

.scene-break + p {
  text-indent: 0 !important;
}

/* Closing ornament at the end of every chapter */
.chapter-body::after {
  content: "⁂";
  display: block;
  text-align: center;
  margin-top: 3rem;
  color: rgba(201, 160, 106, 0.55);
}

/* Chapter title block */
.quarto-title h1.title {
  text-align: center;
  margin-top: 2rem;
}

.quarto-title .subtitle {
  text-align: center;
  font-style: italic;
  color: #8b8478;
}

.quarto-title-meta {
  justify-content: center;
  text-align: center;
}

/* Previous / next chapter navigation */
.chapter-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 3.5rem 0 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(228, 222, 210, 0.08);
  font-style: italic;
  font-size: 0.95rem;
}

.chapter-nav p { text-indent: 0; }
