/* ==========================================================================
   Nourish & Knowledge
   Sand + green editorial theme. Figtree display / Inter text.
   ========================================================================== */

/* Fonts ------------------------------------------------------------------ */

@font-face {
  font-family: 'Figtree';
  src: url('../fonts/Figtree-var.woff2') format('woff2-variations'),
       url('../fonts/Figtree-var.woff2') format('woff2');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-var.woff2') format('woff2-variations'),
       url('../fonts/Inter-var.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* Tokens ----------------------------------------------------------------- */

:root {
  /* Surfaces, sand through paper */
  --sand-deep: #F4E3C4;
  --sand: #F7E9CF;
  --sand-soft: #FAF1E3;
  --cream: #FBF7F0;
  --paper: #FFFFFF;

  /* Ink */
  --ink: #23231F;
  --ink-soft: #5F5D55;
  --ink-mute: #8C8980;

  /* Accent, sampled from the reference */
  --green: #39DA68;
  --green-deep: #23B44F;
  --green-ink: #0F7A34;
  --green-soft: #DFF7E5;
  --on-green: #063014;

  --line: rgba(35, 35, 31, .12);
  --line-soft: rgba(35, 35, 31, .07);

  --shadow-sm: 0 1px 2px rgba(35, 35, 31, .05);
  --shadow-md: 0 8px 24px -12px rgba(35, 35, 31, .18);
  --shadow-lg: 0 30px 60px -32px rgba(35, 35, 31, .34);

  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 40px;

  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --measure: 1240px;
  --nav-h: 76px;

  --ease: cubic-bezier(.22, 1, .36, 1);

  --font-display: 'Figtree', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-text: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* Base ------------------------------------------------------------------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 1rem);
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-text);
  font-size: 1rem;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
svg,
canvas { display: block; max-width: 100%; }

a { color: inherit; }

button,
input,
select,
textarea { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.032em;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(2.9rem, 8.6vw, 6.6rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
h3 { font-size: clamp(1.12rem, 1.7vw, 1.35rem); letter-spacing: -.02em; }
h4 { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--green); color: var(--on-green); }

:focus-visible {
  outline: 2.5px solid var(--green-deep);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: .6rem;
  translate: -50% -160%;
  z-index: 200;
  background: var(--ink);
  color: var(--cream);
  padding: .7rem 1.2rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: translate .25s var(--ease);
}
.skip-link:focus-visible { translate: -50% 0; }

.container {
  position: relative;
  z-index: 2; /* keeps section content clear of the decorative arcs */
  width: 100%;
  max-width: var(--measure);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* Scroll progress -------------------------------------------------------- */

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  height: 3px;
  width: 100%;
  transform-origin: 0 50%;
  scale: 0 1;
  background: var(--green);
  z-index: 120;
  pointer-events: none;
}

/* Navigation ------------------------------------------------------------- */

.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background .35s var(--ease), box-shadow .35s var(--ease);
}

.site-nav.is-stuck {
  background: rgba(251, 247, 240, .82);
  backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 1px 0 var(--line-soft), 0 10px 30px -24px rgba(35, 35, 31, .5);
}

.site-nav > .container {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: -.01em;
  text-decoration: none;
  white-space: nowrap;
  flex: none;
}

.brand-mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: none;
  color: var(--ink);
}
.brand-mark svg { width: 100%; height: 100%; }

.brand-amp { color: var(--green-deep); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.6vw, 2.4rem);
  list-style: none;
  margin: 0 auto;
  padding: 0;
}

.nav-menu a {
  position: relative;
  text-decoration: none;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-block: .4rem;
  transition: color .25s var(--ease);
  white-space: nowrap;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  scale: 0 1;
  transform-origin: 0 50%;
  transition: scale .3s var(--ease);
}

.nav-menu a:hover,
.nav-menu a[aria-current='page'] { color: var(--ink); }
.nav-menu a:hover::after,
.nav-menu a[aria-current='page']::after { scale: 1 1; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: .55rem;
  flex: none;
}

/* Buttons ---------------------------------------------------------------- */

