/* ===== Design tokens ===== */
:root {
  --ink: #0E0E0E;
  --bone: #F5F1EA;
  --bone-2: #ECE6DB;
  --bone-3: #DDD5C6;
  --terracotta: #C75A2C;
  --terracotta-deep: #9E441E;
  --muted: #5C5751;
  --rule: rgba(14, 14, 14, 0.12);

  /* Display headings: Montserrat (clean, famous geometric sans). Var name kept as --serif for compatibility. */
  --serif: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sans: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max: 1280px;
  --gutter: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img, svg, video { max-width: 100%; display: block; }

/* ===== Layout helpers ===== */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(64px, 9vw, 140px) 0; }
.section--tight { padding: clamp(40px, 6vw, 80px) 0; }

/* ===== Top nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 241, 234, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--rule);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.01em;
}
.nav__brand .enso { width: 28px; height: 28px; }
.nav__brand span small {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: -2px;
}
.nav__links {
  display: flex;
  gap: clamp(14px, 2.4vw, 32px);
  font-size: 14px;
  letter-spacing: 0.02em;
}
.nav__links a {
  position: relative;
  color: var(--ink);
  padding: 6px 0;
  transition: color 0.2s ease;
}
.nav__links a:hover { color: var(--terracotta); }
.nav__links a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--terracotta);
}
.nav__cta {
  background: var(--ink);
  color: var(--bone);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.04em;
  transition: background 0.2s ease;
}
.nav__cta:hover { background: var(--terracotta); }

/* ===== Corner page-mark (per-page watermark) ===== */
.pagemark {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 40;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: clamp(560px, 86vh, 820px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__media svg {
  width: 100%;
  height: 100%;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 30% 100%, rgba(0,0,0,0.55), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
}
.hero__inner {
  width: 100%;
  padding-bottom: clamp(48px, 8vw, 120px);
  color: var(--bone);
}
.hero__eyebrow {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 7.2vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 14ch;
}
.hero__title em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 300;
}
.hero__sub {
  margin-top: 28px;
  max-width: 52ch;
  font-size: 18px;
  line-height: 1.55;
  opacity: 0.92;
}
.hero__actions {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn--primary {
  background: var(--bone);
  color: var(--ink);
}
.btn--primary:hover { background: var(--terracotta); color: var(--bone); }
.btn--ghost {
  border: 1px solid rgba(245, 241, 234, 0.5);
  color: var(--bone);
}
.btn--ghost:hover { background: rgba(245, 241, 234, 0.1); }
.btn--dark {
  background: var(--ink);
  color: var(--bone);
}
.btn--dark:hover { background: var(--terracotta); }

/* ===== Bilingual motif ===== */
.bilingual {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 400;
  letter-spacing: 0.01em;
}
.bilingual em {
  font-style: italic;
  color: var(--terracotta);
}
.bilingual hr {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 0;
}

/* ===== Section header ===== */
.sec-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(32px, 5vw, 64px);
  flex-wrap: wrap;
}
.sec-head__eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
}
.sec-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 8px 0 0 0;
  max-width: 18ch;
}
.sec-head__link {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.sec-head__link:hover { color: var(--terracotta); }

/* ===== Three-up: What we do / Who we are / How to join ===== */
.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 48px);
}
.three__card {
  padding: 32px 28px;
  background: var(--bone-2);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}
.three__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--terracotta);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.three__card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.15;
  margin: 0 0 16px 0;
  letter-spacing: -0.01em;
}
.three__card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
.three__card a {
  margin-top: auto;
  padding-top: 24px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}
.three__card a:hover { color: var(--terracotta); }
.three__card a::after {
  content: " →";
  transition: transform 0.2s ease;
  display: inline-block;
}
.three__card a:hover::after { transform: translateX(4px); }

/* ===== Watch rail ===== */
.watch {
  background: var(--ink);
  color: var(--bone);
}
.watch .sec-head h2,
.watch .sec-head__link { color: var(--bone); }
.watch .sec-head__eyebrow { color: var(--terracotta); }
.watch__rail {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
}
.watch__card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: #1a1a1a;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}
.watch__card--feat { aspect-ratio: 16 / 11; }
.watch__card svg { width: 100%; height: 100%; }
.watch__caption {
  position: absolute;
  left: 20px;
  bottom: 16px;
  right: 20px;
  z-index: 2;
}
.watch__caption small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 6px;
}
.watch__caption h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.15;
  margin: 0;
  color: var(--bone);
}
.watch__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.75) 100%);
}
.play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
}
.play span {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: rgba(245,241,234,0.92);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 22px;
  transition: transform 0.2s ease, background 0.2s ease;
}
.watch__card:hover .play span {
  transform: scale(1.06);
  background: var(--terracotta);
  color: var(--bone);
}

