/* ==========================================================================
   CIRCULAR BY NATURE
   Design system drawn from the white paper.
   Type:   Fraunces (display) + Manrope (text)
   Colour: forest #3A5835, lime #D5DF41, chapter colours from LIVE/EAT/MOVE
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* Brand */
  --forest:        #3A5835;
  --forest-deep:   #2A4226;
  --forest-mid:    #4C6B46;
  --forest-soft:   #6A8463;
  --forest-line:   #CDD6CA;
  --forest-wash:   #EEF2EC;
  --lime:          #D5DF41;
  --lime-deep:     #AFBA2A;

  /* Surfaces */
  --paper:         #FBFAF5;
  --paper-2:       #F3F2EA;
  --white:         #FFFFFF;

  /* Chapter colours, straight from the report */
  --live:      #5DCAEF;  --live-ink: #044F70;  --live-wash: #E7F6FD;
  --eat:       #85CCAA;  --eat-ink:  #04594C;  --eat-wash:  #EBF6F1;
  --move:      #D6E837;  --move-ink: #3A5835;  --move-wash: #F6FADD;

  /* Type */
  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --text:    'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Rhythm */
  --container: 1240px;
  --narrow: 760px;
  --gutter: clamp(20px, 5vw, 64px);
  --section: clamp(64px, 9vw, 132px);
  --section-sm: clamp(44px, 6vw, 84px);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  font-family: var(--text);
  font-size: 17px;
  line-height: 1.68;
  font-weight: 400;
  color: var(--forest);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
/* Pages that open on a dark hero tint the page behind the transparent header,
   so the header reads as part of the hero. Main keeps the paper surface. */
body.has-dark-hero { background: var(--forest); }
main { position: relative; background: var(--paper); }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
::selection { background: var(--lime); color: var(--forest-deep); }

:focus-visible { outline: 2px solid var(--lime-deep); outline-offset: 3px; border-radius: 2px; }
.band--dark :focus-visible, .hero :focus-visible, .footer :focus-visible { outline-color: var(--lime); }

.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 200;
  background: var(--forest); color: var(--paper);
  padding: 12px 18px; border-radius: 3px; font-size: 14px; font-weight: 600;
}
.skip-link:focus { top: 16px; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- 3. Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--display);
  font-weight: 300;
  font-optical-sizing: auto;
  line-height: 1.08;
  letter-spacing: -0.015em;
  text-wrap: balance;
  color: inherit;
}
h1 { font-size: clamp(40px, 6.4vw, 82px); }
h2 { font-size: clamp(31px, 4.2vw, 54px); }
h3 { font-size: clamp(24px, 2.6vw, 34px); line-height: 1.15; }
h4 { font-size: clamp(20px, 2vw, 25px); line-height: 1.22; }
h5 { font-size: clamp(18px, 1.6vw, 21px); line-height: 1.3; }

p { text-wrap: pretty; }
p + p { margin-top: 1.1em; }
strong, b { font-weight: 700; }

.eyebrow {
  font-family: var(--text);
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--forest-soft); display: block; margin-bottom: 18px;
}
.band--dark .eyebrow, .hero .eyebrow { color: var(--lime); }

.lede {
  font-size: clamp(19px, 1.8vw, 23px);
  line-height: 1.55; font-weight: 300; letter-spacing: -0.005em;
  color: var(--forest-mid);
}
.band--dark .lede, .hero .lede { color: rgba(255,255,255,0.86); }

.small { font-size: 14.5px; line-height: 1.6; color: var(--forest-soft); }
.fine  { font-size: 13px; line-height: 1.6; color: var(--forest-soft); }
.band--dark .small, .band--dark .fine { color: rgba(255,255,255,0.7); }

.measure { max-width: 62ch; }

/* ---------- 4. Layout ---------- */
.wrap { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: calc(var(--narrow) + var(--gutter) * 2); }
.section { padding-block: var(--section); }
.section--sm { padding-block: var(--section-sm); }

