@font-face {
  font-family: "Zodiak";
  src: url("assets/fonts/Zodiak-Variable.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Zodiak";
  src: url("assets/fonts/Zodiak-VariableItalic.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("assets/fonts/HankenGrotesk-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("assets/fonts/HankenGrotesk-Italic-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

:root {
  /* Deep pine-ink (dark-card + text) */
  --jet: #1e2a26;
  /* Muted green-grey (secondary) */
  --lilac: #7e8a83;
  /* Sage grey (tints, media, small marks) */
  --powder: #c0c9c2;
  /* Pale green-white (light-on-dark, light buttons) */
  --alice: #eef4f0;
  /* Forest-green accent (the pop) — retains --emerald name for minimal churn */
  --emerald: #1f5c4d;

  --paper: #eef2f0;
  --paper-2: #f8faf8;
  --ink: #1e2a26;
  --ink-soft: #46514c;
  --muted: #6f7a74;
  --line: rgba(30, 42, 38, 0.13);
  --line-strong: rgba(30, 42, 38, 0.27);

  --on-dark: #e6ede8;
  --on-dark-soft: #a7b3ad;
  --line-dark: rgba(230, 237, 232, 0.17);

  --font-serif: "Zodiak", Georgia, "Times New Roman", serif;
  --font-sans: "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  --container: 1560px;
  --reading: 760px;
  --gutter: clamp(20px, 5vw, 72px);
  --section-y: clamp(76px, 11vw, 170px);

  /* type scale */
  --step-display: clamp(2.9rem, 6.4vw, 6rem);
  --step-1: clamp(2.1rem, 4.4vw, 3.9rem);
  --step-2: clamp(1.7rem, 2.9vw, 2.7rem);
  --step-3: clamp(1.3rem, 1.8vw, 1.65rem);
  --lead: clamp(1.25rem, 1.9vw, 1.6rem);
  --body: 1.0625rem;
  --small: 0.9375rem;
  --micro: 0.78rem;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.5s;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--body);
  line-height: 1.62;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.no-scroll { overflow: hidden; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; }
a { color: inherit; }
img { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--jet); color: var(--alice); }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--reading { max-width: var(--reading); }

/* small helpers */
.btn--dark { background: var(--jet); border-color: var(--jet); color: var(--alice); }
.btn.btn--dark:hover { background: transparent; color: var(--alice); border-color: var(--alice); }
.btn--dark .btn__dot { background: var(--emerald); }
.form__submit { display: flex; flex-wrap: wrap; gap: 1.6rem; align-items: center; justify-content: space-between; }

.bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(52px, 7vw, 104px); }

.serif-i { font-family: var(--font-serif); font-style: italic; font-weight: 400; }

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

.index-num {
  font-family: var(--font-sans);
  font-size: var(--small);
  font-weight: 500;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-sans);
  font-size: var(--small);
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}
.kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--powder);
  flex: none;
}
.kicker--emerald::before { background: var(--emerald); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--small);
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 1.4rem;
}

.lead {
  font-size: var(--lead);
  line-height: 1.42;
  color: var(--ink-soft);
  font-weight: 400;
  letter-spacing: -0.005em;
}

.prose p + p { margin-top: 1.15em; }
.prose p { color: var(--ink-soft); max-width: 62ch; }

/* Buttons + links */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  white-space: nowrap;
  font-family: var(--font-sans);
  font-size: var(--small);
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.92em 1.5em;
  border: 1px solid var(--jet);
  background: var(--jet);
  color: var(--alice);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), transform 0.25s var(--ease);
}
.btn:hover { background: transparent; color: var(--ink); }
.btn:active { transform: translateY(1px); }
.btn .btn__dot { display: none; }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { background: var(--jet); color: var(--alice); border-color: var(--jet); }

.btn--on-dark { background: var(--alice); color: var(--jet); border-color: var(--alice); }
.btn--on-dark:hover { background: transparent; color: var(--alice); }

.link {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: var(--small);
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 3px;
  background-image: linear-gradient(var(--ink), var(--ink));
  background-size: 100% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s var(--ease), color 0.3s var(--ease);
}
.link:hover { background-size: 0% 1px; color: var(--muted); }
.link__arrow { transition: transform 0.4s var(--ease); }
.link:hover .link__arrow { transform: translateX(4px); }

/* Media placeholder */
.media {
  position: relative;
  background: var(--powder);
  background-image:
    repeating-linear-gradient(-45deg, rgba(30,42,38,0.05) 0 1px, transparent 1px 13px);
  border: 1px solid var(--line);
  overflow: hidden;
}
.media > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.media[data-ratio="16-9"] { aspect-ratio: 16 / 9; }
.media[data-ratio="4-3"] { aspect-ratio: 4 / 3; }
.media[data-ratio="3-4"] { aspect-ratio: 3 / 4; }
.media[data-ratio="1-1"] { aspect-ratio: 1 / 1; }
.media[data-ratio="21-9"] { aspect-ratio: 21 / 9; }
.media > img, .media > video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.media__tag {
  position: absolute;
  left: 16px; bottom: 14px;
  font-family: var(--font-sans);
  font-size: var(--micro);
  font-weight: 500;
  color: var(--ink-soft);
  background: rgba(238,242,240,0.82);
  backdrop-filter: blur(2px);
  padding: 6px 10px;
  border: 1px solid var(--line);
}
.media--dark {
  background: #1e2323;
  background-image:
    repeating-linear-gradient(-45deg, rgba(230,237,232,0.05) 0 1px, transparent 1px 13px);
  border-color: var(--line-dark);
}
.media--dark .media__tag { color: var(--on-dark-soft); background: rgba(24,32,29,0.7); border-color: var(--line-dark); }