.btn {
  --btn-bg: var(--green);
  --btn-fg: var(--on-green);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .92rem 1.7rem;
  border: 0;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-text);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -14px rgba(35, 120, 60, .75);
}
.btn:active { transform: translateY(0); }

.btn-primary { --btn-bg: var(--green); --btn-fg: var(--on-green); }

.btn-dark { --btn-bg: var(--ink); --btn-fg: var(--cream); }
.btn-dark:hover { box-shadow: 0 14px 26px -14px rgba(35, 35, 31, .7); }

.btn-soft { --btn-bg: var(--green-soft); --btn-fg: var(--green-ink); }
.btn-soft:hover { box-shadow: 0 14px 26px -16px rgba(35, 120, 60, .5); }

.btn-ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  box-shadow: 0 14px 26px -16px rgba(35, 35, 31, .6);
}

/* Text link carrying a circular arrow, as in the reference sections. */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
}

.link-arrow .circle {
  width: 34px;
  height: 34px;
  flex: none;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), rotate .3s var(--ease);
}
.link-arrow .circle svg { width: 14px; height: 14px; }

.link-arrow:hover .circle {
  background: var(--green);
  border-color: var(--green);
  color: var(--on-green);
  rotate: 45deg;
}

.icon-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background .28s var(--ease), color .28s var(--ease), border-color .28s var(--ease);
}
.icon-btn svg { width: 17px; height: 17px; }
.icon-btn:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* Mobile menu trigger */
.nav-toggle { display: none; flex-direction: column; gap: 4px; }
.nav-toggle .bar {
  width: 17px;
  height: 1.8px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle[aria-expanded='true'] .bar:nth-child(1) { transform: translateY(5.8px) rotate(45deg); }
.nav-toggle[aria-expanded='true'] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded='true'] .bar:nth-child(3) { transform: translateY(-5.8px) rotate(-45deg); }

/* Eyebrow pill ----------------------------------------------------------- */

.eyebrow {
  display: inline-block;
  padding: .4rem .85rem;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-ink);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

/* Section scaffolding ---------------------------------------------------- */

.strip {
  position: relative;
  padding-block: clamp(4.5rem, 10vw, 8.5rem);
}
.strip--sand { background: var(--sand); }
.strip--soft { background: var(--sand-soft); }
.strip--paper { background: var(--paper); }
.strip--tight { padding-block: clamp(3rem, 6vw, 5rem); }

.section-head { max-width: 46rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .lead {
  font-size: clamp(1rem, 1.35vw, 1.1rem);
  color: var(--ink-soft);
  margin-top: 1.1rem;
}
.section-head .link-arrow { margin-top: 1.6rem; }

.lead { color: var(--ink-soft); }

/* Wide ellipse the reference uses to transition between bands. */
.arc {
  position: absolute;
  left: 50%;
  translate: -50% 0;
  width: 140%;
  height: clamp(60px, 9vw, 130px);
  pointer-events: none;
  /* Above the section background, below its content — otherwise the curve
     clips things like the jump-link pills sitting near a section edge. */
  z-index: 1;
}
.arc--top { top: -1px; border-radius: 0 0 50% 50%; }
.arc--bottom { bottom: -1px; border-radius: 50% 50% 0 0; }
.arc--cream { background: var(--cream); }
.arc--sand { background: var(--sand); }
.arc--paper { background: var(--paper); }

/* Hero ------------------------------------------------------------------- */

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: calc(var(--nav-h) + clamp(2rem, 5vw, 4rem));
  background: radial-gradient(120% 90% at 50% 0%, var(--sand-soft) 0%, var(--sand) 58%, var(--sand-deep) 100%);
  overflow: hidden;
}

.hero-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}

/* The auto margins above the headline and the strip centre the block of
   copy in whatever space is left over, keeping the strip on the fold. */
.hero h1 {
  margin: auto auto 0;
  max-width: 22ch;
  text-wrap: initial; /* the line break is placed by hand, around the pill */
}