/* ===== Mission split ===== */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.split__img {
  aspect-ratio: 4 / 5;
  background: var(--bone-3);
  border-radius: 4px;
  overflow: hidden;
}
.split__img svg { width: 100%; height: 100%; }
.split h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 16px 0 24px 0;
}
.split p {
  color: var(--muted);
  margin: 0 0 16px 0;
  font-size: 17px;
}
.split__quote {
  margin-top: 32px;
  padding-left: 20px;
  border-left: 2px solid var(--terracotta);
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
}
.split__quote cite {
  display: block;
  margin-top: 12px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ===== CTA band ===== */
.cta {
  background: var(--terracotta);
  color: var(--bone);
  text-align: center;
}
.cta h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0 auto;
  max-width: 18ch;
}
.cta p {
  margin: 24px auto 36px;
  max-width: 52ch;
  font-size: 17px;
  opacity: 0.95;
}

/* ===== Footer ===== */
.footer {
  background: var(--ink);
  color: var(--bone);
  padding: 80px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(245,241,234,0.15);
}
.footer h5 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,241,234,0.6);
  margin: 0 0 18px 0;
  font-weight: 500;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 10px; font-size: 14px; }
.footer a:hover { color: var(--terracotta); }
.footer__mark {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 16px;
}
.footer__small {
  margin-top: 24px;
  font-size: 13px;
  color: rgba(245,241,234,0.6);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== Crew page ===== */
.page-hero {
  padding: clamp(80px, 12vw, 160px) 0 clamp(40px, 6vw, 80px);
  border-bottom: 1px solid var(--rule);
}
.page-hero__eyebrow {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 20px;
}
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 12ch;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 300;
}
.page-hero__lede {
  margin-top: 28px;
  max-width: 56ch;
  font-size: 19px;
  color: var(--muted);
}

/* Big group photo */
.group {
  margin-top: clamp(40px, 6vw, 80px);
  aspect-ratio: 16 / 8;
  background: var(--bone-3);
  border-radius: 4px;
  overflow: hidden;
}
.group svg { width: 100%; height: 100%; }
.group__caption {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

/* Portrait grid */
.portraits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 40px) clamp(20px, 3vw, 32px);
}
.portrait__img {
  aspect-ratio: 4 / 5;
  background: var(--bone-2);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
}
.portrait__img svg { width: 100%; height: 100%; }
.portrait h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 4px 0;
  letter-spacing: -0.01em;
}
.portrait p {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
}

/* Cohort gallery cards (link out to 2006/2021/Since 2023) */
.cohorts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
}
.cohort {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: var(--ink);
}
.cohort svg { width: 100%; height: 100%; opacity: 0.85; transition: opacity 0.3s ease, transform 0.4s ease; }
.cohort:hover svg { opacity: 1; transform: scale(1.03); }
.cohort__label {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  color: var(--bone);
  z-index: 2;
}
.cohort__label small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 8px;
}
.cohort__label h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1;
  margin: 0;
}
.cohort::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.7) 100%);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .three { grid-template-columns: 1fr; }
  .watch__rail { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .portraits { grid-template-columns: repeat(2, 1fr); }
  .cohorts { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .footer__grid { grid-template-columns: 1fr; }
  .portraits { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   ASSET LAYER — placeholders now, real photos / AI later
   ---------------------------------------------------------
   Every image container below carries a film-grain + duotone
   treatment so the comp reads as intentional, not "gray box".

   TO SWAP IN A REAL IMAGE (photo OR AI-generated):
   add an inline style on the container, e.g.
     <div class="split__img" style="--img:url('assets/richard.jpg')">
   The photo shows through; grain + tint stay for cohesion.
   No markup changes needed beyond that one variable.
   ========================================================= */

/* Containers that hold imagery */
.hero__media,
.split__img,
.group,
.portrait__img,
.watch__card,
.cohort {
  position: relative;
}

/* Real image (when --img is set) sits above the SVG fallback */
.split__img,
.group,
.portrait__img,
.watch__card,
.cohort {
  background-image: var(--img, none);
  background-size: cover;
  background-position: center;
}
.split__img[style*="--img"] svg,
.group[style*="--img"] svg,
.portrait__img[style*="--img"] svg,
.watch__card[style*="--img"] svg,
.cohort[style*="--img"] svg { opacity: 0; }

/* Film-grain overlay — subtle, premium, ties placeholders together */
.hero__media::before,
.split__img::before,
.group::before,
.portrait__img::before,
.watch__card::before,
.cohort::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: 0.18;
}

/* Warm duotone wash on portraits & cohorts for a unified palette */
.portrait__img::after,
.cohort::after,
.split__img::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(199,90,44,0.10), rgba(14,14,14,0.04));
  mix-blend-mode: multiply;
}
.cohort::after {
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.7) 100%);
  mix-blend-mode: normal;
}

