@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800;900&family=Cormorant+Garamond:wght@700&family=Manrope:wght@400;500;600;700;800;900&display=swap');

:root {
  --dark: #1d1d1a;
  --deep: #10100e;
  --panel: #25231e;
  --panel-2: #302b23;
  --ink: #f8f6ed;
  --muted: rgba(248, 246, 237, .72);
  --line: rgba(248, 246, 237, .16);
  --lime: #b7c260;
  --lime-2: #cbd483;
  --teal: #979d95;
  --warm: #f5f0e8;
  --paper: #f7efe3;
  --paper-2: #fffaf1;
  --charcoal: #191917;
  --orange: #dc7141;
  --shadow: 0 24px 80px rgba(0, 0, 0, .34);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--dark);
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
  overflow-x: hidden;
}

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

.wrap { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }
.narrow { width: min(820px, calc(100% - 48px)); margin: 0 auto; }
.page { background: var(--dark); min-height: 100vh; }

.nav {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  padding: 22px 32px;
  transition: background .25s ease, border-color .25s ease, padding .25s ease;
}

.nav.is-scrolled {
  background: rgba(19, 20, 18, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  padding: 14px 32px;
}

.nav-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: 18px;
}

.logo img { width: 178px; filter: drop-shadow(0 12px 30px rgba(0,0,0,.28)); }
.menu {
  display: none;
  justify-content: center;
  gap: 24px;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
}

.menu a, .social a, .nav-action { transition: color .2s ease, opacity .2s ease, transform .2s ease; }
.menu a:hover, .menu a.active { color: var(--lime); }

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social a {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
  color: rgba(255,255,255,.82);
}

.social a:hover { color: var(--lime); transform: translateY(-1px); }

