/* =====================================================================
   TERA LORIMER — teralorimer.com  (v4)
   Built to match lunaloveleadership.com's real composition (from screenshots):
   dark type-only hero, rectangular (often B&W) images, giant decorative
   serif words, numbered "catalyst" image columns, squared + pill buttons,
   alternating dark/cream bands. Tera palette (deep forest + terracotta).
   ===================================================================== */

:root {
  /* Grounds */
  --cream:      #F4F0E8;
  --cream-2:    #ECE6D8;
  --ink:        #2A2622;
  --ink-soft:   #5A534C;

  /* Darks (deep forest, per choice) */
  --forest:     #2E4034;
  --forest-deep:#21302A;

  /* Accents */
  --terra:      #BD5A34;   /* primary button / accents */
  --terra-deep: #9C4727;   /* small text/links on cream (AA) */
  --peach:      #DDA47E;   /* big numerals / soft accent */
  --rose:       #D9B3A6;   /* dusty-rose pill button */

  /* On-dark text */
  --on-dark:    #F4EFE5;
  --on-dark-mut:#C9C4B6;

  /* Warm details */
  --sand:       #D8C7A8;
  --brass:      #9A7B4F;
  --sage:       #8A957E;
  --cedar:      #6B5645;

  /* Fonts */
  --display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --label:   "Work Sans", "Inter", system-ui, sans-serif;
  --body:    "Inter", system-ui, -apple-system, sans-serif;
  --script:  "Caveat", cursive;

  /* Type scale */
  --fs-hero:  clamp(3.2rem, 1rem + 9.5vw, 8.5rem);
  --fs-h2:    clamp(2.3rem, 1.2rem + 4.6vw, 4.6rem);
  --fs-h3:    clamp(1.5rem, 1.1rem + 1.8vw, 2.3rem);
  --fs-word:  clamp(4.5rem, 2rem + 16vw, 17rem);
  --fs-body:  1.05rem;
  --fs-label: 0.72rem;

  --container: 1320px;
  --pad-x:     clamp(1.25rem, 5vw, 6rem);
  --section-y: clamp(5rem, 10vw, 11rem);
  --ease: cubic-bezier(0.2, 0.6, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--body); font-size: var(--fs-body); line-height: 1.7;
  color: var(--ink); background: var(--cream);
  -webkit-font-smoothing: antialiased; font-optical-sizing: auto; text-rendering: optimizeLegibility; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

a:focus-visible, button:focus-visible, input:focus-visible,
.pillar:focus-visible, .catalyst:focus-visible, .vignette:focus-visible, .essay:focus-visible {
  outline: 2px solid var(--terra); outline-offset: 3px;
}
.theme-forest a:focus-visible, .theme-forest-deep a:focus-visible, .theme-terra a:focus-visible,
.site-footer a:focus-visible, .nav.open a:focus-visible, .page-hero a:focus-visible { outline-color: var(--sand); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 380; line-height: 1.0; color: var(--ink); letter-spacing: -0.02em; }
.h2 { font-size: var(--fs-h2); }
.h3 { font-size: var(--fs-h3); }
.it { font-style: italic; }
.label {
  font-family: var(--label); font-size: var(--fs-label); font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--terra-deep); display: inline-flex; align-items: center; gap: 0.7em;
}
.label::before { content: ""; width: 1.8rem; height: 2px; background: currentColor; opacity: 0.8; }
.label.is-centered { justify-content: center; }
.script { font-family: var(--script); font-weight: 600; color: var(--terra); letter-spacing: 0; line-height: 1; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad-x); position: relative; z-index: 2; }
.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(3.5rem, 7vw, 7rem); }
.section-head { max-width: 52rem; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section-head .h2 { margin-top: 1.1rem; }
.section-head.is-centered { margin-inline: auto; text-align: center; }
.section-head.is-centered .h2 { margin-inline: auto; max-width: 16ch; }

/* ---------- Section themes ---------- */
.theme-cream       { background: var(--cream); color: var(--ink); }
.theme-cream-2     { background: var(--cream-2); color: var(--ink); }
.theme-forest      { background: var(--forest); color: var(--on-dark); }
.theme-forest-deep { background: var(--forest-deep); color: var(--on-dark); }
.theme-terra       { background: var(--terra); color: var(--on-dark); }
.theme-forest h1,.theme-forest h2,.theme-forest h3,
.theme-forest-deep h1,.theme-forest-deep h2,.theme-forest-deep h3,
.theme-terra h1,.theme-terra h2,.theme-terra h3 { color: var(--on-dark); }
.theme-forest .label,.theme-forest-deep .label,.theme-terra .label { color: var(--sand); }
.theme-forest .script,.theme-forest-deep .script { color: var(--peach); }
.theme-terra .script { color: var(--on-dark); }

/* ---------- Images ---------- */
.media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bw img, img.bw { filter: grayscale(1) contrast(1.03) brightness(0.99); }

/* ---------- Buttons ---------- */
.btn { font-family: var(--label); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--terra); color: var(--on-dark); border: none; padding: 1.15em 2.2em; display: inline-block; transition: background 0.4s var(--ease); }
.btn:hover { background: var(--terra-deep); }
.btn-pill { font-family: var(--label); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--rose); color: var(--ink); border: none; padding: 1.15em 2.4em; border-radius: 999px; display: inline-block; transition: background 0.4s var(--ease), color 0.4s var(--ease); }
.btn-pill:hover { background: var(--terra); color: var(--on-dark); }
.arrow { font-family: var(--label); font-weight: 700; font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--terra-deep); display: inline-flex; align-items: center; gap: 0.6em; padding-bottom: 4px; position: relative; }
.arrow::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: currentColor; transform: scaleX(1); transform-origin: left; transition: transform 0.5s var(--ease); }
.arrow .arw { transition: transform 0.4s var(--ease); }
.arrow:hover::after { transform: scaleX(0); transform-origin: right; }
.arrow:hover .arw { transform: translateX(5px); }
.theme-forest .arrow,.theme-forest-deep .arrow,.theme-terra .arrow { color: var(--peach); }