/* Rounded photo slot sitting inline inside the headline. */
.hero-pill {
  display: inline-block;
  vertical-align: middle;
  width: clamp(96px, 15vw, 220px);
  height: clamp(58px, 8.6vw, 110px);
  border-radius: 999px;
  overflow: hidden;
  margin-inline: .12em;
  translate: 0 -.06em;
  box-shadow: var(--shadow-md);
}

.hero h1 em {
  font-style: normal;
  color: var(--green-deep);
}

.hero-lead {
  max-width: 34rem;
  margin: 1.6rem auto 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  justify-content: center;
  margin-top: 2.1rem;
}

/* Hero footer strip: pillar marquee + scroll cue. */
.hero-strip {
  margin-top: auto;
  border-top: 1px solid rgba(35, 35, 31, .13);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  padding-block: 1.1rem;
}

.strip-tag {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}
.strip-tag .sq {
  width: 30px; height: 30px;
  flex: none;
  display: grid; place-items: center;
  border: 1.5px solid var(--line);
  border-radius: 9px;
}
.strip-tag .sq svg { width: 14px; height: 14px; }

.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 3rem;
  animation: marquee 26s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(.95rem, 1.5vw, 1.2rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: rgba(35, 35, 31, .48);
  white-space: nowrap;
}
.marquee-track span::after {
  content: '\00a0\00a0\2022';
  color: var(--green-deep);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}
