/* =========================================================================
   Finding Klára — shared stylesheet
   Palette and type derived directly from the book cover artwork.
   One file for all pages: edit here, every page updates.
   ========================================================================= */

/* ---------- 1. Design tokens ---------------------------------------- */
:root {
  /* Surfaces — the cover's cream mist and fjord water */
  --cream:      #F5EEE3;
  --cream-2:    #EFE5D9;
  --mist:       #E9DED1;
  --mist-2:     #DFCABF;

  /* Ink — the charcoal splatter and deep hair shadow */
  --ink:        #2A1A14;
  --ink-soft:   #503932;
  --muted:      #6E6764;
  --umber:      #48271F;

  /* Rose — the "Klára" brush script. Display type only: fails contrast at body size. */
  --rose:       #D77D84;
  --rose-deep:  #A85860;
  --rose-wash:  rgba(215,125,132,.13);

  /* Copper — Klára's hair. This is the readable accent: links, small emphasis. */
  --copper:     #994C39;
  --copper-deep:#703728;

  /* Moss — the iris. Used rarely, on purpose. */
  --moss:       #5F6B2F;

  /* Type */
  --serif:  'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --script: 'Kaushan Script', 'Caveat', cursive;
  --sans:   'Jost', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Rhythm */
  --measure: 34rem;      /* readable line length for body copy */
  --wide:    68rem;
  --gap:     clamp(3.5rem, 9vw, 8rem);
  --rule:    1px solid rgba(80, 57, 50, .16);
}

/* ---------- 2. Reset & base ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(1.02rem, .55vw + .9rem, 1.14rem);
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;

  /* Soft fjord mist: cream that cools toward the horizon, warms at the edges. */
  background-image:
    radial-gradient(120% 70% at 50% 0%,   rgba(233,222,209,.85) 0%, rgba(245,238,227,0) 62%),
    radial-gradient(90%  60% at 8%  22%,  rgba(215,125,132,.055) 0%, rgba(245,238,227,0) 60%),
    radial-gradient(80%  55% at 95% 78%,  rgba(153,76,57,.045)  0%, rgba(245,238,227,0) 60%);
  background-attachment: fixed;
}

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

a { color: var(--copper); text-decoration-thickness: 1px; text-underline-offset: .22em; }
a:hover { color: var(--copper-deep); }

:focus-visible {
  outline: 2px solid var(--moss);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: -9999px;
  background: var(--ink); color: var(--cream);
  padding: .7rem 1.2rem; z-index: 200; border-radius: 0 0 4px 0;
}
.skip-link:focus { left: 0; top: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ---------- 3. Layout helpers --------------------------------------- */
.wrap  { max-width: var(--measure); margin-inline: auto; padding-inline: 1.5rem; }
.wrap-wide { max-width: var(--wide); margin-inline: auto; padding-inline: 1.5rem; }

section { padding-block: var(--gap); }

.section-label {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0 0 2.2rem;
}
.section-label::after {
  content: "";
  display: block;
  width: 2.4rem; height: 1px;
  background: var(--rose);
  margin-top: .9rem;
}
.section-label.centred { text-align: center; }
.section-label.centred::after { margin-inline: auto; }

/* ---------- 4. Navigation ------------------------------------------- */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,238,227,.88);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: var(--rule);
}

.nav-inner {
  max-width: var(--wide);
  margin-inline: auto;
  padding: .85rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo {
  font-family: var(--script);
  font-size: 1.9rem;
  line-height: 1;
  color: var(--rose-deep);
  text-decoration: none;
  padding-block: .1em;   /* room for the á accent and descenders */
}
.nav-logo:hover { color: var(--copper-deep); }

.nav-links {
  list-style: none; display: flex; flex-wrap: wrap;
  gap: clamp(.9rem, 2.4vw, 2.1rem);
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  padding-block: .35rem;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--copper);
  border-bottom-color: var(--rose);
}

/* ---------- 5. Hero -------------------------------------------------- */
.hero {
  padding-block: clamp(3rem, 6.5vw, 5rem) clamp(2rem, 4vw, 3rem);
}