/* Reveal (GSAP toggles .is-in) */
.reveal { opacity: 0; transform: translateY(26px); }
.reveal.is-in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ===== Site header ===== */
.site-head {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  color: var(--ink);
  transition: background 0.45s var(--ease), color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.site-head__strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: var(--micro);
  font-weight: 500;
  color: var(--muted);
  padding-block: 8px;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.45s var(--ease), color 0.45s var(--ease);
}
.site-head__places { display: flex; gap: 0.6em; align-items: center; }
.site-head__places span:not(:last-child)::after { content: "·"; margin-left: 0.6em; color: var(--powder); }
.site-head__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: clamp(14px, 1.6vw, 22px);
}
.brand {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: inherit;
  line-height: 1;
}
.nav { display: flex; align-items: center; gap: clamp(1.4rem, 2.5vw, 2.6rem); }
.nav__links { display: flex; gap: clamp(1.4rem, 2.5vw, 2.6rem); }
.nav__link {
  font-family: var(--font-sans);
  font-size: var(--small);
  font-weight: 500;
  text-decoration: none;
  color: inherit;
  opacity: 0.82;
  position: relative;
  padding-block: 4px;
  transition: opacity 0.3s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav__link:hover { opacity: 1; }
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { opacity: 1; }

.site-head.is-solid {
  background: var(--paper);
  box-shadow: 0 1px 0 var(--line);
}
.site-head.is-dark { color: var(--on-dark); }
.site-head.is-dark .site-head__strip { color: var(--on-dark-soft); border-color: var(--line-dark); }
.site-head.is-dark .site-head__places span:not(:last-child)::after { color: var(--lilac); }
.site-head.is-dark .btn--ghost { color: var(--on-dark); border-color: var(--line-dark); }
.site-head.is-dark .btn--ghost:hover { background: var(--alice); color: var(--jet); border-color: var(--alice); }

.burger { display: none; }

/* ===== Mobile menu ===== */
.menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: var(--jet);
  color: var(--on-dark);
  padding: clamp(90px, 16vw, 130px) var(--gutter) var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform 0.55s var(--ease), visibility 0.55s;
}
.menu.is-open { transform: none; visibility: visible; }
.menu__links { display: flex; flex-direction: column; gap: clamp(0.4rem, 2vw, 1rem); }
.menu__link {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 9vw, 3.4rem);
  font-weight: 500;
  text-decoration: none;
  color: inherit;
  line-height: 1.1;
}
.menu__link[aria-current="page"] { color: var(--powder); }
.menu__meta { display: flex; justify-content: space-between; color: var(--on-dark-soft); font-size: var(--small); border-top: 1px solid var(--line-dark); padding-top: 1.4rem; }

/* ===== Hero (home) — inverted card + straddling strip + rotator ===== */
.hero { min-height: 100vh; padding-top: clamp(110px, 14vh, 165px); padding-bottom: clamp(3.5rem, 7vw, 6rem); }

.hero-card {
  background: var(--jet);
  color: var(--on-dark);
  padding: clamp(2.2rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1.8rem, 4vw, 3rem);
}
.hero__title { font-size: var(--step-display); font-weight: 500; max-width: 18ch; color: var(--alice); }
.hero__title .em { font-style: italic; font-weight: 400; }
.hero-card__lead { display: flex; flex-direction: column; gap: 1.8rem; max-width: 62ch; }
.hero-card__lead .lead { margin: 0; font-size: clamp(1.05rem, 1.35vw, 1.2rem); color: var(--on-dark-soft); }

/* bordered container with a straddling image strip + rotator */
.hero-band {
  border: 1px solid var(--line-dark);
  margin-top: calc(clamp(120px, 14vw, 200px) / 2 + clamp(1rem, 3vw, 2.5rem));
  padding: 0 clamp(1.4rem, 4vw, 3.5rem) clamp(2.5rem, 5vw, 4rem);
}
.hero-strip {
  display: flex;
  gap: 0;
  justify-content: center;
  height: clamp(120px, 14vw, 200px);
  width: fit-content;
  max-width: 100%;
  margin: calc(clamp(120px, 14vw, 200px) / -2) auto 0;
  box-sizing: border-box;
}
.hero-strip .media + .media { border-left: 0; }
.hero-strip .media { height: 100%; width: auto; aspect-ratio: 1 / 1; flex: none; }

.rotator { margin-top: clamp(2.5rem, 5vw, 4rem); max-width: 62ch; margin-inline: auto; text-align: center; }
.rotator__lines { display: grid; }
.rotator__line {
  grid-area: 1 / 1; margin: 0;
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(1.3rem, 2.3vw, 2rem); line-height: 1.26; letter-spacing: -0.01em;
  color: var(--on-dark);
  opacity: 0; transition: opacity 0.6s var(--ease);
}
.rotator__line.is-on { opacity: 1; }
.rotator__bar { height: 2px; background: var(--line-dark); margin-top: clamp(1.4rem, 3vw, 2.2rem); overflow: hidden; }
.rotator__bar span { display: block; height: 100%; background: var(--powder); transform: scaleX(0); transform-origin: left; }
.no-js .rotator__lines, .rotator.is-static .rotator__lines { display: block; }
.no-js .rotator__line, .rotator.is-static .rotator__line { opacity: 1; }
.rotator.is-static .rotator__line + .rotator__line { margin-top: 1rem; }
.rotator.is-static .rotator__bar { display: none; }