/* ===================================================================
   HEADER / NAV
   =================================================================== */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 50; display: flex; align-items: center; justify-content: space-between;
  padding: clamp(1.1rem, 2.4vw, 2rem) var(--pad-x); transition: background 0.5s var(--ease), padding 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.site-header.scrolled { background: rgba(244,240,232,0.96); backdrop-filter: blur(8px); padding-block: clamp(0.7rem,1.4vw,1rem); box-shadow: 0 1px 0 rgba(42,38,34,0.1); }
.wordmark { font-family: var(--display); font-weight: 600; font-size: 1.7rem; letter-spacing: 0.01em; color: var(--ink); white-space: nowrap; line-height: 1; }
.wordmark span { color: var(--terra); }
.hero-on .site-header:not(.scrolled) .wordmark { color: var(--on-dark); }
.hero-on .site-header:not(.scrolled) .wordmark span { color: var(--peach); }
.nav { display: flex; align-items: center; gap: clamp(1.1rem, 2vw, 2.2rem); }
.nav a { font-family: var(--label); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink); position: relative; padding-bottom: 3px; transition: color 0.4s var(--ease); }
.hero-on .site-header:not(.scrolled) .nav a { color: var(--on-dark); }
.nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: var(--terra); transform: scaleX(0); transform-origin: right; transition: transform 0.4s var(--ease); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav a.nav--feature { color: var(--terra-deep); }
.hero-on .site-header:not(.scrolled) .nav a.nav--feature { color: var(--peach); }
.nav-toggle { display: none; }
.nav-scrim { position: fixed; inset: 0; z-index: 55; background: rgba(33,48,42,0.55); opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease); }
.nav-scrim.show { opacity: 1; visibility: visible; }

/* Press / featured-in strip (dusty-rose band) — placeholder logos */
.press-strip { background: var(--rose); padding-block: clamp(1.3rem, 2.4vw, 2rem); }
.press-strip .container { display: flex; align-items: center; justify-content: center; gap: clamp(1.2rem, 3.5vw, 3rem); flex-wrap: wrap; }
.press-strip__label { font-family: var(--label); font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink); opacity: 0.65; white-space: nowrap; }
.press-logos { list-style: none; display: flex; align-items: center; gap: clamp(1.2rem, 3.5vw, 2.8rem); flex-wrap: wrap; justify-content: center; padding: 0; margin: 0; }
.press-logos li { font-family: var(--display); font-style: italic; font-size: clamp(1rem, 0.9rem + 0.5vw, 1.35rem); color: var(--ink); opacity: 0.55; }

/* ===================================================================
   HERO — dark, type only, asymmetric (Luna-style)
   =================================================================== */
