:root {
  --cream: #F5EFE3;
  --warm-white: #FAF6EF;
  --terracotta: #B5583C;
  --terracotta-light: #C97555;
  --deep-green: #2C4A3E;
  --sage: #6A8C7F;
  --sage-light: #A3BDB4;
  --bark: #5C3D2E;
  --gold: #C49A3C;
  --charcoal: #1E1E1E;
  --text-body: #2E2C28;
  --text-muted: #7A7068;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--warm-white);
  color: var(--text-body);
  overflow-x: hidden;
}

/* ── Noise texture overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1.25rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  overflow: visible;
  background: rgba(250, 246, 239, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(92, 61, 46, 0.1);
}

a.nav-logo {
  text-decoration: none;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bark);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  flex-shrink: 0;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 400;
  transition: color 0.2s, border-color 0.2s;
  display: inline-block;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover { color: var(--terracotta); }

.nav-links a.active {
  color: var(--terracotta);
  border-bottom-color: var(--terracotta);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 200;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: var(--text-body);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* Hamburger on dark backgrounds */
.hero-left ~ nav .nav-hamburger span,
nav.dark .nav-hamburger span {
  background-color: var(--cream);
}

/* Animated X when open */
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 10rem 5rem 5rem;
  min-height: 35vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-top: 0.35rem;
}

.page-hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(245,239,227,0.6);
  max-width: 580px;
  line-height: 1.65;
  margin-top: 1.25rem;
}

.page-hero--deep-green {
  background-color: var(--deep-green);
}

.page-hero--deep-green .section-label {
  color: var(--sage-light);
}

.page-hero--deep-green .page-hero-title {
  color: var(--cream);
}

.page-hero--cream {
  background-color: var(--cream);
}

.page-hero--cream .section-label {
  color: var(--terracotta);
}

.page-hero--cream .page-hero-title {
  color: var(--charcoal);
}

.page-hero-intro {
  max-width: 42rem;
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-body);
  font-weight: 300;
  margin-top: 1.5rem;
}

.page-hero--bark {
  background-color: var(--bark);
}

.page-hero--bark .section-label {
  color: rgba(163, 189, 180, 0.85);
}

.page-hero--bark .page-hero-title {
  color: var(--cream);
}

.page-hero-subheading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(245, 239, 227, 0.6);
  margin-top: 1rem;
}

.page-hero--excerpts {
  background: var(--charcoal);
  min-height: 40vh;
  padding-bottom: 3rem;
}

.page-hero--excerpts .section-label {
  color: var(--sage-light);
}

.page-hero--excerpts .page-hero-title {
  color: var(--cream);
}

.page-hero--excerpts .page-hero-subheading {
  color: rgba(245, 239, 227, 0.6);
}

/* ── HOME TEASERS ── */
#home-teasers {
  background-color: var(--warm-white);
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.home-teaser {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 5rem;
  border-bottom: 1px solid rgba(92,61,46,0.08);
}

.home-teaser:last-of-type {
  border-bottom: none;
}

.home-teaser-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--charcoal);
  margin: 0.5rem 0 0.75rem;
  max-width: 28rem;
}

.home-teaser-desc {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 36rem;
}

.home-teaser-link {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s;
}

.home-teaser-link:hover {
  color: var(--bark);
}

.teaser-item:hover .teaser-heading {
  color: var(--terracotta);
  transition: color 0.2s;
}

/* ── CONTACT PAGE ── */
.contact-main {
  padding: 5rem 5rem 8rem;
  text-align: center;
  background-color: var(--warm-white);
}

.contact-subtext {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.contact-other {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(92, 61, 46, 0.1);
}

.contact-other-label {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.contact-other-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.contact-other-links a {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--deep-green);
  border: 1px solid var(--sage);
  border-radius: 999px;
  transition: background-color 0.2s, color 0.2s;
}

.contact-other-links a:hover {
  background-color: rgba(106, 140, 127, 0.12);
}

.contact-editors-divider {
  width: 100%;
  max-width: 480px;
  height: 1px;
  border: none;
  background: rgba(92, 61, 46, 0.1);
  margin: 3rem auto;
}

.contact-editors-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin: 0;
}

.contact-editors-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
  color: var(--text-body);
  max-width: 520px;
  margin: 1rem auto 0;
  line-height: 1.8;
  text-align: center;
}