.scroll-cue .circle {
  width: 34px; height: 34px;
  flex: none;
  display: grid; place-items: center;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  animation: bob 2.4s var(--ease) infinite;
  transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.scroll-cue .circle svg { width: 14px; height: 14px; }
.scroll-cue:hover .circle { background: var(--green); border-color: var(--green); color: var(--on-green); }

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* Placeholder art -------------------------------------------------------- */
/* Stands in for photography. Replace a `.ph` element with an <img> when real
   photos are available; every slot is already the right aspect ratio. */

.ph {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #F3E2C2 0%, #EFD9B4 100%);
  color: rgba(35, 35, 31, .32);
  overflow: hidden;
}
.ph svg {
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  width: 46%;
  height: 46%;
  max-width: 116px;
  max-height: 116px;
}
/* The headline slot is a focal point, so it carries more contrast. */
.hero-pill .ph {
  background: linear-gradient(135deg, #EED2B2 0%, #E4B991 100%);
  color: rgba(35, 35, 31, .42);
}

.ph--sage { background: linear-gradient(135deg, #DDEFDD 0%, #C9E6CE 100%); }
.ph--clay { background: linear-gradient(135deg, #F6DFCE 0%, #EFCBB2 100%); }
.ph--mint { background: linear-gradient(135deg, #DFF7E5 0%, #BFEFCF 100%); }
.ph--stone { background: linear-gradient(135deg, #ECE7DD 0%, #DED7C9 100%); }

/* Cards ------------------------------------------------------------------ */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
  gap: 1.1rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.7rem;
  min-height: 21rem;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--paper);
  text-decoration: none;
  transition: background .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
}

.card:hover {
  background: linear-gradient(160deg, var(--sand-soft), var(--sand));
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card .icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: rgba(35, 35, 31, .06);
  color: var(--ink);
  margin-bottom: auto;
  transition: background .4s var(--ease);
}
.card .icon svg { width: 19px; height: 19px; }
.card:hover .icon { background: rgba(255, 255, 255, .75); }

.card h3 { margin-top: 1.5rem; }
.card p {
  margin-top: .6rem;
  font-size: .93rem;
  color: var(--ink-soft);
}

.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
}

.tags { display: flex; flex-wrap: wrap; gap: .55rem; }
.tag {
  font-size: .72rem;
  font-weight: 600;
  color: var(--ink-mute);
}
.tag::before { content: '#'; color: var(--green-deep); margin-right: .15em; }

/* Circular arrow that fills green on card hover. */
.card-go {
  width: 42px; height: 42px;
  flex: none;
  display: grid; place-items: center;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  transition: background .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease), rotate .35s var(--ease);
}
.card-go svg { width: 15px; height: 15px; }
.card:hover .card-go {
  background: var(--green);
  border-color: var(--green);
  color: var(--on-green);
  rotate: 45deg;
}

/* Impact counter --------------------------------------------------------- */

/* The section pins to the viewport and each screen of scroll swaps the
   statistic, so the reader sets the pace. `overflow: clip` rather than
   `hidden`: hidden would make this a scroll container and the sticky stage
   inside would never stick. */

.impact {
  position: relative;
  background: var(--sand);
  overflow: clip;
}

/* Only a pinned section drops its padding: the stage supplies its own. A
   plain .impact section keeps the normal .strip rhythm, so markup without a
   track still sits clear of the arcs. */
.impact:has(.impact-track) { padding-block: 0; }

.impact-track {
  --steps: 4;
  --step-scroll: 68vh;
  position: relative;
  height: calc(100vh + (var(--steps) - 1) * var(--step-scroll));
}

.impact-stage {
  position: sticky;
  top: 0;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-content: center;
  padding-block: calc(var(--nav-h) + clamp(1.5rem, 4vw, 3rem)) clamp(2.5rem, 6vw, 4.5rem);
}

.impact-figure {
  position: relative;
  min-height: clamp(11rem, 22vw, 17rem);
  margin-top: clamp(1.5rem, 4vw, 3rem);
}

.impact-item {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: .5rem;
  opacity: 0;
  translate: 0 22px;
  transition: opacity .6s var(--ease), translate .6s var(--ease);
  pointer-events: none;
}
.impact-item.is-active {
  opacity: 1;
  translate: 0 0;
  pointer-events: auto;
}

.impact-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.2rem, 10.5vw, 8.5rem);
  line-height: .92;
  letter-spacing: -.045em;
  color: var(--green);
}

.impact-label {
  font-size: clamp(.95rem, 1.4vw, 1.05rem);
  font-weight: 600;
  color: var(--ink);
  max-width: 30rem;
  margin-inline: auto;
}

.impact-dots {
  display: flex;
  justify-content: center;
  gap: .1rem;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

/* The dot is drawn by ::before so the button itself can stay a comfortable
   tap target without changing how small the dot looks. */
.impact-dots button {
  min-width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  padding: 0 .3rem;
  border: 0;
  background: none;
  cursor: pointer;
}
.impact-dots button::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(35, 35, 31, .2);
  transition: background .3s var(--ease), width .3s var(--ease);
}
.impact-dots button:hover::before { background: rgba(35, 35, 31, .38); }
.impact-dots button.is-active::before { background: var(--green-deep); width: 26px; }

.impact-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .9rem;
  margin: clamp(1.5rem, 3vw, 2.25rem) 0 0;
  text-align: center;
}

/* The cue only makes sense while there is still track left to scroll. */
.impact-cue {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  transition: opacity .4s var(--ease);
}
.impact-cue svg {
  width: 15px;
  height: 15px;
  animation: cue-nudge 1.9s var(--ease) infinite;
}
.impact-track.is-final .impact-cue { opacity: 0; }

@keyframes cue-nudge {
  0%, 100% { translate: 0 -2px; }
  50%      { translate: 0 3px; }
}

/* Without JS the panels never get switched, so show them as a plain list
   rather than a tall empty pinned section. */
.no-js .impact-track { height: auto; }
.no-js .impact-stage { position: static; min-height: 0; }
.no-js .impact-figure {
  min-height: 0;
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
}
.no-js .impact-item {
  position: static;
  opacity: 1;
  translate: none;
  pointer-events: auto;
}
.no-js .impact-dots,
.no-js .impact-cue { display: none; }

@media (prefers-reduced-motion: reduce) {
  .impact-cue svg { animation: none; }
}

/* Split ------------------------------------------------------------------ */

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.split-art {
  aspect-ratio: 4 / 3;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.split .eyebrow { margin-bottom: .9rem; }
.split p { color: var(--ink-soft); margin-top: 1rem; }
.split .btn { margin-top: 1.8rem; }

/* Pledge / involvement card --------------------------------------------- */

.pledge-wrap {
  position: relative;
  background: linear-gradient(180deg, var(--sand-soft), var(--sand));
  overflow: hidden;
}

/* Soft blobs behind the card, echoing the reference. */
.pledge-wrap::before,
.pledge-wrap::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  /* Radial rather than flat, so the blob fades out instead of showing a rim. */
  background: radial-gradient(circle, rgba(255, 255, 255, .6) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}
.pledge-wrap::before { width: 34rem; height: 34rem; left: -12rem; bottom: -14rem; }
.pledge-wrap::after { width: 26rem; height: 26rem; right: -9rem; top: -8rem; }

.pledge {
  position: relative;
  z-index: 1;
  max-width: 34rem;
  margin-inline: auto;
  padding: clamp(1.6rem, 3.4vw, 2.4rem);
  background: var(--paper);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}

.pledge h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  text-align: center;
}

/* One-off / monthly switch */
.switch-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  margin-top: 1.1rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink-mute);
}
.switch-row .on { color: var(--ink); font-weight: 600; }

.switch {
  position: relative;
  width: 52px; height: 28px;
  flex: none;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(35, 35, 31, .13);
  cursor: pointer;
  transition: background .3s var(--ease);
}
.switch::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: var(--shadow-sm);
  transition: translate .3s var(--ease);
}
.switch[aria-checked='true'] { background: var(--green-soft); }
.switch[aria-checked='true']::after { translate: 24px 0; }