.hero { min-height: 100svh; display: grid; grid-template-columns: 1.08fr 0.92fr; background: #18211B; color: var(--on-dark); }
.hero__inner { align-self: center; width: 100%; max-width: 760px; margin-left: auto; padding: clamp(4.5rem,8vh,6rem) clamp(2rem,4vw,4.5rem) clamp(2.5rem,5vh,3.5rem) var(--pad-x); }
.hero__media { position: relative; overflow: hidden; }
.hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.78) saturate(0.85) contrast(1.02); }
.hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #18211B 0%, rgba(24,33,27,0.4) 30%, rgba(24,33,27,0.15) 62%, rgba(24,33,27,0.3) 100%); }
.hero__credit { position: absolute; bottom: 1rem; right: 1.2rem; z-index: 2; font-family: var(--label); font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--on-dark); background: rgba(33,48,42,0.5); padding: 0.4em 0.7em; }
.hero__places { font-family: var(--label); font-size: 0.72rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--sand); display: inline-flex; align-items: center; gap: 0.7em; margin-bottom: 1.8rem; }
.hero__places::before { content: ""; width: 2.2rem; height: 2px; background: var(--peach); }
.hero__title { font-family: var(--display); font-size: clamp(1.9rem, 1rem + 3vw, 3.1rem); font-weight: 600; line-height: 1.0; letter-spacing: -0.015em; text-transform: uppercase; color: var(--on-dark); max-width: 14ch; }
.hero__title span { display: block; }
.hero__title .it { font-style: italic; color: var(--peach); }
.hero__sub { font-family: var(--display); font-size: clamp(1.05rem, 0.9rem + 0.5vw, 1.3rem); font-style: italic; color: var(--on-dark); max-width: 30rem; margin-top: 1.3rem; line-height: 1.4; }
.hero__cta { margin-top: 1.6rem; display: flex; flex-wrap: wrap; gap: 1.4rem 1.8rem; align-items: center; }

/* ===================================================================
   GIANT DECORATIVE WORD (section divider)
   =================================================================== */
.bigword-band { padding-block: clamp(2rem, 5vw, 5rem); overflow: hidden; text-align: center; }
.bigword { font-family: var(--display); font-style: italic; font-weight: 360; font-size: var(--fs-word); line-height: 0.8; letter-spacing: -0.03em; color: var(--peach); display: block; white-space: nowrap; }
.theme-cream .bigword { color: var(--terra); }

/* ===================================================================
   MANIFESTO / creed
   =================================================================== */
.manifesto { text-align: center; }
.manifesto .container { max-width: 56rem; }
.manifesto__lead { font-family: var(--display); font-size: clamp(1.9rem, 1.1rem + 3.6vw, 3.6rem); font-weight: 440; line-height: 1.16; }
.manifesto__sub { font-family: var(--label); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); max-width: 42rem; margin: 1.5rem auto 0; line-height: 2; }
.creed { list-style: none; padding: 0; margin: 2.5rem auto 0; max-width: 48rem; }
.creed li { font-family: var(--display); font-size: clamp(1.3rem, 0.9rem + 1.9vw, 2.3rem); font-weight: 360; line-height: 1.26; color: var(--ink-soft); padding: 0.55em 0; }
.theme-cream .creed li b { color: var(--terra-deep); font-style: italic; font-weight: 500; }
.creed li + li { border-top: 1px solid rgba(42,38,34,0.14); }

/* ===================================================================
   PILLARS — big numbered index (on dark)
   =================================================================== */
.pillars { border-top: 1px solid rgba(244,239,229,0.2); }
.pillar { display: grid; grid-template-columns: 7rem 1fr auto; gap: clamp(1rem,3vw,3rem); align-items: baseline; padding: clamp(1.8rem,3.6vw,3.2rem) 0; border-bottom: 1px solid rgba(244,239,229,0.2); transition: padding-left 0.5s var(--ease); }
.pillar:hover { padding-left: clamp(0.4rem,1.4vw,1.6rem); }
.pillar__num { font-family: var(--display); font-style: italic; font-weight: 380; font-size: clamp(2.8rem,1.4rem + 4vw,4.6rem); line-height: 0.8; color: var(--peach); }
.pillar__name { display: block; font-family: var(--display); font-size: var(--fs-h3); color: var(--on-dark); }
.pillar__desc { display: block; font-size: 0.98rem; color: var(--on-dark-mut); max-width: 34rem; margin-top: 0.4rem; }
.pillar__meta { display: flex; align-items: center; gap: 1.1rem; }
.tag-signature { font-family: var(--label); font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; color: var(--peach); border: 1.5px solid var(--peach); padding: 0.4em 0.7em; white-space: nowrap; }

