/* ---------------------------------------------------------
   Elarion Resonance — tokens
--------------------------------------------------------- */
:root {
  --ink: #15132A;
  --ink-2: #211D3D;
  --ink-3: #2B2650;
  --plum: #574B87;
  --gold: #B8923E;
  --gold-light: #E3C583;
  --cream: #F5F0E4;
  --cream-2: #EBE3CF;
  --text-on-cream: #221F33;
  --text-on-cream-soft: #4A4560;
  --text-on-ink: #F1ECDD;
  --text-on-ink-soft: #C9C2DE;
  --line-on-ink: rgba(227, 197, 131, 0.28);
  --line-on-cream: rgba(87, 75, 135, 0.22);

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", "Segoe UI", sans-serif;

  --max: 1180px;
  --measure: 640px;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.75rem;
  --space-4: 3rem;
  --space-5: 5rem;
  --space-6: 8rem;
}

/* ---------------------------------------------------------
   Reset
--------------------------------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--text-on-cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; margin: 0; }
p { margin: 0 0 1.2em; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; }
::selection { background: var(--gold); color: var(--ink); }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* faint film-grain overlay, purely decorative */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.85em 1.9em;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover { background: var(--gold-light); }
.btn--gold-outline { border-color: var(--gold); color: var(--text-on-ink); }
.btn--gold-outline:hover { background: var(--gold); color: var(--ink); }
.btn--ghost { border-color: currentColor; opacity: 0.85; }
.btn--ghost:hover { opacity: 1; border-color: var(--gold); color: var(--gold); }
.btn.is-disabled { opacity: 0.55; cursor: default; pointer-events: none; }

/* ---------------------------------------------------------
   Nav
--------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(1.25rem, 4vw, 3rem);
  background: transparent;
  transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.nav.is-scrolled {
  background: rgba(21, 19, 42, 0.92);
  backdrop-filter: blur(8px);
  padding-top: 16px;
  padding-bottom: 16px;
  box-shadow: 0 1px 0 var(--line-on-ink);
}
.nav__mark {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-on-ink);
}
/* logo.png is now cropped tight to the icon mark (no wasted transparent
   canvas), so sizing by height with auto width renders it at true size —
   no negative-margin compensation needed. */
.nav__logo { width: auto; height: 81px; object-fit: contain; }
.nav__wordmark {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  color: var(--text-on-ink);
}
.nav__wordmark em { font-style: normal; color: var(--gold-light); }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2vw, 2rem);
  font-size: 0.88rem;
  color: var(--text-on-ink-soft);
}
.nav__links a { transition: color 0.2s ease; }
.nav__links a:hover { color: var(--gold-light); }
.nav__cta {
  border: 1px solid var(--line-on-ink);
  padding: 0.5em 1.1em;
  border-radius: 2px;
  color: var(--text-on-ink) !important;
}
.nav__cta:hover { border-color: var(--gold); background: rgba(227,197,131,0.08); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav__toggle span { width: 22px; height: 1px; background: var(--text-on-ink); transition: transform 0.25s ease, opacity 0.25s ease; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav__backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 9, 20, 0.55);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 89;
}

/* ---------------------------------------------------------
   Hero
--------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(ellipse at 50% 20%, var(--ink-3) 0%, var(--ink) 65%);
  color: var(--text-on-ink);
  padding: 6rem 1.5rem 4rem;
  overflow: hidden;
}
.hero__geometry {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  opacity: 0.32;
}
.hero__svg {
  width: min(140vw, 1100px);
  animation: rotate-slow 75s linear infinite;
}
@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Coherence glow — one quiet device (centre, rhythm, convergence) reused at
   a few points across the page (hero, the Exploration crossing point, the
   Book section) so the wider visual language reads as one thing, not five
   separate motifs. A soft breathing light, nothing more. */