.menu-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px 0 46px;
  border: 1px solid rgba(248,246,237,.22);
  border-radius: 999px;
  background: rgba(248,246,237,.06);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.menu-toggle span {
  display: block;
  position: absolute;
  left: 16px;
  top: 50%;
  width: 20px;
  height: 2px;
  background: currentColor;
  transform-origin: center;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle span:nth-child(1) { transform: translateY(-7px); }
.menu-toggle span:nth-child(2) { transform: translateY(0); }
.menu-toggle span:nth-child(3) { transform: translateY(7px); }

.menu-toggle em {
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.menu-toggle:hover {
  border-color: rgba(248,246,237,.48);
  background: rgba(248,246,237,.12);
  transform: translateY(-1px);
}

.menu-open .menu-toggle span:nth-child(1) { transform: translateY(0) rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle span:nth-child(3) { transform: translateY(0) rotate(-45deg); }

.menu-backdrop {
  position: fixed;
  z-index: 38;
  inset: 0;
  border: 0;
  background: rgba(0,0,0,.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.menu-panel {
  position: fixed;
  z-index: 39;
  top: 0;
  right: 0;
  width: min(430px, calc(100vw - 28px));
  height: 100vh;
  padding: 28px;
  overflow-y: auto;
  background:
    linear-gradient(180deg, rgba(183,194,96,.12), rgba(220,113,65,.08) 52%, rgba(17,17,15,0)),
    #151513;
  border-left: 1px solid rgba(248,246,237,.16);
  box-shadow: -28px 0 90px rgba(0,0,0,.42);
  transform: translateX(104%);
  transition: transform .28s ease;
}

.menu-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.menu-panel-head img {
  width: 158px;
}

.menu-close {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(248,246,237,.22);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.menu-panel-group {
  display: grid;
  gap: 10px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(248,246,237,.14);
}

.menu-panel-group:first-of-type {
  margin-top: 0;
}

.menu-panel-label {
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-panel-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  color: var(--ink);
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-size: clamp(31px, 4.6vw, 46px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.menu-panel-link::after {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(248,246,237,.28);
}

.menu-panel-link:hover,
.menu-panel-link.is-active {
  color: var(--lime);
}

.menu-panel-link:hover::after,
.menu-panel-link.is-active::after {
  background: var(--lime);
}

.menu-open {
  overflow: hidden;
}

.menu-open .menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.menu-open .menu-panel {
  transform: translateX(0);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: #b7c260;
  color: #171b13;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.button::after {
  display: none;
  content: "";
}

.button:hover {
  transform: translateY(-1px);
  background: #c5cf76;
  box-shadow: 0 7px 14px rgba(0,0,0,.12);
}

.button:hover::after { transform: none; }
.button:active { transform: translateY(0) scale(.99); }
.button.ghost { background: transparent; border-color: rgba(248,246,237,.28); color: var(--ink); }
.button.ghost:hover { border-color: rgba(248,246,237,.56); background: rgba(248,246,237,.08); color: var(--ink); }

.kicker {
  margin: 0 0 10px;
  color: #cbd483;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.activity-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: #cbd483;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.activity-label span {
  display: inline-grid;
  min-width: 34px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(203,212,131,.48);
  border-radius: 999px;
  color: var(--ink);
}

.title, .hero-title, .card-title {
  margin: 0;
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-title { font-size: clamp(72px, 11vw, 136px); line-height: 1; text-shadow: 0 22px 60px rgba(0,0,0,.48); }
.home-hero-title { font-size: clamp(68px, 7.4vw, 102px); }
.title { font-size: clamp(52px, 7.6vw, 96px); }
.title.mid { font-size: clamp(44px, 5.8vw, 76px); }
.card-title { font-size: clamp(42px, 5.2vw, 72px); line-height: 1.04; }

.copy {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.lead-copy {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.36;
}

.kicker + .title,
.kicker + .hero-title,
.kicker + .card-title,
.kicker + h2,
.kicker + h3 {
  margin-top: 8px;
}

.activity-label + .title,
.activity-label + h2,
.activity-label + h3 {
  margin-top: 8px;
}

.title + .copy,
.title + .lead-copy,
.hero-title + .copy,
.card-title + .copy,
h1 + .copy,
h2 + .copy,
h3 + .copy,
h3 + p {
  margin-top: 28px;
}

.copy + .copy,
p + p {
  margin-top: 18px;
}

.hero {
  min-height: 860px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #111;
}

.hero.tall { min-height: 760px; }
.hero-media, .split-hero-media {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(0,0,0,.5), rgba(0,0,0,.14) 44%, rgba(31,32,29,.96)), var(--bg);
  background-size: cover;
  background-position: var(--hero-bg-x, center) calc(var(--hero-bg-y, 50%) + var(--hero-parallax, 0px));
  transform: scale(1.04);
  animation: ken 18s ease-in-out infinite alternate;
}

.events-hero .hero-media { --hero-bg-y: 48%; }
.about-hero .hero-media {
  --hero-bg-y: 47%;
}

@keyframes ken { from { transform: scale(1.03) translateY(0); } to { transform: scale(1.09) translateY(-18px); } }

.hero-content {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 44px));
  text-align: center;
  padding-top: 82px;
}

.hero-content .copy { max-width: 620px; margin: 24px auto 32px; color: rgba(255,255,255,.84); }
.hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

.hero-strip {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 28px;
  width: min(940px, calc(100% - 48px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.hero-strip img {
  width: 100%;
  height: 108px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 14px 40px rgba(0,0,0,.26);
}

section {
  position: relative;
  padding: 104px 0;
  scroll-margin-top: 88px;
}

.what-we-do-section {
  background:
    linear-gradient(90deg, rgba(183,194,96,.1), rgba(220,113,65,.05) 56%, rgba(183,194,96,.07)),
    linear-gradient(180deg, #141412 0%, #141412 34%, #1b1d15 62%, #343e22 100%),
    #151513;
  border-top: 1px solid rgba(248,246,237,.1);
  border-bottom: 1px solid rgba(248,246,237,.14);
  overflow: hidden;
}

.fund-field-section {
  background:
    linear-gradient(90deg, rgba(220,113,65,.07), rgba(183,194,96,.055) 62%, rgba(245,240,232,.025)),
    linear-gradient(180deg, #1f1f1b 0%, #22231c 42%, #313a20 100%),
    #22211d;
  border-block: 1px solid rgba(248,246,237,.18);
  overflow: hidden;
}

.photo-break {
  padding: 44px 0;
  background:
    linear-gradient(90deg, rgba(183,194,96,.08), rgba(220,113,65,.04) 58%, rgba(183,194,96,.055)),
    linear-gradient(180deg, #121210 0%, #171812 54%, #2e371f 100%),
    #121210;
  border-block: 1px solid rgba(248,246,237,.16);
  overflow: hidden;
}

.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: 48px;
  align-items: center;
  margin-bottom: 54px;
}

.section-head-spacious {
  align-items: end;
}

.what-we-do-section .section-head {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 64px;
}

.what-we-do-section .section-head .title {
  font-size: 96px;
  line-height: .94;
  white-space: nowrap;
}

.what-we-do-section .section-head > .copy {
  max-width: 390px;
  margin-bottom: 8px;
  color: rgba(248,246,237,.82);
  font-size: 18px;
  line-height: 1.55;
}

.gatherings-section .section-head .title {
  font-size: clamp(66px, 10.4vw, 146px);
  line-height: 1.02;
}

.section-head-spacious .button {
  justify-self: end;
  margin-bottom: 10px;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.work-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.work-image-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(248,246,237,.1);
  border-radius: 2px;
  background: #10100f;
  color: var(--ink);
  box-shadow: none;
  isolation: isolate;
}

.work-image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
  will-change: transform;
}

.work-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(6,6,5,.02) 34%, rgba(6,6,5,.55) 70%, rgba(6,6,5,.78) 100%);
}

.work-image-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 176px;
  background: rgba(20,20,18,.6);
  backdrop-filter: blur(10px);
}

.work-card-label {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 104px;
  left: 24px;
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.16;
  text-transform: uppercase;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.work-card-cta {
  position: absolute;
  right: auto;
  bottom: 28px;
  left: 24px;
  z-index: 3;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid rgba(248,246,237,.62);
  border-radius: 999px;
  background: rgba(12,12,10,.3);
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.work-image-card:hover img {
  filter: saturate(1.03);
  transform: scale(1.018);
}

.work-image-card:hover .work-card-cta {
  border-color: rgba(248,246,237,.86);
  background: rgba(248,246,237,.92);
  color: #171713;
}

.pillar-card, .polished-card, .event-card, .office-card, .story-card {
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015)), var(--panel);
  border: 1px solid var(--line);
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 18px 58px rgba(0,0,0,.18);
}

.event-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.event-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 1;
  height: 4px;
  background: var(--event-accent, var(--lime-2));
}

.pillar-card img, .story-card img, .event-card img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  transition: transform .55s ease, opacity .35s ease, filter .35s ease;
  will-change: transform;
}

.event-card img.focus-tamryn,
.event-card img.focus-top { object-position: center 12%; }
.event-card img.focus-center { object-position: center center; }
.focus-tamryn-portrait { object-position: center 18%; }
.project-card img[src*="gimbi-stage-ministry"],
.parallax-frame img[src*="gimbi-stage-ministry"] { object-position: 58% center; }
.focus-tamryn-wide { object-position: center 12%; }

.hero-strip img,
.image-grid img,
.gallery-river img {
  transition: transform .55s ease, opacity .35s ease, filter .35s ease;
  will-change: transform;
}

.hero-strip:hover img,
.pillars:hover .pillar-card img,
.events-grid:hover .event-card img,
.stories-grid:hover .story-card img,
.image-grid:hover img,
.gallery-river:hover img {
  opacity: .86;
  filter: saturate(.96);
}

.hero-strip:hover img:hover,
.pillars:hover .pillar-card:hover img,
.events-grid:hover .event-card:hover img,
.stories-grid:hover .story-card:hover img,
.image-grid:hover img:hover,
.gallery-river:hover img:hover {
  opacity: 1;
  filter: saturate(1.03);
  transform: scale(1.018);
}

.pillar-body, .story-body, .event-body, .office-card, .polished-card { padding: 30px; }
.event-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}
.pillar-body h3, .story-body h3, .event-body h3, .office-card h3 {
  margin: 0 0 12px;
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-size: 32px;
  line-height: 1.04;
  text-transform: uppercase;
}

.stats-band {
  background: #fffaf1;
  color: var(--charcoal);
  border-block: 1px solid rgba(24,25,22,.12);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat {
  border: 1px solid rgba(24,25,22,.13);
  border-radius: 2px;
  padding: 28px;
  min-height: 150px;
  background: #f3eadb;
}

.stat strong {
  display: block;
  color: var(--charcoal);
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-size: 56px;
  line-height: 1;
  text-transform: uppercase;
}

.stat span {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(24,25,22,.58);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(0, 1.02fr);
  gap: 28px;
  align-items: stretch;
}

.split.reverse { grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr); }
.split-photo, .parallax-frame {
  min-height: 560px;
  border-radius: 7px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.split-photo img, .parallax-frame img {
  width: 100%;
  height: 118%;
  object-fit: cover;
  transform: translateY(var(--parallax, 0px)) scale(var(--photo-scale, 1.04));
  transition: transform .55s ease, opacity .35s ease, filter .35s ease;
  will-change: transform;
}

.split-photo:hover,
.parallax-frame:hover {
  --photo-scale: 1.045;
}

.split-photo img[src*="tamryn"],
.parallax-frame img[src*="tamryn"],
.pillar-card img[src*="tamryn"],
.event-card img[src*="tamryn"],
.highlight-card img[src*="tamryn"] {
  object-position: center 14%;
}

.split-photo img[src*="tamryn-klintworth-1"],
.parallax-frame img[src*="tamryn-klintworth-1"],
.pillar-card img[src*="tamryn-klintworth-1"],
.event-card img[src*="tamryn-klintworth-1"],
.highlight-card img[src*="tamryn-klintworth-1"] {
  object-position: center 18%;
}

.event-card img[src*="tamryn-85"] {
  object-position: center 16%;
}

.parallax-frame img[src*="tamryn-klintworth-1"],
.split-photo img[src*="tamryn-stage"],
.parallax-frame img[src*="tamryn-stage"] {
  height: 100%;
  transform: scale(1.02);
}

.feature-panel {
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015)), var(--panel);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-panel .title,
.feature-panel .card-title,
.feature-panel h2,
.feature-panel h3,
.feature-panel .mini-stats strong {
  color: var(--ink);
}

.feature-panel .copy,
.feature-panel .mini-stats span {
  color: rgba(248,246,237,.74);
}

.feature-panel .copy + .copy { margin-top: 18px; }

.founder-panel {
  justify-content: flex-start;
}

.founder-role {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 16px;
}

.founder-role span {
  display: inline-grid;
  min-height: 30px;
  place-items: center;
  padding: 0 12px;
  border: 1px solid rgba(198,213,89,.36);
  border-radius: 999px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.books-frame {
  background: #e3e2df;
}

.books-showcase {
  max-width: 980px;
}

.books-showcase .books-frame {
  min-height: clamp(420px, 54vw, 660px);
}

.books-frame img {
  object-fit: contain;
  object-position: center bottom;
  padding: clamp(18px, 3vw, 34px);
  background: #e3e2df;
}

.family-grid,
.highlight-grid {
  display: grid;
  gap: 18px;
}

.family-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.family-card,
.highlight-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.018)), var(--panel);
  border: 1px solid var(--line);
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 18px 58px rgba(0,0,0,.18);
}

.family-card img,
.highlight-card img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  transition: transform .55s ease, opacity .35s ease, filter .35s ease;
  will-change: transform;
}

.family-card:hover img,
.highlight-card:hover img {
  opacity: .94;
  filter: saturate(1.04);
  transform: scale(1.018);
}

.family-body,
.highlight-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 30px;
}

.family-body {
  gap: 16px;
}

.family-body h3,
.highlight-body h3 {
  margin: 0;
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-size: clamp(32px, 3.2vw, 44px);
  line-height: 1.04;
  text-transform: uppercase;
}

.family-body .button {
  align-self: flex-start;
  margin-top: auto;
}

.mini-signup {
  display: grid;
  gap: 12px;
  margin-top: auto;
}

.mini-signup label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.mini-signup input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255,255,255,.04);
  color: var(--ink);
  padding: 0 13px;
  font: inherit;
  text-transform: none;
}