.contact-editors-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.contact-editor-card {
  background: var(--cream);
  border: 1px solid rgba(92, 61, 46, 0.12);
  padding: 2rem 2.5rem;
  text-align: center;
  min-width: 220px;
}

.contact-editor-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--charcoal);
  margin: 0 0 0.3rem;
}

.contact-editor-role {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}

.contact-editor-card a {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terracotta);
  text-decoration: none;
  border-bottom: 1px solid rgba(181, 88, 60, 0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}

.contact-editor-card a:hover {
  border-color: var(--terracotta);
}

/* ── APPENDICES (chapters page) ── */
.appendices-header {
  margin: 3rem 0 1.5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(92, 61, 46, 0.12);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 500;
  color: var(--charcoal);
}

.chapter-title--multiline {
  white-space: normal;
}

/* ── HERO ── */
#hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

.hero-left {
  background-color: var(--deep-green);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 7rem;
  padding-left: 4rem;
  padding-right: 3rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: visible;
}

.hero-left::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(163,189,180,0.12);
  top: -150px;
  left: -200px;
  pointer-events: none;
}

.hero-right {
  background-color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 7rem 4rem 5rem 4rem;
  gap: 2rem;
  overflow: hidden;
  max-width: 100%;
}

.hero-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 4vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 1.25rem;
}

.hero-title em {
  font-style: italic;
  color: var(--sage-light);
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(163,189,180,0.8);
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}

.hero-editors {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,239,227,0.4);
  margin-bottom: 3rem;
  font-weight: 300;
}

.hero-editors span {
  color: rgba(245,239,227,0.75);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.hero-cta {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background-color: var(--terracotta);
  color: white;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background-color 0.25s;
}

.hero-cta:hover {
  background-color: var(--bark);
}

.hero-cta-secondary {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(163,189,180,0.7);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  padding-bottom: 2px;
}

.hero-cta-secondary:hover {
  color: var(--sage-light);
  border-color: var(--sage-light);
}

.hero-quote-block {
  text-align: left;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0 2rem;
}

.hero-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  line-height: 0.5;
  color: var(--sage-light);
  opacity: 0.35;
  display: block;
  margin-bottom: 1rem;
}

.hero-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: var(--bark);
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-quote-attr {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.book-scene {
  padding: 0;
  perspective: 1200px;
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}

@keyframes bookEntrance {
  0% {
    transform: rotateY(-5deg) rotateX(0deg)
               translateY(30px);
    opacity: 0;
  }
  60% {
    transform: rotateY(-32deg) rotateX(6deg)
               translateY(-8px);
    opacity: 1;
  }
  80% {
    transform: rotateY(-25deg) rotateX(3deg)
               translateY(4px);
    opacity: 1;
  }
  100% {
    transform: rotateY(-28deg) rotateX(4deg)
               translateY(0px);
    opacity: 1;
  }
}

@keyframes bookFloat {
  0%, 100% {
    transform: rotateY(-28deg) rotateX(4deg)
               translateY(0px);
  }
  50% {
    transform: rotateY(-28deg) rotateX(4deg)
               translateY(-8px);
  }
}

.book {
  width: 140px;
  height: 195px;
  transform-style: preserve-3d;
  opacity: 0;
  animation:
    bookEntrance 1.4s cubic-bezier(0.34, 1.56, 0.64, 1)
      0.3s forwards,
    bookFloat 4s ease-in-out 1.8s infinite;
  filter: drop-shadow(25px 25px 40px rgba(0,0,0,0.25));
  cursor: default;
}

.book:hover {
  animation-play-state: paused;
}

.book-cover {
  position: absolute;
  width: 140px;
  height: 195px;
  background: #2C4A3E;
  border-radius: 2px 4px 4px 2px;
  transform: translateZ(18px);
  overflow: hidden;
}

@media (max-width: 900px) {
  #hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left {
    padding: 7rem 2rem 3rem;
    min-height: 55vh;
  }
  .hero-right {
    padding: 3rem 2rem 4rem;
  }
}

.cover-texture {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.015) 40px,
    rgba(255,255,255,0.015) 41px
  );
}

.cover-top-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: #C49A3C;
}

.cover-bottom-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  background: #C49A3C;
}