@keyframes coherence-breathe {
  0%, 100% { opacity: 0.55; transform: scale(0.92); }
  50% { opacity: 1; transform: scale(1.06); }
}
.coherence-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: coherence-breathe 9s ease-in-out infinite;
}
.hero__glow {
  top: 50%;
  left: 50%;
  width: 90px;
  height: 90px;
  margin: -45px 0 0 -45px;
  background: radial-gradient(circle, var(--gold-light) 0%, var(--gold) 40%, transparent 72%);
  opacity: 0.3;
  filter: blur(6px);
}
.hero__eyebrow {
  position: relative;
  font-family: var(--font-body);
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  color: var(--gold-light);
  margin-bottom: 1.4rem;
}
.hero__headline {
  position: relative;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.08;
  font-style: italic;
  font-weight: 500;
  max-width: 21ch;
}
.hero__sub {
  position: relative;
  max-width: 52ch;
  margin: 1.6rem 0 0;
  font-size: 1.05rem;
  color: var(--text-on-ink-soft);
}
.hero__founder {
  position: relative;
  max-width: 46ch;
  margin: 1.4rem 0 2.9rem;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--text-on-ink-soft);
  opacity: 0.92;
}
.hero__actions {
  position: relative;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hero--sub {
  min-height: 62vh;
  padding-top: 8rem;
}
.hero__headline--sm {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  max-width: 26ch;
}
.hero__scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 52px;
}
.hero__scroll span {
  display: block;
  width: 1px;
  height: 100%;
  background: linear-gradient(var(--gold), transparent);
}

/* ---------------------------------------------------------
   Field (philosophy essay)
--------------------------------------------------------- */
.field {
  position: relative;
  padding: var(--space-6) 1.5rem;
  background: var(--cream);
  overflow: hidden;
}
.field__inner {
  position: relative;
  z-index: 1;
  max-width: var(--measure);
  margin: 0 auto;
  font-size: 1.08rem;
  color: var(--text-on-cream-soft);
}

/* One quiet, considered moment: two organic (Sacred Feminine) contour bands
   held together by a single straight (Sacred Masculine) line anchoring one
   to the other — a relationship, not two decorations placed near each other.
   Not repeated elsewhere on the site except the echo in the Explore grid. */
.field__motif { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.field__contour {
  position: absolute;
  left: 0;
  bottom: -6%;
  width: 100%;
  height: 46%;
}
.field__contour .field__contour-path { fill: none; stroke: var(--plum); stroke-width: 1.2; opacity: 0.13; }
.field__contour .field__anchor-line { stroke: var(--gold); stroke-width: 1.8; opacity: 0.32; }
/* Same coherence-glow device as the hero, positioned at the point (in
   .field's own box, not the distorted SVG viewBox) where the anchor line
   crosses the contour bands — flow and form converging on one point. */
.field__glow {
  top: 86.2%;
  left: 63.3%;
  width: 46px;
  height: 46px;
  margin: -23px 0 0 -23px;
  background: radial-gradient(circle, var(--gold-light) 0%, var(--gold) 45%, transparent 72%);
  opacity: 0.4;
  filter: blur(5px);
}
.field__lede {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-style: italic;
  color: var(--text-on-cream);
  line-height: 1.4;
  margin-bottom: 1.6em;
}
.pullquote {
  margin: var(--space-4) 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text-on-cream);
  line-height: 1.5;
}

.bio-portrait {
  margin: var(--space-4) auto;
  max-width: 340px;
  text-align: center;
}
.bio-portrait img {
  width: 100%;
  box-shadow: 0 20px 40px rgba(21, 19, 42, 0.18);
}
.bio-portrait figcaption {
  margin-top: 0.7rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-on-cream-soft);
}

/* ---------------------------------------------------------
   Book split
--------------------------------------------------------- */
.book {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink);
  color: var(--text-on-ink);
  overflow: hidden;
}
.book__cover {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-5) var(--space-4);
  background: linear-gradient(160deg, var(--ink-2), var(--ink));
}
/* The coherence device once more, softened into an ambient light behind the
   cover — the same convergence point, now sitting quietly behind the book's
   own flowing image held in its precise rectangular frame. */
.book__glow {
  top: 50%;
  left: 50%;
  width: 440px;
  height: 440px;
  margin: -220px 0 0 -220px;
  background: radial-gradient(circle, var(--gold) 0%, var(--plum) 55%, transparent 75%);
  opacity: 0.2;
  filter: blur(30px);
  z-index: 0;
}
.book__cover img { position: relative; z-index: 1; }
.book__cover img {
  width: min(100%, 440px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
}
.book__content {
  padding: var(--space-5) clamp(1.5rem, 5vw, 5rem) var(--space-5) clamp(1.5rem, 5vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 620px;
}
.book__eyebrow { color: var(--gold-light); font-size: 0.85rem; letter-spacing: 0.12em; margin-bottom: 0.8rem; }
.book h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 0.6rem; }
.book__dek {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.45rem;
  color: var(--gold-light);
  margin-bottom: 1.6rem;
}
.book__content p { color: var(--text-on-ink-soft); }
.book__enquiry {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--gold-light);
  margin: var(--space-4) 0 1rem;
}
/* A soft glow marker in place of a straight rule — the same coherence-glow
   device used at the hero and book cover, scaled down to sit beside a line
   of text instead of a hard vertical border. */