.hero-inner {
  max-width: var(--wide);
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5rem);
}

.eyebrow {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0 0 1.4rem;
}

/* The wordmark, set exactly as the cover sets it. */
.title { margin: 0; line-height: 1; }

.title .finding,
.title .clara,
.title .klara { display: block; }

.title .finding {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.9rem, 7.6vw, 5.1rem);
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink);
}

/* "Clara" struck through — the name she is given, cancelled. */
.title .clara {
  position: relative;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.3rem, 6vw, 4rem);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #8B7A72;              /* pre-blended, so opacity stays free for animation */
  margin-top: .12em;
  width: max-content;
}
.title .clara::after {
  content: "";
  position: absolute;
  left: -.06em; right: .1em;
  top: 52%;
  height: 2px;
  background: var(--ink);
  opacity: .75;
  transform: rotate(-1.1deg);
}

/* "Klára" — the name she takes back. */
.title .klara {
  font-family: var(--script);
  font-weight: 400;
  font-size: clamp(3.4rem, 9vw, 6.1rem);
  color: var(--rose);
  margin-top: -.06em;
  padding-block: .06em .12em;   /* protects the á accent from clipping */
  line-height: 1.05;
}

/* --- Optional: the name being cancelled, then reclaimed -------------
   Add class="title reveal" to <h1> to enable. Pure CSS, no JavaScript.
   Every element ends in exactly the static state, so if the animation
   never runs — old browser, reduced-motion, CSS blocked — nothing is lost. */
.title.reveal .finding   { animation: fk-rise   .70s cubic-bezier(.2,.7,.3,1) both; }
.title.reveal .clara     { animation: fk-rise   .70s .30s cubic-bezier(.2,.7,.3,1) both; }
.title.reveal .clara::after { animation: fk-strike .50s 1.05s cubic-bezier(.65,0,.35,1) both; }
.title.reveal .klara     { animation: fk-claim  .85s 1.40s cubic-bezier(.2,.75,.3,1) both; }
.title.reveal ~ .byline,
.title.reveal ~ .tagline,
.title.reveal ~ .coming-soon { animation: fk-fade .8s 1.9s ease both; }

@keyframes fk-rise  { from { opacity: 0; transform: translateY(.3em); } to { opacity: 1; transform: none; } }
@keyframes fk-fade  { from { opacity: 0; } to { opacity: 1; } }
@keyframes fk-strike {
  from { transform: rotate(-1.1deg) scaleX(0); }
  to   { transform: rotate(-1.1deg) scaleX(1); }
}
@keyframes fk-claim {
  from { opacity: 0; transform: translateY(.28em) rotate(-2deg); }
  to   { opacity: 1; transform: none; }
}
.title.reveal .clara::after { transform-origin: left center; }

/* Anyone who has asked their device to reduce motion sees the final state at once. */
@media (prefers-reduced-motion: reduce) {
  .title.reveal .finding,
  .title.reveal .clara,
  .title.reveal .clara::after,
  .title.reveal .klara,
  .title.reveal ~ .byline,
  .title.reveal ~ .tagline,
  .title.reveal ~ .coming-soon { animation: none; opacity: 1; transform: none; }
  .title.reveal .clara::after { transform: rotate(-1.1deg); }
}

.byline {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  letter-spacing: .05em;
  color: var(--ink-soft);
  margin: 1.5rem 0 0;
}
.byline strong { font-weight: 600; color: var(--ink); }

.tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.14rem, 2vw, 1.44rem);
  line-height: 1.55;
  margin: 1.9rem 0 0;
  max-width: 26rem;
}
.tagline .dark  { color: var(--umber); }
.tagline .light { color: var(--muted); }

.coming-soon {
  display: inline-block;
  margin: 2.1rem 0 0;
  padding: .6rem 1.5rem;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--copper-deep);
  background: var(--rose-wash);
  border: 1px solid rgba(215,125,132,.42);
  border-radius: 100px;
}

.scroll-cue {
  display: inline-block;
  margin-top: 2.4rem;
  font-size: .74rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(80,57,50,.28);
  padding-bottom: .3rem;
  transition: color .2s ease, border-color .2s ease;
}
.scroll-cue:hover { color: var(--copper); border-bottom-color: var(--rose); }