.mini-signup input::placeholder {
  color: rgba(248,246,237,.42);
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.choice-row label {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
}

.choice-row input {
  width: auto;
  min-height: auto;
  padding: 0;
}

.signup-response {
  margin: 0;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.5;
}

.family-benefits {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  margin-top: 18px;
  padding: 30px;
  border: 1px solid rgba(248,246,237,.14);
  border-radius: 2px;
  background: rgba(248,246,237,.055);
}

.family-benefits .kicker {
  margin: 0;
}

.highlight-grid {
  grid-template-columns: 1.16fr .92fr .92fr;
  align-items: stretch;
}

.highlight-large img {
  height: 360px;
}

.highlight-card:not(.highlight-large) img {
  height: 285px;
}

.highlight-body {
  gap: 12px;
}

.featured-highlights .section-head {
  margin-bottom: 54px;
}

.featured-highlights .title,
.join-family-section .title {
  max-width: 860px;
  font-size: clamp(52px, 7vw, 92px);
  line-height: 1.02;
}

.join-family-section {
  background:
    linear-gradient(180deg, rgba(255,255,255,.48), rgba(255,255,255,0) 58%),
    #f4eadc;
  color: var(--charcoal);
  border-block: 1px solid rgba(24,25,22,.12);
}

.join-family-section .title {
  color: var(--charcoal);
}

.join-family-section > .wrap > .section-head .copy {
  color: rgba(24,25,22,.72);
}

.join-family-section .kicker,
.join-family-section .family-body .kicker {
  color: #963d1f;
}

.join-family-section .family-grid {
  gap: 26px;
}

.join-family-section .family-card {
  border-color: rgba(24,25,22,.1);
  border-radius: 2px;
  background: #fffaf1;
  color: var(--charcoal);
  box-shadow: 0 12px 28px rgba(21,25,18,.08);
}

.join-family-section .family-body .copy,
.join-family-section .mini-signup label {
  color: rgba(24,25,22,.7);
}

.join-family-section .mini-signup input {
  border-color: rgba(24,25,22,.2);
  background: rgba(255,255,255,.72);
  color: var(--charcoal);
}

.join-family-section .mini-signup input::placeholder {
  color: rgba(24,25,22,.4);
}

.join-family-section .choice-row label {
  border-color: rgba(24,25,22,.2);
  background: rgba(24,25,22,.035);
}

.join-family-section .button.ghost {
  border-color: rgba(24,25,22,.28);
  color: var(--charcoal);
}

.join-family-section .button.ghost:hover {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--ink);
}

.highlight-body .copy {
  margin-top: 10px;
}

.latest-news-section {
  background: #fffaf1;
  color: var(--charcoal);
  border-block: 1px solid rgba(24,25,22,.14);
}

.latest-news-section .highlight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.latest-news-section .kicker {
  color: #963d1f;
}

.fund-field-section .kicker {
  color: var(--orange);
}

.latest-news-section .title,
.latest-news-section .highlight-body h3 {
  color: var(--charcoal);
}

.latest-news-section .copy {
  color: rgba(24,25,22,.72);
}

.latest-news-section .highlight-card {
  border-color: rgba(24,25,22,.12);
  border-radius: 2px;
  background: #ffffff;
  color: var(--charcoal);
  box-shadow: 0 10px 24px rgba(21,25,18,.08);
}

.latest-news-section .highlight-card:hover {
  border-color: rgba(24,25,22,.24);
}

.latest-news-section .highlight-card img {
  height: 300px;
  opacity: 1;
  filter: none;
}

.latest-news-section .book-card img[src*="spirit-of-fire-action-edition"] {
  padding: 14px 22px;
  background: #f4f0e6;
  object-fit: contain;
  object-position: center;
}

.latest-news-section .highlight-body {
  background: #ffffff;
  min-height: 260px;
  padding: 32px 32px 36px;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.mini-stats div {
  min-height: 122px;
  border: 1px solid var(--line);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mini-stats strong {
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-size: 42px;
  line-height: 1;
  text-transform: uppercase;
}

.mini-stats span {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--muted);
}

.image-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr 1fr;
  gap: 16px;
}

.image-grid img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 7px;
  border: 1px solid var(--line);
}

.image-grid img:nth-child(2) { height: 420px; }
.image-grid img:nth-child(3) { height: 300px; align-self: end; }

.events-grid, .stories-grid, .offices-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gatherings-section {
  background:
    linear-gradient(90deg, rgba(183,194,96,.08), rgba(220,113,65,.045) 58%, rgba(183,194,96,.055)),
    linear-gradient(180deg, #161613 0%, #171714 38%, #202418 70%, #343d22 100%),
    #171714;
  border-block: 1px solid rgba(248,246,237,.16);
  overflow: hidden;
}

.event-list {
  display: grid;
  gap: 0;
}

.event-row {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) auto;
  gap: 54px;
  align-items: center;
  padding: 54px 0;
  border-top: 1px solid rgba(248,246,237,.15);
}