/* office block (inside black hero) */
.office { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 4vw, 3.2rem); align-items: center; margin-top: clamp(2rem, 5vw, 4rem); }
@media (min-width: 900px) { .office { grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 6rem); } }
.office__media { position: relative; }
.office__tag {
  position: absolute; top: 0; left: 0; margin: 0;
  transform: translate(clamp(-18px, -1.5vw, -10px), -42%);
  background: var(--powder); color: var(--jet);
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(1rem, 1.5vw, 1.3rem); line-height: 1.16; letter-spacing: -0.01em;
  padding: 0.7em 0.85em; max-width: 15ch;
}
.office__body p { color: var(--on-dark-soft); max-width: 54ch; }
.breather .office__tag { color: var(--jet); }
.office__body p + p { margin-top: 1.15em; }


/* ===== Section header ===== */
.sec-head { display: grid; gap: 1.5rem; margin-bottom: clamp(2.4rem, 4vw, 3.6rem); }
.sec-head__title { font-size: var(--step-3); line-height: 1.3; }
.sec-head__lead { max-width: 46ch; }
.sec-head--split {
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 900px) {
  .sec-head--split { grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 5rem); }
}

/* ===== Two-column editorial feature ===== */
.feature { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
.feature__body { display: flex; flex-direction: column; gap: 1.6rem; }
.feature__title { font-size: var(--step-2); }
@media (min-width: 900px) {
  .feature { grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 6rem); }
  .feature--flip .feature__media { order: -1; }
  .feature__body { padding-block: 1rem; }
}

/* ===== Areas / index cards ===== */
.index-cards { display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--jet); }
@media (min-width: 760px) { .index-cards { grid-template-columns: repeat(3, 1fr); } }
.index-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(0.85rem, 1.5vw, 1.15rem) clamp(1.2rem, 2vw, 1.6rem);
  background: var(--jet);
  color: var(--alice);
  border-bottom: 1px solid var(--line-dark);
  text-decoration: none;
  position: relative;
  min-height: 0;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}
@media (min-width: 760px) {
  .index-card { border-right: 1px solid var(--line-dark); }
  .index-card:last-child { border-right: 0; }
}
.index-card__title { font-size: clamp(1.02rem, 1.35vw, 1.2rem); font-weight: 500; max-width: none; }
.index-card__foot { flex: none; display: flex; align-items: center; }
.index-card__go {
  font-size: 1.6rem; line-height: 1;
  transition: transform 0.4s var(--ease);
  font-family: var(--font-sans); font-weight: 300;
}
.index-card:hover { background: var(--emerald); color: var(--alice); }
.index-card:hover .index-card__go { transform: translateY(4px); }
.index-card--accent:hover { background: var(--emerald); color: var(--alice); }