.cover-inner {
  position: absolute;
  inset: 14px 12px;
  border: 1px solid rgba(196,154,60,0.35);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px 10px;
  overflow: hidden;
}

.cover-motif {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(163,189,180,0.15);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cover-motif-2 {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(196,154,60,0.2);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cover-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  font-weight: 400;
  color: #F5EFE3;
  line-height: 1.2;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.cover-title em {
  font-style: italic;
  color: #A3BDB4;
  display: block;
  font-size: 9px;
  margin-top: 4px;
  letter-spacing: 0.05em;
  white-space: normal;
}

.cover-divider {
  width: 24px;
  height: 1px;
  background: #C49A3C;
  margin: 5px 0;
}

.cover-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 7px;
  color: rgba(163,189,180,0.8);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  margin-top: 4px;
}

.cover-editors {
  font-family: 'DM Sans', sans-serif;
  font-size: 6.5px;
  color: rgba(245,239,227,0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.cover-editors span {
  color: rgba(245,239,227,0.8);
  display: block;
  font-size: 7px;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.1em;
}

.book-spine {
  position: absolute;
  width: 36px;
  height: 195px;
  background: linear-gradient(to right, #1a2e27, #2C4A3E, #243d34);
  transform: rotateY(90deg) translateZ(-18px) translateX(-18px);
  transform-origin: left center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 8px 4px;
  overflow: hidden;
}

.spine-top-accent,
.spine-bottom-accent {
  width: 100%;
  height: 5px;
  background: #C49A3C;
}

.spine-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 8.5px;
  color: #F5EFE3;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.3;
  flex: 1;
  display: flex;
  align-items: center;
}

.spine-line {
  width: 60%;
  height: 1px;
  background: rgba(196,154,60,0.5);
}

.spine-editors {
  font-family: 'DM Sans', sans-serif;
  font-size: 6.5px;
  color: rgba(163,189,180,0.7);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.book-back {
  position: absolute;
  width: 140px;
  height: 195px;
  background: #1e3530;
  border-radius: 2px 4px 4px 2px;
  transform: translateZ(-18px);
}

.book-pages {
  position: absolute;
  width: 216px;
  height: 36px;
  left: 2px;
  background: repeating-linear-gradient(
    to right,
    #e8e0d0 0px,
    #e8e0d0 1px,
    #d5ccc0 1px,
    #d5ccc0 2px
  );
  transform: rotateX(90deg) translateY(-18px) translateZ(300px);
  transform-origin: bottom center;
}

.book-top {
  position: absolute;
  width: 220px;
  height: 36px;
  background: linear-gradient(to bottom, #e8e0d0, #d5ccc0);
  transform: rotateX(90deg) translateY(-18px) translateZ(300px);
  transform-origin: bottom center;
}

/* ── ABOUT ── */
#about {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0;
  background-color: var(--warm-white);
}

.about-sidebar {
  background-color: var(--terracotta);
  padding: 6rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sidebar-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  margin-bottom: 2rem;
}

.sidebar-heading {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  font-weight: 400;
}

.about-content {
  padding: 6rem 5rem 6rem 5rem;
}

.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 2rem;
}

.section-heading em {
  font-style: italic;
  color: var(--deep-green);
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-body);
  font-weight: 300;
  max-width: 600px;
}

.about-text + .about-text {
  margin-top: 1.4rem;
}

.about-highlight {
  display: inline;
  background: linear-gradient(180deg, transparent 65%, rgba(181, 88, 60, 0.2) 65%);
}

/* ── DIVIDER ── */
.woven-divider {
  height: 2px;
  background: linear-gradient(to right, var(--cream), var(--sage-light), var(--terracotta), var(--gold), var(--deep-green), var(--cream));
  margin: 0;
}

/* ── THEMES ── */
#themes {
  background-color: var(--deep-green);
  padding: 7rem 5rem;
}

.themes-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 5rem;
  gap: 3rem;
}

.themes-header-text .section-label { color: var(--sage-light); }
.themes-header-text .section-heading { color: var(--cream); }
.themes-header-text .section-heading em { color: var(--sage-light); }

.themes-intro {
  max-width: 400px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(245, 239, 227, 0.6);
  font-weight: 300;
  margin-top: 1rem;
}

.themes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-color: rgba(163, 189, 180, 0.15);
}