.event-row:last-child {
  border-bottom: 1px solid rgba(248,246,237,.15);
}

.event-row img {
  width: 210px;
  height: 145px;
  object-fit: cover;
  border: 1px solid rgba(248,246,237,.12);
  border-radius: 2px;
}

.event-row-content h3 {
  margin: 16px 0 14px;
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-size: clamp(32px, 3.7vw, 52px);
  font-weight: 900;
  line-height: 1.04;
  text-transform: uppercase;
}

.event-row-content .copy {
  max-width: 620px;
}

.event-row-action {
  justify-self: end;
  white-space: nowrap;
}

.gatherings-section .event-row-action {
  border-color: transparent;
  background: #bac563;
  color: var(--charcoal);
}

.gatherings-section .event-row-action:hover {
  border-color: transparent;
  background: #c9d27c;
  color: var(--charcoal);
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.event-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -14px 0 34px;
}

.event-filters button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.event-filters button:hover,
.event-filters button.is-active {
  border-color: rgba(248,246,237,.5);
  background: rgba(248,246,237,.1);
  color: var(--ink);
  transform: translateY(-1px);
}

.event-card[hidden] {
  display: none;
}

.event-date,
.event-tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid rgba(248,246,237,.22);
  border-radius: 999px;
  color: rgba(248,246,237,.78);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.event-tag {
  border-color: var(--event-border, rgba(248,246,237,.22));
  background: var(--event-soft, rgba(248,246,237,.055));
  color: var(--event-accent, rgba(248,246,237,.78));
}

.event-body > p:last-child { margin-top: auto !important; }

.category-invitation {
  --event-accent: #cbd483;
  --event-soft: rgba(203,212,131,.08);
  --event-border: rgba(203,212,131,.22);
}

.category-equipping {
  --event-accent: #aeb7b0;
  --event-soft: rgba(174,183,176,.1);
  --event-border: rgba(174,183,176,.24);
}

.category-crusade {
  --event-accent: #dc7141;
  --event-soft: rgba(220,113,65,.12);
  --event-border: rgba(220,113,65,.3);
}

.category-prayer {
  --event-accent: #cbb6d7;
  --event-soft: rgba(203,182,215,.1);
  --event-border: rgba(203,182,215,.26);
}

.category-evangelists {
  --event-accent: #cbb6d7;
  --event-soft: rgba(203,182,215,.1);
  --event-border: rgba(203,182,215,.26);
}

.event-body {
  display: flex;
  flex-direction: column;
}

.event-body .event-action {
  margin: auto 0 0;
  padding-top: 26px;
}

.event-body > p:last-child:has(.button) {
  margin-top: auto !important;
  padding-top: 26px;
}

.network-section {
  background:
    linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,0) 54%),
    #efe3d2;
  color: var(--charcoal);
  border-block: 1px solid rgba(24,25,22,.16);
}

.network-section .kicker {
  color: #963d1f;
}

.network-section .title,
.network-section .card-title {
  color: var(--charcoal);
}

.network-section .copy,
.network-card-body .copy {
  color: rgba(24,25,22,.7);
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.network-image-card {
  display: flex;
  min-height: 430px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(24,25,22,.12);
  border-radius: 2px;
  background: #fffaf1;
  color: var(--charcoal);
  box-shadow: 0 10px 26px rgba(21,25,18,.08);
}

.network-card-media {
  height: 205px;
  overflow: hidden;
  background: #ddd6ca;
}

.network-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}

.network-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
}

.network-card-body .card-title {
  margin: 16px 0 14px;
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.04;
}

.network-card-body .copy {
  margin-bottom: 26px;
}

.network-card-body .button {
  margin-top: auto;
}

.network-card-body .button.ghost {
  border-color: rgba(24,25,22,.3);
  color: var(--charcoal);
}

.network-card-body .button.ghost:hover {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--ink);
}

.network-image-card:hover {
  border-color: rgba(24,25,22,.26);
}

.network-image-card:hover .network-card-media img {
  filter: saturate(1.04);
  transform: scale(1.018);
}

.archive-card {
  color: inherit;
  text-decoration: none;
}

.archive-card:hover .archive-link { color: var(--orange); }

.archive-link {
  display: inline-block;
  margin-top: 18px;
  color: rgba(248,246,237,.68);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: color .25s ease;
}

.funding-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  overflow: hidden;
}

.funding-card .kicker,
.funding-card .card-title,
.funding-card .copy {
  margin: 0;
}

.funding-card .card-title {
  max-width: 100%;
  font-size: clamp(28px, 2.9vw, 42px);
  line-height: 1.04;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
}

.funding-card .copy {
  max-width: 30ch;
  line-height: 1.72;
  overflow-wrap: anywhere;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.project-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(248,246,237,.08);
  border-radius: 2px;
  background: #fffaf1;
  color: var(--charcoal);
  box-shadow: 0 16px 38px rgba(0,0,0,.14);
}

.project-card img {
  width: 100%;
  height: 304px;
  min-height: 0;
  object-fit: cover;
}

.resource-hero .hero-content {
  max-width: 760px;
}

.resource-hero .copy {
  max-width: 52ch;
}

.resource-intro {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: stretch;
}

.resource-intro .feature-panel {
  min-height: 100%;
}

.resource-side-image {
  min-height: 520px;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.resource-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.018)), var(--panel);
  color: var(--ink);
}

.resource-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.02;
  text-transform: uppercase;
}

.resource-card .copy {
  color: rgba(248,246,237,.74);
}

.resource-card .button {
  align-self: flex-start;
  margin-top: auto;
}

.resource-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.resource-list article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255,255,255,.025);
}

.resource-list h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-size: clamp(28px, 2.5vw, 38px);
  line-height: 1;
  text-transform: uppercase;
}

.resource-list .copy {
  color: rgba(248,246,237,.74);
}

.resource-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid rgba(248,246,237,.12);
  border-radius: 7px;
  background: linear-gradient(135deg, rgba(198,213,89,.14), rgba(255,255,255,.025)), var(--panel);
}

.resource-cta h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-size: clamp(44px, 6vw, 78px);
  line-height: .96;
  text-transform: uppercase;
}

.about-two-grid,
.about-outcome-grid,
.office-register-grid {
  display: grid;
  gap: 18px;
}

.about-two-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-outcome-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-detail-card {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(24,25,22,.14);
  border-radius: 7px;
  background: #f3eadb;
  color: var(--charcoal);
  box-shadow: 0 16px 38px rgba(0,0,0,.1);
}

.about-crusade-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.about-crusade-card img {
  width: 100%;
  height: clamp(220px, 24vw, 320px);
  margin: 0 0 clamp(24px, 3vw, 34px);
  object-fit: cover;
}

.about-crusade-card h3 {
  padding: 0 clamp(28px, 4vw, 46px);
}