.field {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-top: 1.2rem;
  padding: .3rem .3rem .3rem 1.1rem;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.field:focus-within { border-color: var(--green); background: var(--paper); }

.field input,
.field select {
  flex: 1;
  min-width: 0;
  padding: .7rem 0;
  border: 0;
  background: none;
  outline: none;
  font-size: .95rem;
}
.field select {
  flex: none;
  padding: .6rem .9rem;
  border-radius: 999px;
  background: var(--paper);
  border: 1.5px solid var(--line);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
}

.chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .5rem;
  margin-top: .6rem;
}
.chip {
  padding: .7rem .2rem;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.chip:hover { border-color: var(--green); }
.chip.is-active { background: var(--green); border-color: var(--green); color: var(--on-green); }

.check {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-top: 1.1rem;
  font-size: .88rem;
  cursor: pointer;
  user-select: none;
}
.check input {
  appearance: none;
  -webkit-appearance: none;
  width: 21px; height: 21px;
  flex: none;
  margin: 0;
  border: 1.5px solid var(--line);
  border-radius: 7px;
  background: var(--paper);
  cursor: pointer;
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.check input:checked {
  background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23063014' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12.5l5.2 5.2L20 7'/%3E%3C/svg%3E") center / 13px no-repeat;
  border-color: var(--green);
}

.pledge-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  margin-top: 1.4rem;
}
.pledge-actions .btn { width: 100%; }

.pledge-note {
  margin-top: 1rem;
  font-size: .78rem;
  color: var(--ink-mute);
  text-align: center;
}

.pledge-below {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: 2.2rem;
}

/* Steps ------------------------------------------------------------------ */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
  gap: 1rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  counter-reset: step;
}

.step {
  position: relative;
  padding: 1.6rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--paper);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--green-deep);
  margin-bottom: .9rem;
}
.step p { margin-top: .5rem; font-size: .9rem; color: var(--ink-soft); }

/* Updates rail ----------------------------------------------------------- */

.rail-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.rail-nav { display: flex; gap: .5rem; }
.rail-nav button {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  padding: 0;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), opacity .3s;
}
.rail-nav button svg { width: 16px; height: 16px; }
.rail-nav button:hover:not(:disabled) { background: var(--green); border-color: var(--green); color: var(--on-green); }
.rail-nav button:disabled { opacity: .35; cursor: default; }