.theme-card {
  background-color: var(--deep-green);
  padding: 3rem 2.5rem;
  transition: background-color 0.3s;
  position: relative;
  overflow: hidden;
}

.theme-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  transition: width 0.4s ease;
}

.theme-card:hover { background-color: rgba(44, 74, 62, 0.6); }
.theme-card:hover::before { width: 100%; }

.theme-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  color: var(--sage);
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

.theme-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.theme-desc {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(245, 239, 227, 0.55);
  font-weight: 300;
}

/* ── EXCERPTS (immersive full-screen) ── */
.page-excerpts #excerpts {
  padding: 0;
  background: transparent;
}

.excerpt-immersive {
  position: relative;
  min-height: 110vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center top;
  background-blend-mode: multiply;
}

.excerpt-immersive--karen {
  background-color: var(--deep-green);
  background-image: url('/assets/images/karen-evanoff.webp');
}

.excerpt-immersive--greg {
  background-color: var(--bark);
  background-image: url('/assets/images/greg-thomas.jpg');
}

.excerpt-immersive--akasha {
  background-color: var(--charcoal);
  background-image: url('/assets/images/akasha-pete-saunders.png');
}

.excerpt-immersive::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.excerpt-immersive--karen::before {
  background-color: var(--deep-green);
  opacity: 0.88;
}

.excerpt-immersive--greg::before {
  background-color: var(--bark);
  opacity: 0.88;
}

.excerpt-immersive--akasha::before {
  background-color: var(--charcoal);
  opacity: 0.88;
}

.excerpt-immersive + .excerpt-immersive {
  border-top: 2px solid rgba(196, 154, 60, 0.3);
}

.excerpt-immersive-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  width: 90%;
  margin: 0 auto;
  padding: 7rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.excerpt-immersive-header {
  position: absolute;
  top: 3.5rem;
  left: 4rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
  z-index: 2;
}

.excerpt-immersive-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 300;
  color: rgba(245, 239, 227, 0.12);
  line-height: 1;
}

.excerpt-immersive-author {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.06em;
  margin: 0;
}

.excerpt-immersive-chapter {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(245, 239, 227, 0.45);
  margin: 0.25rem 0 0;
}

.excerpt-immersive-body {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.excerpt-pull {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.4;
  max-width: 680px;
  margin: 0 auto 2rem;
  text-align: center;
}

.excerpt-divider,
.excerpt-pull-divider {
  width: 40px;
  height: 1px;
  margin: 2rem auto 2.5rem;
  background: var(--gold);
  opacity: 0.4;
  display: block;
  border: none;
}

.excerpt-rest {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(245,239,227,0.72);
  line-height: 2;
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.excerpt-rest p {
  margin-bottom: 1.6rem;
}

.excerpt-rest p:last-of-type {
  margin-bottom: 0;
}

.excerpt-rest em {
  color: rgba(245, 239, 227, 0.65);
}

.excerpt-immersive-footer {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(245, 239, 227, 0.3);
  opacity: 0.25;
  margin: 0;
  z-index: 2;
  white-space: nowrap;
}

.excerpt-scroll-hint {
  position: absolute;
  bottom: 3rem;
  right: 4rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(245, 239, 227, 0.3);
  pointer-events: none;
}

.excerpt-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(245, 239, 227, 0.3), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.35;
    transform: scaleY(0.92);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

.excerpts-cta-strip {
  background-color: var(--deep-green);
  padding: 4rem 5rem;
}

.excerpts-cta-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  margin: 0;
}

.excerpts-cta-link {
  display: inline-block;
  margin-top: 0.85rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--sage-light);
}

.excerpts-cta-link:hover {
  color: var(--cream);
}

/* ── CHAPTERS ── */
#chapters {
  background-color: var(--cream);
  padding: 7rem 5rem;
}

.chapters-header {
  margin-bottom: 4rem;
}

.chapter-list {
  border-top: 1px solid rgba(92, 61, 46, 0.15);
}

.chapter-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(92, 61, 46, 0.1);
  text-decoration: none;
  color: inherit;
  transition: background-color 0.2s;
  cursor: default;
}

.chapter-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--sage-light);
  line-height: 1;
}

.chapter-info {}

.chapter-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.3;
  margin-bottom: 0.3rem;
}