/* ===================================================================
   FOUNDER (cream, color rectangular portrait)
   =================================================================== */
.founder { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem,6vw,6rem); align-items: center; }
.founder__media { aspect-ratio: 4/5; }
.founder__media img { width: 100%; height: 100%; object-fit: cover; }
.founder__media figcaption { font-family: var(--label); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sage); margin-top: 0.9rem; }
.founder__body { max-width: 38rem; }
.founder__hi { font-family: var(--script); font-size: clamp(2rem,1rem + 3vw,3rem); color: var(--terra); line-height: 1; }
.founder__body h2 { font-size: var(--fs-h3); margin: 0.4rem 0 1.4rem; }
.founder__body p { color: var(--ink-soft); max-width: 34rem; }
.founder__body p + p { margin-top: 1.1rem; }
.dropcap::first-letter { font-family: var(--display); font-weight: 400; font-size: 3.3em; line-height: 0.8; float: left; padding: 0.05em 0.12em 0 0; color: var(--terra); }
.signature { font-family: var(--script); font-size: 2.4rem; color: var(--cedar); margin-top: 1.2rem; }
.founder__body .arrow { margin-top: 1.4rem; }

/* ===================================================================
   CATALYSTS — 3 numbered B&W image columns (Luna signature)
   =================================================================== */
.catalysts { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1.5rem,3.5vw,3rem); margin-top: clamp(2rem,4vw,3.5rem); }
.catalyst { display: flex; flex-direction: column; text-align: center; position: relative; padding-top: 1.4rem; }
.catalyst__media { position: relative; aspect-ratio: 3/4; overflow: hidden; margin-bottom: 1.6rem; }
.catalyst__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease), filter 0.6s var(--ease); }
.catalyst:hover .catalyst__media img { transform: scale(1.04); }
.catalyst__num { position: absolute; top: 0; right: 0.2em; font-family: var(--display); font-style: italic; font-weight: 360; font-size: clamp(4rem,8vw,7rem); line-height: 0.7; color: var(--peach); z-index: 3; }
.catalyst:nth-child(2) .catalyst__num { left: 0.2em; right: auto; }
.catalyst__name { font-family: var(--display); font-size: clamp(1.5rem,1rem + 1.6vw,2.1rem); text-transform: uppercase; letter-spacing: 0.01em; color: var(--on-dark); }
.catalyst__desc { font-family: var(--label); font-size: 0.74rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; line-height: 1.9; color: var(--on-dark-mut); margin: 1rem auto 1.2rem; max-width: 26ch; }
.catalysts-cta { text-align: center; margin-top: clamp(2.5rem,5vw,3.5rem); }

/* ===================================================================
   WRITING (cream) — featured + index
   =================================================================== */
.featured-essay { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(1.6rem,4vw,4rem); align-items: center; margin-bottom: clamp(1rem,2vw,2rem); }
.featured-essay__media { aspect-ratio: 16/11; overflow: hidden; }
.featured-essay__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.featured-essay:hover .featured-essay__media img { transform: scale(1.04); }
.featured-essay__title { font-family: var(--display); font-size: clamp(2rem,1.3rem + 2.8vw,3.4rem); color: var(--ink); line-height: 1.02; margin: 0.7rem 0 0.8rem; }
.featured-essay__excerpt { color: var(--ink-soft); max-width: 32rem; margin-bottom: 1.2rem; }
.cat { font-family: var(--label); font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terra-deep); font-weight: 700; }
.essays { border-top: 1px solid rgba(42,38,34,0.14); margin-top: 1rem; }
.essay { display: grid; grid-template-columns: 12rem 1fr; gap: clamp(1rem,3vw,3rem); padding: clamp(1.6rem,3vw,2.6rem) 0; border-bottom: 1px solid rgba(42,38,34,0.14); align-items: start; }
.essay__meta { display: flex; flex-direction: column; gap: 0.5rem; }
.essay__date { font-family: var(--label); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sage); }
.essay__title { font-family: var(--display); font-size: clamp(1.5rem,1rem + 1.6vw,2.2rem); color: var(--ink); line-height: 1.08; transition: color 0.4s var(--ease); }
.essay:hover .essay__title { color: var(--terra-deep); }
.essay__excerpt { font-size: 0.98rem; color: var(--ink-soft); margin-top: 0.5rem; max-width: 36rem; }

