/* ==========================================================================
   DISCOVERY SIMPLIFIED: Time Travel Through Compassion
   Main stylesheet

   1.  Fonts
   2.  Design tokens
   3.  Base and typography
   4.  Layout helpers
   5.  Buttons, links, rules
   6.  Header, mega menu, mobile menu
   7.  Leaves, cover, placeholders
   8.  Homepage hero
   9.  Editorial sections (book, hearts, compassion, recovery, monograph)
   10. Editorial panels grid
   11. William, fifty, follow
   12. Share control
   13. Interior pages (page hero, prose, lists)
   14. Forms (future self, contact)
   15. Buy, press, media kit
   16. Footer
   17. Motion (reveals) and reduced motion
   18. Responsive
   ========================================================================== */

/* 1. FONTS ---------------------------------------------------------------- */
@font-face { font-family: "Cormorant Garamond"; font-style: normal; font-weight: 300; font-display: swap; src: url("../fonts/cormorant-garamond-latin-300-normal.woff2") format("woff2"); }
@font-face { font-family: "Cormorant Garamond"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/cormorant-garamond-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Cormorant Garamond"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/cormorant-garamond-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Cormorant Garamond"; font-style: italic; font-weight: 300; font-display: swap; src: url("../fonts/cormorant-garamond-latin-300-italic.woff2") format("woff2"); }
@font-face { font-family: "Cormorant Garamond"; font-style: italic; font-weight: 400; font-display: swap; src: url("../fonts/cormorant-garamond-latin-400-italic.woff2") format("woff2"); }
@font-face { font-family: "Cormorant Garamond"; font-style: italic; font-weight: 500; font-display: swap; src: url("../fonts/cormorant-garamond-latin-500-italic.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 100 900; font-display: swap; src: url("../fonts/inter-latin-wght-normal.woff2") format("woff2"); }

/* 2. DESIGN TOKENS -------------------------------------------------------- */
:root {
  /* Charcoal scale: never one flat black */
  --ink:        #0b0b0a;
  --ink-2:      #0f0f0e;
  --charcoal:   #141412;
  --charcoal-2: #1a1a18;
  --charcoal-3: #22211e;
  --line:       rgba(243, 238, 228, .12);
  --line-2:     rgba(243, 238, 228, .2);

  /* Text */
  --ivory:      #f3eee4;
  --ivory-2:    #e6dfd1;
  --stone:      #a9a398;
  --stone-2:    #8e897f;

  /* Accent */
  --gold:       #b79a62;
  --gold-2:     #cdb27c;
  --sand:       #d9c7a0;

  /* The four leaves */
  --leaf-brown: #74513b;
  --leaf-gold:  #c9952e;
  --leaf-red:   #a84232;
  --leaf-green: #52683a;

  /* Type */
  --serif: "Cormorant Garamond", "Cormorant", Garamond, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --fs-body:   clamp(1.2rem, 1.1rem + .35vw, 1.4rem);   /* serif body */
  --fs-lede:   clamp(1.45rem, 1.2rem + .8vw, 1.9rem);
  --fs-quote:  clamp(1.9rem, 1.3rem + 2.2vw, 3.3rem);
  --fs-display:clamp(2.6rem, 1.6rem + 4vw, 5.6rem);
  --fs-label:  .72rem;

  /* Space */
  --gutter:  clamp(1.25rem, 4vw, 4.5rem);
  --section: clamp(6rem, 12vw, 11rem);
  --maxw:    1320px;
  --hh:      84px; /* header height */

  --ease: cubic-bezier(.22, .61, .36, 1);
  --slow: 1.2s;
}

/* 3. BASE ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--hh) + 1rem); }
body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--serif);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1.1em; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; line-height: 1.1; }
ul, ol { margin: 0; padding: 0; }
[role="list"] { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
blockquote, figure { margin: 0; }
em, i { font-style: italic; }
::selection { background: var(--gold); color: var(--ink); }
[hidden] { display: none !important; }
main:focus { outline: none; }

/* Focus: always visible for keyboard users */
:focus-visible { outline: 1px solid var(--gold-2); outline-offset: 4px; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 1rem; top: -4rem; z-index: 200;
  background: var(--ivory); color: var(--ink); padding: .7rem 1.1rem;
  font: 500 .8rem/1 var(--sans); letter-spacing: .08em; text-transform: uppercase;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* Labels / eyebrows: small spaced capitals in Inter */
.eyebrow, .label {
  font-family: var(--sans);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.6;
  margin: 0 0 1.8rem;
  display: flex; align-items: center; gap: .8em;
}
.eyebrow .i-arrow { width: 16px; }

.display-h, .prose .display-h {
  font-family: var(--serif);
  font-size: var(--fs-display);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: .01em;
  text-transform: uppercase;
  margin-bottom: 2.4rem;
}
.statement {
  font-size: var(--fs-quote);
  font-weight: 300;
  font-style: italic;
  line-height: 1.18;
  color: var(--ivory);
  margin: 0 0 1.6rem;
}
.statement p { margin: 0; }
.statement--md { font-size: clamp(1.7rem, 1.2rem + 1.8vw, 2.7rem); }
.lede { font-size: var(--fs-lede); line-height: 1.45; color: var(--ivory); font-weight: 400; }
.muted { color: var(--stone); }
.em { font-style: italic; color: var(--sand); }
.center { text-align: center; }
.small { font-size: .9em; }
.mt { margin-top: 2.8rem; }
.center .eyebrow, .center .btn-row { justify-content: center; }

/* 4. LAYOUT ------------------------------------------------------------------ */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--wide { max-width: 1500px; }
.narrow { max-width: 900px; }
.section { padding-block: var(--section); position: relative; }
.section + .section { border-top: 1px solid rgba(243, 238, 228, .05); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 7vw, 8rem); align-items: start; }
.split--wide { grid-template-columns: 1.15fr 1fr; align-items: center; }
.split--portrait { grid-template-columns: .9fr 1fr; align-items: center; }
.prose { max-width: 38em; }
.prose p { color: var(--ivory-2); }
.prose .lede { color: var(--ivory); }
.prose h2, .prose h3 { font-size: clamp(1.6rem, 1.2rem + 1.2vw, 2.3rem); font-weight: 400; margin: 2.2em 0 .8em; }
.prose h3 { font-size: 1.45rem; font-style: italic; }
.prose a:not(.btn):not(.link-cta) { color: var(--sand); border-bottom: 1px solid rgba(217, 199, 160, .35); transition: border-color .3s; }
.prose a:not(.btn):not(.link-cta):hover { border-color: var(--sand); }
.prose ul:not([role]) { padding-left: 1.2em; margin-bottom: 1.2em; }
.prose ul:not([role]) li { margin-bottom: .4em; color: var(--ivory-2); }

/* 5. BUTTONS / LINKS / RULES --------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .9em;
  min-height: 52px; padding: 0 1.7rem;
  font: 500 .75rem/1 var(--sans); letter-spacing: .24em; text-transform: uppercase;
  border: 1px solid var(--ivory); color: var(--ivory);
  transition: background-color .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  white-space: nowrap;
}
.btn .i-arrow { transition: transform .35s var(--ease); }
.btn:hover .i-arrow, .link-cta:hover .i-arrow, .panel__link:hover .i-arrow { transform: translateX(4px); }
.btn--solid { background: var(--sand); border-color: var(--sand); color: var(--ink); }
.btn--solid:hover { background: var(--ivory); border-color: var(--ivory); }
.btn--outline:hover { background: var(--ivory); color: var(--ink); }
.btn--sm { min-height: 42px; padding: 0 1.1rem; font-size: .68rem; }
.btn[disabled], .btn.is-disabled { opacity: .42; cursor: not-allowed; pointer-events: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; }

.link-cta {
  display: inline-flex; align-items: center; gap: .9em;
  font: 500 .74rem/1 var(--sans); letter-spacing: .24em; text-transform: uppercase;
  color: var(--ivory); padding: .6em 0; position: relative;
}
.link-cta::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--gold); transform-origin: left; transform: scaleX(.3);
  transition: transform .5s var(--ease);
}
.link-cta:hover::after, .link-cta:focus-visible::after { transform: scaleX(1); }

.rule { display: block; width: 44px; height: 1px; background: var(--gold); margin: 2rem 0; }
.i-arrow { flex: none; }

/* 6. HEADER ---------------------------------------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  transition: background-color .5s var(--ease), border-color .5s var(--ease), box-shadow .5s;
  border-bottom: 1px solid transparent;
}
.site-header::before { /* soft top shade so the header reads over bright photos */
  content: ""; position: absolute; inset: 0 0 -40px; pointer-events: none;
  background: linear-gradient(to bottom, rgba(11, 11, 10, .75), rgba(11, 11, 10, 0));
  transition: opacity .5s;
}
.site-header.is-solid, .site-header.is-open {
  background: rgba(13, 13, 12, .96);
  border-bottom-color: var(--line);
}
@supports (backdrop-filter: blur(8px)) {
  .site-header.is-solid { background: rgba(13, 13, 12, .9); backdrop-filter: blur(8px); }
}
.site-header.is-solid::before, .site-header.is-open::before { opacity: 0; }

.site-header__bar {
  position: relative; height: var(--hh);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem;
  padding-inline: var(--gutter); max-width: 1600px; margin-inline: auto;
}
.brand { display: inline-flex; flex-direction: column; line-height: 1; }
.brand__title {
  font-family: var(--serif); font-weight: 400; font-size: 1.5rem;
  letter-spacing: .12em; text-transform: uppercase; white-space: nowrap;
}
.brand__sub { font-family: var(--serif); font-size: 1rem; color: var(--ivory-2); margin-top: .35rem; letter-spacing: .04em; padding-left: .15em; }
.brand--lg .brand__title { font-size: clamp(1.7rem, 1.3rem + 1vw, 2.3rem); line-height: 1.05; white-space: normal; max-width: 9em; }
.brand--lg .brand__sub { font-size: 1.12rem; margin-top: .7rem; }

.nav__list { display: flex; gap: clamp(1.4rem, 3vw, 3.2rem); }
.nav__trigger {
  position: relative; padding: 1.9rem 0;
  font: 500 .74rem/1 var(--sans); letter-spacing: .24em; text-transform: uppercase;
  color: var(--ivory-2); transition: color .3s;
}
.nav__trigger::after {
  content: ""; position: absolute; left: 0; right: .24em; bottom: 1.35rem; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease);
}
.nav__trigger:hover, .nav__trigger[aria-expanded="true"], .nav__trigger.is-current { color: var(--ivory); }
.nav__trigger:hover::after, .nav__trigger[aria-expanded="true"]::after, .nav__trigger.is-current::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 1.6rem; }
.header-ig { display: inline-flex; align-items: center; gap: .7rem; color: var(--ivory-2); padding-left: 1.6rem; border-left: 1px solid var(--line-2); transition: color .3s; }
.header-ig:hover { color: var(--ivory); }
.ig-follow { display: flex; flex-direction: column; font: 500 .72rem/1.25 var(--sans); letter-spacing: .06em; }
.ig-follow small { font-size: .56rem; letter-spacing: .26em; text-transform: uppercase; color: var(--stone); }
.menu-toggle { display: none; width: 48px; height: 48px; position: relative; margin-right: -12px; }
.menu-toggle__lines, .menu-toggle__lines::before, .menu-toggle__lines::after {
  position: absolute; left: 12px; width: 24px; height: 1px; background: var(--ivory); content: "";
}
.menu-toggle__lines { top: 50%; }
.menu-toggle__lines::before { top: -7px; left: 0; }
.menu-toggle__lines::after { top: 7px; left: 0; width: 16px; }