.grid { display: grid; gap: clamp(24px, 3.4vw, 48px); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid--split { grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); gap: clamp(32px, 6vw, 88px); }
.grid--aside { grid-template-columns: minmax(0, 1fr) minmax(0, 1.55fr); gap: clamp(28px, 5vw, 72px); }

.stack > * + * { margin-top: 20px; }
.stack-sm > * + * { margin-top: 12px; }
.stack-lg > * + * { margin-top: 36px; }

@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--split, .grid--aside { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

.rule { height: 1px; background: var(--forest-line); border: 0; }
.rule--short { width: 64px; height: 2px; background: var(--forest); border: 0; }
.band--dark .rule { background: rgba(255,255,255,0.22); }

/* ---------- 5. Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,250,245,0.9);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.header.is-scrolled { border-bottom-color: var(--forest-line); }
.header--dark { background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
.header--dark.is-scrolled {
  background: rgba(42,66,38,0.94);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom-color: rgba(255,255,255,0.14);
}
.header--dark .nav__link, .header--dark .wordmark { color: var(--paper); }
.header--dark .nav__link::after { background: var(--lime); }
.header--dark .burger span { background: var(--paper); }
.header--dark .btn--ghost { color: var(--paper); border-color: rgba(255,255,255,0.45); }
.header--dark .btn--ghost:hover { background: var(--paper); color: var(--forest); border-color: var(--paper); }

.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 76px; }

.wordmark {
  font-family: var(--display); font-weight: 300; font-size: 19px; line-height: 1.02;
  letter-spacing: -0.01em; color: var(--forest);
  display: flex; flex-direction: column; white-space: nowrap;
}

.nav { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 32px); }
.nav__link {
  position: relative; font-size: 14.5px; font-weight: 500; color: var(--forest); padding-block: 6px;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px;
  background: var(--forest); transform: scaleX(0); transform-origin: left;
  transition: transform .34s var(--ease);
}
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { font-weight: 700; }

.burger { display: none; width: 42px; height: 42px; position: relative; margin-right: -10px; }
.burger span {
  position: absolute; left: 10px; right: 10px; height: 1.5px; background: var(--forest);
  transition: transform .34s var(--ease), opacity .2s var(--ease);
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 27px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 980px) {
  .burger { display: block; }
  .nav {
    position: fixed; inset: 76px 0 auto 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--forest); padding: 12px var(--gutter) 34px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .3s var(--ease), transform .3s var(--ease);
    max-height: calc(100dvh - 76px); overflow-y: auto;
  }
  .nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav__link {
    color: var(--paper); font-size: 20px; font-family: var(--display); font-weight: 300;
    padding-block: 15px; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.14);
  }
  .nav__link::after { display: none; }
  .nav .btn { margin-top: 22px; width: 100%; justify-content: center; }
  .header--dark .nav .btn--ghost { border-color: rgba(255,255,255,.5); }
}

/* ---------- 6. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14.5px; font-weight: 600;
  padding: 13px 24px; border-radius: 100px;
  border: 1.5px solid var(--forest); background: var(--forest); color: var(--paper);
  transition: background .28s var(--ease), color .28s var(--ease), border-color .28s var(--ease), transform .28s var(--ease);
  white-space: nowrap;
}
.btn:hover { background: var(--forest-deep); border-color: var(--forest-deep); transform: translateY(-1px); }
.btn svg { width: 15px; height: 15px; flex: none; transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn--ghost { background: transparent; color: var(--forest); }
.btn--ghost:hover { background: var(--forest); color: var(--paper); }
.btn--lime { background: var(--lime); border-color: var(--lime); color: var(--forest-deep); }
.btn--lime:hover { background: #C6D134; border-color: #C6D134; color: var(--forest-deep); }
.btn--onDark { background: transparent; border-color: rgba(255,255,255,0.45); color: var(--paper); }
.btn--onDark:hover { background: var(--paper); border-color: var(--paper); color: var(--forest); }
.btn--sm { padding: 10px 18px; font-size: 13.5px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14.5px; font-weight: 600;
  padding-bottom: 3px; border-bottom: 1.5px solid currentColor;
  transition: gap .28s var(--ease);
}
.link-arrow:hover { gap: 15px; }
.link-arrow svg { width: 14px; height: 14px; flex: none; }

/* ---------- 7. Hero + ring motif ---------- */
.hero { position: relative; background: var(--forest); color: var(--paper); overflow: hidden; isolation: isolate; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 4; pointer-events: none; opacity: .5;
  background-image:
    radial-gradient(circle at 15% 22%, rgba(255,255,255,.05) .8px, transparent 1.2px),
    radial-gradient(circle at 72% 58%, rgba(255,255,255,.04) .7px, transparent 1.1px),
    radial-gradient(circle at 42% 81%, rgba(0,0,0,.06) .7px, transparent 1.1px);
  background-size: 130px 130px, 90px 90px, 160px 160px;
}
.hero__inner {
  position: relative; z-index: 3;
  display: grid; place-items: center;
  min-height: min(92vh, 880px);
  padding-block: clamp(90px, 13vw, 150px);
  text-align: center;
}
.hero__content { max-width: 660px; }
.hero h1 { color: var(--paper); margin-bottom: 18px; font-size: clamp(38px, 5.4vw, 72px); }
.hero__sub {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(20px, 2.2vw, 27px); color: var(--lime); margin-bottom: 28px;
}
.hero .lede { max-width: 560px; margin-inline: auto; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 40px; }

.ring {
  position: absolute; z-index: 2; top: 50%; left: 50%;
  width: min(148vh, 1360px); aspect-ratio: 1;
  translate: -50% -50%;
  pointer-events: none;
  animation: ring-spin 220s linear infinite;
}
.ring__dot {
  position: absolute; top: 50%; left: 50%;
  width: 9.6%; aspect-ratio: 1; border-radius: 50%;
  margin: -4.8% 0 0 -4.8%;
  opacity: 0; scale: .6;
  animation: dot-in 1s var(--ease) forwards;
}
@keyframes ring-spin { to { rotate: 360deg; } }
@keyframes dot-in { to { opacity: 1; scale: 1; } }

.hero--compact .hero__inner {
  min-height: auto; padding-block: clamp(76px, 11vw, 128px);
  text-align: left; justify-items: start;
}
.hero--compact .hero__content { max-width: 780px; }
.hero--compact .lede { margin-inline: 0; max-width: 620px; }
.hero--compact .hero__actions { justify-content: flex-start; }
.hero--compact .ring { left: auto; right: -12%; translate: 0 -50%; width: min(86vh, 720px); }
@media (max-width: 860px) { .hero--compact .ring { right: -38%; opacity: .5; } }
@media (max-width: 760px) {
  .ring { width: min(128vh, 660px); }
  /* Soft scrim between the ring and the words, so the headline always wins */
  .hero__inner::before {
    content: ""; position: absolute; inset: -6% -10%; z-index: -1;
    background: radial-gradient(ellipse 72% 42% at 50% 50%, rgba(58,88,53,.93) 42%, rgba(58,88,53,0) 76%);
  }
}

/* ---------- 8. Bands ---------- */
.band { position: relative; }
.band--forest { background: var(--forest); color: var(--paper); }
.band--deep   { background: var(--forest-deep); color: var(--paper); }
.band--wash   { background: var(--forest-wash); }
.band--paper2 { background: var(--paper-2); }
.band--white  { background: var(--white); }

.band--image { color: var(--paper); overflow: hidden; isolation: isolate; background: var(--forest-deep); }
.band--image .band__bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.band--image::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(23,42,20,.94) 8%, rgba(23,42,20,.78) 50%, rgba(23,42,20,.5) 100%);
}
.band--image > .wrap { position: relative; z-index: 2; }