.about-crusade-card .copy {
  padding: 0 clamp(28px, 4vw, 46px) clamp(28px, 4vw, 46px);
}

.about-crusade-card img[src*="meki-woman-child"] {
  object-position: center 28%;
}

.about-detail-card h3 {
  margin: 0 0 18px;
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-size: clamp(42px, 4vw, 66px);
  line-height: .96;
  text-transform: uppercase;
}

.about-detail-card .copy {
  color: rgba(24,25,22,.7);
}

.about-detail-card .copy + .copy {
  margin-top: 16px;
}

.about-service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-service-split .parallax-frame {
  min-height: 520px;
}

.about-offices-section {
  border-top: 1px solid rgba(24,25,22,.16);
}

.outcome-intro {
  max-width: 920px;
  margin: 0 0 42px;
  color: var(--ink);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 700;
  line-height: 1.05;
}

.founder-photo img {
  object-position: center 22%;
}

.about-offices-section .kicker {
  color: #59631d;
}

.about-offices-section .section-head .copy {
  color: rgba(24,25,22,.68);
}

.office-register-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.office-register-grid > span {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 112px;
  align-items: center;
  justify-content: center;
  padding: 22px 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.018)), var(--panel);
  color: var(--ink);
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-size: clamp(21px, 1.92vw, 31px);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.office-register-grid strong {
  display: block;
  font: inherit;
  letter-spacing: 0;
}

.office-flag {
  position: relative;
  display: block;
  width: 66px;
  height: 42px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.22), 0 10px 24px rgba(0,0,0,.2);
}

.flag-et {
  background: linear-gradient(to bottom, #078930 0 33.33%, #fcd116 33.33% 66.66%, #da121a 66.66% 100%);
}

.flag-et::after {
  content: "★";
  position: absolute;
  inset: 9px 21px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #0f47af;
  color: #fcd116;
  font-size: 12px;
  line-height: 1;
}

.flag-nl {
  background: linear-gradient(to bottom, #ae1c28 0 33.33%, #fff 33.33% 66.66%, #21468b 66.66% 100%);
}

.flag-us {
  background:
    linear-gradient(#3c3b6e 0 0) left top / 30px 22px no-repeat,
    repeating-linear-gradient(to bottom, #b22234 0 3.23px, #fff 3.23px 6.46px);
}

.flag-uk {
  background:
    linear-gradient(to right, transparent 0 42%, #fff 42% 58%, transparent 58%),
    linear-gradient(to bottom, transparent 0 38%, #fff 38% 62%, transparent 62%),
    linear-gradient(33deg, transparent 0 43%, #fff 43% 49%, #c8102e 49% 54%, #fff 54% 60%, transparent 60%),
    linear-gradient(147deg, transparent 0 43%, #fff 43% 49%, #c8102e 49% 54%, #fff 54% 60%, transparent 60%),
    linear-gradient(to right, transparent 0 46%, #c8102e 46% 54%, transparent 54%),
    linear-gradient(to bottom, transparent 0 44%, #c8102e 44% 56%, transparent 56%),
    #012169;
}

.flag-za {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 40'%3E%3Cpath fill='%23de3831' d='M0 0h60v20H0z'/%3E%3Cpath fill='%23002395' d='M0 20h60v20H0z'/%3E%3Cpath fill='none' stroke='%23fff' stroke-width='14' d='M0 0l30 20L0 40M30 20h30'/%3E%3Cpath fill='none' stroke='%23007a4d' stroke-width='10' d='M0 0l30 20L0 40M30 20h30'/%3E%3Cpath fill='%23ffb81c' d='M0 0l28 20L0 40z'/%3E%3Cpath fill='%23000' d='M0 4l22 16L0 36z'/%3E%3C/svg%3E") center / cover no-repeat;
}

.about-office-action {
  margin: 30px 0 0;
}

.project-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 36px;
  min-height: 380px;
}

.project-body h3 {
  margin: 0;
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.04;
  text-transform: uppercase;
}

.project-progress {
  height: 9px;
  margin-top: auto;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(24,25,22,.13);
}

.project-amounts {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: rgba(24,25,22,.62);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-amounts span {
  color: #963d1f;
}

.project-amounts strong {
  color: var(--charcoal);
}

.project-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--orange);
}

.project-meta {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: #963d1f;
  font-weight: 900;
  text-transform: uppercase;
}

.project-meta strong {
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-size: 40px;
  line-height: 1.04;
}

.project-meta span {
  color: rgba(24,25,22,.58);
  font-size: 12px;
}

.project-body .button {
  align-self: flex-start;
}

.project-body .copy {
  color: rgba(24,25,22,.7);
}

.project-body .button.ghost {
  border-color: rgba(24,25,22,.32);
  color: var(--charcoal);
}

.project-body .button.ghost:hover {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--ink);
}

.academy-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.academy-feature-grid div {
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.018)), var(--panel);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.academy-feature-grid strong {
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-size: 40px;
  line-height: 1.05;
  text-transform: uppercase;
}

.academy-feature-grid span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.gallery-river {
  display: grid;
  grid-template-columns: repeat(6, minmax(160px, 1fr));
  gap: 12px;
  width: min(1380px, calc(100% - 34px));
  margin: 0 auto;
}

.closing-gallery-section {
  padding: 58px 0 84px;
  background: #171715;
  border-top: 1px solid rgba(248,246,237,.12);
}

.closing-gallery-section .gallery-river img {
  border-radius: 2px;
  border-color: rgba(248,246,237,.14);
}

.gallery-river img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 7px;
  border: 1px solid var(--line);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255,255,255,.04);
  color: var(--ink);
  padding: 15px 16px;
  font: inherit;
  line-height: 1.45;
}

.contact-form textarea { min-height: 150px; resize: vertical; }

.office-card {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  gap: 14px;
}

.office-card .copy {
  margin: 0;
  line-height: 1.72;
}

.office-card a,
.footer a {
  overflow-wrap: anywhere;
  line-height: 1.45;
}

.office-card a { margin-top: auto; }

.join-family-hero .hero-media {
    background-position: center 48%;
}

.join-page-intro,
.family-detail-section,
.family-benefit-section,
.family-rhythm-section,
.family-final-section {
  padding: clamp(84px, 9vw, 140px) 0;
}

.join-page-intro {
  background: var(--paper-2);
  color: var(--charcoal);
}

.join-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: start;
}

.join-intro-media {
  margin: 34px 0 0;
  overflow: hidden;
  border: 1px solid rgba(25,25,23,.12);
}

.join-intro-media img {
  width: 100%;
  height: clamp(260px, 32vw, 430px);
  object-fit: cover;
}

.join-intro-copy .lead-copy {
  margin-bottom: 20px;
  color: rgba(25,25,23,.86);
}

.join-intro-copy .copy {
  color: rgba(25,25,23,.68);
}

.intro-note {
  display: grid;
  gap: 10px;
  margin-top: 30px;
  padding: 24px 26px;
  border: 1px solid rgba(25,25,23,.12);
  background: #fff;
}

.intro-note span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.intro-note strong {
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-size: clamp(20px, 2.4vw, 34px);
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.join-intro-photo-strip {
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  gap: 16px;
  margin: 26px 0 0;
}

.join-intro-photo-strip img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.family-detail-section {
  background:
    linear-gradient(180deg, rgba(17,17,15,.98) 0%, rgba(17,17,15,.92) 45%, rgba(36,43,25,.9) 100%),
    radial-gradient(circle at 20% 100%, rgba(183,194,96,.18), transparent 46%);
  color: var(--ink);
  border-top: 1px solid rgba(248,246,237,.08);
}

.family-path-grid {
  display: grid;
  gap: 28px;
}

.family-path-card {
  display: grid;
  grid-template-columns: minmax(260px, .82fr) minmax(0, 1.18fr);
  min-height: 430px;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(248,246,237,.16);
  background: rgba(247,239,227,.05);
}

.family-path-card:nth-child(even) {
  grid-template-columns: minmax(0, 1.18fr) minmax(260px, .82fr);
}

.family-path-card:nth-child(even) .family-path-media {
  order: 2;
}

.family-path-media {
  width: 100%;
  height: 100%;
  min-height: 520px;
  overflow: hidden;
  background: rgba(247,239,227,.05);
}

.family-path-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.family-path-media img[src*="extra-22"] {
  object-position: 48% center;
}

.family-path-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 64px);
}

.family-path-body h3 {
  margin: 14px 0 26px;
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-size: clamp(42px, 6vw, 86px);
  font-weight: 900;
  line-height: 1.04;
  text-transform: uppercase;
}

.family-path-body .copy {
  max-width: 760px;
}

.family-detail-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 28px;
  padding: 0;
  color: rgba(248,246,237,.78);
  list-style: none;
}

.family-detail-list li {
  position: relative;
  padding-left: 22px;
  line-height: 1.72;
}

.family-detail-list li::before {
  content: "";
  position: absolute;
  top: .72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--lime);
}