/* Cover presentation — a real book, lit from the left. */
.hero-cover { justify-self: center; }

.hero-cover img {
  width: min(21rem, 78vw);
  border-radius: 2px 5px 5px 2px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.5) inset,
    -1px 0 0 rgba(72,39,31,.16),
    18px 26px 48px -18px rgba(72,39,31,.42),
    4px 8px 16px -8px rgba(72,39,31,.28);
}

/* ---------- 6. The story -------------------------------------------- */
.book p { margin: 0 0 1.35rem; }

.book .lede {
  font-family: var(--serif);
  font-size: clamp(1.28rem, 2.3vw, 1.62rem);
  line-height: 1.5;
  color: var(--umber);
  margin-bottom: 1.9rem;
}

.book .turn {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.38rem);
  line-height: 1.55;
  color: var(--copper-deep);
  border-left: 2px solid var(--rose);
  padding-left: 1.4rem;
  margin-top: 2.4rem;
}
/* A book title inside already-italic text is set upright — otherwise the
   emphasis is invisible. Standard typographic practice. */
.book .turn em { font-style: normal; }

/* ---------- 7. Epigraph (the one dark panel) ------------------------- */
.epigraph {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  position: relative;
}
/* Faint ink-splatter echo from the cover, rendered as pure CSS. */
.epigraph::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(closest-side, rgba(153,76,57,.17), transparent 78%),
    radial-gradient(closest-side, rgba(215,125,132,.09), transparent 78%);
  background-size: 60rem 34rem, 40rem 26rem;
  background-position: -22rem -12rem, calc(100% + 14rem) calc(100% + 8rem);
  background-repeat: no-repeat;
  pointer-events: none;
}
.epigraph .wrap { position: relative; }

.epigraph .en {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.45rem, 3.2vw, 2.15rem);
  line-height: 1.4;
  color: var(--rose);
  margin: 0 0 .9rem;
}
.epigraph .hu {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(.94rem, 1.8vw, 1.1rem);
  color: rgba(245,238,227,.52);
  margin: 0 0 1.8rem;
}
.epigraph .attr {
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(245,238,227,.62);
  margin: 0;
}

/* ---------- 8. Testimonials ----------------------------------------- */
.testimonials { background: var(--mist); }

.testimonial {
  margin: 0;
  padding: 0 0 0 1.6rem;
  border-left: 2px solid var(--rose);
}
.testimonial + .testimonial { margin-top: 2.6rem; }

.testimonial .quote {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.6;
  color: var(--umber);
  margin: 0 0 .9rem;
}
.testimonial cite {
  font-style: normal;
  font-size: .76rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- 9. Press strip ------------------------------------------ */
.press {
  padding-block: clamp(2.8rem, 6vw, 4.5rem);
  background: var(--mist);
  border-top: 1px solid rgba(80,57,50,.10);
}

.logo-strip {
  max-width: var(--wide);
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: .8rem clamp(1.1rem, 3vw, 2.4rem);
}
.logo-strip span {
  font-family: var(--serif);
  font-size: clamp(.9rem, 1.5vw, 1.06rem);
  letter-spacing: .06em;
  color: var(--ink-soft);
  opacity: .72;
  white-space: nowrap;
}

/* ---------- 10. Author ---------------------------------------------- */
.author-section { border-top: var(--rule); }

.author-inner {
  max-width: var(--wide);
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 20rem) 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.author-photo img {
  border-radius: 2px;
  box-shadow: 10px 14px 34px -14px rgba(72,39,31,.4);
}

.author-flag {
  display: inline-block;
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: .7rem;
}

.author-text h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  letter-spacing: .02em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 1.4rem;
}
.author-text p { margin: 0 0 1.2rem; max-width: var(--measure); }

/* ---------- 11. Signup ---------------------------------------------- */
.news { background: var(--mist); border-top: var(--rule); }

.news h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 1.1rem;
  text-align: center;
}
.news > .wrap > p { text-align: center; margin: 0 0 2.6rem; }

.signup-form { display: grid; gap: 1.2rem; }