.rail {
  display: flex;
  gap: 1.1rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.rail::-webkit-scrollbar { display: none; }

.rail-item {
  flex: 0 0 clamp(15rem, 23vw, 19rem);
  scroll-snap-align: start;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

/* Reference staggers alternate cards downward. */
.rail-item:nth-child(even) { margin-top: clamp(1rem, 3vw, 2.6rem); }

.rail-media {
  display: block;
  aspect-ratio: 4 / 3.4;
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.rail-item:hover .rail-media {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.rail-date {
  margin-top: 1rem;
  font-size: .78rem;
  color: var(--ink-mute);
}
.rail-item h3 {
  margin-top: .35rem;
  font-size: 1.05rem;
  transition: color .3s var(--ease);
}
.rail-item:hover h3 { color: var(--green-ink); }
.rail-item p {
  margin-top: .5rem;
  font-size: .88rem;
  color: var(--ink-soft);
}

/* Take-action CTA -------------------------------------------------------- */

.action {
  position: relative;
  background: var(--sand);
  overflow: hidden;
  text-align: center;
}

.action-inner { position: relative; z-index: 2; }

.action-orbs {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
/* Positions mirror the scattered circles in the reference. */
.orb:nth-child(1) { width: 84px;  height: 84px;  left: 8%;   top: 12%; }
.orb:nth-child(2) { width: 140px; height: 140px; left: 2%;   top: 38%; }
.orb:nth-child(3) { width: 168px; height: 168px; left: 12%;  bottom: 4%; }
.orb:nth-child(4) { width: 128px; height: 128px; right: 10%; top: 4%; }
.orb:nth-child(5) { width: 118px; height: 118px; right: 3%;  top: 42%; }
.orb:nth-child(6) { width: 82px;  height: 82px;  right: 12%; bottom: 10%; }

/* Footer ----------------------------------------------------------------- */

.site-footer {
  position: relative;
  background: var(--sand);
  padding-block: clamp(3.5rem, 7vw, 6rem) 2rem;
}

.footer-top {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}

.footer-brand .brand { font-size: 1.35rem; }
.footer-brand .brand-mark { width: 40px; height: 40px; }
.footer-brand p {
  margin-top: 1rem;
  max-width: 22rem;
  font-size: .9rem;
  color: var(--ink-soft);
}

.socials { display: flex; gap: .5rem; margin-top: 1.6rem; }
.socials a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  transition: background .28s var(--ease), color .28s var(--ease), border-color .28s var(--ease);
}
.socials a svg { width: 16px; height: 16px; }
.socials a:hover { background: var(--ink); color: var(--sand); border-color: var(--ink); }

.footer-col h4 { color: var(--ink-mute); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.footer-col a {
  text-decoration: none;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color .25s var(--ease);
}
.footer-col a:hover { color: var(--green-ink); }

.contact-rows { display: grid; gap: .7rem; justify-items: start; }

.contact-row {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.contact-row .circle {
  width: 38px; height: 38px;
  flex: none;
  display: grid; place-items: center;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  transition: background .28s var(--ease), color .28s var(--ease), border-color .28s var(--ease);
}
.contact-row .circle svg { width: 15px; height: 15px; }
.contact-row:hover .circle { background: var(--green); border-color: var(--green); color: var(--on-green); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: .8rem;
  color: var(--ink-mute);
}
.footer-bottom a { text-decoration: none; }
.footer-bottom a:hover { color: var(--ink); }

/* Page header ------------------------------------------------------------ */

.page-head {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(3rem, 8vw, 6rem));
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
  background: radial-gradient(120% 90% at 50% 0%, var(--sand-soft) 0%, var(--sand) 70%);
  text-align: center;
  overflow: hidden;
}
.page-head h1 { font-size: clamp(2.4rem, 6.4vw, 4.6rem); max-width: 18ch; margin-inline: auto; }
.page-head .lead { max-width: 34rem; margin: 1.3rem auto 0; }

.jump {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin-top: 2rem;
}
.jump a {
  padding: .55rem 1.1rem;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .5);
  text-decoration: none;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.jump a:hover { background: var(--paper); border-color: var(--green); }

/* Prose, FAQ, references ------------------------------------------------- */

.prose { max-width: 44rem; }
.prose p { margin-top: 1rem; color: var(--ink-soft); }
.prose h3 { margin-top: 2.2rem; }

.faq { max-width: 48rem; margin-top: clamp(2rem, 4vw, 3rem); display: grid; gap: .7rem; }

details.qa {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--paper);
  overflow: hidden;
  transition: border-color .3s var(--ease);
}
details.qa[open] { border-color: rgba(35, 35, 31, .2); }

details.qa summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -.015em;
}
details.qa summary::-webkit-details-marker { display: none; }

details.qa summary::after {
  content: '';
  width: 26px; height: 26px;
  flex: none;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2323231F' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / 12px no-repeat;
  transition: rotate .3s var(--ease);
}
details.qa[open] summary::after { rotate: 135deg; }

details.qa .qa-body { padding: 0 1.4rem 1.3rem; color: var(--ink-soft); font-size: .93rem; }

.ref-list {
  max-width: 48rem;
  margin-top: 2rem;
  padding-left: 1.1rem;
  display: grid;
  gap: .9rem;
  font-size: .88rem;
  color: var(--ink-soft);
}
.ref-list li::marker { color: var(--green-deep); }

/* Team ------------------------------------------------------------------- */

.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  gap: 1.1rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.member {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--paper);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.member:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.member-avatar {
  display: block; /* it is a <span>, so it must be blockified to take a size */
  width: 68px; height: 68px;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 1.1rem;
}
.member .role {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-ink);
}
.member h3 { margin-top: .3rem; }
.member p { margin-top: .7rem; font-size: .89rem; color: var(--ink-soft); }

/* Events list ------------------------------------------------------------ */

.event-list { display: grid; gap: 1rem; margin-top: clamp(2.5rem, 5vw, 4rem); }

.event {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.2rem);
  padding: 1.4rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--paper);
  transition: background .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
}
.event:hover {
  background: linear-gradient(120deg, var(--sand-soft), var(--paper));
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.event-cadence {
  padding: .4rem .8rem;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-ink);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  white-space: nowrap;
}
.event p { margin-top: .3rem; font-size: .92rem; color: var(--ink-soft); }
.event .when { font-size: .8rem; color: var(--ink-mute); white-space: nowrap; }