/* ===== Full-bleed tinted section ===== */
.section--blue { position: relative; isolation: isolate; }
.section--blue::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  background: var(--powder);
  z-index: -1;
}
.section--blue::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  background-image:
    linear-gradient(to right, rgba(30,42,38,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(30,42,38,0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  z-index: -1;
  pointer-events: none;
}

/* Arched-window (concentric) full-bleed panel */
.section--arch { position: relative; isolation: isolate; }
.section--arch::before { content: ""; position: absolute; top: 0; bottom: 0; left: calc(50% - 50vw); width: 100vw; background: var(--powder); z-index: -2; }
.arch-bg { position: absolute; top: 0; bottom: 0; left: calc(50% - 50vw); width: 100vw; z-index: -1; pointer-events: none; overflow: hidden; }
.arch-bg svg { width: 100%; height: 100%; display: block; stroke: var(--arch-stroke, rgba(30,42,38,0.07)); transform: translateY(9%); }

/* Tweak: sans-serif headings variant */
html.heads-sans h1,
html.heads-sans h2,
html.heads-sans .page-hero__title,
html.heads-sans .who__title,
html.heads-sans .feature__title,
html.heads-sans .breather__quote,
html.heads-sans .cstd__title { font-family: var(--font-sans); font-weight: 600; letter-spacing: -0.02em; }

/* straddling image strip on a section's top edge */
.straddle {
  display: flex;
  gap: 0;
  justify-content: center;
  height: clamp(140px, 17vw, 230px);
  width: fit-content;
  max-width: 100%;
  margin: calc(clamp(140px, 17vw, 230px) / -2 - clamp(2.6rem, 5.5vw, 6rem)) auto clamp(2.6rem, 5vw, 4rem);
}
.straddle .media { height: 100%; width: auto; aspect-ratio: 1 / 1; flex: none; }
.straddle .media + .media { border-left: 0; }

/* ===== Bullet -> list grid component ===== */
.grid-tagged { position: relative; }
.grid-tag {
  display: inline-block;
  background: var(--jet); color: var(--alice);
  font-family: var(--font-sans); font-weight: 500;
  font-size: var(--small); letter-spacing: 0.01em;
  padding: 0.5em 0.9em;
}
.grid-tagged .list-grid { border-top: 0; }

.list-grid { display: grid; grid-template-columns: 1fr; gap: 0; background: transparent; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
@media (min-width: 640px) { .list-grid--2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 860px) { .list-grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 640px) { .list-grid--4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .list-grid--4 { grid-template-columns: repeat(4, 1fr); } }
.grid-tagged .list-grid { border-top: 0; }
.list-grid__item {
  background: var(--paper);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(1.5rem, 2.4vw, 2.1rem);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-height: 148px;
}
.list-grid__item .index-num { margin-bottom: 0.4rem; }
.list-grid__item p { color: var(--ink-soft); font-size: 1rem; }
.list-grid__lede { font-family: var(--font-serif); font-size: 1.24rem; font-weight: 500; line-height: 1.2; }

/* stacked principle list */
.principles { border-top: 1px solid var(--line); }
.principle {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 3vw, 2.4rem);
  padding-block: clamp(1.4rem, 2.6vw, 2rem);
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.principle__text { font-family: var(--font-serif); font-size: clamp(1.2rem, 2vw, 1.7rem); font-weight: 500; line-height: 1.24; max-width: none; }

/* Assessment label chip (interfaith · How We Approach Partnerships) */
#approach .sec-head__title { font-size: var(--step-2); }
.assess-label { display: inline-block; margin: clamp(2rem, 4vw, 3rem) 0 1.4rem; background: var(--emerald); color: var(--alice); font-family: var(--font-sans); font-size: var(--small); font-weight: 500; letter-spacing: 0.01em; padding: 0.45em 0.85em; }

/* ===== Capital timeline (investment approach) ===== */
#capital-thinking .sec-head { text-align: center; }
.captl { margin-top: clamp(2.4rem, 4vw, 3.6rem); }
.captl__stops {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.6rem 0;
  position: relative;
}
.captl__stop {
  display: grid;
  grid-template-columns: 26px 1fr;
  grid-template-areas: "mark text";
  column-gap: 1.1rem;
}
.captl__mark {
  grid-area: mark;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 3px;
}
.captl__mark::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 3px;
  transform: translateX(-0.5px);
  width: 1px;
  height: calc(100% + 1.6rem);
  background: var(--line);
}
.captl__stop:last-child .captl__mark::before { height: 11px; }
.captl__dot {
  position: relative;
  z-index: 1;
  flex: none;
  width: 11px;
  height: 11px;
  background: var(--emerald);
}
.captl__idx {
  display: none;
}
.captl__text {
  grid-area: text;
  margin: 0.5rem 0 0;
  font-family: var(--font-serif);
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  font-weight: 500;
  line-height: 1.3;
  max-width: 30ch;
}
@media (min-width: 768px) {
  .captl__stops {
    grid-template-columns: repeat(4, 1fr);
    column-gap: clamp(1.4rem, 3vw, 3rem);
    row-gap: 0;
  }
  .captl__stop {
    grid-template-columns: 1fr;
    grid-template-areas: "idx" "mark" "text";
    align-content: start;
  }
  .captl__stop { text-align: center; }
  .captl__mark {
    justify-content: center;
    align-items: center;
    height: 28px;
    padding-top: 0;
  }
  .captl__mark::before {
    left: 50%;
    top: 50%;
    transform: translateY(-0.5px);
    width: calc(100% + clamp(1.4rem, 3vw, 3rem));
    height: 1px;
  }
  .captl__stop:last-child .captl__mark::before { display: none; }
  .captl__text { margin: 0.85rem auto 0; max-width: 22ch; }
}
.captl__note {
  margin: clamp(2.6rem, 5vw, 4rem) auto 0;
  max-width: 720px;
  background: var(--jet);
  color: var(--on-dark);
  padding: clamp(1.8rem, 3.5vw, 2.8rem) clamp(1.8rem, 4vw, 3.2rem);
  text-align: center;
}
.captl__note p {
  margin: 0 auto;
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--alice);
  max-width: 46ch;
}

/* ===== Allocation grid (investment approach) ===== */
#capital-thinking { padding-bottom: clamp(28px, 4vw, 56px); }
#allocation { padding-top: clamp(28px, 4vw, 56px); }
#allocation .sec-head { text-align: center; }
.alloc__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 2.4rem;
  column-gap: 1.4rem;
  margin-top: clamp(2.4rem, 4vw, 3.6rem);
}
@media (min-width: 620px) { .alloc__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 980px) { .alloc__grid { grid-template-columns: repeat(6, 1fr); column-gap: clamp(1.4rem, 3vw, 2.4rem); row-gap: 0; } }
.alloc__cell {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  text-align: center;
}
.alloc__cell::before {
  content: "";
  position: absolute;
  top: 5.5px;
  left: 50%;
  width: calc(100% + 1.4rem);
  height: 1px;
  background: var(--line);
  z-index: 0;
}
.alloc__cell:nth-child(2n)::before { display: none; }
@media (min-width: 620px) {
  .alloc__cell:nth-child(2n)::before { display: block; }
  .alloc__cell:nth-child(3n)::before { display: none; }
}
@media (min-width: 980px) {
  .alloc__cell::before { width: calc(100% + clamp(1.4rem, 3vw, 2.4rem)); }
  .alloc__cell:nth-child(3n)::before { display: block; }
  .alloc__cell:nth-child(2n)::before { display: block; }
  .alloc__cell:nth-child(6n)::before { display: none; }
}
.alloc__mark { position: relative; z-index: 1; width: 11px; height: 11px; background: var(--emerald); }
.alloc__cell p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 500;
  line-height: 1.3;
  max-width: 20ch;
}