/* Mega menu ----------------------------------------------------------------- */
.mega {
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--charcoal);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  box-shadow: 0 40px 80px rgba(0, 0, 0, .55);
  opacity: 0; transform: translateY(-6px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.mega.is-open { opacity: 1; transform: none; }
.mega__inner {
  max-width: 1600px; margin-inline: auto; padding: 3.2rem var(--gutter) 3.6rem;
  display: grid; grid-template-columns: 1.45fr repeat(4, 1fr); gap: 0;
}
.mega__feature {
  position: relative; padding-right: 3rem; margin-right: 3rem; border-right: 1px solid var(--line);
  display: flex; flex-direction: column; justify-content: center; min-height: 220px; overflow: hidden;
}
.mega__leaf { position: absolute; left: -20px; top: -40px; width: 150px; opacity: .22; transform: rotate(-28deg); filter: saturate(.8); }
.mega__quote { position: relative; font-size: 1.95rem; font-style: italic; font-weight: 300; line-height: 1.2; margin: 0; padding-left: 5.5rem; }
.mega__feature .rule { margin-left: 5.5rem; }
.mega__col { padding: .2rem 2rem 0; border-left: 1px solid var(--line); transition: opacity .35s; }
.mega__col:nth-child(2) { border-left: 0; padding-left: 0; }
.mega.has-focus .mega__col:not(.is-active) { opacity: .5; }
.mega.has-focus .mega__col:hover { opacity: 1; }
.mega__heading { font: 500 .7rem/1 var(--sans); letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.6rem; }
.mega__col li + li { margin-top: .9rem; }
.mega__col a { font-size: 1.12rem; color: var(--ivory-2); display: inline-block; position: relative; transition: color .25s; }
.mega__col a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 100%; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.mega__col a:hover, .mega__col a:focus-visible { color: var(--ivory); }
.mega__col a:hover::after, .mega__col a:focus-visible::after { transform: scaleX(1); }

/* Mobile menu --------------------------------------------------------------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 150; background: var(--ink);
  display: flex; flex-direction: column; overflow-y: auto; overscroll-behavior: contain;
  padding: 0 var(--gutter) 2.5rem;
  opacity: 0; transition: opacity .35s var(--ease);
}
.mobile-menu.is-open { opacity: 1; }
.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; height: var(--hh); flex: none; }
.mobile-menu__top .brand__title { font-size: 1.2rem; }
.mobile-menu__top .brand__sub { font-size: .9rem; }
.menu-close { width: 48px; height: 48px; display: grid; place-items: center; margin-right: -12px; }
.mobile-menu__nav { margin-top: 1.5rem; border-top: 1px solid var(--line); }
.acc { border-bottom: 1px solid var(--line); }
.acc__h { margin: 0; }
.acc__btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.35rem 0; font-family: var(--serif); font-size: 2rem; font-weight: 300;
  letter-spacing: .08em; text-transform: uppercase; text-align: left;
}
.acc__icon { position: relative; width: 16px; height: 16px; }
.acc__icon::before, .acc__icon::after { content: ""; position: absolute; left: 0; top: 50%; width: 16px; height: 1px; background: var(--gold); transition: transform .35s var(--ease); }
.acc__icon::after { transform: rotate(90deg); }
.acc__btn[aria-expanded="true"] .acc__icon::after { transform: rotate(0); }
.acc__panel { padding: 0 0 1.4rem; }
.acc__panel li a { display: block; padding: .7rem 0 .7rem 1rem; border-left: 1px solid var(--line-2); font-size: 1.3rem; color: var(--ivory-2); }
.acc__panel li a:hover { color: var(--ivory); border-color: var(--gold); }
.mobile-menu__foot { margin-top: auto; padding-top: 2.5rem; display: grid; gap: 1.4rem; }
.mobile-menu__foot .btn { width: 100%; }
.mobile-ig { display: inline-flex; align-items: center; gap: .7rem; font: 500 .85rem/1 var(--sans); letter-spacing: .06em; color: var(--ivory-2); min-height: 44px; }
.mobile-menu__quote { font-style: italic; color: var(--stone); font-size: 1.25rem; margin: 0; }
body.menu-open { overflow: hidden; }

/* 7. LEAVES, COVER, PLACEHOLDERS ----------------------------------------- */
.leaves { display: flex; align-items: flex-end; gap: clamp(.8rem, 1.6vw, 1.5rem); }
.leaf { width: clamp(38px, 4.2vw, 62px); height: auto; filter: drop-shadow(0 14px 16px rgba(0, 0, 0, .55)); transform-origin: 50% 96%; }
.leaves--hero .leaf { width: clamp(44px, 4.8vw, 70px); }
.leaves--hero .leaf:nth-child(1) { transform: rotate(-4deg); }
.leaves--hero .leaf:nth-child(2) { transform: rotate(2deg) translateY(-6px); }
.leaves--hero .leaf:nth-child(3) { transform: rotate(-2deg); }
.leaves--hero .leaf:nth-child(4) { transform: rotate(5deg) translateY(-4px); }
.leaves--xs .leaf { width: 22px; filter: none; }
.leaves--xs { gap: .55rem; margin-top: 1.6rem; }
.leaves--sm .leaf { width: 34px; }
.leaves--lg .leaf { width: clamp(56px, 7vw, 100px); }
.leaf-accent { position: absolute; pointer-events: none; width: 120px; opacity: .14; }

/* Book cover: placeholder frame (no invented design) or the real cover */
.cover { position: relative; aspect-ratio: 2 / 3; width: 100%; box-shadow: 0 30px 60px rgba(0, 0, 0, .6), 0 6px 14px rgba(0, 0, 0, .5); }
.cover__img { width: 100%; height: 100%; object-fit: cover; }
.cover--placeholder { background: linear-gradient(135deg, #1d1c1a, #121210); border: 1px solid rgba(243, 238, 228, .14); }
.cover__spine { position: absolute; left: 0; top: 0; bottom: 0; width: 9%; background: linear-gradient(90deg, rgba(0, 0, 0, .45), rgba(255, 255, 255, .03) 60%, rgba(0, 0, 0, .2)); }
.cover__inner {
  position: absolute; inset: 8% 8% 8% 15%; border: 1px dashed rgba(217, 199, 160, .45);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 1rem;
}
.cover__label { font: 500 .62rem/1.5 var(--sans); letter-spacing: .26em; text-transform: uppercase; color: var(--sand); }
.cover__rule { width: 28px; height: 1px; background: var(--gold); margin: .9rem 0; }
.cover__note { font-size: .95rem; font-style: italic; color: var(--stone); line-height: 1.3; }

/* Image placeholder frame (portrait, author photos) */
.ph-frame {
  position: relative; width: 100%; aspect-ratio: 4 / 5;
  background:
    radial-gradient(ellipse at 50% 35%, rgba(183, 154, 98, .08), transparent 60%),
    linear-gradient(160deg, var(--charcoal-3), var(--ink-2));
  border: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .8rem; text-align: center; padding: 2rem;
}
.ph-frame::before { content: ""; position: absolute; inset: 1.1rem; border: 1px dashed rgba(217, 199, 160, .25); pointer-events: none; }
.ph-frame__label { font: 500 .68rem/1.4 var(--sans); letter-spacing: .28em; text-transform: uppercase; color: var(--sand); }
.ph-frame__note { font-style: italic; color: var(--stone); font-size: 1.05rem; }

/* Discreet tag on temporary photographs. Hide all tags by removing 'placeholder' in images.php */
.ph-tag {
  position: absolute; right: .8rem; bottom: .8rem; z-index: 3;
  font: 500 .56rem/1 var(--sans); letter-spacing: .2em; text-transform: uppercase;
  color: rgba(243, 238, 228, .72); background: rgba(11, 11, 10, .6); padding: .5em .8em; pointer-events: none; white-space: nowrap;
}

/* 8. HOMEPAGE HERO ---------------------------------------------------------- */
.hero {
  position: relative; min-height: max(680px, 100svh); max-height: 1100px;
  display: flex; align-items: center; overflow: hidden;
  background: var(--ink);
}
.hero__media { position: absolute; top: 0; right: 0; bottom: 0; width: 68%; }
.hero__img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 50%; }
.hero__media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, var(--ink) 0%, rgba(11, 11, 10, .82) 14%, rgba(11, 11, 10, .25) 42%, rgba(11, 11, 10, 0) 65%),
    linear-gradient(0deg, var(--ink) 0%, rgba(11, 11, 10, 0) 26%);
}
.hero__book {
  position: absolute; z-index: 2; right: 17%; bottom: 7%;
  width: clamp(130px, 12vw, 205px);
  transform: perspective(1400px) rotateX(10deg) rotateY(-18deg) rotateZ(-2deg);
  transform-origin: 50% 100%;
}
.hero__book::after { /* contact shadow on the stone */
  content: ""; position: absolute; left: -8%; right: -30%; bottom: -7%; height: 16%;
  background: radial-gradient(ellipse at 45% 40%, rgba(0, 0, 0, .75), rgba(0, 0, 0, 0) 70%);
  z-index: -1; filter: blur(4px);
}
.hero__content { position: relative; z-index: 2; padding: calc(var(--hh) + 3rem) var(--gutter) 4rem; max-width: calc(560px + var(--gutter) * 2); }
.hero__title { font-weight: 300; }
.hero__line {
  display: block; font-size: clamp(3.2rem, 2rem + 4.6vw, 6.4rem); line-height: .96;
  letter-spacing: .06em; text-transform: uppercase;
}
.hero__sub { display: block; font-size: clamp(1.3rem, 1rem + 1vw, 1.9rem); letter-spacing: .03em; color: var(--ivory-2); margin-top: 1.1rem; font-weight: 400; }
.leaves--hero { margin-top: 2.6rem; }
.hero__statement { font-size: clamp(1.55rem, 1.2rem + 1.1vw, 2.2rem); font-style: italic; font-weight: 300; line-height: 1.25; margin-bottom: 2.4rem; max-width: 17em; }
.hero__small { margin: 2.6rem 0 0; font: 500 .66rem/1.6 var(--sans); letter-spacing: .3em; text-transform: uppercase; color: var(--gold); }
.hero__vertical {
  position: absolute; z-index: 2; right: var(--gutter); top: 40%;
  font: 500 .66rem/1 var(--sans); letter-spacing: .34em; text-transform: uppercase; color: var(--ivory-2);
  display: grid; gap: 1.1rem;
}
.hero__vertical::after { content: ""; width: 32px; height: 1px; background: var(--gold); margin-top: .8rem; }