.book__dek,
.book__enquiry,
.pullquote {
  position: relative;
  padding-left: 1.4rem;
  border-left: none;
}
.book__dek::before,
.book__enquiry::before,
.pullquote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-light) 0%, var(--gold) 55%, transparent 75%);
  animation: coherence-breathe 9s ease-in-out infinite;
}
.book__availability { font-size: 0.9rem; color: var(--text-on-ink-soft); margin-top: -0.6em; }
.book .btn { margin-top: 0.6rem; align-self: flex-start; }

/* ---------------------------------------------------------
   Who this is for
--------------------------------------------------------- */
.who {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--cream-2);
}
/* Soft curved section seam — used around The Exploration teaser. */
.section-wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: 34px;
  pointer-events: none;
  z-index: 1;
}
.section-wave path {
  fill: none;
  stroke: var(--plum);
  stroke-width: 1.3;
  opacity: 0.22;
}
.section-wave--top { top: -1px; }
.section-wave--bottom { bottom: -1px; }
.who__image {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--ink-2), var(--ink));
  padding: var(--space-4);
  min-height: 420px;
}
.who__image img {
  width: 100%;
  max-width: 560px;
  height: auto;
  object-fit: contain;
  animation: heart-breathe 7s ease-in-out infinite;
}
/* Rest state (0%/100%) is exactly scale(1) — the artwork's true, unaltered
   size — so that under prefers-reduced-motion (which collapses this to a
   single near-instant iteration landing on the 100% keyframe) the artwork
   is shown at its normal scale, not a shrunk or enlarged one. */
@keyframes heart-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
.who__content {
  padding: var(--space-5) clamp(1.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.who__eyebrow { color: var(--plum); font-size: 0.85rem; letter-spacing: 0.12em; margin-bottom: 0.8rem; }
.who__lede {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 1em;
}
.who__content p { color: var(--text-on-cream-soft); max-width: 52ch; }
.who__close { color: var(--text-on-cream) !important; font-family: var(--font-display); font-size: 1.15rem; }

/* ---------------------------------------------------------
   Services teaser
--------------------------------------------------------- */
.services {
  padding: var(--space-5) 1.5rem;
  background: var(--cream);
  border-top: 1px solid var(--line-on-cream);
  border-bottom: 1px solid var(--line-on-cream);
}
.services__inner { max-width: var(--measure); margin: 0 auto; text-align: left; }
.services__eyebrow { color: var(--plum); font-size: 0.85rem; letter-spacing: 0.12em; margin-bottom: 0.8rem; }
.services h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); margin-bottom: 0.8rem; }
/* .who__eyebrow and .services__eyebrow are now <h2> for document outline/
   accessibility purposes. Restate every visual property so they render
   pixel-identical to the previous <p> — this specifically neutralises the
   global h1–h3 rule (serif font-family, weight 500) and, for the services
   eyebrow, the sibling ".services h2" heading-size rule above. */
h2.who__eyebrow,
h2.services__eyebrow {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  margin: 0 0 0.8rem;
}

/* A Word from Annette (About bio) — same neutralising treatment as the
   eyebrows above, restating properties against the global h1-h3 rule. */
h2.field__voice-label {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--plum);
  margin: var(--space-4) 0 1rem;
}
.field__voice {
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: var(--text-on-cream);
  line-height: 1.65;
}
.field__voice p { margin-bottom: 1.2em; }
.services p { color: var(--text-on-cream-soft); max-width: 56ch; }
.services__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0.4rem; }
.services__inner p.services__lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--text-on-cream);
  line-height: 1.4;
  max-width: 56ch;
  margin-bottom: 1em;
}

/* Work with Annette — text leads on desktop, portrait sits contained and
   modest on the right, scaled to match the book cover's visual weight
   rather than a full-bleed photo panel. */
.services--split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: var(--space-4);
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--space-5) clamp(2rem, 6vw, 4.5rem);
}

/* Entrance reveal for Work with Annette only — a small, slow, one-time
   slide-in triggered by IntersectionObserver in main.js. The portrait
   moves further and the text barely at all, per spec. Fully neutralised
   under prefers-reduced-motion via the global rule further up this file
   (transition-duration collapses to ~0), and main.js also skips straight
   to the visible state for those users rather than relying on that alone. */
.services__image--reveal {
  opacity: 0;
  transform: translateX(28px) scale(0.94);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}