.chapter-author {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
}

.chapter-tag {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  white-space: nowrap;
}

.chapter-tag.in-revision {
  border: 1px solid var(--gold);
  color: var(--gold);
}

.chapter-tag.forthcoming {
  border: 1px solid rgba(92, 61, 46, 0.2);
  color: var(--text-muted);
}

/* ── SUPPORT PAGE ── */
#support-why {
  background: var(--warm-white);
  padding: 6rem 5rem;
}

.support-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.support-why-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--charcoal);
}

.support-divider {
  width: 48px;
  height: 1px;
  background: var(--sage-light);
  margin: 2rem 0;
}

.support-body-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-body);
}

.support-body-text--spaced {
  margin-top: 1rem;
}

.support-donation-card {
  background: var(--cream);
  border: 1px solid rgba(92, 61, 46, 0.15);
  padding: 3rem;
}

.support-donate-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

.support-donate-amounts {
  margin-top: 0;
}

.support-donation-card .donate-amount-btn {
  border-color: rgba(92, 61, 46, 0.35);
  color: var(--bark);
}

.support-donation-card .donate-amount-btn:hover,
.support-donation-card .donate-amount-btn.active {
  background: rgba(92, 61, 46, 0.1);
  border-color: rgba(92, 61, 46, 0.5);
}

.support-donation-card .donate-amount-btn:focus-visible {
  outline: 2px solid var(--terracotta);
}

.support-donate-cta {
  display: block;
  width: 100%;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background: var(--terracotta);
  color: white;
  text-align: center;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  transition: opacity 0.2s;
}

.support-donate-cta:hover {
  opacity: 0.85;
}

.support-trust-note {
  margin-top: 1.5rem;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.7;
}

#support-impact {
  background: var(--deep-green);
  padding: 6rem 5rem;
}

.support-impact-header .section-label {
  color: var(--sage-light);
}

.support-impact-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--cream);
}

.support-impact-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.support-impact-line {
  width: 2px;
  height: 32px;
  background: var(--terracotta);
}

.support-impact-title {
  margin-top: 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--cream);
}

.support-impact-desc {
  margin-top: 0.6rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(245, 239, 227, 0.65);
}

#support-sponsor {
  background: var(--cream);
  padding: 5rem;
}

.support-sponsor-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.support-sponsor-label {
  margin-bottom: 1.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

.support-sponsor-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--charcoal);
}

.support-sponsor-text {
  margin-top: 1.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-muted);
}

.support-sponsor-link {
  margin-top: 1.5rem;
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: var(--terracotta);
  text-decoration: none;
}

.support-sponsor-link:hover {
  text-decoration: underline;
}

#support-closing {
  background: var(--terracotta);
  padding: 5rem;
  text-align: center;
}

.support-closing-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--cream);
}

.support-closing-cta {
  margin-top: 2.5rem;
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--cream);
  color: var(--terracotta);
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: opacity 0.2s;
}

.support-closing-cta:hover {
  opacity: 0.85;
}

/* Chapters page: list only (no duplicate section header) */
#chapters.chapters-page {
  padding-top: 5rem;
}

/* ── AUTHORS ── */
#authors {
  background-color: var(--warm-white);
  padding: 7rem 5rem;
}

#authors.authors-page {
  padding-top: 5rem;
}

.authors-header {
  margin-bottom: 3rem;
}

.authors-subheading {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  margin: 0 0 1.25rem;
}

.authors-subheading::after {
  content: '';
  flex: 1;
  min-width: 2rem;
  height: 1px;
  background: rgba(92, 61, 46, 0.15);
}

.authors-subheading:first-of-type {
  margin-top: 0;
}

.authors-subheading:not(:first-of-type) {
  margin-top: 3rem;
}

.author-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: 2.5rem 3rem;
  align-items: start;
  padding: 2.25rem 0 2.25rem 1.25rem;
  border-left: 3px solid var(--terracotta);
  border-bottom: 1px solid rgba(92, 61, 46, 0.1);
}

.author-card:last-child {
  border-bottom: none;
}

.author-card--contributor {
  border-left-color: var(--sage);
}

.author-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  margin-bottom: 1.25rem;
  border: 2px solid rgba(92, 61, 46, 0.15);
  display: block;
}

.author-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.25;
  margin: 0 0 0.65rem;
}