/* 9. EDITORIAL SECTIONS --------------------------------------------------- */
.book-intro { background: linear-gradient(180deg, var(--ink), var(--ink-2)); }
.book-intro .statement { font-size: clamp(2.2rem, 1.4rem + 3vw, 4.4rem); }

.section-head { text-align: center; margin-bottom: clamp(3rem, 6vw, 5rem); }
.section-head .eyebrow { justify-content: center; }
.section-head__title { font-size: clamp(1.9rem, 1.4rem + 1.8vw, 3rem); font-weight: 300; font-style: italic; margin: 0; }

/* Quotes */
.quote blockquote p { font-size: var(--fs-quote); font-weight: 300; font-style: italic; line-height: 1.2; margin: 0; }
.quote figcaption { margin-top: 1.6rem; font: 500 .7rem/1 var(--sans); letter-spacing: .3em; text-transform: uppercase; color: var(--gold); }
.quote .share { margin-top: 1.4rem; }
.quote--center { text-align: center; max-width: 980px; margin: clamp(2.5rem, 5vw, 4.5rem) auto 2.5rem; }
.quote--center figcaption { display: flex; align-items: center; justify-content: center; gap: 1em; }
.quote--center figcaption::before { content: ""; width: 28px; height: 1px; background: var(--gold); }
.quote--center .share { display: flex; justify-content: center; }