/* ===================================================================
   SPEAKING
   =================================================================== */
.speaking { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem,5vw,5rem); align-items: center; }
.speaking__body p { color: var(--ink-soft); max-width: 34rem; }
.topic-list { font-family: var(--display); font-style: italic; font-size: clamp(1.2rem,0.9rem + 1vw,1.7rem); color: var(--cedar); line-height: 1.7; margin: 1.6rem 0 1.8rem; max-width: 34rem; }
.topic-list .dot { color: var(--terra); padding: 0 0.4em; font-style: normal; }

/* Founder role descriptors (Luna-style uppercase middot list) */
.founder__roles { font-family: var(--label); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--terra-deep); line-height: 2; margin-bottom: 1.3rem; max-width: 28rem; }

/* Testimonials — giant stacked title + giant quote mark */
.testimonials__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem,5vw,5rem); align-items: center; }
.bigtitle { font-family: var(--display); font-weight: 600; text-transform: uppercase; font-size: clamp(2.6rem,1.2rem + 5vw,5rem); line-height: 0.94; color: var(--ink); letter-spacing: -0.015em; }
.testimonials__photo { margin-top: 1.6rem; aspect-ratio: 4/5; max-width: 21rem; overflow: hidden; }
.testimonials__photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.6); }
.quote-mark { font-family: var(--display); font-weight: 600; font-size: clamp(4.5rem,9vw,8rem); line-height: 0.42; color: var(--terra); display: block; height: 0.42em; }
.testimonials__lead-in { font-family: var(--label); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--terra-deep); display: block; margin-bottom: 0.9rem; }
.testimonials__quote-text { font-family: var(--display); font-size: clamp(1.5rem,1rem + 1.8vw,2.4rem); line-height: 1.22; color: var(--ink); font-weight: 400; margin: 0; }
.testimonials__body { color: var(--ink-soft); max-width: 34rem; margin-top: 1.2rem; }
.testimonials__by { font-family: var(--label); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); margin-top: 1.4rem; }
.testimonials__by .ph { color: var(--sage); font-weight: 500; }

/* ===================================================================
   SEASONS (forest, color rectangular images)
   =================================================================== */
.seasons__intro { color: var(--on-dark-mut); max-width: 38rem; }
.section-head.is-centered .seasons__intro { margin-inline: auto; }
.seasons-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1.4rem,3vw,2.4rem); margin-top: clamp(2rem,4vw,3.5rem); }
.vignette { display: flex; flex-direction: column; text-align: center; }
.vignette__media { aspect-ratio: 3/4; overflow: hidden; margin-bottom: 1.2rem; }
.vignette__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.vignette:hover .vignette__media img { transform: scale(1.05); }
.season-label { font-family: var(--label); font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; display: inline-flex; align-items: center; gap: 0.55em; color: var(--sand); justify-content: center; }
.season-label::before { content: ""; width: 0.6rem; height: 0.6rem; border-radius: 50%; background: var(--accent, var(--sand)); }
.is-winter { --accent: #A7C0BA; } .is-summer { --accent: #8FB0C2; } .is-autumn { --accent: var(--peach); }
.vignette__place { font-family: var(--display); font-size: 1.6rem; color: var(--on-dark); margin-top: 0.4rem; }
.seasons__cta { margin-top: clamp(2.5rem,4vw,3.5rem); text-align: center; }

/* ===================================================================
   NEWSLETTER (terracotta band)
   =================================================================== */
.newsletter { text-align: center; }
.newsletter .container { max-width: 44rem; }
.newsletter .label { color: var(--on-dark); }
.newsletter .label::before { background: var(--on-dark); }
.newsletter__name { font-family: var(--display); font-size: clamp(2.2rem,1.2rem + 3.4vw,3.8rem); color: var(--on-dark); margin: 0.6rem 0 1rem; font-weight: 360; }
.newsletter__name .script { color: var(--cream); font-size: 1.1em; }
.newsletter p { margin-inline: auto; color: rgba(244,239,229,0.9); max-width: 34rem; }
.subscribe { display: flex; gap: 0.6rem; margin-top: 2rem; max-width: 30rem; margin-inline: auto; }
.subscribe input { flex: 1; font: inherit; font-size: 0.95rem; padding: 1em 1.1em; border: 1.5px solid rgba(244,239,229,0.5); background: rgba(244,239,229,0.1); color: var(--on-dark); }
.subscribe input::placeholder { color: rgba(244,239,229,0.7); }
.subscribe button { background: var(--ink); color: var(--on-dark); border: none; padding: 0 1.7em; font-family: var(--label); font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; transition: background 0.4s var(--ease); }
.subscribe button:hover { background: var(--forest-deep); }
.newsletter__fineprint { font-family: var(--script); font-size: 1.3rem; color: rgba(244,239,229,0.85); margin: 1rem auto 0; }
.newsletter__success { font-family: var(--script); font-size: 1.6rem; color: var(--cream); margin-top: 1.2rem; min-height: 1.6rem; }

/* ===================================================================
   FOOTER (deep forest)
   =================================================================== */
.site-footer { background: var(--forest-deep); color: var(--on-dark); padding-block: clamp(3.5rem,7vw,6rem) 2.5rem; }
.footer-top { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: clamp(2rem,4vw,3.5rem); padding-bottom: 3rem; border-bottom: 1px solid rgba(244,239,229,0.18); }
.footer-brand .wordmark { color: var(--on-dark); font-size: 1.6rem; }
.footer-brand .wordmark span { color: var(--peach); }
.footer-brand p { color: rgba(244,239,229,0.7); font-family: var(--display); font-style: italic; font-size: 1.3rem; margin-top: 1rem; max-width: 22rem; line-height: 1.35; }
.footer-col h2 { font-family: var(--label); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sand); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { font-size: 0.9rem; color: rgba(244,239,229,0.85); transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--peach); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 2rem; font-family: var(--label); font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(244,239,229,0.55); }