/* Keep captions/labels above the grain */
.watch__caption, .play, .cohort__label { z-index: 3; }

/* "Placeholder" ribbon so reviewers know what's a stand-in */
.is-placeholder { position: relative; }
.is-placeholder::after {
  content: "PLACEHOLDER";
  position: absolute;
  top: 12px; left: 12px;
  z-index: 4;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.18em;
  padding: 4px 8px;
  border-radius: 3px;
  background: rgba(14,14,14,0.55);
  color: rgba(245,241,234,0.92);
  pointer-events: none;
}
.is-placeholder[style*="--img"]::after { display: none; }

/* ===== Programs page ===== */
.prog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
.prog-card {
  background: var(--bone-2);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.prog-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.prog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.prog-card:hover .prog-card__media img { transform: scale(1.04); }
.prog-card__media::before {            /* film grain to match the system */
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: 0.16;
}
.prog-tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  background: var(--terracotta);
  color: var(--bone);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 3px;
}
.prog-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.prog-card__kicker {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 10px;
}
.prog-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 27px;
  line-height: 1.12;
  margin: 0 0 12px 0;
  letter-spacing: -0.01em;
}
.prog-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
.prog-card__link {
  margin-top: auto;
  padding-top: 22px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.prog-card__link:hover { color: var(--terracotta); }
.prog-card__link::after { content: " →"; display: inline-block; transition: transform 0.2s ease; }
.prog-card:hover .prog-card__link::after { transform: translateX(4px); }

/* Featured program (Zen Training) reuses .split; add a video CTA chip */
.video-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.video-chip span {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bone);
  display: grid; place-items: center;
  font-size: 15px;
  transition: background 0.2s ease;
}
.video-chip:hover span { background: var(--terracotta); }

@media (max-width: 900px) {
  .prog-grid { grid-template-columns: 1fr; }
}

/* ===== Stats / credibility band ===== */
.stats {
  background: var(--bone-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 4vw, 56px);
  text-align: center;
}
.stat__num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--terracotta);
}
.stat__label {
  margin-top: 12px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 760px) {
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
}

/* ===== Giving levels (Donate) ===== */
.give-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.give-card {
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 26px 20px;
  background: var(--bone);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.give-card:hover { border-color: var(--terracotta); transform: translateY(-3px); }
.give-card--featured { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.give-card__amt {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 34px;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.give-card--featured .give-card__amt { color: var(--terracotta); }
.give-card p {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}
.give-card--featured p { color: rgba(245,241,234,0.78); }
.give-card a {
  margin-top: auto;
  text-align: center;
  border-radius: 999px;
  padding: 11px 14px;
  font-size: 13px;
  letter-spacing: 0.04em;
  background: var(--ink);
  color: var(--bone);
  transition: background 0.2s ease;
}
.give-card a:hover { background: var(--terracotta); }
.give-card--featured a { background: var(--terracotta); }
.give-card--featured a:hover { background: var(--bone); color: var(--ink); }
.give-tag {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 10px;
}

/* Ways to give (secondary) */
.ways {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 28px);
}
.way {
  padding: 28px;
  background: var(--bone-2);
  border-radius: 6px;
}
.way h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 10px;
}
.way p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

/* Trust signals */
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}
.trust span { display: inline-flex; align-items: center; gap: 8px; }
.trust b { color: var(--ink); font-weight: 600; }