.family-path-body .mini-signup {
  max-width: 640px;
  margin-top: 12px;
}

.family-path-body .mini-signup label span {
  color: rgba(248,246,237,.76);
}

.family-path-body .mini-signup input {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: var(--ink);
}

.family-path-body .mini-signup input::placeholder {
  color: rgba(248,246,237,.42);
}

.family-form-note {
  margin-top: 18px;
  color: rgba(248,246,237,.68);
  font-size: 15px;
  line-height: 1.72;
}

.family-benefit-section {
  background: var(--paper);
  color: var(--charcoal);
}

.family-benefit-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: clamp(42px, 7vw, 104px);
  align-items: start;
}

.family-benefit-copy {
  position: sticky;
  top: 112px;
}

.family-benefit-copy .title {
  max-width: 720px;
  line-height: 1.08;
}

.family-benefit-copy .title + .copy {
  margin-top: 32px;
}

.family-benefit-copy .copy {
  max-width: 640px;
  color: rgba(25,25,23,.7);
}

.family-benefit-copy .copy + .copy {
  margin-top: 18px;
}

.family-benefit-media {
  margin: 34px 0 0;
  overflow: hidden;
  border: 1px solid rgba(25,25,23,.12);
}

.family-benefit-media img {
  width: 100%;
  height: clamp(260px, 30vw, 390px);
  object-fit: cover;
}

.family-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.family-benefit-item {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: flex-start;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(25,25,23,.12);
  background: #fffaf3;
}

.family-benefit-item img {
  width: calc(100% + 56px);
  max-width: none;
  height: 150px;
  flex: 0 0 150px;
  margin: -28px -28px 22px;
  object-fit: cover;
}

.family-benefit-item h3 {
  margin-top: 0;
}

.giving-details-section {
  background:
    linear-gradient(115deg, rgba(183,194,96,.08), transparent 42%),
    #171714;
  border-block: 1px solid rgba(248,246,237,.12);
}

.giving-details-section .section-head > .copy {
  color: rgba(248,246,237,.76);
}

.giving-method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.giving-method-card {
  min-width: 0;
  padding: 34px;
  border-top: 4px solid var(--lime);
  background: var(--paper-2);
  color: var(--charcoal);
}