.author-card__role {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
  margin: 0 0 0.75rem;
}

.author-card__meta--no-chapter .author-card__role {
  margin-bottom: 0;
}

.author-card__chapter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

.author-card__bio {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-body);
  margin: 0;
}

.author-card__main {
  min-width: 0;
}

.author-card__link-line {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin: 0.75rem 0 0;
}

.author-link {
  display: inline-block;
  margin-top: 0;
  font-size: 0.78rem;
  color: var(--terracotta);
  text-decoration: none;
  letter-spacing: 0.06em;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

.author-link:hover {
  text-decoration: underline;
}

/* ── AUDIENCE ── */
#audience {
  background-color: var(--warm-white);
  padding: 7rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.audience-left .section-label { color: var(--terracotta); }

.audience-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.35;
  color: var(--deep-green);
  margin-top: 2rem;
  padding-left: 2rem;
  border-left: 3px solid var(--terracotta);
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.audience-card {
  padding: 2rem;
  background: var(--cream);
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s;
}

.audience-card:hover { border-color: var(--terracotta); }

.audience-icon {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.audience-type {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--bark);
  margin-bottom: 0.5rem;
}

.audience-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 300;
}

/* ── DONATE (home) ── */
#donate {
  background-color: var(--terracotta);
  padding: 7rem 5rem;
}

.donate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.donate-section-label {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245, 239, 227, 0.6);
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.donate-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--cream);
  margin: 0;
}

.donate-divider {
  width: 48px;
  height: 2px;
  background: rgba(245, 239, 227, 0.4);
  margin: 2rem 0;
}

.donate-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(245, 239, 227, 0.85);
  margin: 0;
}

.donate-text--second {
  margin-top: 1rem;
}

.donate-card {
  background: rgba(245, 239, 227, 0.1);
  border: 1px solid rgba(245, 239, 227, 0.2);
  padding: 3rem;
}

.donate-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(245, 239, 227, 0.5);
  margin: 0 0 1.5rem;
}

.donate-amounts {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0;
}

.donate-amount-btn {
  padding: 0.6rem 1.5rem;
  border: 1px solid rgba(245, 239, 227, 0.4);
  color: var(--cream);
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.2s, border-color 0.2s;
}

.donate-amount-btn:hover,
.donate-amount-btn.active {
  background: rgba(245, 239, 227, 0.15);
  border-color: rgba(245, 239, 227, 0.8);
}

.donate-amount-btn:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 2px;
}

.donate-cta {
  display: block;
  width: 100%;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background: var(--cream);
  color: var(--terracotta);
  text-align: center;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: opacity 0.2s;
  border: none;
  box-sizing: border-box;
}

.donate-cta:hover {
  opacity: 0.85;
}

.donate-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  color: rgba(245, 239, 227, 0.4);
  text-align: center;
  margin: 1rem 0 0;
}

/* ── CTA SECTION ── */
#cta {
  background-color: var(--cream);
  padding: 8rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(106, 140, 127, 0.15);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#cta::after {
  content: '';
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  border: 1px solid rgba(106, 140, 127, 0.08);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cta-content { position: relative; z-index: 1; }

.cta-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.cta-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--deep-green);
  margin-bottom: 1.5rem;
}

.cta-subtext {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto 3rem;
  line-height: 1.75;
}

.email-form {
  display: flex;
  gap: 0;
  max-width: 460px;
  margin: 0 auto;
}

.email-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(92, 61, 46, 0.2);
  border-right: none;
  background: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--charcoal);
  outline: none;
}

.email-input::placeholder { color: var(--text-muted); }
.email-input:focus { border-color: var(--deep-green); }

.email-submit {
  padding: 1rem 2rem;
  background: var(--deep-green);
  color: white;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.25s;
  font-weight: 500;
}

.email-submit:hover { background: var(--bark); }

.form-confirm {
  display: none;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--deep-green);
  letter-spacing: 0.08em;
}