/* ===== Impact / success stories ===== */
.story {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.story:nth-child(even) { direction: rtl; }
.story:nth-child(even) > * { direction: ltr; }
.story + .story { margin-top: clamp(48px, 7vw, 96px); }
.story__img {
  aspect-ratio: 4 / 3;
  background: var(--bone-3);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.story__img img { width: 100%; height: 100%; object-fit: cover; }
.story__step {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 14px;
}
.story h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
}
.story p { color: var(--muted); margin: 0 0 16px; }
.story blockquote {
  margin: 22px 0 0;
  padding-left: 20px;
  border-left: 2px solid var(--terracotta);
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
}

/* Journey strip */
.journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: step;
}
.journey__item {
  padding: 26px 22px;
  background: var(--bone-2);
  border-radius: 6px;
  position: relative;
}
.journey__item::before {
  counter-increment: step;
  content: counter(step);
  font-family: var(--serif);
  font-style: italic;
  color: var(--terracotta);
  font-size: 26px;
  display: block;
  margin-bottom: 12px;
}
.journey__item h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  margin: 0 0 8px;
}
.journey__item p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.5; }

@media (max-width: 900px) {
  .give-grid { grid-template-columns: 1fr 1fr; }
  .ways { grid-template-columns: 1fr; }
  .story, .story:nth-child(even) { grid-template-columns: 1fr; direction: ltr; }
  .journey { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .give-grid { grid-template-columns: 1fr; }
  .journey { grid-template-columns: 1fr; }
}

/* ===== Montserrat display tuning =====
   Montserrat reads lighter than the old serif at large sizes,
   so give headings a confident SemiBold and tighten tracking. */
.hero__title,
.page-hero h1,
.sec-head h2,
.cta h2,
.split h2,
.stat__num,
.give-card__amt,
.story h3 {
  font-weight: 600;
  letter-spacing: -0.02em;
}
.hero__title em,
.page-hero h1 em {
  font-weight: 500;
}
.three__card h3,
.prog-card h3,
.way h3,
.journey__item h4,
.watch__caption h4,
.cohort__label h3,
.footer__mark,
.nav__brand {
  font-weight: 600;
  letter-spacing: -0.01em;
}
/* Italic accent stays elegant, not slanted-heavy */
.split__quote, .story blockquote, .bilingual em { font-style: italic; }

/* ===== Shared: generic prose lede ===== */
.prose { max-width: 68ch; }
.prose p { color: var(--muted); font-size: 17px; margin: 0 0 18px; }
.prose p strong { color: var(--ink); }

/* ===== Timeline (About / History) ===== */
.timeline { position: relative; margin-top: 8px; }
.timeline::before {
  content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px;
  width: 2px; background: var(--rule);
}
.tl-item { position: relative; padding: 0 0 36px 40px; }
.tl-item::before {
  content: ""; position: absolute; left: 0; top: 4px;
  width: 16px; height: 16px; border-radius: 999px;
  background: var(--bone); border: 3px solid var(--terracotta);
}
.tl-item:last-child { padding-bottom: 0; }
.tl-year {
  font-family: var(--serif); font-weight: 600; color: var(--terracotta);
  font-size: 15px; letter-spacing: 0.04em; margin-bottom: 6px;
}
.tl-item h3 {
  font-family: var(--serif); font-weight: 600; font-size: 21px;
  margin: 0 0 8px; letter-spacing: -0.01em;
}
.tl-item p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.6; max-width: 60ch; }

/* ===== Founders two-up ===== */
.founders { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 56px); }
.founder__img {
  aspect-ratio: 4/5; background: var(--bone-3); border-radius: 6px;
  overflow: hidden; margin-bottom: 18px; position: relative;
}
.founder__img img { width: 100%; height: 100%; object-fit: cover; }
.founder h3 { font-family: var(--serif); font-weight: 600; font-size: 24px; margin: 0 0 4px; }
.founder .role {
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--terracotta); font-weight: 600; margin-bottom: 14px;
}
.founder p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.6; }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); }
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { margin-bottom: 22px; }
.contact-list .lbl {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--terracotta); font-weight: 600; margin-bottom: 6px;
}
.contact-list .val { font-size: 18px; }
.contact-list a:hover { color: var(--terracotta); }
.map-ph {
  margin-top: 28px; aspect-ratio: 16/9; border-radius: 6px; overflow: hidden;
  background: var(--bone-3); position: relative;
}
.map-ph img { width: 100%; height: 100%; object-fit: cover; }
.map-ph span {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(14,14,14,0.45);
}
.form { display: grid; gap: 16px; }
.form label { font-size: 13px; font-weight: 600; letter-spacing: 0.02em; }
.form input, .form textarea {
  width: 100%; margin-top: 6px; padding: 13px 14px;
  border: 1px solid var(--rule); border-radius: 6px; background: var(--bone);
  font-family: var(--sans); font-size: 15px; color: var(--ink);
}
.form input:focus, .form textarea:focus { outline: 2px solid var(--terracotta); border-color: transparent; }
.form textarea { min-height: 130px; resize: vertical; }
.form button {
  justify-self: start; border: 0; cursor: pointer;
  background: var(--ink); color: var(--bone); padding: 14px 28px;
  border-radius: 999px; font-size: 14px; letter-spacing: 0.04em;
  font-family: var(--sans); transition: background 0.2s ease;
}
.form button:hover { background: var(--terracotta); }