.announce { background: var(--lime); color: var(--forest-deep); }
.announce__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 6px 18px; padding-block: 13px; text-align: center; font-size: 14.5px; font-weight: 500;
}
.announce strong { font-weight: 800; }
.announce a { border-bottom: 1.5px solid rgba(42,66,38,.35); font-weight: 700; transition: border-color .25s var(--ease); }
.announce a:hover { border-bottom-color: var(--forest-deep); }

/* ---------- 9. Stats ---------- */
.stats { display: grid; gap: 0; border-top: 1px solid var(--forest-line); }
.stats--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.stats--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.stats--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.stat {
  padding: clamp(24px, 3vw, 38px) clamp(18px, 2vw, 30px) clamp(24px, 3vw, 34px) 0;
  border-bottom: 1px solid var(--forest-line);
  border-right: 1px solid var(--forest-line);
}
.stats--4 .stat:nth-child(4n), .stats--3 .stat:nth-child(3n), .stats--2 .stat:nth-child(2n) { border-right: 0; padding-right: 0; }
.stat__num {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(42px, 5.4vw, 68px); line-height: .96; letter-spacing: -0.03em;
  display: flex; align-items: flex-start; gap: 1px;
}
.stat__num sup {
  font-size: .4em; line-height: 1.15; font-weight: 300; top: 0; position: relative;
}
/* Stacked fraction, as the report sets it */
.frac {
  display: inline-flex; flex-direction: column; align-items: center;
  font-size: .62em; line-height: 1.02; margin-top: .06em;
}
.frac span:first-child { border-bottom: 1.5px solid currentColor; padding: 0 .16em .06em; }
.frac span:last-child { padding-top: .06em; }
.stat__label { margin-top: 16px; font-size: 14.5px; line-height: 1.5; color: var(--forest-mid); max-width: 32ch; }
.stat__src { margin-top: 10px; font-size: 12px; color: var(--forest-soft); }
.band--dark .stats { border-top-color: rgba(255,255,255,0.22); }
.band--dark .stat { border-color: rgba(255,255,255,0.22); }
.band--dark .stat__label { color: rgba(255,255,255,0.8); }
.band--dark .stat__src { color: rgba(255,255,255,0.55); }
.band--dark .stat__num { color: var(--lime); }