/* ===================================================================
   SEASONS PAGE
   =================================================================== */
.page-hero { min-height: 74svh; display: flex; align-items: flex-end; color: var(--on-dark); isolation: isolate; position: relative; }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(33,48,42,0.45) 0%, rgba(33,48,42,0.25) 45%, rgba(20,28,22,0.9) 100%); }
.page-hero__inner { padding-bottom: clamp(3rem,6vh,5rem); padding-top: 9rem; max-width: 50rem; }
.page-hero__title { font-family: var(--display); font-size: clamp(3rem,1.4rem + 6.5vw,6.5rem); color: var(--on-dark); font-weight: 350; line-height: 0.92; letter-spacing: -0.028em; margin: 1rem 0; }
.page-hero__title em { font-style: italic; color: var(--peach); }
.page-hero__sub { font-family: var(--display); font-style: italic; font-size: clamp(1.15rem,0.9rem + 0.7vw,1.5rem); color: rgba(244,239,229,0.92); max-width: 38rem; }
.chapter { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,5rem); align-items: center; padding-block: clamp(3rem,6vw,6rem); border-bottom: 1px solid rgba(42,38,34,0.14); }
.chapter:nth-child(even) .chapter__media { order: 2; }
.chapter__media { aspect-ratio: 5/4; overflow: hidden; }
.chapter__media img { width: 100%; height: 100%; object-fit: cover; }
.chapter__place { font-family: var(--display); font-size: clamp(2.2rem,1.2rem + 3vw,3.6rem); color: var(--ink); margin: 0.7rem 0 1.2rem; line-height: 0.96; }
.chapter__place span { display: block; font-style: italic; color: var(--terra); }
.chapter__body p { color: var(--ink-soft); max-width: 34rem; }
.chapter__body p + p { margin-top: 1.1rem; }
.intro-band { max-width: 46rem; margin-inline: auto; text-align: center; }
.intro-band p { color: var(--ink-soft); max-width: 40rem; margin-inline: auto; }
.intro-band .manifesto__lead { color: var(--ink); margin: 1.4rem auto; max-width: 36rem; }
.themes-line { font-family: var(--display); font-style: italic; color: var(--on-dark); }
.themes-line .dot { color: var(--peach); padding: 0 0.4em; font-style: normal; }

/* ===================================================================
   REVEAL
   =================================================================== */