/* ===== Chips (Media filters) ===== */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.chip {
  padding: 8px 16px; border-radius: 999px; border: 1px solid var(--rule);
  font-size: 13px; letter-spacing: 0.02em; color: var(--ink); cursor: pointer;
  transition: all 0.2s ease;
}
.chip:hover, .chip.is-on { background: var(--ink); color: var(--bone); border-color: var(--ink); }

/* ===== Media grid ===== */
.media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 32px); }
.media-card {
  background: var(--bone-2); border-radius: 6px; overflow: hidden;
  display: flex; flex-direction: column;
}
.media-card__media { aspect-ratio: 16/10; background: var(--ink); position: relative; }
.media-card__media svg { width: 100%; height: 100%; }
.media-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.media-card .type {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--terracotta); font-weight: 600; margin-bottom: 10px;
}
.media-card h3 { font-family: var(--serif); font-weight: 600; font-size: 20px; margin: 0 0 8px; line-height: 1.2; }
.media-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.media-card a.media-card__link { margin-top: auto; padding-top: 18px; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; }
.media-card a.media-card__link:hover { color: var(--terracotta); }

/* ===== Events list ===== */
.event {
  display: grid; grid-template-columns: 120px 1fr auto; gap: 28px; align-items: center;
  padding: 26px 0; border-bottom: 1px solid var(--rule);
}
.event:first-child { border-top: 1px solid var(--rule); }
.event__date { text-align: center; }
.event__date .d { font-family: var(--serif); font-weight: 600; font-size: 38px; line-height: 1; }
.event__date .m { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--terracotta); margin-top: 4px; }
.event__info h3 { font-family: var(--serif); font-weight: 600; font-size: 22px; margin: 0 0 6px; }
.event__info p { margin: 0; color: var(--muted); font-size: 14px; }
.event__cta a {
  white-space: nowrap; border: 1px solid var(--ink); border-radius: 999px;
  padding: 10px 20px; font-size: 13px; transition: all 0.2s ease;
}
.event__cta a:hover { background: var(--ink); color: var(--bone); }

/* ===== Partner / alliance wall ===== */
.partners { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 3vw, 28px); }
.partner {
  display: grid; grid-template-columns: 80px 1fr; gap: 20px; align-items: start;
  padding: 26px; background: var(--bone-2); border-radius: 6px;
}
.partner__logo {
  width: 80px; height: 80px; border-radius: 8px; background: var(--bone-3);
  display: grid; place-items: center; font-family: var(--serif);
  font-weight: 600; font-size: 26px; color: var(--terracotta);
}
.partner h3 { font-family: var(--serif); font-weight: 600; font-size: 20px; margin: 0 0 8px; }
.partner p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

@media (max-width: 900px) {
  .founders { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr; }
  .partners { grid-template-columns: 1fr; }
  .event { grid-template-columns: 80px 1fr; }
  .event__cta { grid-column: 2; justify-self: start; }
}

/* ===== Image-ID review overlay (mockup only) ===== */
.rev-badge {
  position: absolute;
  top: 8px; left: 8px;
  z-index: 6;
  background: var(--terracotta);
  color: var(--bone);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 5px 9px;
  border-radius: 4px;
  pointer-events: auto;
  cursor: help;
  box-shadow: 0 1px 5px rgba(0,0,0,0.35);
  user-select: all;
}
/* Slots still awaiting a REAL photo get an ink badge with a dot */
.rev-badge[data-need]::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--bone);
  margin-right: 6px;
  vertical-align: middle;
  margin-top: -2px;
}
.rev-badge[data-need] {
  background: var(--ink);
}
.rev-toggle {
  position: fixed;
  left: 16px; bottom: 16px;
  z-index: 60;
  border: 0;
  cursor: pointer;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.rev-toggle:hover { background: var(--terracotta); }
body.rev-off .rev-badge { display: none; }