/* Centred variant, with even gutters so the dividers stay true */
.stats--center .stat { text-align: center; padding-inline: clamp(14px, 1.8vw, 26px); }
.stats--center.stats--4 .stat:nth-child(4n),
.stats--center.stats--3 .stat:nth-child(3n),
.stats--center.stats--2 .stat:nth-child(2n) { padding-right: clamp(14px, 1.8vw, 26px); }
.stats--center .stat__num { justify-content: center; }
.stats--center .stat__label { margin-inline: auto; }

@media (max-width: 880px) {
  .stats--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats--4 .stat { border-right: 1px solid var(--forest-line); padding-right: clamp(18px,2vw,30px); }
  .stats--4 .stat:nth-child(2n) { border-right: 0; padding-right: 0; }
  .stats--3 { grid-template-columns: 1fr; }
  .stats--3 .stat { border-right: 0; padding-right: 0; }
}
@media (max-width: 520px) {
  .stats--4, .stats--2 { grid-template-columns: 1fr; }
  .stats--4 .stat, .stats--2 .stat { border-right: 0; padding-right: 0; }
}

/* ---------- 10. Cards ---------- */
.card {
  background: var(--white); border: 1px solid var(--forest-line); border-radius: 4px;
  padding: clamp(24px, 2.6vw, 36px);
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.card--link:hover { transform: translateY(-4px); box-shadow: 0 18px 44px -26px rgba(42,66,38,.45); border-color: var(--forest-soft); }
.card__num {
  font-family: var(--display); font-weight: 300; font-size: 34px; line-height: 1;
  color: var(--forest-soft); margin-bottom: 18px; letter-spacing: -0.02em;
}
.card h3, .card h4 { margin-bottom: 12px; }
.card p { color: var(--forest-mid); font-size: 15.5px; }
.card__foot { margin-top: auto; padding-top: 26px; }
.band--dark .card { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.2); color: var(--paper); }
.band--dark .card p { color: rgba(255,255,255,.8); }
.band--dark .card__num { color: var(--lime); }