.giving-region {
  margin: 0 0 28px;
  color: #717b20;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.giving-method-card h3,
.postal-giving h3 {
  margin: 0;
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.giving-method-card .copy {
  margin-top: 22px;
  color: rgba(25,25,23,.72);
}

.giving-contact-link {
  display: inline-block;
  margin-top: 24px;
  color: #56600f;
  font-size: 14px;
  font-weight: 800;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.bank-details {
  display: grid;
  gap: 0;
  margin: 26px 0 0;
}

.bank-details div {
  display: grid;
  grid-template-columns: minmax(112px, .8fr) minmax(0, 1.2fr);
  gap: 16px;
  padding: 11px 0;
  border-top: 1px solid rgba(25,25,23,.13);
}

.bank-details dt,
.bank-details dd {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}

.bank-details dt {
  color: rgba(25,25,23,.58);
  font-weight: 800;
  text-transform: uppercase;
}

.bank-details dd {
  color: var(--charcoal);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.postal-giving {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  gap: 56px;
  align-items: center;
  margin-top: 20px;
  padding: 42px;
  border: 1px solid rgba(248,246,237,.16);
  background: #292c20;
}

.postal-giving .copy {
  max-width: 460px;
  margin-top: 18px;
}

.postal-addresses {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.postal-addresses address {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
  padding: 4px 30px;
  border-left: 1px solid rgba(248,246,237,.2);
  color: rgba(248,246,237,.76);
  font-size: 13px;
  font-style: normal;
  line-height: 1.5;
}

.postal-addresses strong {
  margin-bottom: 7px;
  color: var(--lime-2);
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
}

.registered-charities-section .stat strong {
  color: var(--charcoal);
}

.registered-charities-section .stat span {
  color: rgba(24,25,22,.68);
}

.family-card-icon {
  display: grid;
  width: 38px;
  height: 38px;
  margin: 0 0 16px;
  place-items: center;
  border: 1px solid rgba(124,135,46,.55);
  border-radius: 999px;
  color: #59631d;
  font-size: 20px;
  font-weight: 900;
}

.family-intro-line {
  margin: -18px 0 34px;
  color: #59631d;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.join-family-section > .wrap > .section-head .kicker,
.join-page-intro .kicker,
.family-benefit-section .kicker,
.contact-offices-section > .wrap > .section-head .kicker,
.project-body .kicker {
  color: #59631d;
}

.network-section > .wrap > .section-head .kicker {
  color: #963d1f;
}

.section-side-copy {
  display: grid;
  justify-items: start;
  gap: 22px;
}

.book-kicker {
  font-family: Manrope, Arial, sans-serif;
}

.book-card .copy + .copy {
  margin-top: 14px;
}

.social-network-card {
  display: grid;
  grid-column: span 3;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
}

.social-network-card .network-card-media {
  height: 100%;
  min-height: 430px;
}

.social-network-card .network-card-media img {
  height: 100%;
  object-position: 58% center;
}

.social-network-card .network-card-body {
  min-height: 430px;
}

.social-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
}

.social-link-grid a {
  display: grid;
  min-height: 42px;
  place-items: center;
  padding: 8px;
  border: 1px solid rgba(24,25,22,.22);
  color: var(--charcoal);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.newsletter-section {
  background: var(--deep);
}

.newsletter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: end;
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid var(--line);
  background: var(--panel);
}

.newsletter-form {
  display: grid;
  gap: 14px;
}

.newsletter-form label span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.newsletter-form input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  color: var(--ink);
}

.contact-help-section .feature-panel {
  padding: clamp(34px, 5vw, 64px);
}

.contact-help-section .contact-form {
  margin-top: 36px;
}

.stats-band .office-card h3 {
  color: var(--ink);
}

.contact-offices-section .section-head > .copy {
  color: rgba(24,25,22,.7);
}

.contact-offices-section .office-card > a {
  color: var(--lime-2);
}

.contact-offices-section .office-card > a:hover {
  color: var(--ink);
}

.family-benefit-item span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.family-benefit-item h3 {
  margin: 0 0 14px;
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.06;
  text-transform: uppercase;
}

.family-benefit-item p {
  margin: 0;
  color: rgba(25,25,23,.68);
  line-height: 1.72;
}

.family-rhythm-section {
  background:
    linear-gradient(180deg, rgba(17,17,15,.96) 0%, rgba(17,17,15,.9) 42%, rgba(45,54,28,.92) 100%);
  color: var(--ink);
}

.family-rhythm-grid {
  display: grid;
  border-top: 1px solid rgba(248,246,237,.18);
  border-bottom: 1px solid rgba(248,246,237,.18);
}

.family-rhythm-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  padding: 42px 0;
  border-top: 1px solid rgba(248,246,237,.14);
}

.family-rhythm-card:first-child {
  border-top: 0;
}

.family-rhythm-card:nth-child(even) {
  padding-left: clamp(42px, 8vw, 130px);
}

.family-rhythm-card img {
  width: 190px;
  height: 138px;
  object-fit: cover;
}

.family-rhythm-card span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.family-rhythm-card h3 {
  margin: 16px 0 14px;
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.04;
  text-transform: uppercase;
}

.family-rhythm-card p {
  max-width: 680px;
  margin: 0;
  color: rgba(248,246,237,.72);
  line-height: 1.72;
}

.family-final-section {
  background: var(--paper-2);
  color: var(--charcoal);
}

.family-final-panel {
  padding: clamp(42px, 7vw, 90px);
  background:
    linear-gradient(135deg, rgba(25,25,23,.92), rgba(32,43,26,.88)),
    url('ihn-extra-assets/extra-25.jpg') center/cover;
  color: var(--ink);
  text-align: center;
}

.family-final-panel .copy {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
}

.family-final-panel .hero-actions {
  justify-content: center;
  margin-top: 28px;
}

.family-final-panel .button.ghost {
  border-color: rgba(248,246,237,.42);
  color: var(--ink);
}

#pray,
#give,
#spread {
  scroll-margin-top: 96px;
}

.footer {
  padding: 82px 0 36px;
  background: #000;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr .9fr;
  gap: 42px;
}

.footer img { width: 210px; margin-bottom: 20px; }
.footer h4 {
  margin: 0 0 16px;
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-size: 30px;
  text-transform: uppercase;
}

.footer a { display: block; margin: 9px 0; color: var(--muted); font-size: 14px; }
.footer a:hover { color: var(--lime); }
.footer .social a { display: inline-grid; margin: 0; color: var(--ink); }
.legal {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: rgba(248,246,237,.52);
  font-size: 12px;
}

.reveal { opacity: 0; transform: translateY(32px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .hero-media,
  .split-hero-media {
    animation: none;
    transform: scale(1.03);
  }

  .reveal,
  .hero-strip img,
  .pillar-card img,
  .work-image-card img,
  .story-card img,
  .event-card img,
  .event-row img,
  .image-grid img,
  .network-card-media img,
  .gallery-river img,
  .split-photo img,
  .parallax-frame img {
    transition: none;
  }
}

@media (max-width: 980px) {
  .nav-inner { grid-template-columns: 160px 1fr; }
  .menu { grid-column: 1 / -1; order: 3; overflow-x: auto; justify-content: flex-start; padding-bottom: 4px; }
  .nav-actions { justify-self: end; }
  .logo img { width: 150px; }
  .hero { min-height: 820px; }
  .hero-strip { grid-template-columns: repeat(2, 1fr); }
  .hero-strip img { height: 84px; }
  .title { font-size: clamp(50px, 10vw, 82px); }
  .title.mid { font-size: clamp(42px, 8vw, 68px); }
  .section-head, .split, .split.reverse { grid-template-columns: 1fr; }
  .section-head { gap: 28px; align-items: start; }
  .what-we-do-section .section-head {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .what-we-do-section .section-head .title {
    font-size: 76px;
    white-space: normal;
  }
  .what-we-do-section .section-head > .copy {
    max-width: 560px;
    margin-bottom: 0;
    font-size: 17px;
  }
  .section-head-spacious .button { justify-self: start; margin-bottom: 0; }
  .pillars, .stats-grid, .events-grid, .stories-grid, .offices-grid, .family-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .work-card-grid,
  .network-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .social-network-card {
    display: flex;
    grid-column: auto;
  }
  .social-network-card .network-card-media {
    height: 260px;
    min-height: 0;
  }
  .social-network-card .network-card-body { min-height: 0; }
  .newsletter-panel { grid-template-columns: 1fr; }
  .highlight-grid,
  .family-benefits { grid-template-columns: 1fr; }
  .gallery-river { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .highlight-large img { height: 320px; }
  .highlight-card:not(.highlight-large) img { height: 300px; }
  .latest-news-section .highlight-grid { grid-template-columns: 1fr; }
  .latest-news-section .highlight-card img { height: 300px; }
  .latest-news-section .highlight-body { min-height: 0; }
  .image-grid { grid-template-columns: 1fr 1fr; }
  .project-grid,
  .project-card { grid-template-columns: 1fr; }
  .giving-method-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .giving-method-card:first-child { grid-column: 1 / -1; }
  .postal-giving { grid-template-columns: 1fr; gap: 34px; }
  .project-card img { min-height: 280px; height: 280px; }
  .resource-intro,
  .resource-grid,
  .resource-list,
  .about-two-grid,
  .about-outcome-grid,
  .about-service-grid,
  .office-register-grid { grid-template-columns: 1fr; }
  .resource-side-image { min-height: 420px; }
  .resource-cta { grid-template-columns: 1fr; }
  .resource-cta .button { justify-self: start; }
  .event-row,
  .event-row:nth-child(even) {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 24px;
    margin-left: 0;
  }
  .event-row img { width: 150px; height: 120px; }
  .event-row-action { grid-column: 2; justify-self: start; }
  .join-intro-grid,
  .family-benefit-layout { grid-template-columns: 1fr; }
  .family-benefit-copy { position: static; }
  .family-path-card,
  .family-path-card:nth-child(even) { grid-template-columns: 1fr; }
  .family-path-card:nth-child(even) .family-path-media { order: 0; }
  .family-path-media { height: 300px; min-height: 300px; }
  .family-path-media img {
    min-height: 0;
    max-height: none;
  }
  .family-rhythm-card,
  .family-rhythm-card:nth-child(even) {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 28px;
    padding-left: 0;
  }
  .family-rhythm-card img {
    width: 150px;
    height: 118px;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .network-card { min-height: 310px; }
  .funding-card .card-title { font-size: clamp(30px, 5vw, 46px); }
}

@media (max-width: 640px) {
  .wrap, .narrow { width: min(100% - 28px, 1160px); }
  .what-we-do-section .section-head .title { font-size: 56px; }
  .what-we-do-section .section-head > .copy { font-size: 16px; }
  .nav { padding: 14px; }
  .nav.is-scrolled { padding: 10px 14px; }
  .nav-inner { grid-template-columns: 132px 1fr; gap: 10px; }
  .logo img { width: 132px; }
  .social { display: none; }
  .nav-actions > .button { display: none; }
  .button { min-height: 40px; padding: 0 14px; }
  .menu { gap: 17px; font-size: 11px; }
  .hero { min-height: 760px; }
  .hero-content { padding-top: 112px; }
  .hero-title { font-size: clamp(52px, 16vw, 74px); line-height: 1; }
  .home-hero-title { font-size: clamp(48px, 13vw, 64px); }
  .title,
  .featured-highlights .title,
  .join-family-section .title { font-size: clamp(42px, 14vw, 64px); line-height: 1.06; }
  .title.mid { font-size: clamp(38px, 12vw, 58px); line-height: 1.08; }
  section { padding: 68px 0; scroll-margin-top: 88px; }
  .section-head { gap: 28px; margin-bottom: 42px; }
  .copy { font-size: 14px; line-height: 1.72; }
  .title + .copy,
  .title + .lead-copy,
  .card-title + .copy,
  h2 + .copy,
  h3 + .copy,
  h3 + p {
    margin-top: 24px;
  }
  .pillars, .stats-grid, .events-grid, .stories-grid, .offices-grid, .image-grid, .footer-grid, .mini-stats, .family-grid { grid-template-columns: 1fr; }
  .work-card-grid,
  .network-grid { grid-template-columns: 1fr; }
  .social-network-card { grid-column: auto; }
  .social-link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .work-image-card { min-height: 300px; }
  .work-image-card::before { height: 154px; }
  .work-card-label {
    left: 22px;
    right: 22px;
    bottom: 92px;
    font-size: clamp(25px, 7.8vw, 32px);
    line-height: 1.14;
  }
  .work-card-cta {
    right: auto;
    left: 22px;
    bottom: 24px;
  }
  .split-photo, .parallax-frame { min-height: 360px; }
  .feature-panel, .pillar-body, .story-body, .event-body, .office-card, .polished-card, .family-body, .highlight-body, .family-benefits { padding: 24px; }
  .resource-card,
  .resource-list article,
  .about-detail-card { padding: 24px; }
  .resource-side-image { min-height: 340px; }
  .resource-cta { padding: 28px; }
  .resource-cta h2 { font-size: clamp(38px, 12vw, 58px); }
  .about-detail-card h3 { font-size: clamp(36px, 11vw, 54px); }
  .office-register-grid > span { min-height: 110px; }
  .office-flag { width: 58px; height: 37px; }
  .family-body h3,
  .highlight-body h3 { font-size: 36px; line-height: 1.06; }
  .family-card img,
  .highlight-card:not(.highlight-large) img,
  .highlight-large img { height: 235px; }
  .latest-news-section .highlight-grid { grid-template-columns: 1fr; }
  .latest-news-section .highlight-card img { height: 235px; }
  .latest-news-section .highlight-body {
    min-height: 0;
    padding: 24px;
  }
  .gallery-river { grid-template-columns: repeat(2, 1fr); }
  .gallery-river img { height: 170px; }
  .event-filters { gap: 8px; margin-bottom: 26px; }
  .event-filters button { min-height: 38px; padding: 0 12px; font-size: 11px; }
  .project-body {
    min-height: 0;
    padding: 24px;
  }
  .project-amounts {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .project-card img { min-height: 220px; height: 220px; }
  .event-row,
  .event-row:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 34px 0;
  }
  .event-row img {
    width: 100%;
    height: 210px;
  }
  .event-row-action { grid-column: auto; }
  .join-page-intro,
  .family-detail-section,
  .family-benefit-section,
  .family-rhythm-section,
  .family-final-section { padding: 64px 0; }
  .intro-note { padding: 20px; }
  .family-path-body { padding: 28px 22px; }
  .family-path-media { height: 250px; min-height: 250px; }
  .giving-method-grid { grid-template-columns: 1fr; }
  .giving-method-card:first-child { grid-column: auto; }
  .giving-method-card { padding: 26px 22px; }
  .giving-method-card h3,
  .postal-giving h3 { font-size: 34px; }
  .bank-details div { grid-template-columns: 1fr; gap: 4px; }
  .postal-giving { padding: 28px 22px; }
  .postal-addresses { grid-template-columns: 1fr; gap: 26px; }
  .postal-addresses address { padding: 0 0 0 20px; }
  .family-benefit-grid { grid-template-columns: 1fr; }
  .family-benefit-copy .title { line-height: 1.08; }
  .family-benefit-copy .title + .copy { margin-top: 28px; }
  .family-path-body h3,
  .family-benefit-item h3,
  .family-rhythm-card h3 { line-height: 1.08; }
  .family-benefit-item { min-height: 180px; padding: 24px; }
  .family-benefit-item img {
    width: calc(100% + 48px);
    margin: -24px -24px 22px;
  }
  .family-rhythm-card,
  .family-rhythm-card:nth-child(even) {
    grid-template-columns: 1fr;
    padding: 30px 0;
  }
  .family-rhythm-card img {
    width: 100%;
    height: 190px;
  }
  .family-final-panel { padding: 34px 22px; }
  .academy-feature-grid { grid-template-columns: 1fr; }
  .academy-feature-grid div { min-height: 128px; padding: 22px; }
  .network-card { min-height: 280px; }
  .network-image-card { min-height: 0; }
  .network-card-media { height: 210px; }
  .network-card-body { padding: 24px; }
  .network-icon { width: 46px; height: 46px; margin-bottom: 16px; }
  .funding-card { min-height: auto; }
  .funding-card .card-title { font-size: clamp(34px, 12vw, 48px); }
  .event-card img { height: 210px; }
  .event-card img.focus-tamryn,
  .event-card img.focus-top { object-position: center 8%; }
  .event-card img[src*="tamryn-klintworth-1"],
  .event-card img[src*="tamryn-85"],
  .highlight-card img[src*="tamryn-klintworth-1"],
  .parallax-frame img[src*="tamryn-klintworth-1"] { object-position: center 18%; }
}