/* Forms ------------------------------------------------------------------ */

.form-card--center { margin-inline: auto; margin-top: clamp(2rem, 4vw, 3rem); }
.form-card--center .hero-actions { justify-content: center; }

.form-card {
  max-width: 38rem;
  padding: clamp(1.6rem, 3.4vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: var(--paper);
  box-shadow: var(--shadow-md);
}

.form-row { display: grid; gap: .4rem; margin-top: 1.1rem; }
.form-row label { font-size: .8rem; font-weight: 600; }
.form-row .req { color: var(--green-ink); }

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: .85rem 1.1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--cream);
  outline: none;
  font-size: .95rem;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.form-row textarea { min-height: 8rem; resize: vertical; }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: var(--green); background: var(--paper); }

.form-note { margin-top: 1rem; font-size: .8rem; color: var(--ink-mute); }

.form-status {
  margin-top: 1rem;
  padding: .85rem 1.1rem;
  border-radius: var(--r-sm);
  background: var(--green-soft);
  color: var(--green-ink);
  font-size: .88rem;
  font-weight: 500;
}
.form-status[hidden] { display: none; }

/* Mail fallbacks --------------------------------------------------------- */
/* Shown whenever a mailto: may not have been handled, so there is always a
   way to reach us that does not depend on a local mail client. */

.mail-alt {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: .8rem;
}

.mail-alt-btn {
  display: inline-flex;
  align-items: center;
  padding: .45rem .9rem;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background .25s var(--ease), color .25s var(--ease);
}

.mail-alt-btn:hover {
  background: var(--green-ink);
  border-color: var(--green-ink);
  color: var(--paper);
}

.mail-toast {
  position: fixed;
  left: 50%;
  bottom: clamp(1rem, 4vw, 2rem);
  translate: -50% 0;
  z-index: 300;
  width: min(25rem, calc(100vw - 2rem));
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--paper);
  box-shadow: var(--shadow-lg);
  color: var(--green-ink);
}