/* Future cards */
.future {
  position: relative; overflow: hidden; border-radius: 4px;
  background: var(--white); border: 1px solid var(--forest-line);
  display: flex; flex-direction: column;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.future:hover { transform: translateY(-5px); box-shadow: 0 22px 50px -28px rgba(42,66,38,.5); }
.future__bar { height: 5px; width: 100%; }
.future__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--paper-2); }
.future__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.future:hover .future__media img { transform: scale(1.045); }
.future__body { padding: clamp(22px, 2.4vw, 32px); display: flex; flex-direction: column; flex: 1; }
.future__tag {
  display: inline-flex; align-self: flex-start;
  font-size: 11.5px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 100px; margin-bottom: 16px;
}
.future--live .future__tag { background: var(--live-wash); color: var(--live-ink); }
.future--eat  .future__tag { background: var(--eat-wash);  color: var(--eat-ink); }
.future--move .future__tag { background: var(--move-wash); color: var(--move-ink); }
.future--live .future__bar { background: var(--live); }
.future--eat  .future__bar { background: var(--eat); }
.future--move .future__bar { background: var(--move); }
.future p { color: var(--forest-mid); font-size: 15.5px; }
.future__foot { margin-top: auto; padding-top: 24px; align-self: flex-start; }

/* ---------- 11. Feature list + bullets ---------- */
.flist { border-top: 1px solid var(--forest-line); }
.flist__item {
  display: grid; grid-template-columns: 58px minmax(0,1fr); gap: clamp(14px, 2vw, 30px);
  padding-block: clamp(22px, 2.6vw, 34px); border-bottom: 1px solid var(--forest-line);
}
.flist__n { font-family: var(--display); font-weight: 300; font-size: 22px; color: var(--forest-soft); line-height: 1.35; }
.flist__item h4 { margin-bottom: 10px; }
.flist__item p { color: var(--forest-mid); font-size: 15.5px; }
.band--dark .flist { border-top-color: rgba(255,255,255,.22); }
.band--dark .flist__item { border-bottom-color: rgba(255,255,255,.22); }
.band--dark .flist__n { color: var(--lime); }
.band--dark .flist__item p { color: rgba(255,255,255,.8); }
@media (max-width: 560px) { .flist__item { grid-template-columns: 1fr; gap: 8px; } }

.bullets li {
  position: relative; padding-left: 26px; margin-bottom: 13px;
  font-size: 15.5px; line-height: 1.6; color: var(--forest-mid);
}
.bullets li::before {
  content: ""; position: absolute; left: 0; top: .6em;
  width: 8px; height: 8px; border-radius: 50%; background: var(--lime-deep);
}
.bullets--tight li { margin-bottom: 9px; font-size: 15px; }
.band--dark .bullets li { color: rgba(255,255,255,.84); }
.band--dark .bullets li::before { background: var(--lime); }

/* ---------- 12. Quotes ---------- */
.quote { border-left: 2px solid var(--lime-deep); padding-left: clamp(20px, 3vw, 38px); }
.quote blockquote {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(21px, 2.4vw, 31px); line-height: 1.26; letter-spacing: -0.012em;
}
.quote figcaption { margin-top: 20px; font-size: 14px; color: var(--forest-soft); }
.quote figcaption b { display: block; font-weight: 700; color: var(--forest); font-size: 14.5px; margin-bottom: 3px; }
.band--dark .quote { border-left-color: var(--lime); }
.band--dark .quote figcaption { color: rgba(255,255,255,.68); }
.band--dark .quote figcaption b { color: var(--paper); }