/* The hearts timeline */
.hearts { background: var(--ink-2); }
.timeline { position: relative; padding: 1rem 0; }
.timeline__list {
  position: relative; display: grid; grid-template-columns: repeat(5, 1fr) 70px; align-items: start;
}
.timeline__list::before { /* the hands held across time */
  content: ""; position: absolute; left: 10%; right: 35px; top: 26px; height: 1px;
  background: linear-gradient(90deg, rgba(116, 81, 59, .7), rgba(183, 154, 98, .8) 40%, rgba(168, 66, 50, .7) 70%, rgba(243, 238, 228, .8));
  transform-origin: left; transform: scaleX(0); transition: transform 2.4s var(--ease) .2s;
}
.timeline.is-visible .timeline__list::before, .no-reveal .timeline__list::before { transform: scaleX(1); }
.t-node { position: relative; text-align: center; display: flex; flex-direction: column; align-items: center; }
.t-node__btn {
  position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 1.1rem;
  padding: 0 1.1rem; background: var(--ink-2); cursor: default;
}
.heart { width: 52px; height: 49px; overflow: visible; }
.heart path { fill: var(--hc); fill-opacity: var(--fo); stroke: var(--hc); stroke-width: 1; transition: fill-opacity .6s var(--ease), transform .6s var(--ease); transform-origin: 50% 60%; }
.t-node:nth-child(1) { --hc: #8a7a6c; --fo: .04; }
.t-node:nth-child(2) { --hc: #9a7456; --fo: .1;  }
.t-node:nth-child(3) { --hc: #b79a62; --fo: .16; }
.t-node:nth-child(4) { --hc: #b0604f; --fo: .22; }
.t-node:nth-child(5) { --hc: #e8dcc4; --fo: .34; }
.t-node__age { font-family: var(--serif); font-size: clamp(2rem, 1.4rem + 1.5vw, 3rem); font-weight: 300; line-height: 1; color: var(--ivory); }
.t-node__frag {
  margin: 1.4rem 0 0; max-width: 13em; min-height: 4.5em;
  opacity: 0; transform: translateY(6px); transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.t-node__label { display: block; font: 500 .64rem/1.5 var(--sans); letter-spacing: .24em; text-transform: uppercase; color: var(--gold); margin-bottom: .35rem; }
.t-node__text { display: block; font-style: italic; color: var(--stone); font-size: 1.1rem; line-height: 1.35; }
.t-node:hover .t-node__frag, .t-node:focus-within .t-node__frag, .t-node.is-active .t-node__frag { opacity: 1; transform: none; }
.t-node:hover .heart path, .t-node:focus-within .heart path, .t-node.is-active .heart path { fill-opacity: calc(var(--fo) + .3); }
.t-node--end { color: var(--ivory); padding-top: 22px; align-items: flex-start; }
.t-node--end .i-arrow { width: 34px; height: 12px; }
/* Timeline reveal: nodes arrive one at a time */
.js .timeline .t-node { opacity: 0; transform: translateY(10px); transition: opacity 1s var(--ease), transform 1s var(--ease); transition-delay: calc(var(--n, 5) * .25s + .3s); }
.js .timeline.is-visible .t-node { opacity: 1; transform: none; }

/* Compassion: typography and negative space */
.compassion { overflow: hidden; background: radial-gradient(ellipse at 80% 40%, #161614, var(--ink) 65%); }
.compassion__inner { max-width: 1180px; }
.compassion__leaf { right: 6%; top: 14%; width: clamp(120px, 14vw, 220px); opacity: .1; transform: rotate(22deg); }
.compassion__lines p { font-size: clamp(1.6rem, 1.1rem + 1.7vw, 2.7rem); font-weight: 300; line-height: 1.3; max-width: 22em; margin-bottom: 1.4em; }
.compassion__lines .indent { margin-left: clamp(0rem, 8vw, 9rem); font-style: italic; color: var(--ivory-2); }
.compassion__lines .indent-2 { margin-left: clamp(0rem, 16vw, 18rem); color: var(--stone); }

/* Recovery */
.recovery { display: grid; grid-template-columns: 1fr 1fr; padding: 0; min-height: 88vh; background: var(--ink); }
.recovery__media { position: relative; overflow: hidden; }
.recovery__media img { width: 100%; height: 100%; object-fit: cover; }
.recovery__text { padding: var(--section) var(--gutter); display: flex; flex-direction: column; justify-content: center; max-width: 760px; }
.recovery .quote blockquote p { font-size: clamp(1.8rem, 1.2rem + 1.8vw, 3rem); }
.recovery .quote { margin-bottom: 2.4rem; }
.recovery .muted { font-size: var(--fs-body); max-width: 30em; }

/* Monograph plates */
.monograph { padding-bottom: calc(var(--section) * .8); }
.plate { position: relative; overflow: hidden; background: var(--charcoal); }
.plate img { width: 100%; height: 100%; object-fit: cover; }
.plate--full { height: clamp(420px, 70vw, 88vh); }
.plate figcaption, .plate-cap {
  font: 500 .64rem/1.6 var(--sans); letter-spacing: .24em; text-transform: uppercase; color: var(--stone);
  padding: 1rem 0 0;
}
.monograph__row { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 7vw, 8rem); align-items: end; margin-top: clamp(4rem, 8vw, 7rem); }
.monograph__quote blockquote p { font-size: clamp(1.8rem, 1.2rem + 1.8vw, 2.9rem); }
.monograph__quote p:last-child { margin-top: 2.4rem; }
.plate--small { aspect-ratio: 4 / 5; }

/* 10. EDITORIAL PANELS ------------------------------------------------------ */
.panels { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.panels__list { display: grid; grid-template-columns: repeat(5, 1fr); }
.panel { position: relative; height: clamp(380px, 34vw, 540px); border-left: 1px solid var(--line); overflow: hidden; }
.panel:first-child { border-left: 0; }
.panel__link { position: absolute; inset: 0; display: block; }
.panel__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 2.4s var(--ease), filter 1.2s; filter: brightness(.85) saturate(.9); }
.panel__link:hover .panel__img, .panel__link:focus-visible .panel__img { transform: scale(1.035); filter: brightness(.95) saturate(1); }
.panel__shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8, 8, 7, .92) 0%, rgba(8, 8, 7, .45) 42%, rgba(8, 8, 7, 0) 70%); }
.panel__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 2rem clamp(1.2rem, 2vw, 2.2rem) 2.2rem; display: flex; flex-direction: column; gap: .7rem; }
.panel__title { font-family: var(--serif); font-size: clamp(1.3rem, 1rem + .7vw, 1.65rem); letter-spacing: .14em; text-transform: uppercase; line-height: 1.15; }
.panel__text { color: var(--ivory-2); font-size: 1.1rem; line-height: 1.35; max-width: 16em; }
.panel__cta { display: inline-flex; align-items: center; gap: .8em; margin-top: .6rem; font: 500 .64rem/1 var(--sans); letter-spacing: .24em; text-transform: uppercase; color: var(--gold-2); }
.panel__link:focus-visible { outline-offset: -6px; }

/* Future self teaser */
.future-teaser { background: linear-gradient(180deg, var(--ink-2), var(--ink)); }
.future-teaser .eyebrow { justify-content: center; }
.future-teaser .statement { margin-bottom: 3rem; }

/* 11. WILLIAM, FIFTY, FOLLOW ---------------------------------------------- */
.portrait { position: relative; }
.portrait img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.about-teaser .display-h { margin-bottom: 2rem; }
.fifty { display: flex; align-items: center; gap: 1.2rem; font-family: var(--serif); font-style: italic; font-weight: 300; color: var(--sand); font-size: 2.6rem; line-height: 1; margin: 2rem 0; }
.fifty__line { width: 64px; height: 1px; background: var(--gold); }
.fifty .i-arrow { width: 30px; height: 14px; }
.fifty--lg { font-size: clamp(3rem, 2rem + 3vw, 5rem); }
.fifty--lg .i-arrow { width: 50px; height: 20px; }

.follow { padding-block: calc(var(--section) * .8); background: var(--charcoal); border-top: 1px solid var(--line); }
.follow__inner { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.follow__quote { font-size: clamp(2rem, 1.4rem + 2vw, 3.2rem); font-style: italic; font-weight: 300; line-height: 1.15; margin-bottom: 1rem; }
.follow__lede { color: var(--stone); margin-bottom: 2.2rem; }
.follow__strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: .6rem; }
.follow__strip li { aspect-ratio: 4 / 5; overflow: hidden; background: var(--charcoal-2); }
.follow__strip li:nth-child(even) { margin-top: 2.5rem; }
.follow__strip img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.85); }

/* 12. SHARE --------------------------------------------------------------- */
.share { position: relative; display: inline-block; }
.share__toggle {
  display: inline-flex; align-items: center; gap: .6em; min-height: 44px; padding: 0 .2rem;
  font: 500 .64rem/1 var(--sans); letter-spacing: .26em; text-transform: uppercase; color: var(--stone);
  transition: color .3s;
}
.share__toggle:hover, .share__toggle[aria-expanded="true"] { color: var(--ivory); }
.share__menu {
  position: absolute; z-index: 30; left: 0; top: calc(100% + 4px); min-width: 200px;
  background: var(--charcoal-2); border: 1px solid var(--line-2); box-shadow: 0 20px 40px rgba(0, 0, 0, .5);
  padding: .5rem 0; text-align: left;
}
.quote--center .share__menu { left: 50%; transform: translateX(-50%); }
.share__menu a, .share__menu button {
  width: 100%; display: flex; align-items: center; gap: .8rem; padding: .7rem 1.1rem;
  font: 400 .8rem/1.2 var(--sans); letter-spacing: .04em; color: var(--ivory-2); text-align: left;
}
.share__menu a:hover, .share__menu button:hover, .share__menu a:focus-visible, .share__menu button:focus-visible { background: var(--charcoal-3); color: var(--ivory); outline-offset: -2px; }
.share__menu .icon { color: var(--gold); }

/* 13. INTERIOR PAGES --------------------------------------------------------- */
.page-hero {
  position: relative; min-height: clamp(460px, 72vh, 780px); display: flex; align-items: flex-end;
  padding: calc(var(--hh) + 4rem) 0 clamp(3.5rem, 7vw, 6rem); overflow: hidden; background: var(--ink);
}
.page-hero--text { min-height: clamp(380px, 56vh, 560px); background: radial-gradient(ellipse at 70% 30%, #181816, var(--ink) 70%); }
.page-hero__media { position: absolute; inset: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, var(--ink) 2%, rgba(11, 11, 10, .55) 45%, rgba(11, 11, 10, .35) 100%); }
.page-hero__inner { position: relative; z-index: 2; }
.page-hero h1 { font-size: var(--fs-display); font-weight: 300; text-transform: uppercase; letter-spacing: .04em; line-height: 1; max-width: 12em; }
.page-hero .lede { margin: 1.8rem 0 0; max-width: 30em; color: var(--ivory-2); font-style: italic; }
.page-hero .leaf-accent { right: var(--gutter); bottom: 12%; width: 110px; opacity: .3; transform: rotate(18deg); }

.chapter { padding-block: var(--section); border-top: 1px solid rgba(243, 238, 228, .05); }
.chapter:first-of-type { border-top: 0; }
.chapter__grid { display: grid; grid-template-columns: minmax(180px, 1fr) 3fr; gap: clamp(2rem, 6vw, 6rem); }
.chapter__aside { position: relative; }
.chapter__num { font-family: var(--serif); font-size: 4.5rem; font-weight: 300; font-style: italic; line-height: 1; color: rgba(217, 199, 160, .35); display: block; margin-top: 1rem; }

/* Collection of hearts list */
.collection { counter-reset: h; border-top: 1px solid var(--line); margin-top: 2rem; }
.collection li { display: grid; grid-template-columns: 4rem 1fr; align-items: baseline; padding: 1.3rem 0; border-bottom: 1px solid var(--line); font-size: clamp(1.5rem, 1.1rem + 1.2vw, 2.3rem); font-weight: 300; }
.collection li::before { counter-increment: h; content: counter(h, upper-roman); font: 500 .66rem/1 var(--sans); letter-spacing: .2em; color: var(--gold); }
.collection li:last-child { font-style: italic; color: var(--sand); }

/* Passages (excerpts, reflections) */
.passages { display: grid; gap: 0; }
.passage { padding: clamp(3rem, 6vw, 5rem) 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 3fr; gap: 2rem; }
.passage__meta { font: 500 .64rem/1.8 var(--sans); letter-spacing: .24em; text-transform: uppercase; color: var(--gold); }
.passage blockquote p { font-size: clamp(1.7rem, 1.2rem + 1.6vw, 2.7rem); font-weight: 300; font-style: italic; line-height: 1.22; margin: 0 0 1rem; }

/* A book page: excerpt reading surface */
.book-page {
  max-width: 44rem; margin-inline: auto; padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4.5rem);
  background: linear-gradient(180deg, #151513, #121210); border: 1px solid var(--line);
  box-shadow: 0 40px 80px rgba(0, 0, 0, .45);
}
.book-page__head { text-align: center; margin-bottom: 3rem; }
.book-page__head .eyebrow { justify-content: center; margin-bottom: 1rem; }
.book-page__title { font-size: clamp(1.9rem, 1.4rem + 1.4vw, 2.6rem); font-style: italic; font-weight: 300; }
.book-page__body p { font-size: 1.32rem; line-height: 1.75; color: var(--ivory-2); text-indent: 1.5em; margin: 0; }
.book-page__body p:first-child { text-indent: 0; }
.book-page__body p:first-child::first-letter { float: left; font-size: 4.4em; line-height: .8; padding: .08em .1em 0 0; color: var(--sand); font-weight: 300; }
.book-page__foot .eyebrow { margin: 0; }
.book-page__foot { margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.notice {
  font: 400 .85rem/1.6 var(--sans); color: var(--stone); letter-spacing: .01em;
  border-left: 1px solid var(--gold); padding: .3rem 0 .3rem 1.1rem; margin: 0 0 2rem; max-width: 40em;
}
.notice strong { color: var(--sand); font-weight: 500; }
.notice--center { margin-inline: auto; max-width: 50rem; }
.center .leaves { justify-content: center; }

/* Gallery (photography page) */
.gallery { display: grid; gap: clamp(4rem, 9vw, 9rem); padding-block: var(--section); }
.gallery__item { position: relative; }
.gallery__item .plate { aspect-ratio: 3 / 2; }
.gallery__item--full .plate { aspect-ratio: auto; height: clamp(420px, 66vw, 92vh); }
.gallery__item--narrow { max-width: 780px; margin-inline: auto; width: calc(100% - var(--gutter) * 2); }
.gallery__item--narrow .plate { aspect-ratio: 4 / 5; }
.gallery__pair { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 3vw, 3rem); align-items: end; }
.gallery__pair .plate:first-child { aspect-ratio: 4 / 5; }
.gallery__pair > :last-child { margin-bottom: 12%; }
.gallery__cap { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-top: .6rem; }
.gallery__cap .plate-cap { padding: 0; }
.gallery__item--full .gallery__cap { padding-inline: var(--gutter); }

/* Q&A */
.qa { border-top: 1px solid var(--line); }
.qa__item { border-bottom: 1px solid var(--line); }
.qa__q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 2rem; padding: 1.6rem 0; text-align: left; font-size: clamp(1.35rem, 1.1rem + .8vw, 1.8rem); font-weight: 400; }
.qa__a { padding: 0 0 2rem; color: var(--stone); font-style: italic; }

/* 14. FORMS ----------------------------------------------------------------- */
.field { display: grid; gap: .6rem; margin-bottom: 2rem; }
.field label, .field legend { font: 500 .68rem/1.4 var(--sans); letter-spacing: .24em; text-transform: uppercase; color: var(--gold); padding: 0; }
.field input[type="text"], .field input[type="email"], .field select, .field textarea {
  width: 100%; background: transparent; color: var(--ivory);
  border: 0; border-bottom: 1px solid var(--line-2); border-radius: 0;
  padding: .8rem 0; font-family: var(--serif); font-size: 1.35rem; transition: border-color .3s;
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 12px) 55%, calc(100% - 6px) 55%; background-size: 6px 6px; background-repeat: no-repeat; }
.field select option { background: var(--charcoal); }
.field textarea { min-height: 12rem; resize: vertical; line-height: 1.6; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--gold-2); }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { box-shadow: 0 1px 0 0 var(--gold-2); }
.field .hint { font: 400 .8rem/1.5 var(--sans); color: var(--stone-2); }
.hp { position: absolute; left: -9999px; } /* honeypot */
fieldset { border: 0; margin: 0; padding: 0; min-width: 0; }