/* ===== Participate accordion (investment approach) ===== */
.acc { border-top: 1px solid var(--line); margin-top: clamp(2rem, 4vw, 3.4rem); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__head {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "title icon" "matters icon";
  gap: 0.5rem 1.6rem;
  align-items: center;
  padding: clamp(1.4rem, 3vw, 2.3rem) 0;
  background: none;
  border: 0;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.acc__title {
  grid-area: title;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 500;
  line-height: 1.08;
  transition: color 0.3s var(--ease);
}
.acc__matters {
  grid-area: matters;
  font-size: var(--small);
  color: var(--muted);
  line-height: 1.45;
  max-width: 46ch;
}
.acc__icon {
  grid-area: icon;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex: none;
  align-self: center;
  color: var(--ink);
}
.acc__icon svg { width: 22px; height: 22px; display: block; transition: transform 0.45s var(--ease); }
.acc__item.is-open .acc__icon svg { transform: rotate(90deg); }
.acc__head:hover .acc__title { color: var(--emerald); }
@media (min-width: 780px) {
  .acc__head {
    grid-template-columns: 1fr auto auto;
    grid-template-areas: "title matters icon";
    gap: 0 clamp(1.6rem, 3vw, 3.2rem);
    align-items: baseline;
  }
  .acc__matters { justify-self: end; text-align: right; max-width: 42ch; }
  .acc__icon { align-self: baseline; position: relative; top: 0.1em; }
}
@media (hover: hover) {
  .acc__matters, .acc__icon {
    opacity: 0;
    transform: translateX(12px);
    transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
    transition-delay: 0s;
  }
  .acc__icon { transform: translateX(10px); }
  .acc__head:hover .acc__matters,
  .acc__head:focus-visible .acc__matters {
    opacity: 1;
    transform: none;
    transition-delay: 0.04s;
  }
  .acc__head:hover .acc__icon,
  .acc__head:focus-visible .acc__icon {
    opacity: 1;
    transform: none;
    transition-delay: 0.2s;
  }
  .acc__item.is-open .acc__icon { opacity: 1; transform: none; }
}
@media (hover: hover) and (prefers-reduced-motion: reduce) {
  .acc__matters, .acc__icon { opacity: 1; transform: none; transition: none; }
}
.acc__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.45s var(--ease); }
.acc__item.is-open .acc__panel { grid-template-rows: 1fr; }
.acc__panel-inner { overflow: hidden; }
.acc__body { padding: 0 0 clamp(1.8rem, 3.5vw, 2.8rem); max-width: 70ch; }
.acc__body p { color: var(--ink-soft); }
.acc__body p + p { margin-top: 1.1em; }

/* participate section on emerald */
#participate { background: var(--emerald); color: var(--on-dark); }
#participate .sec-head__title { color: var(--alice); font-size: clamp(2rem, 4.5vw, 3.4rem); line-height: 1.08; }
#participate .sec-head__lead { color: var(--on-dark-soft); }
#participate .acc { border-top-color: var(--line-dark); }
#participate .acc__item { border-bottom-color: var(--line-dark); }
#participate .acc__title { color: var(--alice); }
#participate .acc__matters { color: var(--on-dark-soft); }
#participate .acc__body p { color: var(--on-dark-soft); }
#participate .acc__icon { color: var(--alice); }
#participate .acc__head:hover .acc__title { color: #ffffff; }
#participate .acc__head:hover .acc__icon { color: #ffffff; }

/* ===== Counterparty standards (investment approach) ===== */
.cstd { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 3rem); }
@media (min-width: 900px) {
  .cstd { grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 6rem); align-items: start; }
}
.cstd__title { font-family: var(--font-serif); font-size: clamp(1.9rem, 3.4vw, 2.9rem); font-weight: 500; line-height: 1.1; letter-spacing: -0.01em; max-width: 12ch; }
.cstd__lead { margin: 0 0 1.8rem; font-size: 1.05rem; line-height: 1.5; color: var(--ink-soft); max-width: 46ch; }
.cstd__list ul { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.cstd__list .eyebrow { margin-bottom: 1.1rem; }
.cstd__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  align-items: baseline;
  padding: clamp(1.05rem, 2.2vw, 1.6rem) 0;
  border-bottom: 1px solid var(--line);
}
.cstd__mark { width: 9px; height: 9px; background: var(--emerald); transform: translateY(0.15em); }
.cstd__item p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
}