.field { display: grid; gap: .45rem; }
.field label {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field .optional {
  letter-spacing: .06em;
  text-transform: none;
  color: var(--muted);
  font-weight: 300;
}

.field input,
.field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid rgba(80,57,50,.26);
  border-radius: 2px;
  padding: .82rem .95rem;
  width: 100%;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(110,103,100,.72); }

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--rose-deep);
  box-shadow: 0 0 0 3px var(--rose-wash);
}
.field textarea { resize: vertical; min-height: 7rem; }

.hidden-field { position: absolute; left: -9999px; }

.cta {
  justify-self: start;
  font-family: var(--sans);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--umber);
  border: 1px solid var(--umber);
  border-radius: 2px;
  padding: .95rem 2.4rem;
  cursor: pointer;
  transition: background .22s ease, border-color .22s ease, transform .12s ease;
}
.cta:hover { background: var(--copper-deep); border-color: var(--copper-deep); }
.cta:active { transform: translateY(1px); }

/* ---------- 12. Footer ---------------------------------------------- */
footer {
  background: var(--ink);
  color: rgba(245,238,227,.62);
  text-align: center;
  padding-block: 3.2rem;
}
footer .mark {
  font-family: var(--script);
  font-size: 2.1rem;
  line-height: 1.3;
  color: var(--rose);
  margin: 0 0 .5rem;
}
footer small { font-size: .78rem; letter-spacing: .08em; }
footer a { color: rgba(245,238,227,.82); }

/* ---------- 13. Responsive ------------------------------------------ */
@media (max-width: 60rem) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .hero-cover { order: -1; margin-bottom: 1rem; }
  .hero-cover img { width: min(15rem, 58vw); }
  .title .clara { margin-inline: auto; }
  .tagline { margin-inline: auto; }
  .eyebrow::after { margin-inline: auto; }

  .author-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .author-photo img { width: min(18rem, 70vw); }
  .author-text p { margin-inline: auto; }
}

@media (max-width: 34rem) {
  .nav-inner { flex-direction: column; gap: .5rem; padding-block: .7rem; }
  .nav-links { justify-content: center; gap: .5rem 1.1rem; }
  .nav-links a { font-size: .72rem; }
  .testimonial { padding-left: 1.1rem; }
  .cta { justify-self: stretch; width: 100%; }
}

/* ---------- 14. Print ------------------------------------------------ */
@media print {
  nav, .scroll-cue, .signup-form { display: none; }
  body { background: #fff; color: #000; }
}

/* =========================================================================
   15. Chapter One — a reading page, not a marketing page
   ========================================================================= */
.chapter-hero {
  padding-block: clamp(3rem, 7vw, 5rem) clamp(2rem, 4vw, 3rem);
  text-align: center;
  border-bottom: var(--rule);
}
.chapter-hero .eyebrow { text-align: center; }

.chapter-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 6.5vw, 4rem);
  letter-spacing: .06em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 .8rem;
}
.chapter-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: var(--muted);
  margin: 0 auto 2.4rem;
}

/* Content note — clear, calm, impossible to miss, never alarming. */
.content-note {
  max-width: 38rem;
  margin-inline: auto;
  padding: 1.1rem 1.4rem;
  background: var(--mist);
  border-left: 3px solid var(--rose);
  border-radius: 2px;
  font-size: .93rem;
  line-height: 1.65;
  color: var(--ink-soft);
  text-align: left;
}

.chapter-body {
  max-width: 36rem;
  margin-inline: auto;
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem clamp(2rem, 5vw, 3.5rem);
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.2rem, 2.1vw, 1.4rem);
  line-height: 1.78;
  color: var(--ink);
}
.chapter-body p { margin: 0; text-indent: 1.6em; }
.chapter-body p + p { margin-top: .35rem; }
.chapter-body .no-indent { text-indent: 0; }
.chapter-body .chapter-dateline:empty { display: none; }
.chapter-body em { font-style: italic; color: var(--copper-deep); }

.chapter-end {
  text-align: center;
  letter-spacing: .8em;
  color: var(--rose);
  margin-top: 2.6rem;
  font-size: 1.1rem;
}