/* For Your Future Self: the letter */
.letter {
  position: relative; max-width: 50rem; margin-inline: auto;
  background: linear-gradient(180deg, #1b1a17, #141311); border: 1px solid rgba(217, 199, 160, .16);
  padding: clamp(2rem, 6vw, 4.5rem); box-shadow: 0 50px 100px rgba(0, 0, 0, .5);
}
.letter__date { font: 500 .64rem/1 var(--sans); letter-spacing: .26em; text-transform: uppercase; color: var(--stone); margin-bottom: 2.2rem; }
.letter__salutation { font-size: 2rem; font-style: italic; font-weight: 300; margin-bottom: 1rem; }
.letter textarea {
  width: 100%; min-height: 22rem; border: 0; background: transparent; color: var(--ivory); resize: vertical;
  font-family: var(--serif); font-size: 1.45rem; line-height: 2.2rem; padding: 0;
  background-image: repeating-linear-gradient(180deg, transparent 0, transparent calc(2.2rem - 1px), rgba(243, 238, 228, .08) calc(2.2rem - 1px), rgba(243, 238, 228, .08) 2.2rem);
  background-attachment: local;
}
.letter textarea::placeholder { color: rgba(169, 163, 152, .6); font-style: italic; }
.letter textarea:focus { outline: none; }
.letter textarea:focus-visible { box-shadow: 0 0 0 1px rgba(217, 199, 160, .3); }
.letter__count { text-align: right; font: 400 .74rem/1 var(--sans); color: var(--stone-2); margin-top: .6rem; }
.letter__row { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-top: 2.8rem; align-items: end; }
.choice { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: .9rem; }
.choice input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.choice label {
  min-height: 46px; display: inline-flex; align-items: center; padding: 0 1.2rem; cursor: pointer;
  border: 1px solid var(--line-2); font-family: var(--serif); font-size: 1.15rem; letter-spacing: .02em; text-transform: none; color: var(--ivory-2);
  transition: border-color .3s, background-color .3s, color .3s;
}
.choice input:checked + label { border-color: var(--sand); color: var(--ink); background: var(--sand); }
.choice input:focus-visible + label { outline: 1px solid var(--gold-2); outline-offset: 3px; }
.letter__actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; margin-top: 2.8rem; }
.letter__status { margin-top: 2rem; }
.letter__status[hidden] { display: none; }