.quote-card {
  background: var(--white); border: 1px solid var(--forest-line); border-radius: 4px;
  padding: clamp(24px, 2.6vw, 34px); display: flex; flex-direction: column; height: 100%;
}
.quote-card blockquote { font-size: 16.5px; line-height: 1.58; color: var(--forest); }
.quote-card blockquote::before {
  content: "\201C"; font-family: var(--display); font-size: 44px; line-height: .55;
  color: var(--lime-deep); display: block; margin-bottom: 14px;
}
.quote-card figcaption { margin-top: auto; padding-top: 22px; font-size: 13.5px; color: var(--forest-soft); }
.quote-card figcaption b { display: block; color: var(--forest); font-size: 14.5px; font-weight: 700; margin-bottom: 2px; }

/* ---------- 13. People ---------- */
.person__photo {
  width: 108px; height: 108px; border-radius: 50%; object-fit: cover;
  filter: grayscale(1) contrast(1.03); margin-bottom: 22px; background: var(--paper-2);
}
.person h3 { font-size: clamp(22px, 2vw, 27px); margin-bottom: 5px; }
.person__role {
  font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--forest-soft); margin-bottom: 16px;
}
.person p { font-size: 15px; color: var(--forest-mid); }
.person__link {
  margin-top: 18px; display: inline-block; font-size: 14px; font-weight: 600;
  border-bottom: 1.5px solid var(--forest-line); padding-bottom: 2px; word-break: break-word;
  transition: border-color .25s var(--ease);
}
.person__link:hover { border-bottom-color: var(--forest); }

/* ---------- 14. Chapters ---------- */
.chapter { scroll-margin-top: 84px; }
.chapter__head { padding-block: clamp(54px, 7vw, 96px); position: relative; overflow: hidden; }
.chapter__title {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(58px, 12vw, 136px); line-height: .88; letter-spacing: -0.03em; margin-bottom: 20px;
}
.chapter__lede { font-size: clamp(18px, 1.9vw, 24px); line-height: 1.45; font-weight: 300; max-width: 640px; }
.chapter--live .chapter__head { background: var(--live); color: var(--live-ink); }
.chapter--eat  .chapter__head { background: var(--eat);  color: var(--eat-ink); }
.chapter--move .chapter__head { background: var(--move); color: var(--move-ink); }
.chapter__head .eyebrow { color: inherit; opacity: .7; }
.chapter--live .chapter__body { background: var(--live-wash); color: var(--live-ink); }
.chapter--eat  .chapter__body { background: var(--eat-wash);  color: var(--eat-ink); }
.chapter--move .chapter__body { background: var(--move-wash); color: var(--move-ink); }
.chapter__body { padding-block: var(--section); }
.chapter__body .eyebrow { color: inherit; opacity: .6; }
.chapter__body .lede { color: inherit; opacity: .88; }
.chapter__body p, .chapter__body .stat__label, .chapter__body .bullets li { color: inherit; opacity: .9; }
.chapter__body .stat__src { color: inherit; opacity: .6; }
.chapter--live .stats, .chapter--live .stat, .chapter--live .flist, .chapter--live .flist__item { border-color: rgba(4,79,112,.22); }
.chapter--eat  .stats, .chapter--eat  .stat, .chapter--eat  .flist, .chapter--eat  .flist__item { border-color: rgba(4,89,76,.22); }
.chapter--move .stats, .chapter--move .stat, .chapter--move .flist, .chapter--move .flist__item { border-color: rgba(58,88,53,.25); }
.chapter__body .bullets li::before { background: currentColor; opacity: .5; }
.chapter__body .quote { border-left-color: currentColor; }
.chapter__body .flist__n { color: inherit; opacity: .55; }
.chapter__body .card { border-color: rgba(0,0,0,.1); }

.figure { margin: 0; }
.figure img { border-radius: 4px; width: 100%; }
.figure figcaption { margin-top: 14px; font-size: 13px; color: var(--forest-soft); line-height: 1.55; }
.chapter__body .figure figcaption { color: inherit; opacity: .65; }