/* ── FOOTER ── */
footer {
  background-color: var(--charcoal);
  padding: 3rem 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: rgba(245, 239, 227, 0.5);
  letter-spacing: 0.08em;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(245, 239, 227, 0.3);
  letter-spacing: 0.06em;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal {
  transition-delay: 0s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  #about { grid-template-columns: 1fr; }
  .about-sidebar { padding: 3rem 2rem; flex-direction: row; align-items: center; }
  .sidebar-heading { writing-mode: horizontal-tb; transform: none; }
  .about-content { padding: 4rem 2rem; }
  .themes-header { flex-direction: column; }
  #themes, #chapters, #authors, #audience, #donate, #cta { padding: 5rem 2rem; }
  #excerpts { padding: 5rem 2rem; }
  .page-excerpts #excerpts { padding: 0; }
  #chapters.chapters-page { padding-top: 3rem; }
  #authors.authors-page { padding-top: 3rem; }
  .page-hero { padding: 8rem 2rem 3.5rem; }
  #audience { grid-template-columns: 1fr; gap: 3rem; }
  .themes-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  nav { padding: 1rem 1.5rem; }
  .nav-links { gap: 1rem; flex-wrap: nowrap; justify-content: flex-end; }
  .nav-links a { font-size: 0.68rem; }
  .chapter-item { grid-template-columns: 50px 1fr; }
  .chapter-tag { display: none; }
  footer { flex-direction: column; gap: 1rem; text-align: center; }
  .email-form { flex-direction: column; }
  .email-input { border-right: 1px solid rgba(92,61,46,0.2); border-bottom: none; }
  .home-teaser {
    grid-template-columns: 1fr;
    padding: 2rem 2rem;
  }
  .contact-main { padding: 3rem 2rem 6rem; }
  .excerpts-cta-strip { padding: 3rem 2rem; }
  #support-why,
  #support-impact,
  #support-sponsor,
  #support-closing {
    padding: 4rem 2rem;
  }
  .support-why-grid,
  .support-impact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(250, 246, 239, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(92, 61, 46, 0.1);
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--warm-white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 150;
    list-style: none;
    padding: 0;
    margin: 0;
  }

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

  .nav-links a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--charcoal);
    text-decoration: none;
    text-transform: none;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--terracotta);
  }

  /* Close button inside open menu */
  .nav-links::before {
    content: '✕';
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.2rem;
    color: var(--text-muted);
    cursor: pointer;
  }

  #excerpts {
    padding: 4rem 1.5rem;
  }

  .page-excerpts #excerpts {
    padding: 0;
  }

  .excerpt-immersive {
    min-height: auto;
    padding: 6rem 0 5rem;
  }

  .excerpt-immersive-inner {
    padding: 3rem 2rem;
    width: 95%;
    min-height: auto;
  }

  .excerpt-pull {
    font-size: 1.4rem;
  }

  .excerpt-rest {
    font-size: 1rem;
  }

  .excerpt-immersive-header {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 2rem;
    justify-content: center;
  }

  .excerpt-immersive-footer {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 2.5rem;
    white-space: normal;
    text-align: center;
  }

  .excerpt-scroll-hint {
    display: none;
  }

  .excerpt-immersive-num {
    font-size: 3rem;
  }

  .contact-editors-cards {
    flex-direction: column;
    align-items: center;
  }

  .support-donation-card {
    padding: 2rem;
  }

  .support-donate-amounts {
    gap: 0.6rem;
  }

  .home-teaser {
    padding: 2rem 1.5rem;
  }

  .author-card {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    padding-left: 1rem;
  }

  .book {
    width: 160px;
    height: 220px;
  }

  .book:hover {
    animation-play-state: paused;
  }

  .book-cover,
  .book-back {
    width: 160px;
    height: 220px;
  }

  .book-spine {
    height: 220px;
  }

  .book-pages {
    width: 156px;
    height: 28px;
    transform: rotateX(90deg) translateY(-14px) translateZ(220px);
  }

  .book-top {
    width: 160px;
    height: 28px;
    transform: rotateX(90deg) translateY(-14px) translateZ(220px);
  }

  .book .cover-motif {
    width: 130px;
    height: 130px;
  }

  .book .cover-motif-2 {
    width: 88px;
    height: 88px;
  }

  .book .cover-inner {
    inset: 14px 12px;
    padding: 12px 10px;
  }

  .book .cover-title {
    font-size: 12px;
  }

  .book .cover-title em {
    font-size: 9px;
  }

  .donate-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .donate-card {
    padding: 2rem;
  }

}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .excerpt-scroll-line {
    animation: none;
  }
}