.chapter-cta {
  background: var(--mist);
  border-top: var(--rule);
  padding-block: var(--gap);
  text-align: center;
}
.chapter-cta h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.6vw, 2.3rem);
  color: var(--ink);
  margin: 0 auto 1rem;
  max-width: 30rem;
}
.chapter-cta > p {
  max-width: 32rem;
  margin: 0 auto 2.4rem;
  padding-inline: 1.5rem;
}
.chapter-cta .signup-form {
  max-width: var(--measure);
  margin-inline: auto;
  padding-inline: 1.5rem;
  text-align: left;
}
.chapter-cta .cta { justify-self: center; }

/* =========================================================================
   16. Klára's Bookshelf
   ========================================================================= */
.shelf-hero, .res-hero {
  padding-block: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
  max-width: 44rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.shelf-hero .eyebrow, .res-hero .eyebrow { text-align: center; }

.shelf-title, .res-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.3rem, 6vw, 3.6rem);
  letter-spacing: .04em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 1.2rem;
}
.shelf-intro, .res-intro {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

.clara-wrap {
  display: grid; place-items: center;
  padding: clamp(1.5rem, 4vw, 2.5rem) 1.5rem;
}
.clara-wrap img {
  width: min(17rem, 62vw);
  border-radius: 2px;
  box-shadow: 10px 14px 34px -14px rgba(72,39,31,.4);
}

.shelf-section, .res-section {
  max-width: var(--wide);
  margin-inline: auto;
  padding: clamp(2.2rem, 5vw, 3.4rem) 1.5rem;
}
.shelf-section h2, .res-section h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  color: var(--ink);
  margin: 0 0 .7rem;
}
.section-note {
  max-width: 42rem;
  color: var(--muted);
  font-size: .98rem;
  margin: 0 0 2rem;
}

.book-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  gap: 1rem;
}
.book-card {
  background: rgba(255,255,255,.5);
  border: 1px solid rgba(80,57,50,.12);
  border-left: 3px solid var(--mist-2);
  border-radius: 2px;
  padding: 1.05rem 1.15rem;
  transition: border-left-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.book-card:hover {
  border-left-color: var(--rose);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -12px rgba(72,39,31,.35);
}
.book-title {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 .3rem;
}
.book-author {
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--muted);
  margin: 0;
}
.book-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: .92rem;
  color: var(--copper);
  margin: .55rem 0 0;
}

.shelf-divider {
  border: 0;
  border-top: var(--rule);
  max-width: var(--wide);
  margin: 0 auto;
}

/* =========================================================================
   17. Resources
   ========================================================================= */
.voice-card {
  background: rgba(255,255,255,.5);
  border: 1px solid rgba(80,57,50,.12);
  border-left: 3px solid var(--rose);
  border-radius: 2px;
  padding: 1.5rem 1.6rem;
  margin-bottom: 1.2rem;
  max-width: 46rem;
}
.voice-name {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.4vw, 1.5rem);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 .2rem;
}
.voice-role {
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0 0 .9rem;
}
.voice-desc { margin: 0 0 1.1rem; font-size: 1rem; }

.voice-links { display: flex; flex-wrap: wrap; gap: .6rem; }
.voice-links a {
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--copper-deep);
  text-decoration: none;
  border: 1px solid rgba(153,76,57,.34);
  border-radius: 100px;
  padding: .42rem 1.1rem;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.voice-links a:hover {
  background: var(--umber);
  border-color: var(--umber);
  color: var(--cream);
}

.disclaimer {
  max-width: 46rem;
  margin: clamp(1.5rem, 4vw, 2.5rem) auto clamp(3rem, 7vw, 5rem);
  padding: 1.3rem 1.5rem;
  background: var(--mist);
  border-left: 3px solid var(--copper);
  border-radius: 2px;
  font-size: .93rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

@media (max-width: 34rem) {
  .chapter-body { font-size: 1.16rem; line-height: 1.75; }
  .book-grid { grid-template-columns: 1fr; }
  .voice-card, .disclaimer { padding: 1.15rem 1.2rem; }
}