/* ===== Tabs component ===== */
.tabs__list { display: flex; flex-wrap: wrap; gap: 0.6rem; border-bottom: 0; }
.tabs__tab {
  appearance: none;
  border: 1px solid var(--line);
  background: var(--paper-2);
  font-family: var(--font-sans);
  font-size: var(--small);
  font-weight: 500;
  color: var(--ink-soft);
  padding: 0.72em 1.15em;
  cursor: pointer;
  position: relative;
  transition: color 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.tabs__tab:hover { color: var(--ink); border-color: var(--line-strong); }
.tabs__tab::after { display: none; }
.tabs__tab[aria-selected="true"] { background: var(--emerald); color: var(--alice); border-color: var(--emerald); }
.tabs__panels { background: var(--powder); padding: clamp(1.8rem, 4vw, 3.4rem); }

/* logos marquee on emerald — no hover colour switch */
.logos--emerald { background: var(--emerald); border-block: 1px solid var(--line-dark); border-color: var(--line-dark) !important; }
.logos--emerald .logo-cell { color: var(--on-dark-soft); border-right-color: var(--line-dark); }
.logos--emerald .logo-cell__mark { color: var(--alice) !important; }
.logos--emerald .logo-cell:hover { color: var(--on-dark-soft); background: transparent; }
.logos__track .logo-cell__url { display: none; }
.logo-grid .logo-cell__url { display: none; }
.tabs__panel { display: none; }
.tabs__panel.is-active { display: grid; }

/* ===== Carousel ===== */
.carousel { position: relative; }
.carousel__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: clamp(1.8rem, 3vw, 2.6rem); }
.carousel__nav { display: flex; gap: 0.6rem; flex: none; }
.carousel__btn {
  width: 52px; height: 52px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  font-size: 1.2rem;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), opacity 0.3s;
}
.carousel__btn:hover { background: var(--jet); color: var(--alice); border-color: var(--jet); }
.carousel__btn:disabled { opacity: 0.3; cursor: default; background: transparent; color: var(--ink); border-color: var(--line); }
.carousel__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  cursor: grab;
}
.carousel__viewport::-webkit-scrollbar { display: none; }
.carousel__viewport.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.carousel__track {
  display: flex;
  gap: clamp(1rem, 1.6vw, 1.5rem);
  padding-right: var(--gutter);
  width: max-content;
}
.slide {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: min(84vw, 420px);
  border: 1px solid var(--line);
  background: var(--paper-2);
  padding: clamp(1.8rem, 2.6vw, 2.4rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  min-height: clamp(340px, 40vw, 420px);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.slide:hover { border-color: var(--line-strong); }
.slide__num { color: var(--muted); }
.slide__title { font-size: var(--step-3); font-weight: 500; }
.slide__label { font-size: var(--micro); font-weight: 600; color: var(--muted); }
.slide__matters { color: var(--ink-soft); font-size: 1rem; margin-top: auto; }
.slide--accent { background: var(--emerald); border-color: var(--emerald); color: var(--alice); }
.slide--accent .slide__num, .slide--accent .slide__label { color: rgba(230,237,232,0.6); }
.slide--accent .slide__matters { color: rgba(230,237,232,0.85); }

/* ===== Breather / dark panel ===== */
.breather { background: var(--jet); color: var(--on-dark); }
.breather--emerald { background: var(--emerald); color: var(--on-dark); }
.breather__inner { display: grid; gap: clamp(2rem, 4vw, 3rem); }
.breather__quote {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
  line-height: 1.24;
  letter-spacing: -0.008em;
  max-width: 30ch;
}
.breather p { color: var(--on-dark-soft); max-width: 60ch; }
.breather--emerald p { color: rgba(230,237,232,0.82); }

/* ===== Why Religion? — banner + flush emerald boxes (interfaith) ===== */
.whyrel { display: grid; gap: 0; }
.whyrel__media { position: relative; }
.whyrel__boxes {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line-dark);
}
@media (min-width: 800px) { .whyrel__boxes { grid-template-columns: repeat(3, 1fr); } }
.whyrel__box {
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border-top: 1px solid var(--line-dark);
  background: var(--emerald);
  color: var(--on-dark);
}
.whyrel__box:first-child { border-top: 0; }
@media (min-width: 800px) {
  .whyrel__box { border-top: 0; border-left: 1px solid var(--line-dark); }
  .whyrel__box:first-child { border-left: 0; }
}
.whyrel__box p { margin: 0; color: rgba(230,237,232,0.82); font-size: 1rem; line-height: 1.6; }

/* Philanthropy — centred content + corner arcs + motion-path rider */.philanthropy { position: relative; overflow: hidden; }
.philanthropy__inner {
  position: relative; z-index: 2;
  justify-items: center; text-align: center;
}
.philanthropy__inner .breather__quote { margin-inline: auto; }
.philanthropy__inner .prose { margin-inline: auto; }
.philanthropy__inner .prose p { margin-inline: auto; }
.philanthropy__arc {
  position: absolute;
  width: clamp(260px, 40vw, 520px);
  height: clamp(260px, 40vw, 520px);
  pointer-events: none;
  z-index: 0;
}
.philanthropy__arc svg { width: 100%; height: 100%; display: block; overflow: visible; }
.philanthropy__arc--tr { right: 0; top: 0; transform: translate(50%, -50%); }
.philanthropy__arc--bl { left: 0; bottom: 0; transform: translate(-50%, 50%); }
.philanthropy__rider {
  position: absolute; top: 0; left: 0;
  width: clamp(78px, 9vw, 128px); height: clamp(78px, 9vw, 128px);
  z-index: 1; opacity: 0;
}
.philanthropy__rider img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===== Logo wall / marquee ===== */
.logos { overflow: hidden; }
.logos__track { display: flex; gap: 0; width: max-content; }
.logo-cell {
  flex: 0 0 auto;
  width: clamp(200px, 22vw, 280px);
  height: clamp(120px, 13vw, 150px);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--muted);
  transition: color 0.3s var(--ease), background 0.3s var(--ease);
}
.logo-cell:hover { color: var(--ink); background: var(--paper-2); }
.logo-cell__mark { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 500; color: var(--ink-soft); }
.logo-cell__img { max-width: 78%; max-height: clamp(38px, 5.5vw, 52px); width: auto; height: auto; object-fit: contain; display: block; }
.logo-cell__url { font-size: var(--micro); font-weight: 500; }

.logo-grid { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--line); }
@media (min-width: 700px) { .logo-grid { grid-template-columns: repeat(3, 1fr); } }
.logo-grid .logo-cell { width: auto; border-bottom: 1px solid var(--line); }
.logo-grid .logo-cell:nth-child(3n) { border-right: 0; }