.glance {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: clamp(18px, 2.4vw, 34px);
  padding-top: clamp(24px, 3vw, 36px); margin-top: clamp(30px, 4vw, 46px);
  border-top: 1px solid currentColor;
}
.glance h5 {
  font-family: var(--text); font-size: 11.5px; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; margin-bottom: 10px; opacity: .65;
}
.glance p { font-size: 14px; line-height: 1.55; opacity: .88; }
@media (max-width: 720px) { .glance { grid-template-columns: 1fr; gap: 22px; } }

/* ---------- 15. Tables ---------- */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.tbl { width: 100%; border-collapse: collapse; min-width: 620px; font-size: 15px; }
table.tbl th, table.tbl td { text-align: left; vertical-align: top; padding: 18px 24px 18px 0; border-bottom: 1px solid var(--forest-line); }
table.tbl th {
  font-size: 11.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--forest-soft); border-bottom-color: var(--forest); padding-bottom: 12px;
}
table.tbl td { color: var(--forest-mid); line-height: 1.55; }
table.tbl td:first-child { font-weight: 700; color: var(--forest); width: 26%; }

/* ---------- 16. Roadmap ---------- */
.roadmap { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: clamp(16px, 2vw, 28px); }
.roadmap__step {
  text-align: center; border: 1px solid var(--forest-line); border-radius: 50%;
  aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: clamp(20px, 3vw, 40px);
  transition: border-color .4s var(--ease), background .4s var(--ease);
}
.roadmap__step:hover { border-color: var(--forest); background: var(--white); }
.roadmap__step .n {
  font-family: var(--display); font-weight: 300; font-size: 15px;
  border: 1px solid currentColor; border-radius: 50%; width: 36px; height: 36px;
  display: grid; place-items: center; margin-bottom: 16px; opacity: .6;
}
.roadmap__step h4 { font-size: clamp(17px, 1.7vw, 22px); line-height: 1.2; }
.roadmap__step p { font-size: 13.5px; line-height: 1.5; margin-top: 10px; opacity: .78; }
.band--dark .roadmap__step { border-color: rgba(255,255,255,.3); }
.band--dark .roadmap__step:hover { border-color: var(--lime); background: rgba(255,255,255,.05); }
@media (max-width: 760px) {
  .roadmap { grid-template-columns: 1fr; gap: 14px; }
  .roadmap__step { aspect-ratio: auto; border-radius: 26px; padding: 28px; }
  .roadmap__step .n { margin-bottom: 12px; }
}

/* ---------- 17. Forms + contact ---------- */
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--forest-soft); }
.field input, .field textarea, .field select {
  font: inherit; font-size: 16px; color: var(--forest); background: var(--white);
  border: 1px solid var(--forest-line); border-radius: 3px; padding: 13px 15px; width: 100%;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--forest); box-shadow: 0 0 0 3px rgba(175,186,42,.35);
}
.form-note { font-size: 13px; color: var(--forest-soft); line-height: 1.55; }
.form-note[data-state="sent"] { color: var(--forest); font-weight: 600; }
.form-note[data-state="error"] { color: #8A3524; font-weight: 600; }
[data-honeypot] { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
[data-submit][disabled] { opacity: .6; cursor: progress; }

.contact-card { display: flex; flex-direction: column; gap: 6px; padding: 24px 0; border-top: 1px solid var(--forest-line); }
.contact-card__label { font-size: 11.5px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--forest-soft); }
.contact-card a { font-size: clamp(16px, 1.6vw, 19px); font-weight: 500; word-break: break-word; }
.contact-card a:hover { text-decoration: underline; text-underline-offset: 4px; }

/* ---------- 18. Footer ---------- */
.footer { background: var(--forest-deep); color: var(--paper); padding-block: clamp(54px, 7vw, 86px) 32px; }
.footer a { color: rgba(255,255,255,.8); transition: color .25s var(--ease); }
.footer a:hover { color: var(--lime); }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: clamp(26px, 3.4vw, 52px); }
.footer__wordmark {
  font-family: var(--display); font-weight: 300; font-size: 27px; line-height: 1.04;
  color: var(--paper); display: flex; flex-direction: column; margin-bottom: 18px;
}
.footer h5 {
  font-family: var(--text); font-size: 11.5px; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--lime); margin-bottom: 18px;
}
.footer li { margin-bottom: 11px; font-size: 14.5px; }
.footer__tagline { font-size: 14.5px; color: rgba(255,255,255,.72); max-width: 34ch; line-height: 1.6; }
.footer__bottom {
  margin-top: clamp(40px, 5vw, 64px); padding-top: 26px; border-top: 1px solid rgba(255,255,255,.16);
  display: flex; flex-wrap: wrap; gap: 10px 28px; justify-content: space-between;
  font-size: 12.5px; color: rgba(255,255,255,.62);
}
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__top { grid-template-columns: 1fr; } }