/* Reveal animation removed — content is visible immediately, no fade-in. */
.reveal, .reveal.in { opacity: 1; transform: none; transition: none; }
.pillars .reveal:nth-child(2){transition-delay:.06s}.pillars .reveal:nth-child(3){transition-delay:.12s}.pillars .reveal:nth-child(4){transition-delay:.18s}.pillars .reveal:nth-child(5){transition-delay:.24s}
.catalysts .reveal:nth-child(2){transition-delay:.1s}.catalysts .reveal:nth-child(3){transition-delay:.2s}
.seasons-grid .reveal:nth-child(2){transition-delay:.1s}.seasons-grid .reveal:nth-child(3){transition-delay:.2s}
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; transition: none !important; } }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero__inner { max-width: none; margin-left: 0; order: 1; }
  .hero__media { order: 2; min-height: 46vh; }
  .hero__media::after { background: linear-gradient(0deg, var(--forest-deep) 0%, rgba(33,48,42,0) 40%); }
  .founder, .speaking, .chapter, .featured-essay, .testimonials__grid { grid-template-columns: 1fr; }
  .chapter:nth-child(even) .chapter__media { order: 0; }
  .catalysts, .seasons-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .catalyst__media, .vignette__media { aspect-ratio: 16/11; }
}
@media (max-width: 760px) {
  .nav { position: fixed; inset: 0 0 0 auto; width: min(84vw,350px); background: var(--forest); flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.6rem; padding: 2rem var(--pad-x); transform: translateX(100%); transition: transform 0.5s var(--ease); z-index: 60; }
  .nav.open { transform: translateX(0); }
  .nav a, .hero-on .site-header:not(.scrolled) .nav a { color: var(--on-dark); font-size: 0.95rem; }
  .nav a.nav--feature, .hero-on .site-header:not(.scrolled) .nav a.nav--feature { color: var(--peach); }
  .nav-toggle { display: flex; flex-direction: column; gap: 5px; width: 30px; height: 22px; justify-content: center; background: none; border: none; z-index: 70; padding: 0; }
  .nav-toggle span { display: block; height: 2px; width: 100%; background: var(--ink); transition: transform 0.4s var(--ease), opacity 0.3s var(--ease); }
  .hero-on .site-header:not(.scrolled) .nav-toggle span { background: var(--on-dark); }
  .nav-toggle.open span { background: var(--on-dark); }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .essay { grid-template-columns: 1fr; gap: 0.5rem; }
  .essay__meta { flex-direction: row; align-items: center; gap: 1rem; }
  .pillar { grid-template-columns: 3.6rem 1fr; align-items: start; }
  .pillar__meta { grid-column: 2; margin-top: 0.8rem; flex-wrap: wrap; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero__cta { flex-direction: column; align-items: flex-start; }
  .bigword { font-size: clamp(3.5rem,18vw,7rem); }
}
@media (max-width: 460px) { .footer-top { grid-template-columns: 1fr; } }

/* ===== Image enrichment — a photo in every section ===== */
.manifesto__band { margin-top: clamp(2.5rem, 5vw, 4rem); height: clamp(220px, 30vw, 440px); overflow: hidden; }
.manifesto__band img { width: 100%; height: 100%; object-fit: cover; display: block; }

.pillar { grid-template-columns: 5.5rem 1fr 5.5rem auto; }
.pillar__thumb { width: 5.5rem; aspect-ratio: 1/1; object-fit: cover; filter: grayscale(1) contrast(1.05) brightness(1.1); }

.essay { grid-template-columns: 8.5rem 7rem 1fr; }
.essay__thumb { width: 7rem; aspect-ratio: 1/1; object-fit: cover; }

.speaking { grid-template-columns: 0.8fr 1fr 0.8fr; }
.speaking__media { aspect-ratio: 3/4; overflow: hidden; }
.speaking__media img { width: 100%; height: 100%; object-fit: cover; }

.testimonials__photo { margin-top: 1.6rem; }

.newsletter { position: relative; overflow: hidden; }
.newsletter__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.12; z-index: 0; }
.newsletter .container { position: relative; z-index: 2; }

@media (max-width: 980px) {
  .speaking { grid-template-columns: 1fr; }
  .speaking__media { aspect-ratio: 16/9; max-height: 340px; order: -1; }
}
@media (max-width: 760px) {
  .pillar { grid-template-columns: 3.4rem 1fr; }
  .pillar__thumb { display: none; }
  .essay { grid-template-columns: 1fr; }
  .essay__thumb { display: none; }
}