/* ===== Who We Work With (interfaith) — emerald split + 2x2 logos ===== */
#who { background: var(--emerald); color: var(--on-dark); }
.who { display: grid; gap: clamp(1.6rem, 4vw, 2.4rem); }
.who__cols { display: grid; grid-template-columns: 1fr; gap: clamp(1.6rem, 4vw, 2.4rem); }
@media (min-width: 900px) { .who__cols { grid-template-columns: 1fr 1fr; column-gap: clamp(3rem, 6vw, 6rem); align-items: start; } }
.who__title { font-family: var(--font-serif); font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 500; line-height: 1.1; letter-spacing: -0.01em; color: var(--alice); margin: 0; }
.who__body p { color: rgba(230,237,232,0.86); max-width: 52ch; }
#who .logo-grid { grid-template-columns: repeat(2, 1fr); border-color: var(--line-dark); }
#who .logo-grid .logo-cell { border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); color: var(--on-dark-soft); }
#who .logo-grid .logo-cell:nth-child(2n) { border-right: 0; }
#who .logo-grid .logo-cell:nth-last-child(-n+2) { border-bottom: 0; }
#who .logo-cell__url { color: var(--on-dark-soft); }
#who .logo-cell:hover { color: var(--alice); background: rgba(255,255,255,0.05); }
.who-focus { margin-top: clamp(3rem, 6vw, 5rem); }
.who__title--sub { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-bottom: clamp(1.4rem, 3vw, 2rem); }
#who .list-grid { border-color: var(--line-dark); }
#who .list-grid__item { background: transparent; border-color: var(--line-dark); }
#who .list-grid__lede { color: var(--alice); }
#who .list-grid__item--accent { background: var(--alice); }
#who .list-grid__item--accent .list-grid__lede { color: var(--jet); }
.who-focus__note { margin: 2.2rem 0 0; max-width: 62ch; color: rgba(230,237,232,0.86); }
.who-focus .list-grid__item { min-height: 0; padding: clamp(1rem, 2.4vw, 1.5rem); display: flex; align-items: center; justify-content: center; text-align: center; }

/* ===== Contact form ===== */
.form { display: grid; gap: 1.6rem; }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field label { font-size: var(--small); font-weight: 500; color: var(--ink-soft); }
.field input, .field textarea, .field select {
  font-family: var(--font-sans);
  font-size: var(--body);
  color: var(--ink);
  background: var(--paper-2);
  border: 1px solid var(--line-strong);
  padding: 0.85em 1em;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 150px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--jet); box-shadow: inset 0 0 0 1px var(--jet);
}
.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.chip span {
  display: inline-flex;
  padding: 0.6em 1.1em;
  border: 1px solid var(--line-strong);
  font-size: var(--small);
  font-weight: 500;
  color: var(--ink-soft);
  transition: all 0.25s var(--ease);
  cursor: pointer;
}
.chip input:checked + span { background: var(--jet); color: var(--alice); border-color: var(--jet); }
.chip input:focus-visible + span { box-shadow: 0 0 0 2px var(--powder); }
.form__note { font-size: var(--small); color: var(--muted); max-width: 52ch; }
.form__ok { display: none; padding: 1.1em 1.3em; background: var(--emerald); color: var(--alice); font-weight: 500; }
.form.is-sent .form__ok { display: block; }
.form__err { display: none; padding: 1.1em 1.3em; background: #6f3a34; color: var(--alice); font-weight: 500; }
.form.is-error .form__err { display: block; }

/* ===== Footer ===== */
.site-foot { background: var(--jet); color: var(--on-dark); padding-block: clamp(3.5rem, 7vw, 6rem) 2.5rem; }
.foot__top { display: grid; grid-template-columns: 1fr; gap: clamp(2.5rem, 5vw, 4rem); padding-bottom: clamp(2.5rem, 5vw, 4rem); border-bottom: 1px solid var(--line-dark); }
@media (min-width: 820px) { .foot__top { grid-template-columns: 1.5fr 1fr 1fr 1.5fr; } }
.foot__col--cta { display: flex; flex-direction: column; gap: 1.2rem; align-items: flex-start; justify-content: center; background: var(--emerald); color: var(--on-dark); padding: clamp(1.5rem, 2.4vw, 2rem); align-self: start; box-shadow: 0 16px 40px rgba(30, 42, 38, 0.35); }
.foot__cta-text { font-family: var(--font-serif); font-weight: 500; font-size: clamp(0.85rem, 1vw, 0.95rem); line-height: 1.4; color: var(--on-dark); margin: 0; }
.foot__col--cta .btn { background: var(--alice); color: var(--jet); border-color: var(--alice); }
.foot__col--cta .btn:hover { background: var(--jet); color: var(--alice); border-color: var(--jet); }
.foot__brand { font-family: var(--font-serif); font-size: clamp(0.9rem, 1.1vw, 1rem); font-weight: 500; line-height: 1.35; max-width: 24ch; color: var(--on-dark-soft); }
.foot__logo { display: inline-block; font-family: var(--font-serif); font-weight: 600; font-size: 1.5rem; letter-spacing: -0.02em; color: var(--alice); text-decoration: none; line-height: 1; margin-bottom: 0.85rem; }
.foot__col h4 { font-family: var(--font-sans); font-size: var(--micro); font-weight: 600; color: var(--lilac); margin-bottom: 1.2rem; letter-spacing: 0.02em; }
.foot__col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.foot__col a, .foot__col span { text-decoration: none; color: var(--on-dark-soft); font-size: var(--small); transition: color 0.3s var(--ease); }
.foot__col a:hover { color: var(--on-dark); }
.foot__bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; padding-top: 2rem; color: var(--on-dark-soft); font-size: var(--small); }
.foot__bottom a { color: var(--on-dark-soft); text-decoration: none; }
.foot__bottom a:hover { color: var(--on-dark); }

/* ===== Responsive nav ===== */
@media (max-width: 960px) {
  .nav__links, .nav .btn { display: none; }
  .burger {
    display: inline-flex; flex-direction: column; gap: 5px;
    background: transparent; border: 0; cursor: pointer; padding: 6px; z-index: 60;
  }
  .burger span { width: 26px; height: 1.6px; background: currentColor; transition: transform 0.4s var(--ease), opacity 0.3s; }
  .burger.is-open span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
  .burger.is-open span:nth-child(2) { opacity: 0; }
  .burger.is-open span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }
}
@media (min-width: 861px) { .menu { display: none; } }