.services__image--reveal.is-visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}
.services__inner--reveal {
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.services__inner--reveal.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.services--split .services__inner {
  padding: 0;
  max-width: none;
  margin: 0;
}
.services__image { display: flex; align-items: center; justify-content: center; }
.services__image img {
  width: 100%;
  max-width: 340px;
  height: auto;
  object-fit: contain;
  border: 1px solid rgba(184, 146, 62, 0.45);
  box-shadow: 0 10px 24px rgba(21, 19, 42, 0.12);
}

/* Exploration teaser — stays on the natural cream background; the hero
   geometry reappears here only as a soft, muted gold echo, not a dark panel.
   Given the same slow rotation as the hero's copy of this mark, so it reads
   as a living echo rather than a second, static, identical print of it. */
.services--motif-bg {
  position: relative;
  overflow: hidden;
  border-top: none;
  border-bottom: none;
}
.services__motif {
  position: absolute;
  top: 50%;
  right: -12%;
  width: 640px;
  max-width: 60vw;
  color: var(--gold);
  opacity: 0.1;
  pointer-events: none;
  animation: rotate-slow-centered 75s linear infinite;
}
@keyframes rotate-slow-centered {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}
.services--motif-bg .services__inner { position: relative; z-index: 1; }

/* ---------------------------------------------------------
   Connect
--------------------------------------------------------- */
.connect { background: var(--ink); color: var(--text-on-ink); padding: var(--space-6) 1.5rem; }
.connect__inner { max-width: var(--max); margin: 0 auto; text-align: center; }
.connect__eyebrow { color: var(--gold-light); font-size: 0.85rem; letter-spacing: 0.12em; margin-bottom: 0.8rem; }
.connect h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: var(--space-4); }
.connect__links {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-on-ink);
  border: 1px solid var(--line-on-ink);
}
/* Geometry meeting the grid — circle crossing straight hairlines, with a
   soft outward ring suggesting the expansion/return of the coherence motif.
   One quiet instance, not repeated on the About page's version of this. */
#explore .connect__links::before {
  content: "";
  position: absolute;
  top: -70px;
  left: -70px;
  width: 200px;
  height: 200px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.17;
  box-shadow: 0 0 0 36px rgba(184, 146, 62, 0.05);
  animation: coherence-breathe 9s ease-in-out infinite;
  animation-delay: -3s;
  pointer-events: none;
}
.connect__link {
  background: var(--ink);
  padding: var(--space-4) var(--space-2);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: background-color 0.25s ease;
}
.connect__link:hover { background: var(--ink-2); }
.connect__link-label { font-family: var(--font-display); font-size: 1.4rem; font-style: italic; color: var(--gold-light); }
.connect__link-desc { font-size: 0.88rem; color: var(--text-on-ink-soft); }
.connect__link--soon { opacity: 0.55; }
.connect__link--soon .connect__link-label { color: var(--text-on-ink); }
.connect__links--wide { grid-template-columns: repeat(4, 1fr); }