.mail-toast p {
  margin: 0 2rem 0 0;
  color: var(--ink-soft);
  font-size: .88rem;
}

.mail-toast-close {
  position: absolute;
  top: .55rem;
  right: .7rem;
  width: 1.9rem;
  height: 1.9rem;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-mute);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}
.mail-toast-close:hover { background: var(--line-soft); color: var(--ink); }

.inline-form { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.6rem; }
.inline-form input {
  flex: 1 1 15rem;
  padding: .9rem 1.2rem;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  outline: none;
  font-size: .95rem;
}
.inline-form input:focus { border-color: var(--green); }

/* Contact tiles ---------------------------------------------------------- */

.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  gap: 1rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.tile {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--paper);
  text-decoration: none;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
}
.tile:hover {
  background: linear-gradient(150deg, var(--sand-soft), var(--paper));
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.tile .icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-ink);
  margin-bottom: .6rem;
}
.tile .icon svg { width: 18px; height: 18px; }
.tile p { font-size: .9rem; color: var(--ink-soft); }
.tile .val { font-weight: 600; font-size: .92rem; word-break: break-word; }

/* Band ------------------------------------------------------------------- */

.band {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4.5rem);
  border-radius: var(--r-xl);
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  overflow: hidden;
}
.band::after {
  content: '';
  position: absolute;
  width: 30rem; height: 30rem;
  right: -10rem; bottom: -16rem;
  border-radius: 50%;
  background: rgba(57, 218, 104, .16);
  pointer-events: none;
}
.band > * { position: relative; z-index: 1; }
.band p {
  max-width: 34rem;
  margin: 1.1rem auto 0;
  color: rgba(251, 247, 240, .75);
}
.band .hero-actions { margin-top: 2rem; }
.band .btn-ghost { --btn-fg: var(--cream); border-color: rgba(251, 247, 240, .3); }
.band .btn-ghost:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

/* Reveal ----------------------------------------------------------------- */

[data-reveal] {
  opacity: 0;
  translate: 0 26px;
  transition: opacity .7s var(--ease), translate .7s var(--ease);
  transition-delay: var(--d, 0s);
}
[data-reveal].is-in { opacity: 1; translate: 0 0; }

/* Never leave content hidden when the script cannot run. */
.no-js [data-reveal] { opacity: 1; translate: 0 0; }

/* Responsive ------------------------------------------------------------- */

@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }

  .nav-panel {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    display: grid;
    gap: 1.4rem;
    padding: 1.6rem var(--gutter) 2rem;
    background: rgba(251, 247, 240, .97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    translate: 0 -12px;
    pointer-events: none;
    transition: opacity .3s var(--ease), translate .3s var(--ease);
  }
  .nav-panel.is-open { opacity: 1; translate: 0 0; pointer-events: auto; }

  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin: 0;
  }
  .nav-menu a { font-size: .95rem; letter-spacing: .04em; text-transform: none; }
  .nav-menu a::after { display: none; }

  .nav-cta { display: none; }
  .drawer-cta { justify-self: start; }

  .hero-strip { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 1rem; }
  .hero-strip .marquee { width: 100%; }

  .action-orbs { opacity: .3; }
  .orb:nth-child(2),
  .orb:nth-child(5) { display: none; }

  .pledge-actions { grid-template-columns: 1fr; }
}

@media (min-width: 901px) {
  .nav-panel { display: contents; }
  .drawer-cta { display: none; }
}

@media (max-width: 720px) {
  .event { grid-template-columns: 1fr; }
  .event .when { text-align: left; }
}

@media (max-width: 520px) {
  .chips { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
}

/* Motion preferences ----------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  [data-reveal] { opacity: 1; translate: 0 0; }
  .marquee-track { animation: none; }
}

/* Print ------------------------------------------------------------------ */

@media print {
  .site-nav,
  .scroll-progress,
  .hero-strip,
  .action-orbs { display: none; }
  body { background: #fff; }
}