/* ===== Page hero (subpages) — inverted pine card, echoes home ===== */
.page-hero { padding-top: clamp(110px, 14vh, 165px); padding-bottom: clamp(1rem, 2vw, 2rem); }
.page-hero__card {
  background: var(--jet);
  color: var(--on-dark);
  padding: clamp(1.8rem, 3.5vw, 3rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.6rem, 3vw, 2.6rem);
}
@media (min-width: 900px) {
  .page-hero__card { grid-template-columns: 1.2fr 0.8fr; column-gap: clamp(2.5rem, 5vw, 5.5rem); align-items: start; }
  .page-hero__card .prose { align-self: end; }
}
.page-hero__title { font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 500; max-width: 18ch; color: var(--alice); }
.page-hero__title .em { font-style: italic; font-weight: 400; }
.page-hero__card .prose p { color: var(--on-dark-soft); font-size: 0.95rem; line-height: 1.55; }
.page-hero__card .prose p + p { margin-top: 1.1em; }

/* ===== Editorial entry list ===== */
.entries { border-top: 1px solid var(--line); }
.entry {
  display: grid; grid-template-columns: 1fr; gap: 1.2rem;
  padding-block: clamp(2.2rem, 4.5vw, 3.8rem);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 900px) { .entry { grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 5rem); } }
.entry__head { display: flex; flex-direction: column; gap: 0.9rem; align-self: start; }
.entry__title { font-size: var(--step-2); }
.entry__matters { font-family: var(--font-serif); font-style: italic; color: var(--muted); font-size: 1.05rem; line-height: 1.4; }
.entry__body { display: flex; flex-direction: column; gap: 1.4rem; }
@media (min-width: 900px) { .entry.is-sticky .entry__head { position: sticky; top: 130px; } }

/* full-bleed sage panel */
.section--sage { position: relative; isolation: isolate; }
.section--sage::before { content: ""; position: absolute; inset: 0; left: calc(50% - 50vw); width: 100vw; background: var(--powder); z-index: -1; }

/* ===== Value tab panel ===== */
.value-panel { display: grid; grid-template-columns: 1fr; gap: clamp(1.6rem, 4vw, 2.6rem); }
@media (min-width: 820px) { .value-panel { grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(2.5rem, 6vw, 6rem); align-items: start; } }
.value-panel__aside { display: flex; flex-direction: column; gap: 1.4rem; align-self: start; }
.value-panel__title { font-size: var(--step-2); }
.value-panel__body { display: flex; flex-direction: column; gap: 1.4rem; max-width: 60ch; }
@media (min-width: 820px) { .value-panel__body { margin-left: auto; } }
.mini-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.mini-list li { display: flex; gap: 1rem; padding-block: 0.9rem; border-bottom: 1px solid var(--line); align-items: baseline; }
.mini-list .index-num { flex: none; }
.mini-list span:last-child { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 500; }

/* refined capital-expectations list (governance · Stewardship of Capital) */
.value-panel__body .mini-list { border-top: 0; }
.value-panel__body .mini-list li { align-items: center; gap: 0.85rem; padding-block: 0.55rem; border-bottom: 0; }
.value-panel__body .mini-list li::before { content: ""; flex: none; width: 7px; height: 7px; background: var(--emerald); }
.value-panel__body .mini-list li:last-child { border-bottom: 0; }
.value-panel__body .mini-list span { font-size: 1.05rem; }

/* ===== Contact layout ===== */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2.5rem, 5vw, 5rem); }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 0.82fr 1.18fr; } }
.contact-grid__aside { display: flex; flex-direction: column; gap: 1.6rem; align-self: start; }

/* office locations (contact) */
.loc-list { display: grid; grid-template-columns: 1fr; gap: 1.6rem; }
@media (min-width: 480px) { .loc-list { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.loc__city { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 500; margin: 0 0 0.4rem; }
.loc__addr { color: var(--ink-soft); font-size: var(--small); line-height: 1.5; max-width: 24ch; margin: 0; }
.loc__tel { display: inline-block; margin-top: 0.55rem; font-size: var(--small); color: var(--ink-soft); }
.loc__email { display: inline-block; margin-top: 1.6rem; font-family: var(--font-serif); font-size: 1.15rem; font-weight: 500; }
.loc__tel:hover, .loc__email:hover { color: var(--emerald); }

/* ===== Legal / privacy policy document ===== */
.legal { max-width: 880px; }
.legal[data-lang="es"] { display: none; }
html[lang="es"] .legal[data-lang="es"] { display: block; }
html[lang="es"] .legal[data-lang="en"] { display: none; }
.legal .lead { color: var(--ink); font-size: var(--lead); line-height: 1.4; margin: 0 0 1.6rem; }
.legal h2 { font-family: var(--font-serif); font-weight: 500; font-size: clamp(1.5rem, 2.4vw, 2rem); line-height: 1.2; margin: 2.4rem 0 0.7rem; }
.legal h3 { font-family: var(--font-serif); font-weight: 500; font-size: 1.2rem; line-height: 1.25; margin: 1.6rem 0 0.5rem; }
.legal p { color: var(--ink-soft); line-height: 1.6; margin: 0 0 1rem; }
.legal ul { margin: 0 0 1.2rem; padding-left: 1.25rem; }
.legal li { color: var(--ink-soft); line-height: 1.55; margin-bottom: 0.5rem; }
.legal li::marker { color: var(--lilac); }
.legal strong { color: var(--ink); font-weight: 600; }
.legal a { color: var(--emerald); text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { color: var(--ink); }
@media (min-width: 900px) { .contact-grid__aside { position: sticky; top: 130px; } }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.6rem; }
@media (min-width: 620px) { .form-row { grid-template-columns: 1fr 1fr; } }