/* ---------- 19. Misc ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 100px; border: 1px solid var(--forest-line); color: var(--forest-soft);
}
.pill-row { display: flex; flex-wrap: wrap; gap: 10px 12px; }
.band--dark .pill { border-color: rgba(255,255,255,.28); color: rgba(255,255,255,.78); }

/* Countdown, used on the save-the-date page */
.countdown { display: flex; flex-wrap: wrap; gap: clamp(16px, 3vw, 44px); justify-content: center; margin-top: clamp(30px, 4vw, 46px); }
.countdown > div { text-align: center; min-width: 58px; }
.countdown .n {
  display: block; font-family: var(--display); font-weight: 300;
  font-size: clamp(34px, 5vw, 60px); line-height: 1; letter-spacing: -0.02em; color: var(--lime);
  font-variant-numeric: tabular-nums;
}
.countdown .l {
  display: block; margin-top: 10px; font-size: 11px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.62);
}
.hero--compact .countdown { justify-content: flex-start; }

/* Credits: a name and a single line, ruled off at the top */
.credit { border-top: 1px solid var(--forest-line); padding-top: 16px; }
.credit h5 { font-size: clamp(17px, 1.5vw, 20px); line-height: 1.2; margin-bottom: 7px; }
.credit p { font-size: 13px; line-height: 1.5; color: var(--forest-soft); }
.band--dark .credit { border-top-color: rgba(255,255,255,.22); }
.band--dark .credit p { color: rgba(255,255,255,.7); }

.logo-row { display: flex; flex-wrap: wrap; align-items: baseline; gap: clamp(18px, 3vw, 44px); }
.logo-row span { font-family: var(--display); font-weight: 300; font-size: clamp(17px, 1.7vw, 22px); color: var(--forest-mid); }

.toc { position: sticky; top: 100px; }
.toc a {
  display: block; font-size: 14.5px; padding: 9px 0 9px 16px;
  border-left: 2px solid var(--forest-line); color: var(--forest-mid);
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.toc a:hover, .toc a.is-active { border-left-color: var(--forest); color: var(--forest); font-weight: 600; }
@media (max-width: 900px) { .toc { position: static; margin-bottom: 28px; } }

.note { background: var(--paper-2); border-left: 2px solid var(--lime-deep); padding: clamp(20px, 2.4vw, 30px); border-radius: 0 4px 4px 0; }
.note p { font-size: 15px; color: var(--forest-mid); }
.band--dark .note { background: rgba(255,255,255,.06); border-left-color: var(--lime); }
.band--dark .note p { color: rgba(255,255,255,.82); }

/* ---------- 20. Reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease-soft), transform .8s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .09s; }
.reveal-d2 { transition-delay: .18s; }
.reveal-d3 { transition-delay: .27s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .js .reveal { opacity: 1; transform: none; }
  .ring { animation: none; }
  .ring__dot { opacity: 1; scale: 1; animation: none; }
}

/* ---------- 21. Print ---------- */
@media print {
  .header, .footer, .ring, .announce, .hero__actions, .burger { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .hero, .band--forest, .band--deep, .band--image { background: #fff !important; color: #000 !important; }
  .hero h1, .hero__sub, .band--dark h2, .band--dark h3 { color: #000 !important; }
  .band--image::after { display: none; }
  .band--image .band__bg { display: none; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