/* 15. BUY / PRESS / MEDIA KIT -------------------------------------------- */
.buy { display: grid; grid-template-columns: minmax(240px, 380px) 1fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.buy__cover { position: sticky; top: calc(var(--hh) + 2rem); }
.formats { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line-2); margin: 1.4rem 0 3rem; }
.formats input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.formats label { display: flex; flex-direction: column; gap: .4rem; padding: 1.2rem 1.1rem; cursor: pointer; border-left: 1px solid var(--line-2); transition: background-color .3s, color .3s; min-height: 88px; justify-content: center; }
.formats > div:first-child label { border-left: 0; }
.formats .f-name { font: 500 .7rem/1 var(--sans); letter-spacing: .22em; text-transform: uppercase; }
.formats .f-price { font-style: italic; color: var(--stone); font-size: 1.05rem; }
.formats input:checked + label { background: var(--ivory); color: var(--ink); }
.formats input:checked + label .f-price { color: #4a463f; }
.formats input:focus-visible + label { outline: 1px solid var(--gold-2); outline-offset: -4px; }
.retailers { border-top: 1px solid var(--line); }
.retailer { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.15rem 0; border-bottom: 1px solid var(--line); }
.retailer__name { font-size: 1.45rem; }
.retailer__status { font: 400 .74rem/1 var(--sans); letter-spacing: .08em; color: var(--stone-2); }
.details { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 2rem; margin-top: 3.5rem; border-top: 1px solid var(--line); }
.details div { padding: 1rem 0; border-bottom: 1px solid var(--line); }
.details dt { font: 500 .62rem/1 var(--sans); letter-spacing: .24em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.details dd { margin: 0; color: var(--ivory-2); }
.details dd.tba { color: var(--stone-2); font-style: italic; }

.kit-nav { display: flex; flex-wrap: wrap; gap: .4rem 1.8rem; padding: 1.4rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.kit-nav a { font: 500 .68rem/2 var(--sans); letter-spacing: .22em; text-transform: uppercase; color: var(--stone); }
.kit-nav a:hover { color: var(--ivory); }
.downloads { border-top: 1px solid var(--line); }
.download { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.download__label { font-size: 1.3rem; }
.download__meta { font: 500 .62rem/1 var(--sans); letter-spacing: .2em; color: var(--stone-2); margin-left: .8rem; }
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin: 2rem 0; }
.bio-box { border: 1px solid var(--line); padding: clamp(1.5rem, 4vw, 3rem); margin-bottom: 2rem; }
.bio-box .eyebrow { margin-bottom: 1.2rem; }
.bio-box__foot { display: flex; justify-content: flex-end; }
.copy-btn { display: inline-flex; align-items: center; gap: .6em; min-height: 44px; font: 500 .64rem/1 var(--sans); letter-spacing: .24em; text-transform: uppercase; color: var(--stone); }
.copy-btn:hover { color: var(--ivory); }
.topics { columns: 2; column-gap: 3rem; }
.topics li { break-inside: avoid; padding: 1rem 0; border-bottom: 1px solid var(--line); font-size: 1.3rem; }
.empty-state { padding: 2.5rem; border: 1px dashed rgba(217, 199, 160, .25); color: var(--stone); font-style: italic; text-align: center; }

/* 16. FOOTER ------------------------------------------------------------------ */
.site-footer { background: var(--ink-2); border-top: 1px solid var(--line); }
.site-footer__top {
  display: grid; grid-template-columns: 1fr 1.15fr 2.5fr; gap: clamp(2rem, 4vw, 4.5rem);
  padding-top: clamp(4rem, 8vw, 6.5rem); padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
}
.site-footer__center { border-left: 1px solid var(--line); border-right: 1px solid var(--line); padding-inline: clamp(1.5rem, 3vw, 3rem); }
.footer-quote { font-size: clamp(1.9rem, 1.4rem + 1.1vw, 2.5rem); font-style: italic; font-weight: 300; color: var(--sand); line-height: 1.1; margin: 0; }
.site-footer__nav { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
.fcol__h { font: 500 .66rem/1 var(--sans); letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.3rem; }
.fcol li + li { margin-top: .55rem; }
.fcol a { color: var(--stone); font-size: 1.08rem; transition: color .25s; }
.fcol a:hover { color: var(--ivory); }
.fcol__handle { font-style: italic; }
.site-footer__bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  padding-top: 1.6rem; padding-bottom: 1.8rem; border-top: 1px solid var(--line);
  font: 400 .74rem/1.4 var(--sans); color: var(--stone-2); letter-spacing: .02em;
}
.site-footer__bottom p { margin: 0; }
.legal { display: flex; flex-wrap: wrap; gap: 0; }
.legal li + li::before { content: "|"; color: var(--line-2); margin: 0 .9rem; }
.legal a:hover { color: var(--ivory); }

/* 17. MOTION ---------------------------------------------------------------- */
/* Gentle text fade and slow image reveal. Added by main.js via IntersectionObserver. */
.js [data-reveal] { opacity: 0; transform: translateY(14px); transition: opacity var(--slow) var(--ease), transform var(--slow) var(--ease); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }
.js .timeline[data-reveal] { transform: none; }
.js [data-reveal] .reveal-img, .js [data-reveal].plate img { transform: scale(1.025); transition: transform 2.8s var(--ease); }
.js [data-reveal].is-visible .reveal-img, .js [data-reveal].is-visible.plate img { transform: none; }
.js .follow__strip [data-reveal], .js .follow__strip li { transition-delay: calc(var(--i, 0) * .12s); }

/* Very subtle leaf movement */
@keyframes leaf-sway { 0%, 100% { rotate: 0deg; } 50% { rotate: 1.4deg; } }
.leaves--sway .leaf { animation: leaf-sway 9s ease-in-out infinite; animation-delay: calc(var(--i) * -2.3s); }

/* Hero: soft entrance */
@keyframes rise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.js .hero__content > * { animation: rise 1.4s var(--ease) both; }
.js .hero__content > :nth-child(2) { animation-delay: .25s; }
.js .hero__content > :nth-child(3) { animation-delay: .4s; }
.js .hero__content > :nth-child(4) { animation-delay: .55s; }
.js .hero__content > :nth-child(5) { animation-delay: .7s; }
.js .hero__content > :nth-child(6) { animation-delay: .85s; }
.js .hero__media { animation: fade 2.2s var(--ease) both; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; transition-delay: 0s !important; scroll-behavior: auto !important; }
  .js [data-reveal], .js .timeline .t-node { opacity: 1 !important; transform: none !important; }
  .timeline__list::before { transform: scaleX(1) !important; }
}

/* 18. RESPONSIVE ------------------------------------------------------------- */
@media (max-width: 1280px) {
  .header-ig .ig-follow { display: none; }
  .header-ig { padding-left: 1.2rem; }
  .mega__inner { grid-template-columns: 1fr repeat(4, 1fr); }
  .mega__feature { padding-right: 2rem; margin-right: 2rem; }
  .mega__quote { font-size: 1.7rem; padding-left: 3.5rem; }
  .mega__feature .rule { margin-left: 3.5rem; }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
  .site-footer__nav { grid-column: 1 / -1; }
}

@media (max-width: 1080px) {
  :root { --hh: 72px; }
  .nav, .header-ig, .header-buy { display: none; }
  .menu-toggle { display: block; }
  .site-header__bar { grid-template-columns: 1fr auto; }
  .brand__title { font-size: 1.2rem; }
  .brand__sub { font-size: .88rem; }
  .mega { display: none !important; }

  .panels__list { grid-template-columns: repeat(2, 1fr); }
  .panel { height: 420px; border-top: 1px solid var(--line); }
  .panel:nth-child(odd) { border-left: 0; }
  .panel:last-child { grid-column: 1 / -1; }
  .hero__vertical { display: none; }
  .hero__book { right: 8%; }
}

@media (max-width: 860px) {
  :root { --section: clamp(4.5rem, 14vw, 6rem); }
  .split, .split--wide, .split--portrait, .monograph__row, .follow__inner, .recovery, .buy, .chapter__grid, .passage { grid-template-columns: 1fr; }
  .split { gap: 2.5rem; }

  /* Hero: photograph first, then the words */
  .hero { display: block; min-height: 0; max-height: none; }
  .hero__media { position: relative; width: 100%; height: 62svh; min-height: 380px; }
  .hero__media::after { background: linear-gradient(0deg, var(--ink) 0%, rgba(11, 11, 10, .2) 45%, rgba(11, 11, 10, .55) 100%); }
  .hero__content { padding: 0 var(--gutter) 4.5rem; margin-top: -5.5rem; }
  .hero__book { width: 118px; right: var(--gutter); bottom: 5.5rem; }
  .hero .btn-row .btn { flex: 1 1 100%; }
  .hero .ph-tag { bottom: auto; top: calc(var(--hh) + .5rem); }
  .hero__book { width: 100px; }

  .recovery__media { height: 60vh; }
  .recovery__text { padding-block: 4rem var(--section); }
  .monograph__row { margin-top: 3rem; }
  .plate--full { height: 60vh; }
  .follow__strip { grid-template-columns: repeat(2, 1fr); }
  .follow__strip li:nth-child(even) { margin-top: 0; }
  .compassion__lines .indent, .compassion__lines .indent-2 { margin-left: 0; }
  .compassion__leaf { top: 4%; right: -4%; }

  .gallery__pair { grid-template-columns: 1fr; }
  .gallery__pair > :last-child { margin-bottom: 0; }
  .buy__cover { position: static; max-width: 260px; }
  .formats { grid-template-columns: repeat(2, 1fr); }
  .formats > div:nth-child(3) label { border-left: 0; }
  .formats > div:nth-child(n+3) label { border-top: 1px solid var(--line-2); }
  .letter__row { grid-template-columns: 1fr; gap: 0; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .topics { columns: 1; }
  .chapter__num { font-size: 3rem; }

  .site-footer__top { grid-template-columns: 1fr; }
  .site-footer__center { border: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 2.5rem 0; }
  .site-footer__nav { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }
}

/* Timeline on small screens: horizontal scroll, fragments always visible */
@media (max-width: 760px) {
  .timeline { margin-inline: calc(var(--gutter) * -1); }
  .timeline__list {
    grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 62vw;
    overflow-x: auto; scroll-snap-type: x mandatory; padding: 0 var(--gutter) 1.2rem;
    scrollbar-width: thin; scrollbar-color: var(--charcoal-3) transparent;
  }
  .timeline__list::before { left: calc(var(--gutter) + 31vw); right: auto; width: calc(62vw * 4 + 40px); }
  .t-node { scroll-snap-align: center; }
  .t-node--end { width: 60px; }
  .t-node__frag { opacity: 1; transform: none; }
  .timeline::after { content: "Swipe"; display: block; text-align: center; font: 500 .6rem/1 var(--sans); letter-spacing: .3em; text-transform: uppercase; color: var(--stone-2); margin-top: .8rem; }
}

@media (max-width: 560px) {
  .panels__list { grid-template-columns: 1fr; }
  .panel { height: 340px; border-left: 0; }
  .panel:last-child { grid-column: auto; }
  .hero__line { font-size: clamp(2.7rem, 12.5vw, 3.4rem); }
  .leaves--hero .leaf { width: 48px; }
  .formats { grid-template-columns: 1fr 1fr; }
  .photo-grid { grid-template-columns: 1fr; }
  .retailer { flex-wrap: wrap; }
  .download { flex-wrap: wrap; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
  .legal li + li::before { margin: 0 .6rem; }
  .passage { padding-block: 2.5rem; }
}

/* Print: clean text */
@media print {
  .site-header, .site-footer, .share, .mobile-menu, .hero__media { display: none !important; }
  body { background: #fff; color: #000; }
}

/* Additions: page offsets, Q&A icon, accents */
.page-top { padding-top: calc(var(--hh) + clamp(3rem, 7vw, 6rem)); }
.qa__q[aria-expanded="true"] .acc__icon::after { transform: rotate(0); }
.qa__q:hover { color: var(--sand); }
.qa__leaf { position: static; display: block; width: 64px; opacity: .55; margin-top: 2rem; transform: rotate(-18deg); }
.support { padding-block: 3.5rem; background: var(--ink-2); }
.support a { color: var(--sand); border-bottom: 1px solid rgba(217, 199, 160, .35); }
.support .muted { font-size: 1.1rem; margin: 0; }
.retailer__actions { display: flex; align-items: center; gap: 1.2rem; }
.passage__leaf { position: static; display: block; width: 34px; opacity: .8; margin-top: 1.2rem; }
.buy legend.eyebrow { display: block; padding: 0; }
.notice.mt { margin-top: 2.8rem; }
@media (max-width: 1280px) and (min-width: 861px) { .site-footer__center { border-right: 0; } }