.appearances {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-on-ink);
  border: 1px solid var(--line-on-ink);
  text-align: left;
  margin-bottom: var(--space-4);
}
.appearance-card {
  background: var(--ink);
  padding: var(--space-4) var(--space-3);
  display: flex;
  flex-direction: column;
}
.appearance-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}
.appearance-card__subtitle {
  font-size: 0.85rem;
  color: var(--text-on-ink-soft);
  margin-bottom: 0.7rem;
}
.appearance-card__count {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.appearance-card__desc {
  font-size: 0.92rem;
  color: var(--text-on-ink-soft);
  margin-bottom: 1.2rem;
  flex-grow: 1;
}
.appearance-card__link {
  font-size: 0.9rem;
  color: var(--gold-light);
  align-self: flex-start;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.appearance-card__link:hover { color: var(--gold); border-color: var(--gold); }

.connect__note {
  max-width: 46ch;
  margin: var(--space-4) auto 1rem;
  color: var(--text-on-ink-soft);
  font-size: 0.95rem;
}

/* ---------------------------------------------------------
   Legal pages
--------------------------------------------------------- */
.legal-header {
  background: var(--ink);
  color: var(--text-on-ink);
  padding: 9rem clamp(1.5rem, 6vw, 4rem) var(--space-4);
}
.legal-header__inner { max-width: var(--measure); margin: 0 auto; }
.legal-header p.eyebrow { color: var(--gold-light); font-size: 0.85rem; letter-spacing: 0.12em; margin-bottom: 0.8rem; }
.legal-header h1 { font-size: clamp(2rem, 4vw, 2.8rem); font-style: italic; margin-bottom: 0.8rem; }
.legal-header__meta { color: var(--text-on-ink-soft); font-size: 0.92rem; }
.legal-header__meta a { color: var(--gold-light); }

.legal-content {
  padding: var(--space-5) clamp(1.5rem, 6vw, 4rem) var(--space-6);
  background: var(--cream);
}
.legal-content__inner { max-width: var(--measure); margin: 0 auto; color: var(--text-on-cream-soft); }
.legal-content h2 {
  font-size: 1.5rem;
  color: var(--text-on-cream);
  margin: var(--space-4) 0 0.8rem;
  padding-top: var(--space-3);
  border-top: 1px solid var(--line-on-cream);
}
.legal-content h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.legal-content h3 { font-size: 1.1rem; color: var(--text-on-cream); margin: 1.4rem 0 0.5rem; font-style: italic; }
.legal-content p { margin-bottom: 1em; }
.legal-content ul { margin: 0 0 1.2em; padding-left: 1.3em; }
.legal-content li { margin-bottom: 0.5em; }
.legal-content a { color: var(--plum); border-bottom: 1px solid currentColor; }
.legal-content strong { color: var(--text-on-cream); font-weight: 500; }

/* ---------------------------------------------------------
   Contact
--------------------------------------------------------- */
.contact { padding: var(--space-6) 1.5rem; background: var(--cream); text-align: center; }
.contact__inner {
  max-width: 620px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(2rem, 6vw, 3.5rem);
  border: 1px solid var(--gold);
}
.contact__eyebrow { color: var(--plum); font-size: 0.85rem; letter-spacing: 0.12em; margin-bottom: 0.8rem; }
.contact h2 { font-size: clamp(2.2rem, 5vw, 3rem); font-style: italic; margin-bottom: 1rem; }
.contact p { color: var(--text-on-cream-soft); }
.contact__email {
  display: inline-block;
  margin-top: 0.8rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.15em;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.contact__email:hover { color: var(--plum); border-color: var(--plum); }

.contact__social { margin-top: var(--space-4); }
.contact__social-label {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--text-on-cream-soft);
  margin-bottom: 0.9rem;
}
.contact__social-links { display: flex; justify-content: center; gap: 1rem; }
.contact__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-on-cream);
  border-radius: 50%;
  color: var(--plum);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.contact__social-link:hover { color: var(--gold); border-color: var(--gold); }

/* ---------------------------------------------------------
   Footer
--------------------------------------------------------- */
.footer {
  background: var(--ink);
  color: var(--text-on-ink-soft);
  text-align: center;
  padding: var(--space-4) 1.5rem var(--space-3);
  border-top: 1px solid var(--line-on-ink);
}
.footer__inner { max-width: 560px; margin: 0 auto; }
.footer__mark { display: inline-block; }
.footer__logo { width: 130px; height: auto; margin: 0 auto 1.2rem; opacity: 0.9; }
.footer__brand { font-family: var(--font-display); font-size: 1.1rem; color: var(--text-on-ink); margin-bottom: 0.3rem; }
.footer__brand span { color: var(--text-on-ink-soft); font-style: italic; }
.footer__tagline { font-size: 0.92rem; margin-bottom: 1.4rem; }

.footer__social { display: flex; justify-content: center; gap: 1rem; margin-bottom: 1.6rem; }
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-on-ink);
  border-radius: 50%;
  color: var(--text-on-ink-soft);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.footer__social-link:hover { color: var(--gold-light); border-color: var(--gold); }

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.4rem;
  font-size: 0.82rem;
  margin-bottom: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line-on-ink);
}
.footer__legal a { color: var(--text-on-ink-soft); transition: color 0.2s ease; }
.footer__legal a:hover { color: var(--gold-light); }

.footer__meta { font-size: 0.8rem; opacity: 0.7; margin-bottom: 0; }

/* ---------------------------------------------------------
   Responsive
--------------------------------------------------------- */
@media (max-width: 900px) {
  .book, .who, .services--split { grid-template-columns: 1fr; }
  .who__image { min-height: 280px; padding: var(--space-3); }
  .services__image img { max-width: 240px; }
  .connect__links { grid-template-columns: 1fr; }
  .appearances { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav__links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.6rem;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 95;
  }
  .nav__links.is-open { transform: translateX(0); box-shadow: -12px 0 40px rgba(0,0,0,0.35); }
  .nav__toggle { display: flex; z-index: 101; }
  .nav__cta { border-color: var(--gold); }
  .nav__backdrop { display: block; }
  .nav__backdrop.is-open { opacity: 1; pointer-events: auto; }
  .nav__backdrop:not(.is-open) { pointer-events: none; }
}
