@import url("https://api.fontshare.com/v2/css?f[]=general-sans@500&display=swap");

@font-face {
  font-family: "Quicksand";
  src:
    url("fonts/Quicksand_Complete/Fonts/WEB/fonts/Quicksand-Variable.woff2")
      format("woff2"),
    url("fonts/Quicksand_Complete/Fonts/WEB/fonts/Quicksand-Variable.woff")
      format("woff"),
    url("fonts/Quicksand_Complete/Fonts/WEB/fonts/Quicksand-Variable.ttf")
      format("truetype");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Crimson Pro";
  src:
    url("fonts/CrimsonPro_Complete/Fonts/WEB/fonts/CrimsonPro-Regular.woff2")
      format("woff2"),
    url("fonts/CrimsonPro_Complete/Fonts/WEB/fonts/CrimsonPro-Regular.woff")
      format("woff"),
    url("fonts/CrimsonPro_Complete/Fonts/WEB/fonts/CrimsonPro-Regular.ttf")
      format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #080806;
  --surface: #f4f2ec;
  --surface-2: #ebe8de;
  --panel: #ffffff;
  --ink: #141410;
  --ink-muted: #5a584f;
  --ink-on-dark: #f4f1e8;
  --line: #d7d1c2;
  --line-strong: #bdb6a5;
  --line-dark: rgba(244, 241, 232, 0.28);
  --accent: #d4472f;
  --accent-soft: #f1e2d8;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 26px;
  --shadow-lg: 0 24px 52px rgba(0, 0, 0, 0.24);
  --header-h: 76px;
  --max-w: 1380px;
  --font-body: "Quicksand", "Avenir Next", "Segoe UI", sans-serif;
  --font-display: "General Sans", "Quicksand", "Avenir Next", "Segoe UI", sans-serif;
  --helpers-h: #d4472f;
  --helpers-e1: #2867be;
  --helpers-l: #7546cb;
  --helpers-p: #3b9d58;
  --helpers-e2: #1f8f97;
  --helpers-r: #8a6a46;
  --helpers-s: #158c56;
  --floating-footer-lift: 0px;
}

:root[data-theme="dark"] {
  --bg: #060812;
  --surface: #101827;
  --surface-2: #172336;
  --panel: #1b2941;
  --ink: #e8eefc;
  --ink-muted: #b5c2db;
  --line: #2f3e5b;
  --line-strong: #455d85;
  --ink-on-dark: #e9efff;
  --line-dark: rgba(226, 235, 255, 0.34);
  --accent: #7f9fff;
  --accent-soft: #dce5ff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-weight: 500;
  background: var(--bg);
  color: var(--ink-on-dark);
  line-height: 1.55;
}

body.homepage-modern {
  background: #f5f1e8;
  color: var(--ink);
}

:root[data-theme="dark"] body.homepage-modern {
  background: #0f1628;
  color: var(--ink-on-dark);
}

html.show-site-loader body {
  overflow: hidden;
}

.site-loader {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2200;
  overflow: hidden;
  background: #ffffff;
  color: var(--ink);
  transition:
    opacity 820ms cubic-bezier(0.215, 0.61, 0.355, 1),
    visibility 820ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

html.show-site-loader .site-loader {
  display: block;
}

.site-loader::before {
  content: "";
  width: 100%;
  height: 0;
  position: absolute;
  inset: auto 0 0;
  z-index: 5;
  background: #f1eadf;
  border-radius: 80% 100% 0 0;
  transform: translate3d(0, 0, 0);
  transition:
    height 5000ms cubic-bezier(0.215, 0.61, 0.355, 1),
    border-radius 3000ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.site-loader.is-on3::before {
  height: 60%;
}

.site-loader.is-on4::before {
  height: 100%;
  border-radius: 0;
  transition:
    height 3000ms cubic-bezier(0.215, 0.61, 0.355, 1),
    border-radius 3000ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.site-loader::after {
  content: "";
  width: 100%;
  height: 10%;
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  background: #f1eadf;
  transform-origin: center bottom;
  transform: scaleY(0);
  transition: transform 3000ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.site-loader.is-on4::after {
  transform: scaleY(1);
}

.site-loader.is-complete {
  opacity: 0;
  visibility: hidden;
}

.site-loader-block {
  width: min(100% - 2rem, 430px);
  height: 150px;
  position: absolute;
  inset: 0;
  z-index: 20;
  margin: auto;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 1rem;
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  transition:
    opacity 500ms linear,
    transform 900ms cubic-bezier(0.19, 1, 0.22, 1);
}

.site-loader.is-on .site-loader-block {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.site-loader.is-hide-block .site-loader-block {
  opacity: 0;
  transform: translate3d(0, -10px, 0);
}

.site-loader-logo {
  width: clamp(120px, 20vw, 176px);
}

.site-loader-logo img {
  width: 100%;
  height: auto;
}

.site-loader-text {
  margin: 0;
  text-align: center;
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 1.2vw, 1rem);
  letter-spacing: 0.03em;
  line-height: 1.2;
  color: #2b2a24;
}

.site-loader-text span {
  font-weight: 700;
}

.site-loader-cell {
  width: min(100vw, 1440px);
  height: auto;
  fill: #ffffff;
  stroke: #f1eadf;
  stroke-miterlimit: 10;
  stroke-width: 1.5px;
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 10;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(1.1);
}

.site-loader.is-on2 .site-loader-cell {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) scale(1);
  transition:
    transform 3000ms cubic-bezier(0.19, 1, 0.22, 1),
    opacity 300ms linear;
}

@media (max-width: 767px) {
  .site-loader::before {
    border-radius: 40% 50% 0 0;
  }

  .site-loader-block {
    width: min(100% - 2rem, 260px);
    height: 120px;
    gap: 0.65rem;
  }

  .site-loader-logo {
    width: 118px;
  }

  .site-loader-text {
    font-size: 0.62rem;
  }

  .site-loader-cell {
    width: calc(100vw + 10px);
  }
}

body.is-modal-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-style: normal;
}

a {
  color: inherit;
}

img,
video,
svg,
iframe {
  display: block;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 1rem;
  z-index: 2000;
  background: #fff;
  color: #111;
  padding: 0.7rem 0.9rem;
  border-radius: 8px;
  text-decoration: none;
}

.skip-link:focus {
  top: 0.85rem;
}

.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.page-container {
  width: min(100% - 1.4rem, var(--max-w));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1200;
  isolation: isolate;
  height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.45rem;
  width: 100%;
  padding-inline: 0.75rem;
  color: var(--ink-on-dark);
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, color 240ms ease, border-color 240ms ease, height 240ms ease;
}

.is-past-hero .site-header {
  background: color-mix(in srgb, var(--surface) 92%, #fff);
  color: var(--ink);
  border-bottom-color: var(--line);
  backdrop-filter: blur(8px);
}

.homepage-modern .site-header {
  background: transparent;
  color: var(--ink-on-dark);
  border-bottom-color: transparent;
  backdrop-filter: none;
}

.homepage-modern.is-past-hero .site-header {
  background: color-mix(in srgb, var(--surface) 92%, #fff);
  color: var(--ink);
  border-bottom-color: var(--line);
  backdrop-filter: blur(8px);
}

.header-mobile {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  grid-row: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  max-width: 250px;
  grid-row: 1;
}

.brand img {
  width: min(196px, 52vw);
  height: auto;
}

.site-nav {
  justify-self: end;
}

.site-nav ul {
  position: fixed;
  top: calc(var(--header-h) - 4px);
  left: 0.75rem;
  right: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0.75rem;
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 0.4rem;
  border-radius: 16px;
  border: 1px solid var(--line-dark);
  background: rgba(12, 12, 10, 0.93);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
}

.homepage-modern .site-nav ul {
  border-color: var(--line-dark);
  background: rgba(12, 12, 10, 0.93);
}

.is-past-hero .site-nav ul {
  border-color: var(--line);
  background: rgba(244, 242, 236, 0.96);
}

.site-nav ul.open {
  display: flex;
}

.site-nav a {
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.56rem 0.68rem;
  border-radius: 10px;
  border: 1px solid transparent;
}

.site-nav a[aria-current="page"] {
  border-color: rgba(244, 241, 232, 0.55);
  background: rgba(255, 255, 255, 0.16);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--line-dark);
}

.homepage-modern .site-nav a:hover,
.homepage-modern .site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--line-dark);
}

.is-past-hero .site-nav a:hover,
.is-past-hero .site-nav a:focus-visible {
  background: rgba(20, 20, 16, 0.06);
  border-color: var(--line);
}

.homepage-modern .site-nav a[aria-current="page"] {
  border-color: rgba(244, 241, 232, 0.55);
  background: rgba(255, 255, 255, 0.16);
}

.is-past-hero .site-nav a[aria-current="page"] {
  border-color: var(--line-strong);
  background: rgba(20, 20, 16, 0.08);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.homepage-modern .header-button {
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
}

.homepage-modern .header-button:hover,
.homepage-modern .header-button:focus-visible {
  background: rgba(255, 255, 255, 0.15);
}

.header-button {
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  border-radius: 999px;
  padding: 0.5rem 0.72rem;
  font-family: var(--font-body);
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 200ms ease, border-color 200ms ease;
}

.header-button:hover,
.header-button:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.15);
}

.header-button-solid {
  background: var(--ink-on-dark);
  border-color: var(--ink-on-dark);
  color: #171612;
}

.header-button-solid:hover,
.header-button-solid:focus-visible {
  background: #fff;
  border-color: #fff;
}

.header-tools .header-button-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  padding: 0.7rem 1.15rem;
  font-size: 0.76rem;
  line-height: 1.06;
  white-space: nowrap;
  background: linear-gradient(135deg, #f2b260 0%, #df6d4b 100%);
  border-color: color-mix(in srgb, var(--accent) 72%, #8e3a2d);
  color: #26140d;
  box-shadow: 0 12px 24px rgba(130, 62, 35, 0.28);
}

.header-tools .header-button-solid:hover,
.header-tools .header-button-solid:focus-visible {
  background: linear-gradient(135deg, #f7c77c 0%, #e77a52 100%);
  border-color: color-mix(in srgb, var(--accent) 62%, #7b2f22);
  color: #22120c;
  box-shadow: 0 14px 26px rgba(130, 62, 35, 0.32);
}

.is-past-hero .header-tools .header-button-solid:hover,
.is-past-hero .header-tools .header-button-solid:focus-visible,
body.page-inner .header-tools .header-button-solid:hover,
body.page-inner .header-tools .header-button-solid:focus-visible {
  background: linear-gradient(135deg, #f7c77c 0%, #e77a52 100%);
  border-color: color-mix(in srgb, var(--accent) 62%, #7b2f22);
  color: #22120c;
}

.is-past-hero .header-tools .header-button-solid,
body.page-inner .header-tools .header-button-solid {
  background: linear-gradient(135deg, #f2b260 0%, #df6d4b 100%);
  border-color: color-mix(in srgb, var(--accent) 72%, #8e3a2d);
  color: #26140d;
}

.is-past-hero .header-button {
  border-color: var(--line);
  background: rgba(20, 20, 16, 0.03);
}

.is-past-hero .header-button:hover,
.is-past-hero .header-button:focus-visible {
  background: rgba(20, 20, 16, 0.08);
}

.is-past-hero .header-button-solid {
  background: #171612;
  border-color: #171612;
  color: #f4f2ec;
}

body.page-inner .site-header {
  background: color-mix(in srgb, var(--surface) 92%, #fff);
  color: var(--ink);
  border-bottom-color: var(--line);
  backdrop-filter: blur(8px);
}

body.page-inner .site-nav ul {
  border-color: var(--line);
  background: rgba(244, 242, 236, 0.96);
}

body.page-inner .header-button {
  border-color: var(--line);
  background: rgba(20, 20, 16, 0.03);
}

body.page-inner .header-button:hover,
body.page-inner .header-button:focus-visible {
  background: rgba(20, 20, 16, 0.08);
}

body.page-inner .header-button-solid {
  background: #171612;
  border-color: #171612;
  color: #f4f2ec;
}

.nav-toggle {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  gap: 4px;
  place-content: center;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
}

.nav-toggle:focus-visible,
.header-button:focus-visible,
.control-button:focus-visible,
.button-outline:focus-visible,
.hero-action:focus-visible,
.discover-button:focus-visible,
.newsletter-button:focus-visible,
.footer-social-row a:focus-visible,
.footer-links a:focus-visible,
.follow-links a:focus-visible,
.scroll-top-fab:focus-visible,
.chat-fab:focus-visible,
.mobile-action-link:focus-visible,
.chat-close:focus-visible,
#contact-form input:focus,
#contact-form select:focus,
#contact-form textarea:focus,
#donation-form input:focus,
#chat-form input:focus,
#chat-form select:focus,
#chat-form textarea:focus,
#volunteer-apply-form input:focus,
#volunteer-apply-form select:focus,
#volunteer-apply-form textarea:focus,
#newsletter-form input:focus,
.exit-intent-dialog input:focus,
.vol-filter:focus,
.frequency-option:focus-visible,
.amount-preset:focus-visible,
.get-involved-link:focus-visible,
.action-map-tab:focus-visible,
.action-goal-disclosure summary:focus-visible,
.action-goal-link:focus-visible,
.action-start-path:focus-visible,
.action-mini-link:focus-visible,
.payment-method-option:focus-within {
  outline: 3px solid color-mix(in srgb, var(--accent) 55%, #fff);
  outline-offset: 2px;
}

.hero {
  position: relative;
  min-height: calc(clamp(620px, 86svh, 860px) - 1.2in);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #f3ecdc;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  display: none;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.04);
}

.hero-overlay {
  background: #f3ecdc;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 1.4rem, var(--max-w));
  margin-inline: auto;
  padding-top: calc(var(--header-h) + clamp(0.45rem, 1.4vh, 0.95rem));
  padding-bottom: clamp(0.8rem, 2.5vh, 1.8rem);
  min-height: calc(clamp(470px, 68vh, 740px) - 1.2in);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 44rem);
  align-items: end;
  column-gap: clamp(1rem, 3vw, 2.6rem);
}

.hero-side-panel {
  grid-column: 2;
  width: min(100%, 46rem);
  margin-left: 0;
  margin-right: clamp(1rem, 3vw, 3.6rem);
  display: grid;
  justify-self: end;
  align-self: center;
  justify-items: center;
  gap: clamp(0.9rem, 2.2vh, 1.4rem);
  text-align: center;
  transform: translateY(-4%);
}

.hero-mission-layout {
  position: relative;
  display: inline-grid;
  width: min(100%, 46rem);
  justify-items: center;
}

.hero-favicon {
  width: clamp(235px, 30vw, 450px);
  height: auto;
  position: absolute;
  top: 50%;
  right: calc(100% + clamp(3.4rem, 10.2vw, 9.6rem));
  left: auto;
  transform: translateY(-50%);
  pointer-events: none;
  border: 0;
  outline: 0;
  box-shadow: none;
  background: transparent;
}

.hero-mission-mask-wrap {
  position: relative;
  display: inline-grid;
  width: min(100%, 46rem);
  transform: translateX(clamp(-0.7rem, -1.6vw, -1.9rem));
}

.hero-mission-mask-wrap > * {
  grid-area: 1 / 1;
}

.hero-mission-copy {
  margin: 0;
  max-width: 17ch;
  font-family: var(--font-display);
  font-size: clamp(4.15rem, 8.2vw, 8.8rem);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: 0.035em;
  color: #2f2a20;
  text-shadow: none;
}

.hero-mission-mask {
  position: relative;
  pointer-events: none;
  opacity: 0;
  transition: opacity 240ms ease;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-mask-image: url("assets/images/hero-mission-mask.svg");
  mask-image: url("assets/images/hero-mission-mask.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  filter:
    drop-shadow(0 0 1px rgba(23, 18, 12, 0.92))
    drop-shadow(0 0 10px rgba(23, 18, 12, 0.34))
    drop-shadow(0 2px 20px rgba(23, 18, 12, 0.26));
}

.hero-mission-mask-video {
  --hero-mask-video-zoom: 2.1;
  --hero-mask-video-focus-x: 26%;
  --hero-mask-video-focus-y: 14%;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-mask-video-focus-x) var(--hero-mask-video-focus-y);
  filter: brightness(0.72) saturate(1.1) contrast(1.28);
  transform: scale(var(--hero-mask-video-zoom));
  transform-origin: var(--hero-mask-video-focus-x) var(--hero-mask-video-focus-y);
  will-change: transform;
}

.hero-side-panel.has-mask-video.is-mask-video-ready .hero-mission-copy {
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.hero-side-panel.has-mask-video.is-mask-video-ready .hero-mission-mask {
  opacity: 1;
}

.overline {
  margin: 0;
  font-size: 0.71rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  color: #5a5246;
}

.hero .overline {
  margin-top: 1.05rem;
  color: rgba(244, 242, 236, 0.9);
}

.hero h1 {
  margin: 0.55rem 0 0;
  max-width: 18ch;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 8.3vw, 5.6rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.01em;
  color: #f4f1e8;
}

.hero-intro {
  margin: 0.85rem 0 0;
  max-width: 58ch;
  color: rgba(244, 241, 232, 0.92);
  font-size: clamp(0.98rem, 1.34vw, 1.1rem);
}

.hero-actions {
  position: absolute;
  left: 0;
  bottom: calc(clamp(2rem, 5vh, 3.4rem) + env(safe-area-inset-bottom, 0px));
  z-index: 2;
  grid-column: 1;
  justify-self: start;
  align-self: end;
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.65rem;
}

.hero-action {
  border-radius: 999px;
  border: 1px solid rgba(244, 241, 232, 0.52);
  padding: 0.76rem 1.12rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 800;
  font-family: var(--font-body);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  color: #f3f0e7;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.hero-action-solid {
  background: linear-gradient(135deg, #ea5b47 0%, #c63136 100%);
  border-color: #b62a31;
  color: #fff;
  box-shadow: 0 12px 20px rgba(180, 48, 42, 0.26);
}

.hero-action-solid:hover,
.hero-action-solid:focus-visible {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #ef6b55 0%, #d13a3d 100%);
  border-color: #bd2f35;
}

.hero-action-ghost {
  background: rgba(255, 255, 255, 0.12);
}

.hero-action-ghost:hover,
.hero-action-ghost:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(244, 241, 232, 0.76);
  background: rgba(255, 255, 255, 0.2);
}

.helpers-letter-row {
  margin: 0.92rem 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.56rem;
}

.helpers-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(244, 241, 232, 0.54);
  background: rgba(255, 255, 255, 0.14);
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.helpers-letter:hover,
.helpers-letter:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(244, 241, 232, 0.8);
}

.helpers-letter-h {
  color: var(--helpers-h);
  --helpers-accent: var(--helpers-h);
}

.helpers-letter-e1 {
  color: var(--helpers-e1);
  --helpers-accent: var(--helpers-e1);
}

.helpers-letter-l {
  color: var(--helpers-l);
  --helpers-accent: var(--helpers-l);
}

.helpers-letter-p {
  color: var(--helpers-p);
  --helpers-accent: var(--helpers-p);
}

.helpers-letter-e2 {
  color: var(--helpers-e2);
  --helpers-accent: var(--helpers-e2);
}

.helpers-letter-r {
  color: var(--helpers-r);
  --helpers-accent: var(--helpers-r);
}

.helpers-letter-s {
  color: var(--helpers-s);
  --helpers-accent: var(--helpers-s);
}

.section-home-text-reveal {
  --home-fill: 0%;
  position: relative;
  min-height: clamp(460px, 72vh, 820px);
  padding-block: clamp(2.4rem, 8vh, 4.8rem);
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 16% 14%, rgba(255, 255, 255, 0.05), transparent 44%),
    linear-gradient(180deg, #0d0f14 0%, #0a0b10 100%);
}

.home-text-reveal-stage {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
}

.home-text-reveal-kicker {
  margin: 0 0 1.25rem;
  color: rgba(241, 235, 221, 0.58);
  letter-spacing: 0.1em;
  text-align: center;
}

.home-text-reveal-paragraph {
  margin: 0 auto;
  position: relative;
  max-width: min(100%, 17.5ch);
  font-family: var(--font-body);
  font-size: clamp(2rem, 5.1vw, 5.3rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.018em;
  color: rgba(244, 241, 232, 0.4);
  text-wrap: pretty;
  text-align: center;
}

.home-text-reveal-paragraph::after {
  content: attr(data-home-reveal-text);
  position: absolute;
  inset: 0;
  color: rgba(244, 241, 232, 0.97);
  pointer-events: none;
  opacity: 1;
  will-change: -webkit-mask-image, mask-image;
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 var(--home-fill),
    rgba(0, 0, 0, 0.46) calc(var(--home-fill) + 5%),
    rgba(0, 0, 0, 0.14) calc(var(--home-fill) + 11%),
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 var(--home-fill),
    rgba(0, 0, 0, 0.46) calc(var(--home-fill) + 5%),
    rgba(0, 0, 0, 0.14) calc(var(--home-fill) + 11%),
    transparent 100%
  );
}

@media (max-width: 680px) {
  .hero-content {
    min-height: calc(clamp(360px, 56vh, 520px) - 1.1in);
    grid-template-columns: 1fr;
    row-gap: 1rem;
  }

  .hero-actions {
    grid-column: 1;
    justify-self: start;
    bottom: calc(clamp(1.2rem, 3.6vh, 2.2rem) + env(safe-area-inset-bottom, 0px));
  }

  .section-home-text-reveal {
    min-height: clamp(360px, 62vh, 620px);
    padding-block: clamp(1.8rem, 6.5vh, 3rem);
  }

  .home-text-reveal-kicker {
    margin-bottom: 0.9rem;
  }

  .home-text-reveal-paragraph {
    max-width: min(100%, 16ch);
    font-size: clamp(1.56rem, 7.1vw, 2.65rem);
    line-height: 1.08;
  }

  .hero-side-panel {
    grid-column: 1;
    justify-self: end;
    align-self: center;
    width: min(100%, 36rem);
    margin-right: clamp(0.15rem, 0.9vw, 0.6rem);
    transform: translateY(-2%);
  }

  .hero-mission-layout {
    width: min(100%, 36rem);
  }

  .hero-favicon {
    width: clamp(162px, 49vw, 265px);
    right: calc(100% + clamp(1.1rem, 4.8vw, 2.2rem));
    left: auto;
  }

  .hero-mission-copy {
    max-width: 17ch;
    font-size: clamp(3.55rem, 12.3vw, 5.4rem);
    line-height: 1.14;
  }

  .hero-mission-mask-wrap {
    transform: translateX(clamp(-0.2rem, -1vw, -0.65rem));
  }

  .hero-mission-mask-video {
    --hero-mask-video-zoom: 2.3;
    --hero-mask-video-focus-x: 22%;
    --hero-mask-video-focus-y: 10%;
  }
}

.main-inner {
  min-height: 100vh;
  background: var(--surface);
  color: var(--ink);
  padding-top: var(--header-h);
}

.page-corner-label {
  display: inline-block;
  width: fit-content;
  margin: 0;
  margin-left: clamp(0.7rem, 2vw, 1rem);
  margin-top: clamp(0.7rem, 2vw, 1.1rem);
  margin-bottom: clamp(0.4rem, 1.2vw, 0.68rem);
  padding: 0;
  border: 0;
  background: transparent;
  color: #d4472f;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  pointer-events: none;
}

.get-involved-hub-shell > .page-corner-label {
  margin-top: clamp(0.58rem, 1.5vw, 0.86rem);
  margin-bottom: clamp(0.42rem, 1vw, 0.58rem);
}

.page-intro {
  position: relative;
  min-height: clamp(340px, 58vh, 620px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #111;
}

.page-intro-media,
.page-intro-overlay {
  position: absolute;
  inset: 0;
}

.page-intro-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.02);
}

.page-intro-overlay {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.72) 14%, rgba(0, 0, 0, 0.2) 62%),
    linear-gradient(to right, rgba(0, 0, 0, 0.5) 6%, rgba(0, 0, 0, 0.08) 65%);
}

.page-intro-content {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(2rem, 6vw, 4rem);
  color: var(--ink-on-dark);
}

.page-intro-content h1 {
  margin: 0.5rem 0 0.7rem;
  max-width: 16ch;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 8vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
}

.page-intro-content p {
  margin: 0;
  max-width: 58ch;
  color: rgba(244, 241, 232, 0.92);
}

.content-shell {
  color: var(--ink);
  background: var(--surface);
  position: relative;
  padding-bottom: 3.2rem;
}

.section {
  width: min(100% - 1.4rem, var(--max-w));
  margin-inline: auto;
  padding-top: clamp(2rem, 6vw, 4.7rem);
  border-top: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-h) + 24px);
}

.section:first-child {
  border-top: 0;
  padding-top: clamp(2.2rem, 6vw, 3.6rem);
}

.section h2,
.section h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 0.95;
  letter-spacing: -0.01em;
  font-weight: 600;
}

.section h2 {
  font-size: clamp(1.45rem, 2.8vw, 2.35rem);
}

.section h3 {
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
}

.section-tier-primary h2 {
  font-size: clamp(2.2rem, 5.2vw, 4.6rem);
  line-height: 0.92;
}

.section-tier-standard h2 {
  font-size: clamp(1.8rem, 3.9vw, 3.2rem);
  line-height: 0.94;
}

.section-tier-support h2 {
  font-size: clamp(1.45rem, 2.6vw, 2.35rem);
  line-height: 0.98;
}

.section-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.section-top-compact {
  margin-top: 1.5rem;
}

.button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  padding: 0.64rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  text-decoration: none;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.button-outline:hover {
  background: #fff;
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.section-social-proof .section-top h2 {
  white-space: nowrap;
}

.section-home-priorities .section-top h2 {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .section-social-proof .section-top h2,
  .section-home-priorities .section-top h2 {
    white-space: normal;
  }
}

.review-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel);
  padding: 0.95rem;
  display: grid;
  gap: 0.45rem;
}

#review-grid,
.review-grid[data-review-loop] {
  --review-gap: 0.78rem;
  display: block;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: none;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.35rem;
  position: relative;
  border-radius: var(--radius-lg);
  mask-image: none;
  -webkit-mask-image: none;
  cursor: grab;
}

#review-grid.is-review-dragging,
.review-grid[data-review-loop].is-review-dragging {
  cursor: grabbing;
  user-select: none;
}

#review-grid .review-flow-track,
.review-grid[data-review-loop] .review-flow-track {
  display: flex;
  gap: var(--review-gap);
  width: max-content;
  animation: none !important;
  transform: none !important;
}

#review-grid .review-card,
.review-grid[data-review-loop] .review-card {
  flex: 0 0 clamp(240px, 31vw, 360px);
  min-height: 100%;
  background: linear-gradient(
    158deg,
    color-mix(in srgb, var(--panel) 86%, #ffffff) 0%,
    color-mix(in srgb, var(--surface) 32%, var(--panel)) 100%
  );
}

#review-grid::-webkit-scrollbar,
.review-grid[data-review-loop]::-webkit-scrollbar {
  display: none;
}

@media (max-width: 900px) {
  #review-grid,
  .review-grid[data-review-loop] {
    mask-image: none;
    -webkit-mask-image: none;
  }

  #review-grid .review-card,
  .review-grid[data-review-loop] .review-card {
    flex-basis: clamp(220px, 72vw, 320px);
  }
}

@media (prefers-reduced-motion: reduce) {
  #review-grid .review-flow-track,
  .review-grid[data-review-loop] .review-flow-track {
    animation: none;
    transform: none;
  }
}

.review-quote {
  margin: 0;
  color: var(--ink);
}

.review-meta {
  margin: 0;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  font-weight: 800;
}

.tier-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.tier-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #fff, #f8f5ef);
  padding: 0.95rem;
  display: grid;
  gap: 0.35rem;
}

.tier-amount {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 0.9;
}

.tier-title {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--ink-muted);
}

.tier-copy {
  margin: 0;
  color: var(--ink-muted);
}

.section-home-priorities {
  padding-top: clamp(1.9rem, 4.8vw, 3rem);
}

.home-support-copy {
  margin: 0;
  max-width: 70ch;
  color: #524b40;
}

.home-priority-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}

.home-priority-card {
  --spotlight-x: 50%;
  --spotlight-y: 50%;
  --spotlight-size: clamp(180px, 26vw, 320px);
  --spotlight-opacity: 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(20, 20, 16, 0.14);
  background:
    radial-gradient(circle at 82% 14%, rgba(212, 71, 47, 0.11), transparent 42%),
    linear-gradient(155deg, #fff 0%, #f7f3eb 100%);
  padding: 0.92rem;
}

.home-priority-card::before,
.home-priority-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: var(--spotlight-opacity);
  transition: opacity 220ms ease;
  z-index: 0;
}

.home-priority-card::before {
  background: radial-gradient(
    circle var(--spotlight-size) at var(--spotlight-x) var(--spotlight-y),
    rgba(255, 255, 255, 0.76) 0%,
    rgba(255, 255, 255, 0.18) 38%,
    rgba(255, 255, 255, 0) 72%
  );
}

.home-priority-card::after {
  background: radial-gradient(
    circle calc(var(--spotlight-size) * 0.9) at var(--spotlight-x) var(--spotlight-y),
    rgba(212, 71, 47, 0.24) 0%,
    rgba(212, 71, 47, 0.08) 34%,
    rgba(212, 71, 47, 0) 68%
  );
}

.home-priority-card.is-spotlight-active {
  --spotlight-opacity: 1;
}

.home-priority-card > * {
  position: relative;
  z-index: 1;
}

.home-priority-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.2vw, 2.2rem);
  line-height: 0.95;
  color: #2a2721;
}

.home-priority-card p {
  margin: 0.55rem 0 0;
  color: #4f483d;
}

@media (prefers-reduced-motion: reduce) {
  .home-priority-card::before,
  .home-priority-card::after {
    transition: none;
  }
}

.section-helpers-framework {
  padding-top: clamp(1.9rem, 4.8vw, 3.1rem);
}

/* On the HELPERS page, remove the divider directly beneath the hero title. */
.helpers-page .section-helpers-hero + .section-helpers-card-mock {
  border-top: 0;
}

/* Remove divider directly under HELPERS row. */
.section-helpers-framework + .section {
  border-top: 0;
}

.helpers-home-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: flex-end;
  justify-items: center;
  width: min(100%, 34rem);
  margin-inline: auto;
  gap: clamp(0.18rem, 1.1vw, 0.72rem);
  margin-top: clamp(0.2rem, 0.6vw, 0.42rem);
}

.helpers-home-link {
  --helpers-accent: var(--accent);
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  display: inline-flex;
  width: 100%;
  align-items: flex-end;
  justify-content: center;
  text-decoration: none;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease;
}

.helpers-home-link.helpers-letter-h {
  --helpers-accent: var(--helpers-h);
}

.helpers-home-link.helpers-letter-e1 {
  --helpers-accent: var(--helpers-e1);
}

.helpers-home-link.helpers-letter-l {
  --helpers-accent: var(--helpers-l);
}

.helpers-home-link.helpers-letter-p {
  --helpers-accent: var(--helpers-p);
}

.helpers-home-link.helpers-letter-e2 {
  --helpers-accent: var(--helpers-e2);
}

.helpers-home-link.helpers-letter-r {
  --helpers-accent: var(--helpers-r);
}

.helpers-home-link.helpers-letter-s {
  --helpers-accent: var(--helpers-s);
}

.helpers-home-link:hover,
.helpers-home-link:focus-visible {
  transform: translateY(-3px) scale(1.03);
  filter: saturate(1.08);
}

.helpers-home-link:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--helpers-accent) 52%, #ffffff);
  outline-offset: 6px;
}

.helpers-home-link span {
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--helpers-accent);
  display: block;
  font-family: var(--font-display);
  font-size: clamp(4.4rem, 18.5vw, 8.2rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 0.92;
  text-transform: uppercase;
  -webkit-text-stroke: 0.45px color-mix(in srgb, var(--helpers-accent) 88%, #1a1813 12%);
  text-shadow: 0 0 0.01px currentColor;
  transition: transform 180ms ease, text-shadow 180ms ease;
}

.helpers-home-link:hover span,
.helpers-home-link:focus-visible span {
  transform: translateY(-1px);
  text-shadow: 0 7px 12px color-mix(in srgb, var(--helpers-accent) 26%, transparent);
}

.helpers-home-link small {
  display: none;
}

.helpers-card-h {
  --helpers-accent: var(--helpers-h);
}

.helpers-card-e1 {
  --helpers-accent: var(--helpers-e1);
}

.helpers-card-l {
  --helpers-accent: var(--helpers-l);
}

.helpers-card-p {
  --helpers-accent: var(--helpers-p);
}

.helpers-card-e2 {
  --helpers-accent: var(--helpers-e2);
}

.helpers-card-r {
  --helpers-accent: var(--helpers-r);
}

.helpers-card-s {
  --helpers-accent: var(--helpers-s);
}

.helpers-page-intro {
  margin: 0.8rem 0 0;
  max-width: 68ch;
  color: #494237;
}

.section-helpers-hero h1,
.section-get-involved-hero h1 {
  margin: 0.45rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 6.8vw, 5.2rem);
  line-height: 0.93;
  letter-spacing: -0.01em;
  color: #1d1a15;
}

.section-helpers-directory {
  padding-top: clamp(1.2rem, 3.2vw, 2rem);
}

.section-helpers-card-mock {
  padding-top: clamp(5.4rem, 13vh, 9.5rem);
}

.helpers-page .content-shell {
  padding-bottom: clamp(0.7rem, 1.8vw, 1.1rem);
}

.helpers-card-mock-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(172px, 1fr));
  gap: 0.72rem;
  position: relative;
  isolation: isolate;
}

.helpers-card-hover-indicator {
  --helpers-card-hover-x: 0px;
  --helpers-card-hover-y: 0px;
  --helpers-card-hover-w: 0px;
  --helpers-card-hover-h: 0px;
  position: absolute;
  top: 0;
  left: 0;
  width: var(--helpers-card-hover-w);
  height: var(--helpers-card-hover-h);
  transform: translate3d(var(--helpers-card-hover-x), var(--helpers-card-hover-y), 0);
  border-radius: calc(var(--radius-md) + 8px);
  border: 1px solid color-mix(in srgb, var(--accent) 34%, #d9d0bc);
  background:
    linear-gradient(
      144deg,
      color-mix(in srgb, #ffffff 84%, var(--accent-soft) 16%) 0%,
      color-mix(in srgb, #ffffff 58%, var(--accent-soft) 42%) 100%
    );
  box-shadow:
    0 24px 38px rgba(20, 17, 14, 0.13),
    inset 0 0 0 1px rgba(255, 255, 255, 0.72);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition:
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    width 360ms cubic-bezier(0.22, 1, 0.36, 1),
    height 360ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease;
}

.helpers-card-mock-grid.is-hover-active .helpers-card-hover-indicator {
  opacity: 1;
}

.helpers-card-mock-item {
  --helpers-accent: var(--accent);
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 188px;
  border-radius: calc(var(--radius-md) + 2px);
  border: 1px solid color-mix(in srgb, var(--helpers-accent) 26%, #cfc8b8);
  background:
    radial-gradient(
      circle at 88% 12%,
      color-mix(in srgb, var(--helpers-accent) 20%, transparent) 0%,
      transparent 56%
    ),
    linear-gradient(
      154deg,
      color-mix(in srgb, #ffffff 92%, var(--helpers-accent) 8%) 0%,
      color-mix(in srgb, #f7f0e4 87%, var(--helpers-accent) 13%) 100%
    );
  box-shadow: 0 10px 20px color-mix(in srgb, var(--helpers-accent) 10%, rgba(17, 14, 10, 0.11));
  padding: 0.92rem 0.9rem 0.88rem;
  outline: none;
  transition:
    transform 200ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease,
    background 240ms ease;
}

.helpers-card-mock-item::after {
  content: "";
  width: 160px;
  height: 160px;
  position: absolute;
  right: -70px;
  bottom: -78px;
  border-radius: 50%;
  border: 1px dashed color-mix(in srgb, var(--helpers-accent) 36%, transparent);
  opacity: 0.44;
  pointer-events: none;
  transition: transform 260ms ease, opacity 260ms ease;
}

.helpers-card-mock-item:hover,
.helpers-card-mock-item:focus-within,
.helpers-card-mock-item.is-hover-active {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--helpers-accent) 52%, #b7ad98);
  box-shadow: 0 18px 32px color-mix(in srgb, var(--helpers-accent) 20%, rgba(17, 14, 10, 0.16));
}

.helpers-card-mock-item:hover::after,
.helpers-card-mock-item:focus-within::after,
.helpers-card-mock-item.is-hover-active::after {
  opacity: 0.72;
  transform: translate3d(-5px, -4px, 0);
}

.helpers-card-mock-item:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--helpers-accent) 58%, #ffffff);
  outline-offset: 2px;
}

.helpers-card-mock-letter {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.95rem, 4.8vw, 2.75rem);
  font-weight: 800;
  line-height: 0.9;
  color: color-mix(in srgb, var(--helpers-accent) 86%, #1f1912);
}

.helpers-card-mock-item h3 {
  margin: 0.42rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.42rem);
  line-height: 1;
  color: #1e1912;
}

.helpers-card-mock-item p:not(.helpers-card-mock-letter) {
  margin: 0.55rem 0 0;
  color: #453d32;
}

.helpers-directory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.58rem;
}

.helpers-directory-link {
  display: inline-grid;
  place-content: center;
  border-radius: 999px;
  border: 1px solid rgba(21, 19, 16, 0.18);
  background: #fff;
  width: min(100%, 54px);
  aspect-ratio: 1;
  justify-self: center;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.helpers-directory-link:hover,
.helpers-directory-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(20, 17, 14, 0.12);
}

.section-get-involved-paths {
  padding-top: clamp(1.5rem, 4vw, 2.4rem);
}

.get-involved-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.72rem;
}

.get-involved-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(20, 20, 16, 0.14);
  background:
    radial-gradient(circle at 88% 14%, rgba(212, 71, 47, 0.11), transparent 42%),
    linear-gradient(150deg, #fff, #f5efe2);
  padding: 0.94rem;
}

.get-involved-kicker {
  margin: 0;
  color: #655d51;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.67rem;
  font-weight: 800;
}

.get-involved-card h2 {
  margin: 0.42rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.68rem, 4.1vw, 2.65rem);
  line-height: 0.94;
  color: #211e18;
}

.get-involved-card p {
  margin: 0.56rem 0 0;
  color: #4d463b;
}

.get-involved-card .support-action-link {
  margin-top: 0.8rem;
}

.section-content-updates {
  padding-top: clamp(1.8rem, 4.5vw, 2.8rem);
}

.content-update-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.content-update-list li {
  margin: 0;
  border: 1px solid rgba(20, 20, 16, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.68);
  padding: 0.72rem 0.82rem;
  color: #373229;
}

.section-landing-links {
  padding-top: clamp(1.8rem, 5vw, 3.2rem);
}

.landing-link-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.landing-link-card {
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--panel);
  box-shadow: 0 8px 18px rgba(20, 20, 16, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.landing-link-card:hover,
.landing-link-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 15, 12, 0.08);
}

.landing-link-card figure {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.landing-link-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.landing-link-card:hover img,
.landing-link-card:focus-visible img {
  transform: scale(1.04);
}

.landing-link-copy {
  padding: 0.95rem;
  display: grid;
  gap: 0.45rem;
}

.landing-link-copy p {
  margin: 0;
  color: var(--ink-muted);
}

.landing-link-copy h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.6vw, 2.3rem);
  line-height: 0.94;
}

.landing-link-copy span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 800;
  transition: transform 180ms ease;
}

.landing-link-card:hover .landing-link-copy span,
.landing-link-card:focus-visible .landing-link-copy span {
  transform: translateX(4px);
}

.section-volunteer-highlight {
  padding-top: clamp(1.6rem, 4.6vw, 3rem);
}

.volunteer-highlight-shell {
  border-radius: var(--radius-lg);
  border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--line));
  background:
    radial-gradient(circle at 92% 14%, rgba(212, 71, 47, 0.1), transparent 44%),
    linear-gradient(155deg, #f8f2e8 0%, #efe7da 100%);
  padding: clamp(1rem, 3vw, 1.65rem);
}

.volunteer-highlight-eyebrow {
  margin: 0;
  color: #554c3f;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.68rem;
  font-weight: 800;
}

.volunteer-highlight-shell h2 {
  margin: 0.48rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.2vw, 3.8rem);
  line-height: 0.92;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .volunteer-highlight-shell h2 {
    white-space: normal;
  }
}

.volunteer-highlight-shell p:not(.volunteer-highlight-eyebrow) {
  margin: 0.55rem 0 0;
  color: #423d33;
  font-size: clamp(1rem, 1.24vw, 1.12rem);
  max-width: 62ch;
}

.volunteer-highlight-actions {
  margin-top: 1.05rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem;
}

.volunteer-highlight-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(20, 20, 16, 0.3);
  min-height: 46px;
  padding: 0.66rem 1.1rem;
  text-decoration: none;
  color: #1d1914;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.73rem;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.volunteer-highlight-button.is-primary {
  background: #193f57;
  border-color: #193f57;
  color: #f7f4ed;
}

.volunteer-highlight-button:hover,
.volunteer-highlight-button:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.56);
}

.volunteer-highlight-button.is-primary:hover,
.volunteer-highlight-button.is-primary:focus-visible {
  background: #245572;
  border-color: #245572;
}

.support-content-shell {
  background: #efede8;
}

.section-support-heading {
  border-top: 0;
  text-align: center;
  padding-top: clamp(2rem, 6vw, 4rem);
  padding-bottom: clamp(0.7rem, 2vw, 1.2rem);
}

.support-kicker {
  margin: 0;
  color: #d4472f;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 800;
}

.support-kicker-handwritten {
  color: #f08b2f;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(0.96rem, 1.55vw, 1.18rem);
  font-weight: 700;
  font-family: var(--font-display);
}

.section-support-heading h1 {
  margin: 0.4rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7.6vw, 5.3rem);
  line-height: 0.92;
  color: #1f4a63;
}

.section-support-heading p {
  margin: 0.78rem auto 0;
  color: #484238;
  max-width: 70ch;
  font-size: clamp(1rem, 1.25vw, 1.14rem);
}

.support-split {
  display: grid;
  gap: 0.95rem;
  align-items: stretch;
}

.support-media-column {
  display: grid;
  gap: 0.4rem;
  align-content: start;
}

.support-media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(20, 20, 16, 0.18);
  background: #d8d3ca;
}

.support-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
  max-height: 320px;
}

.support-copy {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(20, 20, 16, 0.14);
  background: rgba(255, 255, 255, 0.72);
  padding: clamp(1rem, 2.4vw, 1.5rem);
  min-width: 0;
}

.support-copy .support-kicker {
  margin-bottom: 0.52rem;
}

.support-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.8vw, 3.1rem);
  line-height: 0.95;
  color: #244a61;
}

.support-copy p {
  margin: 0.65rem 0 0;
  color: #433e34;
  overflow-wrap: break-word;
}

.support-link-list {
  margin: 0.82rem 0 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.45rem;
}

.support-link-list a {
  color: #1a4e6a;
  font-weight: 700;
}

.support-link-list a:hover {
  text-decoration-thickness: 2px;
}

.support-item-grid {
  margin: 0.88rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.38rem 0.95rem;
}

.support-item-grid li {
  margin: 0;
  padding-left: 1rem;
  position: relative;
  color: #2e2a24;
}

.support-item-grid li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #d4472f;
  position: absolute;
  left: 0;
  top: 0.58rem;
}

.support-action-link {
  margin-top: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid #244a61;
  background: #244a61;
  color: #f5f2eb;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 800;
  min-height: 44px;
  padding: 0.62rem 1.06rem;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.support-action-link:hover,
.support-action-link:focus-visible {
  transform: translateY(-1px);
  background: #2e607e;
  border-color: #2e607e;
}

/* Framer-like "Icon Slide In" button treatment for specific CTA buttons. */
.btn-slide-in {
  --slide-bg: #244a61;
  --slide-bg-hover: #2e607e;
  --slide-border: #244a61;
  --slide-text: #f5f2eb;
  --slide-icon-bg: rgba(255, 255, 255, 0.2);
  --slide-icon-color: currentColor;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-right: 2.55rem !important;
  transition:
    transform 200ms ease,
    background 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

.btn-slide-in::after {
  content: "\2192";
  position: absolute;
  right: 0.48rem;
  top: 50%;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  background: var(--slide-icon-bg);
  color: var(--slide-icon-color);
  transform: translate3d(145%, -50%, 0);
  transition:
    transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
    background 220ms ease,
    color 220ms ease;
  pointer-events: none;
}

.btn-slide-in:hover::after,
.btn-slide-in:focus-visible::after {
  transform: translate3d(0, -50%, 0);
}

.support-action-link.btn-slide-in {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(31, 74, 98, 0.34);
  color: #22485f;
  --slide-bg: rgba(255, 255, 255, 0.82);
  --slide-bg-hover: #22485f;
  --slide-border: rgba(31, 74, 98, 0.34);
  --slide-text: #22485f;
  --slide-icon-bg: rgba(36, 74, 97, 0.14);
  --slide-icon-color: #22485f;
}

.support-action-link.btn-slide-in:hover,
.support-action-link.btn-slide-in:focus-visible {
  background: var(--slide-bg-hover);
  border-color: var(--slide-bg-hover);
  color: #f5f1e9;
  --slide-icon-bg: rgba(245, 241, 233, 0.2);
  --slide-icon-color: #f5f1e9;
}

.donation-submit.btn-slide-in {
  background: #22485f;
  border-color: #22485f;
  color: #f5f1e9;
  --slide-bg: #22485f;
  --slide-bg-hover: #2f5f7b;
  --slide-border: #22485f;
  --slide-text: #f5f1e9;
  --slide-icon-bg: rgba(245, 241, 233, 0.22);
  --slide-icon-color: #f5f1e9;
}

.donation-submit.btn-slide-in:hover,
.donation-submit.btn-slide-in:focus-visible {
  background: var(--slide-bg-hover);
  border-color: var(--slide-bg-hover);
  color: var(--slide-text);
}

@media (hover: none), (pointer: coarse) {
  .btn-slide-in::after {
    transform: translate3d(0, -50%, 0);
  }
}

.support-ways h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(2rem, 5.8vw, 4.4rem);
  color: #234a62;
}

.support-way-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.support-way {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(20, 20, 16, 0.12);
  padding: clamp(1rem, 2.5vw, 1.5rem);
  min-height: 270px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.support-way-online {
  background: #e6c54d;
  color: #1f3f55;
}

.support-way-email {
  background: #4eb2a2;
  color: #f3f8f6;
}

.support-way h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 0.95;
}

.support-way p {
  margin: 0.75rem 0 0;
  max-width: 34ch;
}

.support-way-button {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid #1f4a63;
  background: #1f4a63;
  color: #f5f2eb;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 800;
  min-height: 50px;
  min-width: min(100%, 320px);
  padding: 0.66rem 1.18rem;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.support-way-button:hover,
.support-way-button:focus-visible {
  transform: translateY(-1px);
  background: #2a5e7e;
  border-color: #2a5e7e;
}

.get-involved-hub-shell {
  --hub-header-offset: var(--header-h);
  background:
    radial-gradient(circle at 8% 4%, rgba(31, 74, 98, 0.07), transparent 30%),
    radial-gradient(circle at 92% 8%, rgba(212, 71, 47, 0.08), transparent 34%),
    #efede8;
}

.get-involved-hub-shell .section {
  scroll-margin-top: calc(var(--hub-header-offset) + 24px);
}

.action-layer {
  display: grid;
  gap: clamp(0.8rem, 2.4vw, 1.6rem);
}

.action-layer + .action-layer {
  margin-top: clamp(1.2rem, 3.8vw, 2.5rem);
  padding-top: clamp(1.2rem, 3vw, 1.8rem);
  border-top: 1px solid rgba(31, 74, 98, 0.18);
}

.action-tracker-layout {
  display: grid;
  gap: clamp(0.7rem, 2vw, 1.1rem);
}

.action-tracker-sections {
  display: grid;
  gap: 0;
  min-width: 0;
}

.action-mini-nav {
  position: sticky;
  top: calc(var(--hub-header-offset) + 0.38rem);
  z-index: 980;
  margin-block: clamp(0.75rem, 2vw, 1.1rem);
  padding: 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(31, 74, 98, 0.22);
  background: rgba(239, 236, 228, 0.9);
  display: flex;
  gap: 0.42rem;
  overflow-x: auto;
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: translateY(-0.45rem);
  pointer-events: none;
  transition: opacity 200ms ease, transform 220ms ease;
}

.action-mini-nav.is-tracker-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.action-mini-nav::-webkit-scrollbar {
  display: none;
}

.action-mini-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(31, 74, 98, 0.28);
  padding: 0.45rem 0.82rem;
  color: #244a62;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.67rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.72);
}

.action-mini-link:hover,
.action-mini-link:focus-visible,
.action-mini-link.is-active {
  background: #22485f;
  border-color: #22485f;
  color: #f5f1e9;
}

.action-map {
  border: 1px solid rgba(31, 74, 98, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  padding: clamp(0.9rem, 2.6vw, 1.4rem);
  display: grid;
  gap: 0.75rem;
}

.action-map-head {
  display: grid;
  gap: 0.4rem;
}

.action-map-head .support-kicker {
  color: #514a3f;
  letter-spacing: 0.14em;
}

.action-map-head h3 {
  margin: 0;
  font-size: clamp(1.7rem, 4.4vw, 2.7rem);
  color: #21465d;
}

.action-map-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem;
}

.action-map-tab {
  border: 1px solid rgba(31, 74, 98, 0.34);
  border-radius: 999px;
  min-height: 44px;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.72);
  color: #21465d;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.action-map-tab.is-active {
  background: #21485f;
  border-color: #21485f;
  color: #f5f1e9;
}

.action-map-tab:hover,
.action-map-tab:focus-visible {
  background: #21485f;
  border-color: #21485f;
  color: #f5f1e9;
}

.action-map-panel {
  display: grid;
  gap: 0.75rem;
}

.action-goal-group {
  display: grid;
  gap: 0.56rem;
}

.action-goal-group + .action-goal-group {
  padding-top: 0.66rem;
  border-top: 1px dashed rgba(31, 74, 98, 0.24);
}

.action-goal-group h3 {
  margin: 0;
  font-size: 1rem;
  color: #433c32;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.action-goal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.56rem;
}

.action-goal-card {
  border: 1px solid rgba(31, 74, 98, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0.72rem;
  min-width: 0;
}

.action-goal-card-eyebrow {
  margin: 0;
  color: #5a5144;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.66rem;
  font-weight: 800;
}

.action-goal-card h4 {
  margin: 0.38rem 0 0;
  font-family: var(--font-display);
  color: #20465d;
  font-size: clamp(1.25rem, 2.8vw, 1.85rem);
  line-height: 1;
}

.action-goal-disclosure {
  display: grid;
  gap: 0.56rem;
}

.action-goal-disclosure summary {
  list-style: none;
  display: grid;
  gap: 0.32rem;
  cursor: pointer;
}

.action-goal-disclosure summary::-webkit-details-marker {
  display: none;
}

.action-goal-summary-hint {
  margin-top: 0.12rem;
  display: inline-flex;
  align-items: center;
  color: #4d4539;
  font-size: 0.69rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.action-goal-disclosure-body {
  display: grid;
  gap: 0.42rem;
}

.action-goal-disclosure-body p {
  margin: 0;
  color: #433c31;
}

.action-goal-link {
  margin-top: 0.58rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(31, 74, 98, 0.32);
  min-height: 44px;
  padding: 0.5rem 0.9rem;
  color: #21485f;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.68rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.8);
}

.action-goal-link:hover,
.action-goal-link:focus-visible {
  background: #21485f;
  border-color: #21485f;
  color: #f5f1e9;
}

.section-action-heading {
  text-align: left;
  padding-top: clamp(1.4rem, 4vw, 2.5rem);
  padding-bottom: clamp(0.8rem, 2.4vw, 1.4rem);
}

.section-action-heading .support-kicker {
  color: #4e473d;
  letter-spacing: 0.16em;
}

.section-action-heading h1 {
  margin: 0.52rem 0 0;
  max-width: none;
  width: 100%;
  font-size: clamp(1.3rem, 6.2vw, 3.7rem);
  line-height: 0.94;
  white-space: nowrap;
  text-wrap: nowrap;
  overflow-wrap: normal;
}

.section-action-heading p {
  margin: 0.85rem 0 0;
  max-width: 58ch;
}

.main-inner.volunteer-page .support-kicker,
.main-inner.volunteer-page .overline,
.main-inner.volunteer-page .volunteer-opportunity-meta {
  color: var(--accent);
}

.action-start-strip {
  margin-top: 0.95rem;
  border: 1px solid rgba(31, 74, 98, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  padding: 0.8rem;
  display: grid;
  gap: 0.6rem;
  max-width: 820px;
}

.action-start-title {
  margin: 0;
  color: #234960;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.72rem;
}

.action-start-strip p {
  margin: 0;
  color: #484136;
}

.action-start-paths {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.44rem;
}

.action-start-path {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(31, 74, 98, 0.32);
  min-height: 44px;
  padding: 0.5rem 0.8rem;
  color: #21485f;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.68rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.74);
}

.action-start-path:hover,
.action-start-path:focus-visible {
  background: #22485f;
  border-color: #22485f;
  color: #f5f1e9;
}

.action-start-dismiss {
  min-height: 44px;
  justify-self: start;
}

.get-involved-links {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.get-involved-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid #2b5067;
  min-height: 46px;
  padding: 0.64rem 1.05rem;
  color: #21485f;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.52);
  text-align: center;
  line-height: 1.2;
  white-space: normal;
}

.get-involved-link.is-strong {
  background: #21485f;
  color: #f3efe8;
}

.get-involved-link:hover,
.get-involved-link:focus-visible {
  background: #2c5f7d;
  border-color: #2c5f7d;
  color: #f3efe8;
}

.action-primary {
  background: #22485f;
  border-color: #22485f;
  color: #f5f1e9;
  box-shadow: 0 12px 24px rgba(20, 60, 86, 0.18);
}

.action-primary:hover,
.action-primary:focus-visible {
  background: #2f5f7b;
  border-color: #2f5f7b;
  color: #f5f1e9;
}

.volunteer-page .section .support-action-link:not(.action-primary),
.volunteer-page .section .support-way-button:not(.action-primary) {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(31, 74, 98, 0.34);
  color: #22485f;
  box-shadow: none;
}

.volunteer-page .section .support-action-link:not(.action-primary):hover,
.volunteer-page .section .support-action-link:not(.action-primary):focus-visible,
.volunteer-page .section .support-way-button:not(.action-primary):hover,
.volunteer-page .section .support-way-button:not(.action-primary):focus-visible {
  background: #22485f;
  border-color: #22485f;
  color: #f5f1e9;
}

.section-donation-hub {
  padding-top: clamp(1.5rem, 4vw, 2.6rem);
}

.donation-hub-grid {
  display: grid;
  gap: 0.85rem;
}

.donation-form-shell {
  border: 1px solid #d3cdc0;
  background: rgba(255, 255, 255, 0.86);
  padding: 0.78rem;
}

.donation-form-shell h2 {
  margin: 0.28rem 0 0;
  font-size: clamp(1.72rem, 4.1vw, 2.65rem);
  color: #1e465c;
}

.donation-form-intro {
  margin: 0.44rem 0 0;
  color: #534b3f;
  max-width: 48ch;
  font-size: 0.95rem;
  line-height: 1.38;
}

#donation-form {
  margin-top: 0.7rem;
  display: grid;
  gap: 0.46rem;
}

#donation-form fieldset {
  margin: 0;
  border: 1px solid rgba(31, 74, 98, 0.2);
  border-radius: 14px;
  padding: 0.55rem;
}

#donation-form legend {
  padding-inline: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.66rem;
  font-weight: 800;
  color: #4c4338;
}

.donation-frequency-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

.frequency-option {
  border: 1px solid #244a61;
  border-radius: 999px;
  min-height: 40px;
  background: #fff;
  color: #244a61;
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.7rem;
  cursor: pointer;
}

.frequency-option.is-active {
  background: #244a61;
  color: #f3efe8;
}

.donation-amount-presets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem;
  margin-bottom: 0.62rem;
}

.amount-preset {
  border: 1px solid rgba(36, 74, 97, 0.42);
  border-radius: 999px;
  min-height: 38px;
  background: rgba(255, 255, 255, 0.66);
  color: #244a61;
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.amount-preset.is-active {
  background: #21485f;
  border-color: #21485f;
  color: #fff;
}

#donation-form label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}

#donation-form input:not([type="radio"]):not([type="checkbox"]):not([type="hidden"]) {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--ink);
  padding: 0.6rem;
  font: inherit;
}

.payment-method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.42rem;
}

.payment-method-option {
  display: flex;
  align-items: center;
  gap: 0.48rem;
  border: 1px solid rgba(31, 74, 98, 0.32);
  border-radius: 12px;
  min-height: 46px;
  padding: 0.42rem 0.5rem;
  background: #fff;
  overflow: hidden;
}

#donation-form .payment-method-option {
  text-transform: none;
  letter-spacing: 0;
  font-size: inherit;
  font-weight: 700;
}

.payment-method-icon {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  display: inline-grid;
  place-content: center;
  flex-shrink: 0;
}

.payment-method-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.payment-method-option-apple .payment-method-icon {
  background: #1a1a1a;
  color: #f2f2f2;
}

.payment-method-option-google .payment-method-icon {
  background: #eef4ff;
  color: #1f4a89;
}

.payment-method-option-paypal .payment-method-icon {
  background: #e8f1ff;
  color: #194c9b;
}

.payment-method-option-card .payment-method-icon {
  background: #e9edf1;
  color: #20455b;
}

.payment-method-option:has(input:checked) {
  border-color: #1f4a63;
  background: #eff5f9;
}

.payment-method-option:has(input:checked) .payment-method-label {
  color: #173c50;
}

.payment-method-label {
  font-size: 0.74rem;
  font-weight: 700;
  color: #243f4e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.payment-method-option input {
  width: 17px;
  height: 17px;
  margin: 0;
  flex-shrink: 0;
}

.donation-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.42rem;
  font-size: 0.72rem;
  text-transform: none;
  letter-spacing: 0;
  color: #353128;
}

.donation-consent input {
  width: 18px;
  height: 18px;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.donation-consent span {
  flex: 1;
  min-width: 0;
  line-height: 1.35;
}

.donation-submit {
  margin-top: 0.1rem;
  width: 100%;
  justify-content: center;
  min-height: 42px;
}

.donation-checkout-shortcuts {
  margin-top: 0.78rem;
}

.donation-shortcut {
  min-width: 100%;
}

.monthly-upgrade-panel {
  margin-top: 0.82rem;
  border: 1px solid rgba(31, 74, 98, 0.22);
  border-radius: 16px;
  padding: 0.8rem;
  background: rgba(243, 237, 226, 0.7);
}

.monthly-upgrade-panel h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2.8vw, 1.8rem);
  color: #1f435a;
}

.monthly-upgrade-panel p {
  margin: 0.42rem 0 0;
  color: #4b4338;
}

.monthly-upgrade-panel .support-action-link {
  margin-top: 0.62rem;
}

.donation-trust-shell {
  display: grid;
  gap: 0.7rem;
}

.trust-card {
  border: 1px solid rgba(31, 74, 98, 0.2);
  border-radius: var(--radius-md);
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.82);
  min-width: 0;
}

.trust-card h3 {
  margin: 0;
  font-size: clamp(1.42rem, 3vw, 2.1rem);
  color: #1f465b;
}

.trust-breakdown-list,
.trust-impact-list {
  margin: 0.72rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.trust-breakdown-list li,
.trust-impact-list li {
  margin: 0;
  color: #363127;
}

.trust-breakdown-list span,
.trust-impact-list strong {
  color: #1c4f69;
  font-weight: 800;
}

.trust-card-assurance p {
  margin: 0.72rem 0 0;
  color: #3f392f;
}

.section-impact-suite {
  display: grid;
  gap: 0.8rem;
}

body.gallery-micro .section-impact-suite {
  gap: clamp(0.65rem, 1.8vw, 0.95rem);
}

.impact-slider-panel,
.campaign-progress-panel {
  border: 1px solid rgba(31, 74, 98, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  padding: clamp(0.95rem, 2.6vw, 1.35rem);
}

body.gallery-micro .impact-slider-panel,
body.gallery-micro .campaign-progress-panel {
  padding: clamp(0.82rem, 2.1vw, 1.08rem);
}

.impact-slider-panel h2,
.campaign-progress-panel h2 {
  margin: 0.38rem 0 0;
  color: #214860;
  font-size: clamp(1.9rem, 4.8vw, 3.1rem);
}

body.gallery-micro .impact-slider-panel h2,
body.gallery-micro .campaign-progress-panel h2 {
  font-size: clamp(1.8rem, 4.2vw, 2.72rem);
}

.impact-slider-panel label {
  display: block;
  margin-top: 0.78rem;
  color: #4d463b;
  font-size: 0.92rem;
}

#impact-slider {
  margin-top: 0.55rem;
  width: 100%;
  accent-color: #1f4a63;
}

.impact-slider-results {
  margin-top: 0.72rem;
  display: grid;
  gap: 0.42rem;
}

.impact-slider-results p {
  margin: 0;
  color: #3e382e;
}

.impact-slider-results strong {
  color: #1e4b67;
  font-size: 1.15rem;
}

.campaign-progress-meta {
  margin: 0.6rem 0 0;
  color: #443d31;
}

.campaign-progress-wrap {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: flex-start;
}

.campaign-thermometer {
  width: 24px;
  height: 220px;
  border-radius: 999px;
  background: #d8d1c4;
  border: 1px solid rgba(31, 74, 98, 0.22);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

body.gallery-micro .campaign-thermometer {
  width: 22px;
  height: 184px;
}

.campaign-thermometer-fill {
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, #f5b05f 0%, #d4472f 100%);
  transition: height 420ms ease;
}

.campaign-milestones {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.48rem;
}

.campaign-milestones li {
  margin: 0;
  border: 1px solid rgba(31, 74, 98, 0.22);
  border-radius: 10px;
  padding: 0.48rem 0.55rem;
  color: #4a4338;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.64);
}

body.gallery-micro .campaign-milestones li {
  padding: 0.42rem 0.52rem;
  font-size: 0.85rem;
}

.campaign-milestones li.is-unlocked {
  border-color: rgba(36, 96, 126, 0.5);
  background: rgba(42, 120, 152, 0.15);
  color: #1f4f6d;
  font-weight: 700;
}

.bag-checklist {
  margin: 0.82rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.38rem;
}

.bag-checklist li {
  margin: 0;
}

.bag-checklist label {
  display: flex;
  align-items: center;
  gap: 0.52rem;
  color: #2f2b24;
}

.bag-checklist input {
  width: 17px;
  height: 17px;
}

.bag-checklist-status {
  margin: 0.65rem 0 0;
  color: #214d67;
  font-weight: 700;
}

.section-volunteer-funnel {
  padding-top: clamp(1.7rem, 4.3vw, 2.8rem);
}

.volunteer-funnel-intro {
  margin: 0.65rem 0 0;
  color: #474036;
  max-width: 72ch;
}

.volunteer-filter-grid {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.44rem;
  border: 1px solid rgba(31, 74, 98, 0.22);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  padding: 0.75rem;
}

.vol-filter-field {
  display: grid;
  gap: 0.32rem;
}

.volunteer-filter-grid label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 800;
  color: #3f372d;
}

.vol-filter {
  min-height: 42px;
  border: 1px solid rgba(31, 74, 98, 0.35);
  border-radius: 10px;
  padding: 0.56rem 0.62rem;
  font: inherit;
  color: #22201b;
  background: #fff;
}

.volunteer-opportunity-grid {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.72rem;
}

.volunteer-opportunity-card {
  border: 1px solid rgba(31, 74, 98, 0.24);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
  padding: 0.9rem;
  min-width: 0;
}

.volunteer-opportunity-meta {
  margin: 0;
  color: #4e4438;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.68rem;
  font-weight: 800;
}

.volunteer-opportunity-card h3 {
  margin: 0.48rem 0 0;
  color: #22495f;
  font-size: clamp(1.44rem, 3.3vw, 2.2rem);
}

.volunteer-opportunity-card p {
  margin: 0.58rem 0 0;
  color: #423b31;
}

.volunteer-opportunity-card .section-cta-row {
  margin-top: 0.85rem;
}

.volunteer-reminder-toggle {
  margin-top: 0.58rem;
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  color: #3b352c;
  font-size: 0.83rem;
}

.volunteer-reminder-toggle input {
  width: 17px;
  height: 17px;
}

.volunteer-empty-state,
.volunteer-rsvp-feedback {
  margin: 0.72rem 0 0;
  color: #1f4f6c;
  font-weight: 700;
}

.volunteer-modal {
  position: fixed;
  inset: 0;
  z-index: 1510;
}

.volunteer-modal-dialog {
  width: min(94vw, 560px);
}

.section-who {
  width: min(100% - 1.4rem, 1080px);
}

.section-who .who-layout {
  display: grid;
  gap: 0.8rem;
  align-items: center;
}

.section-who .who-layout > div {
  max-width: 62ch;
}

.section-who .who-layout p {
  margin: 0;
  color: var(--ink-muted);
}

.section-who .who-layout p + p {
  margin-top: 0.8rem;
}

.section-who .who-image {
  margin: 0 0 clamp(0.95rem, 2.6vw, 1.65rem);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  width: min(100%, 440px);
  aspect-ratio: 4 / 3;
  height: clamp(190px, 42vw, 255px);
  max-height: 255px;
  justify-self: center;
  box-shadow:
    0 20px 34px rgba(28, 24, 18, 0.17),
    0 8px 14px rgba(28, 24, 18, 0.1);
  transform: translateY(-6px);
}

.section-who .who-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.title-group {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
}

.section-count {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 800;
  transform: translateY(0.3rem);
}

.slider-controls {
  display: none;
}

.control-button {
  border: 1px solid var(--line-strong);
  background: transparent;
  border-radius: 999px;
  width: 45px;
  height: 45px;
  display: inline-grid;
  place-content: center;
  color: var(--ink);
  cursor: pointer;
}

.control-button svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  stroke-width: 1.4;
  fill: none;
}

.control-button:hover {
  background: #fff;
}

.control-button:disabled {
  opacity: 0.35;
  cursor: default;
}

.scroll-track {
  display: flex;
  gap: 0.9rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 0.35rem;
}

.scroll-track::-webkit-scrollbar {
  display: none;
}

.program-card {
  scroll-snap-align: start;
  flex: 0 0 min(82vw, 336px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(20, 20, 16, 0.07);
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform;
  transition: box-shadow 220ms ease;
}

.program-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  transform-style: preserve-3d;
}

.program-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  will-change: transform;
}

.program-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.program-card:hover .program-media img,
.program-card:focus-within .program-media img {
  transform: scale(1.04);
}

.program-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-height: 258px;
  will-change: transform;
}

.program-overline {
  margin: 0;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 800;
  font-size: 0.68rem;
}

.program-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.3vw, 2.3rem);
  line-height: 0.95;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.program-description {
  margin: 0;
  color: var(--ink-muted);
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  line-height: 1.44;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.program-footer {
  margin-top: auto;
  margin-left: -1rem;
  margin-right: -1rem;
  margin-bottom: -1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0.7rem;
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  border-top: 1px solid rgba(223, 109, 75, 0.28);
  padding: 0.72rem 1rem 0.86rem;
  background: linear-gradient(180deg, rgba(223, 109, 75, 0.05) 0%, rgba(223, 109, 75, 0.15) 100%);
}

.program-location {
  color: #27241f;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.program-footer-action {
  flex-shrink: 0;
  color: #191712;
  text-align: right;
  will-change: transform;
}

.section-cta-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.section-program-stories {
  padding-top: clamp(1.4rem, 4vw, 2.5rem);
}

.section-programs-catalog-intro {
  padding-top: clamp(1.1rem, 3vw, 1.8rem);
  padding-bottom: clamp(0.6rem, 1.6vw, 1rem);
}

.programs-catalog-topline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
}

.programs-catalog-brand {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 3.8vw, 2.3rem);
  letter-spacing: -0.01em;
  color: #252423;
}

.programs-catalog-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.9rem;
}

.programs-catalog-nav a {
  text-decoration: none;
  color: #6d6a63;
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  letter-spacing: 0.02em;
  padding-bottom: 0.12rem;
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.programs-catalog-nav a:hover,
.programs-catalog-nav a:focus-visible,
.programs-catalog-nav a.is-active {
  color: #24231f;
  border-bottom-color: #98948b;
}

.programs-catalog-rule {
  width: 100%;
  height: 10px;
  margin-top: 0.9rem;
  border-top: 1px solid #9d9a92;
  border-bottom: 1px solid #d7d5cf;
}

.programs-catalog-intro {
  margin: 0.9rem 0 0;
  color: #6a675f;
  max-width: 60ch;
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
}

.program-catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.4rem, 2.6vw, 2.4rem) clamp(0.95rem, 2vw, 1.4rem);
  position: relative;
  isolation: isolate;
}

.program-catalog-card {
  scroll-margin-top: calc(var(--header-h) + 24px);
  border-radius: clamp(16px, 1.8vw, 22px);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--line) 82%, var(--accent) 18%);
  background: color-mix(in srgb, var(--panel) 88%, #ffffff);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--ink) 14%, transparent);
  position: relative;
  z-index: 1;
  transition:
    transform 260ms cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 260ms ease,
    border-color 260ms ease,
    opacity 220ms ease,
    filter 220ms ease;
}

.program-catalog-grid .program-catalog-hover-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--program-card-hover-w, 0px);
  height: var(--program-card-hover-h, 0px);
  transform: translate3d(var(--program-card-hover-x, 0px), var(--program-card-hover-y, 0px), 0);
  border-radius: clamp(18px, 2vw, 24px);
  pointer-events: none;
  opacity: 0;
  z-index: 0;
  background:
    radial-gradient(
      120% 90% at 12% 8%,
      color-mix(in srgb, var(--accent-soft) 58%, transparent) 0%,
      transparent 52%
    ),
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--accent) 26%, transparent),
      color-mix(in srgb, var(--surface-2) 34%, transparent)
    );
  transition:
    transform 260ms cubic-bezier(0.2, 0.72, 0.2, 1),
    width 260ms cubic-bezier(0.2, 0.72, 0.2, 1),
    height 260ms cubic-bezier(0.2, 0.72, 0.2, 1),
    opacity 220ms ease;
}

.program-catalog-grid.is-hover-active .program-catalog-hover-indicator {
  opacity: 1;
}

.program-catalog-grid .program-catalog-card:hover,
.program-catalog-grid .program-catalog-card:focus-within,
.program-catalog-grid .program-catalog-card.is-hover-active {
  transform: translateY(-5px) scale(1.01);
  border-color: color-mix(in srgb, var(--accent) 46%, var(--line));
  box-shadow: 0 18px 34px color-mix(in srgb, var(--ink) 20%, transparent);
}

@media (hover: hover) and (pointer: fine) {
  .program-catalog-grid:hover .program-catalog-card:not(:hover):not(.is-hover-active) {
    opacity: 0.68;
    filter: saturate(0.9);
  }
}

@media (prefers-reduced-motion: reduce) {
  .program-catalog-grid .program-catalog-hover-indicator,
  .program-catalog-card {
    transition: none;
  }
}

.program-catalog-media {
  margin: 0;
  aspect-ratio: 16 / 9;
  background: #dfddd8;
  overflow: hidden;
}

.program-catalog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 260ms ease;
}

.program-catalog-card:hover .program-catalog-media img,
.program-catalog-card:focus-within .program-catalog-media img {
  transform: scale(1.02);
}

.program-catalog-copy {
  padding-top: 0.72rem;
  display: grid;
  gap: 0.32rem;
}

.program-catalog-label {
  margin: 0;
  color: #78756d;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}

.program-catalog-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 560;
  color: #171513;
  line-height: 1.03;
  font-size: clamp(1.58rem, 2.35vw, 2.35rem);
}

.program-catalog-meta {
  margin: 0;
  color: #5f5c56;
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  line-height: 1.32;
}

@media (min-width: 760px) {
  .programs-catalog-topline {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
  }

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

.program-story-list {
  display: grid;
  gap: 1rem;
}

.program-story {
  background: #dddbd7;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #d2cec2;
  scroll-margin-top: calc(var(--header-h) + 24px);
}

.program-story-inner {
  display: grid;
  grid-template-columns: 1fr;
}

.program-story-copy {
  background: #eceae7;
  color: #2a2824;
  padding: clamp(1.1rem, 3.4vw, 2.4rem);
}

.program-story-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  font-weight: 800;
  color: #a05946;
}

.program-story-copy h3 {
  margin: 0.45rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.95rem, 5vw, 3.65rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: #b3553f;
  text-transform: uppercase;
  font-weight: 500;
}

.program-story-copy p {
  margin: 0;
  color: #4a4740;
  font-size: clamp(1rem, 1.45vw, 1.14rem);
}

.program-story-copy p + p {
  margin-top: 0.82rem;
}

.story-link a {
  color: #44413a;
}

.story-link a:hover {
  color: #1f1d19;
}

.program-story-media {
  position: relative;
  padding: clamp(1rem, 2.8vw, 1.8rem);
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 219, 111, 0.62) 0 6px, transparent 7px),
    radial-gradient(circle at 62% 74%, rgba(255, 219, 111, 0.62) 0 5px, transparent 6px),
    radial-gradient(circle at 84% 26%, rgba(255, 219, 111, 0.62) 0 5px, transparent 6px),
    #54c8be;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 290px;
}

.story-media-grid {
  width: 100%;
  display: grid;
  gap: 0.75rem;
}

.story-media-grid.media-count-1 {
  grid-template-columns: 1fr;
}

.story-media-grid.media-count-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.story-media-grid.media-count-3 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.story-media-grid.media-count-3 .story-media-item.is-primary {
  grid-column: 1 / -1;
}

.story-media-grid.media-count-4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.story-media-item {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 14px 24px rgba(27, 42, 41, 0.22);
}

.story-media-item.is-oval {
  border-radius: 999px;
}

.story-media-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-media-grid.media-count-1 .story-media-item {
  aspect-ratio: 4 / 3;
}

.story-media-grid.media-count-2 .story-media-item,
.story-media-grid.media-count-4 .story-media-item {
  aspect-ratio: 1 / 1;
}

.story-media-grid.media-count-3 .story-media-item.is-primary {
  aspect-ratio: 16 / 10;
}

.story-media-grid.media-count-3 .story-media-item:not(.is-primary) {
  aspect-ratio: 1 / 1;
}

.story-media-item.is-oval {
  aspect-ratio: 4 / 5;
}

.section-discover {
  border-top: 0;
  padding-top: 1.35rem;
}

.discover-frame {
  background: #d6ec76;
  border: 1px solid color-mix(in srgb, #d6ec76 55%, #5f672f);
  border-radius: var(--radius-lg);
  padding: clamp(0.95rem, 2.5vw, 1.6rem);
}

.discover-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
}

.discover-head h2 {
  font-size: clamp(2.35rem, 7vw, 4.8rem);
  line-height: 0.9;
}

.discover-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(20, 20, 16, 0.72);
  border-radius: var(--radius-sm);
  min-height: 50px;
  padding: 0.65rem 1.2rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.95rem;
  background: transparent;
}

.discover-button:hover {
  background: rgba(255, 255, 255, 0.28);
}

.discover-layout {
  margin-top: 1.05rem;
  display: grid;
  gap: 0.95rem;
}

.discover-list {
  display: grid;
  gap: 0.7rem;
}

.discover-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0.75rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 0.32rem;
}

.discover-item:hover,
.discover-item:focus-visible {
  border-color: rgba(20, 20, 16, 0.24);
  background: rgba(255, 255, 255, 0.2);
}

.discover-thumb {
  margin: 0;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
}

.discover-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.discover-item-copy {
  display: grid;
  gap: 0.35rem;
}

.discover-meta {
  margin: 0;
  color: rgba(20, 20, 16, 0.68);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  font-weight: 700;
}

.discover-meta span {
  margin-inline: 0.35rem;
}

.discover-item h3,
.discover-feature-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.44rem, 2.4vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
}

.discover-feature {
  margin: 0;
}

.discover-feature-link {
  display: grid;
  gap: 0.8rem;
  color: inherit;
  text-decoration: none;
}

.discover-feature-media {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 16 / 10;
}

.discover-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.discover-feature-tag {
  position: absolute;
  right: 0.75rem;
  top: 0.75rem;
  border-radius: 8px;
  padding: 0.34rem 0.5rem;
  background: rgba(20, 20, 16, 0.68);
  color: #f7f7f2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.68rem;
  font-weight: 700;
}

.discover-feature-copy {
  display: grid;
  gap: 0.35rem;
}

.section-gallery {
  border-top: 0;
  padding-top: clamp(1.4rem, 4vw, 2.5rem);
  background: transparent;
}

.gallery-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.82rem, 2.1vw, 1.08rem);
  padding: 0;
  border: 0;
  background: transparent;
}

.gallery-expand-backdrop {
  position: fixed;
  inset: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: rgba(4, 8, 12, 0.68);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(3px);
  transition: opacity 220ms ease;
  z-index: 1450;
}

body.is-gallery-expanded .gallery-expand-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.gallery-item {
  --tone-a: rgba(212, 71, 47, 0.24);
  --tone-b: rgba(37, 103, 138, 0.2);
  --tone-c: rgba(240, 178, 114, 0.2);
  position: relative;
  isolation: isolate;
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--line) 84%, #ffffff);
  background:
    radial-gradient(circle at 84% 15%, var(--tone-c), transparent 44%),
    linear-gradient(152deg, color-mix(in srgb, var(--surface) 76%, #ffffff) 0%, #efe8d7 100%);
  min-height: 110px;
  box-shadow: 0 14px 28px rgba(44, 36, 25, 0.12);
  transition: transform 240ms ease, box-shadow 280ms ease, border-color 240ms ease;
}

.gallery-item::before,
.gallery-item::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: multiply;
}

.gallery-item::before {
  width: 72%;
  aspect-ratio: 1;
  right: -28%;
  top: -36%;
  background: radial-gradient(circle at 36% 36%, var(--tone-a) 0%, transparent 68%);
}

.gallery-item::after {
  width: 64%;
  aspect-ratio: 1;
  left: -24%;
  bottom: -34%;
  background: radial-gradient(circle at 66% 66%, var(--tone-b) 0%, transparent 66%);
}

.gallery-item:not(.is-expanded):hover,
.gallery-item:not(.is-expanded):focus-within {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--accent) 22%, var(--line-strong));
  box-shadow: 0 24px 40px rgba(44, 36, 25, 0.16);
}

.gallery-item.is-expanded {
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(860px, calc(100vw - 1.4rem));
  height: min(86vh, 820px);
  min-height: 0;
  transform: translate3d(-50%, -50%, 0);
  grid-column: auto !important;
  grid-row: auto !important;
  border-color: color-mix(in srgb, var(--line-strong) 72%, #fff);
  box-shadow: 0 32px 62px rgba(24, 23, 19, 0.32);
  animation: gallery-card-pop 240ms cubic-bezier(0.2, 0.72, 0.2, 1);
  z-index: 1500;
}

.gallery-item.is-expanded:hover,
.gallery-item.is-expanded:focus-within {
  transform: translate3d(-50%, -50%, 0);
}

.gallery-link {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: minmax(56px, 0.56fr) min-content;
  gap: 0.22rem;
  align-content: start;
  width: 100%;
  height: 100%;
  padding: 0.32rem;
  margin: 0;
  border: 0;
  background: transparent;
  font: inherit;
  text-align: inherit;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.gallery-link:focus-visible {
  outline: 2px solid rgba(31, 74, 98, 0.7);
  outline-offset: -2px;
}

.gallery-media {
  position: relative;
  margin: 0;
  min-height: 100%;
  border-radius: calc(var(--radius-md) - 4px);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.76) 0%, rgba(226, 219, 202, 0.62) 100%);
}

.gallery-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 6, 0.03) 36%, rgba(8, 8, 6, 0.3) 100%);
}

.gallery-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03);
}

.gallery-copy {
  position: relative;
  display: grid;
  gap: 0.36rem;
  align-content: start;
  text-align: left;
}

.gallery-kicker {
  margin: 0;
  color: #6a5743;
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 800;
}

.gallery-copy h3 {
  margin: 0;
  color: #1d1912;
  font-family: var(--font-display);
  font-size: clamp(0.8rem, 1.2vw, 1.05rem);
  line-height: 1.04;
}

.gallery-item:not(.is-expanded) .gallery-copy h3 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gallery-item:not(.is-expanded) .gallery-copy {
  align-self: start;
}

.gallery-summary {
  margin: 0;
  color: #3b3328;
  font-size: 0.76rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gallery-detail-list {
  margin: 0.08rem 0 0;
  padding-left: 1rem;
  display: none;
  gap: 0.28rem;
  color: #3d352a;
}

.gallery-detail-list li {
  margin: 0;
  line-height: 1.38;
  font-size: 0.94rem;
}

.gallery-cta {
  margin-top: 0.18rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border: 1px solid rgba(31, 74, 98, 0.32);
  border-radius: 999px;
  padding: 0.24rem 0.46rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.48rem;
  font-weight: 800;
  color: #274f66;
  background: rgba(255, 255, 255, 0.62);
}

body.gallery-micro .gallery-link {
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 0.04rem;
  padding: 0.24rem;
}

body.gallery-micro .gallery-media {
  min-height: 0;
}

body.gallery-micro .gallery-media::after {
  background: linear-gradient(180deg, rgba(8, 8, 6, 0.02) 44%, rgba(8, 8, 6, 0.14) 100%);
}

body.gallery-micro .gallery-media img {
  object-position: center;
  filter: saturate(0.95) contrast(1.02);
}

body.gallery-micro .gallery-copy {
  gap: 0;
  max-height: none;
  min-height: 0;
  overflow: visible;
  padding: 0.08rem 0.05rem 0.02rem;
}

body.gallery-micro .gallery-copy h3 {
  font-size: clamp(0.62rem, 0.74vw, 0.76rem);
  line-height: 1.08;
}

body.gallery-micro .gallery-kicker,
body.gallery-micro .gallery-summary,
body.gallery-micro .gallery-cta {
  display: none;
}

body.gallery-micro .gallery-item.is-wide .gallery-link,
body.gallery-micro .gallery-item.is-tall .gallery-link {
  grid-template-rows: minmax(0, 1fr) auto;
}

body.gallery-micro .gallery-item.is-expanded .gallery-copy h3 {
  font-size: clamp(0.94rem, 1.4vw, 1.16rem);
  line-height: 1.04;
}

body.gallery-micro .gallery-item.is-expanded .gallery-kicker,
body.gallery-micro .gallery-item.is-expanded .gallery-summary {
  display: block;
}

body.gallery-micro .gallery-item.is-expanded .gallery-cta {
  display: inline-flex;
}

.gallery-item.is-wide .gallery-link {
  grid-template-rows: minmax(54px, 0.48fr) min-content;
}

.gallery-item.is-tall .gallery-link {
  grid-template-rows: minmax(62px, 0.6fr) min-content;
}

.gallery-item.is-expanded .gallery-link {
  grid-template-rows: minmax(250px, 1.15fr) auto;
  gap: 0.92rem;
  padding: 0.96rem;
}

.gallery-item.is-expanded .gallery-summary {
  -webkit-line-clamp: initial;
  overflow: visible;
}

.gallery-item.is-expanded .gallery-detail-list {
  display: grid;
}

.gallery-item.is-expanded .gallery-cta {
  background: #1f4a63;
  border-color: #1f4a63;
  color: #f5f1e9;
}

.gallery-item.tone-ember {
  --tone-a: rgba(212, 71, 47, 0.28);
  --tone-b: rgba(182, 111, 67, 0.18);
  --tone-c: rgba(246, 191, 126, 0.24);
}

.gallery-item.tone-ocean {
  --tone-a: rgba(40, 111, 149, 0.24);
  --tone-b: rgba(123, 189, 210, 0.22);
  --tone-c: rgba(208, 225, 232, 0.28);
}

.gallery-item.tone-sand {
  --tone-a: rgba(201, 149, 96, 0.26);
  --tone-b: rgba(227, 199, 153, 0.24);
  --tone-c: rgba(248, 218, 177, 0.22);
}

.gallery-item.tone-forest {
  --tone-a: rgba(67, 132, 109, 0.24);
  --tone-b: rgba(143, 181, 146, 0.2);
  --tone-c: rgba(218, 233, 205, 0.24);
}

.gallery-item.tone-coral {
  --tone-a: rgba(210, 104, 83, 0.25);
  --tone-b: rgba(241, 176, 140, 0.2);
  --tone-c: rgba(255, 214, 186, 0.2);
}

.gallery-item.tone-ink {
  --tone-a: rgba(48, 66, 98, 0.23);
  --tone-b: rgba(107, 136, 171, 0.22);
  --tone-c: rgba(209, 223, 239, 0.24);
}

@keyframes gallery-card-pop {
  from {
    opacity: 0.48;
    filter: saturate(0.88) brightness(0.95);
  }
  to {
    opacity: 1;
    filter: saturate(1) brightness(1);
  }
}

.section-contact {
  padding-bottom: clamp(1.5rem, 3.8vw, 2.5rem);
}

.section-contact .section-top {
  margin-bottom: clamp(0.7rem, 1.8vw, 1.15rem);
}

.section-contact .section-top h2 {
  font-size: clamp(2rem, 4.1vw, 3.25rem);
  line-height: 0.97;
}

.contact-form-layout {
  display: grid;
  gap: clamp(0.7rem, 1.7vw, 1.05rem);
  align-items: start;
}

.contact-form-media {
  margin: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  min-height: 0;
  aspect-ratio: 16 / 10;
  background: #dbd4c3;
}

.contact-form-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.03);
}

.contact-panel,
.form-panel {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 1rem;
}

.contact-form-panel {
  width: 100%;
  margin: 0;
  border: 0;
  background: transparent;
  padding: 0;
  max-width: 420px;
  justify-self: end;
}

.contact-form-panel h3 {
  font-size: clamp(1.72rem, 2.3vw, 2.35rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
}

.contact-form-intro {
  margin: 0.08rem 0 0.58rem;
  color: color-mix(in srgb, var(--ink) 74%, #70604b);
  font-size: clamp(0.94rem, 1.15vw, 1.05rem);
  line-height: 1.15;
  max-width: 29ch;
}

.contact-panel p {
  margin: 0.72rem 0 0;
  color: var(--ink-muted);
}

.contact-actions {
  margin-top: 1rem;
  display: grid;
  gap: 0.55rem;
}

.contact-actions .hero-action {
  width: 100%;
  justify-content: flex-start;
  min-height: 50px;
  padding: 0.66rem 1rem;
  border: 1px solid rgba(31, 74, 98, 0.2);
  background: #f6f3ec;
  color: #1f1b14;
}

.contact-actions .hero-action.hero-action-solid {
  border-color: rgba(31, 74, 98, 0.18);
  background: #dddacf;
  color: #1c1812;
}

.contact-actions .hero-action.hero-action-ghost {
  border-color: rgba(31, 74, 98, 0.16);
  background: #f6f3ec;
  color: #2a241d;
}

.contact-actions .hero-action:hover,
.contact-actions .hero-action:focus-visible {
  border-color: rgba(31, 74, 98, 0.32);
  background: #ece7dc;
  color: #1f1a14;
}

.contact-actions .hero-action.hero-action-solid:hover,
.contact-actions .hero-action.hero-action-solid:focus-visible {
  border-color: rgba(31, 74, 98, 0.26);
  background: #d8d3c5;
  color: #1c1812;
}

.contact-actions .hero-action span {
  font-weight: 700;
}

.section-contact-quick {
  padding-top: clamp(0.8rem, 2.2vw, 1.3rem);
  border-top: 0;
}

.contact-panel-compact {
  width: min(100%, 620px);
  margin-inline: auto;
}

.contact-panel-compact h3 {
  margin-top: 0.4rem;
}

.contact-actions-compact .hero-action {
  min-height: 46px;
  padding: 0.58rem 0.92rem;
  font-size: 0.71rem;
}

.contact-social-mini {
  margin-top: 0.78rem;
  display: flex;
  gap: 0.52rem;
  flex-wrap: wrap;
}

.contact-social-mini a {
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: #f6f3ec;
  color: #231f19;
  min-height: 40px;
  padding: 0.46rem 0.82rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.68rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-social-mini a:hover,
.contact-social-mini a:focus-visible {
  background: #ece7dc;
  border-color: rgba(31, 74, 98, 0.28);
}

.form-panel h3 {
  margin-bottom: 0.8rem;
}

#contact-form,
#chat-form,
#volunteer-apply-form {
  display: grid;
  gap: 0.6rem;
}

#contact-form label,
#chat-form label,
#volunteer-apply-form label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}

#contact-form input,
#contact-form select,
#contact-form textarea,
#chat-form input,
#chat-form select,
#chat-form textarea,
#volunteer-apply-form input,
#volunteer-apply-form select,
#volunteer-apply-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--ink);
  padding: 0.72rem;
  font: inherit;
}

#contact-form {
  gap: 0.46rem;
}

#contact-form input,
#contact-form select,
#contact-form textarea {
  border-radius: 11px;
  border: 1px solid color-mix(in srgb, var(--line-strong) 76%, #8f7d5e);
  background: color-mix(in srgb, #fff 80%, var(--surface) 20%);
  min-height: 44px;
  padding: 0.62rem 0.8rem;
}

#contact-form textarea {
  min-height: 86px;
  resize: vertical;
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
  color: color-mix(in srgb, var(--ink-muted) 84%, #87765e);
}

#contact-form .header-button {
  width: 100%;
  justify-content: center;
  min-height: 44px;
  border-radius: 10px;
  font-size: 0.72rem;
}

#contact-form .header-button-solid {
  background: #d8bb7b;
  border-color: color-mix(in srgb, #b79658 52%, var(--line));
  color: #2b1c10;
  box-shadow: none;
}

#contact-form .header-button-solid:hover,
#contact-form .header-button-solid:focus-visible {
  background: #dfc486;
  border-color: color-mix(in srgb, #b8965e 58%, var(--line));
  color: #24170d;
}

.section-faq-hero {
  text-align: center;
  padding-top: clamp(1.8rem, 5.2vw, 3.1rem);
  padding-bottom: clamp(0.8rem, 2.4vw, 1.4rem);
}

.section-faq-hero h1 {
  margin: 0.45rem auto 0;
  max-width: 17ch;
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 6.2vw, 4.3rem);
  line-height: 0.92;
  color: #1f475f;
}

.section-faq-hero p {
  margin: 0.74rem auto 0;
  max-width: 66ch;
  color: #4b4338;
  font-size: clamp(0.98rem, 1.3vw, 1.1rem);
}

.section-faq-hoverflex {
  border-top: 0;
  padding-top: clamp(0.55rem, 1.8vw, 0.95rem);
}

.faq-hoverflex {
  display: grid;
  gap: 0.72rem;
}

.faq-hoverflex-card {
  position: relative;
  isolation: isolate;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(31, 74, 98, 0.28);
  overflow: hidden;
  background: linear-gradient(158deg, rgba(37, 78, 103, 0.88) 0%, rgba(28, 58, 76, 0.94) 100%);
  box-shadow: 0 10px 22px rgba(17, 29, 36, 0.16);
  min-height: 128px;
  transition: transform 220ms ease, box-shadow 260ms ease;
}

.faq-hoverflex-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--faq-image);
  background-size: cover;
  background-position: center;
  opacity: 0.26;
  transform: scale(1.08);
  transform-origin: center;
  transition: transform 420ms ease, opacity 420ms ease;
  z-index: -2;
}

.faq-hoverflex-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 28, 35, 0.14) 0%, rgba(9, 15, 20, 0.72) 100%);
  z-index: -1;
}

.faq-hoverflex-card.is-active {
  box-shadow: 0 18px 34px rgba(16, 32, 43, 0.26);
}

.faq-hoverflex-card.is-active::before {
  opacity: 0.44;
  transform: scale(1.02);
}

.faq-hoverflex-trigger {
  width: 100%;
  border: 0;
  margin: 0;
  padding: 0.95rem 0.95rem 0.8rem;
  background: transparent;
  color: #f4efe4;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.72rem;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.faq-hoverflex-index {
  align-self: start;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: rgba(244, 239, 228, 0.84);
}

.faq-hoverflex-question {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.95rem);
  line-height: 0.92;
  letter-spacing: 0.005em;
}

.faq-hoverflex-icon {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 260ms ease;
}

.faq-hoverflex-panel {
  padding: 0 0.95rem 0.95rem;
  display: grid;
  gap: 0.76rem;
}

.faq-hoverflex-panel p {
  margin: 0;
  color: rgba(244, 239, 228, 0.94);
  max-width: 40ch;
  font-size: 0.97rem;
  line-height: 1.45;
}

.faq-hoverflex-card.is-active .faq-hoverflex-icon {
  transform: rotate(45deg);
}

.section-faq-cta {
  border-top: 0;
  padding-top: clamp(1.1rem, 3.2vw, 2rem);
}

.faq-cta-panel {
  width: min(100%, 780px);
  border: 1px solid rgba(31, 74, 98, 0.24);
  background: linear-gradient(152deg, #f7f2e9 0%, #efe5d4 100%);
}

.faq-cta-panel h2 {
  margin: 0.36rem 0 0;
  color: #1f465d;
}

.faq-cta-panel p {
  color: #4a4338;
}

@media (min-width: 980px) {
  .contact-form-layout {
    grid-template-columns: minmax(0, 1.78fr) minmax(280px, 0.66fr);
    gap: clamp(0.9rem, 1.7vw, 1.25rem);
    max-width: 1180px;
    margin-inline: auto;
  }

  .contact-form-media {
    aspect-ratio: 2.24 / 1;
    max-height: 390px;
  }

  .contact-form-panel {
    align-self: start;
    max-width: 392px;
  }

  .section-faq-hero {
    padding-top: clamp(2rem, 5vw, 3.5rem);
    padding-bottom: clamp(0.9rem, 2.4vw, 1.4rem);
  }

  .faq-hoverflex {
    display: grid;
    gap: 0.9rem;
    min-height: 0;
  }

  .faq-hoverflex-card {
    min-height: 132px;
  }

  .faq-hoverflex-card:hover,
  .faq-hoverflex-card:focus-within {
    transform: translateY(-2px);
  }

  .faq-hoverflex-trigger {
    padding: 1.12rem 1.1rem 0.9rem;
  }

  .faq-hoverflex-panel {
    margin-top: 0;
    padding: 0 1.1rem 1.05rem;
  }
}

.form-confirmation {
  margin: 0.3rem 0 0;
  color: #1f6f35;
  font-size: 0.9rem;
  font-weight: 700;
}

.map-wrap {
  margin-top: 0.9rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 260px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
}

.section-map-bottom {
  padding-top: clamp(1.6rem, 4vw, 2.8rem);
  padding-bottom: clamp(2.1rem, 5vw, 3.8rem);
}

.section-map-bottom .map-wrap {
  margin-top: 0;
}

.site-footer {
  background: #efefed;
  color: #1a1915;
  border-top: 1px solid var(--line);
}

.footer-newsletter {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, #3b9abd 0%, #79c3da 48%, #97d5e8 100%);
  border-bottom: 1px solid rgba(20, 20, 16, 0.18);
}

.footer-newsletter::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(130% 120% at 88% 54%, rgba(31, 74, 98, 0.24) 0%, rgba(31, 74, 98, 0) 55%);
}

.footer-newsletter::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: min(46vw, 540px);
  display: none;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(19, 56, 80, 0.18), rgba(19, 56, 80, 0.36)),
    url("assets/images/Work.png") center right / cover no-repeat;
  background-blend-mode: multiply;
  opacity: 0.78;
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.92) 28%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.92) 28%, rgba(0, 0, 0, 0) 100%);
}

.footer-newsletter-inner {
  position: relative;
  z-index: 1;
  isolation: isolate;
  padding-block: clamp(1.3rem, 3.2vw, 2.2rem);
  display: grid;
  justify-items: center;
}

.footer-newsletter-inner > * {
  position: relative;
  z-index: 1;
}

.footer-newsletter h2 {
  margin: 0;
  max-width: 15ch;
  justify-self: start;
  text-align: left;
  color: #09141d;
  font-family: var(--font-body);
  font-size: clamp(1.42rem, 3.6vw, 2.6rem);
  line-height: 0.94;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 800;
}

#newsletter-form {
  margin: 0.8rem auto 0;
  width: min(100%, 860px);
  display: grid;
  gap: 0.7rem;
}

.newsletter-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.58rem;
}

.newsletter-field {
  display: grid;
  gap: 0.2rem;
  text-align: left;
}

.newsletter-field label {
  color: rgba(9, 20, 29, 0.9);
  font-size: 0.64rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 800;
}

.newsletter-field input {
  width: 100%;
  min-height: 38px;
  border: 0;
  border-bottom: 2px solid rgba(8, 17, 26, 0.4);
  border-radius: 0;
  padding: 0.32rem 0.05rem 0.42rem;
  font: inherit;
  font-size: 0.95rem;
  background: transparent;
  color: #0b1821;
}

.newsletter-field input::placeholder {
  color: rgba(11, 24, 33, 0.52);
}

.newsletter-field input:focus {
  border-bottom-color: #123145;
}

.newsletter-button {
  justify-self: center;
  border: 1px solid #102536;
  border-radius: 8px;
  min-height: 44px;
  min-width: 148px;
  padding: 0.55rem 1.1rem;
  background: #102536;
  color: #f4f8fc;
  font: inherit;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 800;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.newsletter-button:hover {
  background: #18405a;
  border-color: #18405a;
  transform: translateY(-1px);
}

.newsletter-consent {
  display: flex;
  align-items: flex-start;
  justify-self: center;
  max-width: min(100%, 860px);
  gap: 0.42rem;
  color: #102536;
  font-size: 0.78rem;
  text-transform: none;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.newsletter-consent input {
  margin-top: 0.08rem;
  width: 16px;
  height: 16px;
  accent-color: #14374d;
}

.newsletter-confirmation {
  margin: 0;
  text-align: center;
  color: #123c56;
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-main {
  padding-top: clamp(2.1rem, 4vw, 3.8rem);
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.footer-brand-block p {
  margin: 0.65rem 0 0;
  color: rgba(20, 20, 16, 0.72);
  max-width: 30ch;
}

.footer-logo-link {
  display: inline-flex;
}

.footer-logo-link img {
  width: min(240px, 62vw);
  height: auto;
}

.footer-social-row {
  margin-top: 1rem;
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.footer-social-row a {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--accent) 44%, #8e3a2d);
  display: inline-grid;
  place-content: center;
  text-decoration: none;
  color: #2a150d;
  background: linear-gradient(135deg, rgba(242, 178, 96, 0.26) 0%, rgba(223, 109, 75, 0.26) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.footer-social-row svg {
  width: 18px;
  height: 18px;
  display: block;
}

.footer-social-row .icon-stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social-row .icon-fill {
  fill: currentColor;
}

.footer-social-row a:hover {
  background: linear-gradient(135deg, rgba(247, 199, 124, 0.44) 0%, rgba(231, 122, 82, 0.44) 100%);
  border-color: color-mix(in srgb, var(--accent) 58%, #7b2f22);
  color: #22120b;
  transform: translateY(-1px);
}

.footer-social-row a:focus-visible {
  outline: 2px solid #1a1915;
  outline-offset: 2px;
}

.footer-links {
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.footer-links a {
  margin: 0;
  text-decoration: none;
  color: #1a1915;
  font-size: clamp(1rem, 1.2vw, 1.5rem);
  line-height: 1.1;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-legal {
  margin-top: 1.3rem;
  padding: 1rem 0 1.5rem;
  border-top: 1px solid rgba(20, 20, 16, 0.14);
  display: grid;
  gap: 0.65rem;
}

.footer-legal-left,
.footer-legal-right {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.footer-legal a,
.footer-legal p {
  margin: 0;
  color: rgba(20, 20, 16, 0.72);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-legal a:hover {
  text-decoration: underline;
}

.scroll-top-fab {
  position: fixed;
  right: 0.72rem;
  bottom: calc(4.18rem + var(--floating-footer-lift));
  z-index: 1151;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(117, 55, 28, 0.35);
  padding: 0;
  background: linear-gradient(135deg, #f8c97e 0%, #f09a66 52%, #e47856 100%);
  color: #2d1a12;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 8px, 0) scale(0.94);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    background 220ms ease,
    border-color 220ms ease;
}

.scroll-top-fab.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.scroll-top-fab:hover,
.scroll-top-fab:focus-visible {
  transform: translate3d(0, -1px, 0) scale(1);
  background: linear-gradient(135deg, #fbd493 0%, #f4a574 52%, #ea8561 100%);
  border-color: rgba(117, 55, 28, 0.46);
}

.chat-fab {
  position: fixed;
  right: 0.72rem;
  bottom: calc(0.72rem + var(--floating-footer-lift));
  z-index: 1150;
  border-radius: 999px;
  border: 1px solid rgba(117, 55, 28, 0.35);
  padding: 0.74rem 1.14rem;
  background: linear-gradient(135deg, #f8c97e 0%, #f09a66 52%, #e47856 100%);
  color: #2d1a12;
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.03em;
  text-transform: none;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
  box-shadow: var(--shadow-lg);
  transition: transform 160ms ease, background 220ms ease, border-color 220ms ease;
}

.chat-fab:hover,
.chat-fab:focus-visible {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #fbd493 0%, #f4a574 52%, #ea8561 100%);
  border-color: rgba(117, 55, 28, 0.46);
}

.is-past-hero .chat-fab {
  border-color: rgba(117, 55, 28, 0.38);
  background: linear-gradient(135deg, #f6c171 0%, #ec9164 54%, #de7050 100%);
}

.is-past-hero .scroll-top-fab {
  border-color: rgba(117, 55, 28, 0.38);
  background: linear-gradient(135deg, #f6c171 0%, #ec9164 54%, #de7050 100%);
}

:root[data-theme="dark"] .scroll-top-fab {
  border-color: rgba(167, 187, 255, 0.48);
  background: linear-gradient(145deg, #2b3f74 0%, #304a88 52%, #36589e 100%);
  color: #ecf2ff;
}

:root[data-theme="dark"] .scroll-top-fab:hover,
:root[data-theme="dark"] .scroll-top-fab:focus-visible {
  background: linear-gradient(145deg, #345090 0%, #3a5b9e 52%, #4267af 100%);
  border-color: rgba(191, 206, 255, 0.64);
}

.mobile-action-bar {
  position: fixed;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.7rem;
  z-index: 1160;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.42rem;
  padding: 0.45rem;
  border: 1px solid rgba(31, 74, 98, 0.28);
  border-radius: 14px;
  background: rgba(244, 241, 233, 0.96);
  box-shadow: 0 18px 34px rgba(19, 26, 28, 0.2);
  backdrop-filter: blur(8px);
}

.mobile-action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(31, 74, 98, 0.38);
  background: #fff;
  color: #244a61;
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  text-decoration: none;
}

.mobile-action-link.is-primary {
  background: #1f4a63;
  border-color: #1f4a63;
  color: #f4efe7;
}

.mobile-action-link:hover,
.mobile-action-link:focus-visible {
  background: #2b627f;
  border-color: #2b627f;
  color: #f9f4eb;
}

body.has-mobile-action-bar {
  padding-bottom: 5.3rem;
}

body.has-mobile-action-bar .chat-fab {
  bottom: calc(5.35rem + var(--floating-footer-lift));
}

body.has-mobile-action-bar .scroll-top-fab {
  bottom: calc(8.81rem + var(--floating-footer-lift));
}

.exit-intent-modal {
  position: fixed;
  inset: 0;
  z-index: 1520;
}

.exit-intent-dialog {
  width: min(92vw, 520px);
}

.exit-intent-dialog form {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.52rem;
}

.exit-intent-dialog .header-button {
  width: 100%;
  justify-content: center;
}

.exit-intent-dialog label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 800;
}

.exit-intent-dialog input {
  min-height: 46px;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  padding: 0.64rem 0.7rem;
  font: inherit;
}

.exit-intent-link {
  margin-top: 0.82rem;
  width: 100%;
}

.analytics-dashboard {
  position: fixed;
  left: 0.72rem;
  bottom: 0.72rem;
  z-index: 1700;
  width: min(92vw, 620px);
  border: 1px solid rgba(20, 20, 16, 0.24);
  border-radius: 14px;
  background: rgba(248, 246, 241, 0.97);
  color: #1d1a14;
  padding: 0.75rem;
  box-shadow: 0 18px 34px rgba(15, 15, 12, 0.2);
}

body.has-mobile-action-bar .analytics-dashboard {
  bottom: 5.4rem;
}

.analytics-dashboard h2 {
  margin: 0;
  font-size: 1.2rem;
}

.analytics-dashboard p {
  margin: 0.36rem 0 0;
  font-size: 0.78rem;
  color: #343028;
}

.analytics-table-wrap {
  margin-top: 0.62rem;
  overflow-x: auto;
}

.analytics-dashboard table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.74rem;
}

.analytics-dashboard th,
.analytics-dashboard td {
  border: 1px solid rgba(20, 20, 16, 0.14);
  padding: 0.28rem 0.32rem;
  text-align: left;
}

.chat-modal {
  position: fixed;
  inset: 0;
  z-index: 1500;
}

.chat-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(4px);
}

.chat-dialog {
  position: relative;
  width: min(94vw, 560px);
  margin: clamp(4vh, 7vh, 84px) auto clamp(1rem, 3vh, 1.4rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  padding: 1rem;
  box-shadow: var(--shadow-lg);
  max-height: calc(100vh - clamp(4vh, 7vh, 84px) - clamp(1rem, 3vh, 1.4rem));
  max-height: calc(100dvh - clamp(4vh, 7vh, 84px) - clamp(1rem, 3vh, 1.4rem));
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.chat-dialog p {
  margin: 0.6rem 0 0;
  color: var(--ink-muted);
}

.chat-close {
  position: absolute;
  right: 0.56rem;
  top: 0.5rem;
  border: 0;
  background: transparent;
  color: var(--ink-muted);
  font-size: 1.85rem;
  line-height: 1;
  cursor: pointer;
}

[data-text-animate] .text-animate-content {
  display: inline;
}

[data-text-animate] .text-animate-word {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 0.78em, 0) scale(0.98);
  filter: blur(6px);
  will-change: transform, opacity, filter;
  transition:
    transform var(--text-animate-duration, 720ms) cubic-bezier(0.21, 0.74, 0.24, 1),
    opacity calc(var(--text-animate-duration, 720ms) * 0.82) ease,
    filter calc(var(--text-animate-duration, 720ms) * 0.9) ease;
  transition-delay: var(--text-animate-delay, 0ms);
}

[data-text-animate].is-text-visible .text-animate-word {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.js-reveal {
  opacity: 1;
}

@media (min-width: 720px) {
  :root {
    --header-h: 82px;
  }

  .page-container,
  .section,
  .hero-content {
    width: min(100% - 2rem, var(--max-w));
  }

  .section-home-priorities .section-top,
  .section-helpers-framework .section-top,
  .section-content-updates .section-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-text-reveal-paragraph {
    max-width: min(100%, 24ch);
    font-size: clamp(2.2rem, 5.2vw, 5.1rem);
    line-height: 1.08;
  }

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

  .helpers-home-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    width: min(100%, 92%);
    max-width: 64rem;
    gap: clamp(0.22rem, 0.92vw, 0.82rem);
  }

  .helpers-home-link span {
    font-size: clamp(4.9rem, 10.8vw, 7.4rem);
  }

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

  .helpers-directory-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

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

  .section-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .discover-head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .newsletter-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.95rem;
  }

  .program-story-list {
    gap: 1.2rem;
  }

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

  .get-involved-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .action-tracker-layout {
    grid-template-columns: minmax(0, 1fr) minmax(118px, 154px);
    grid-template-areas: "sections nav";
    gap: clamp(0.7rem, 1.8vw, 1.1rem);
    align-items: start;
  }

  .action-mini-nav {
    grid-area: nav;
    margin: 0;
    top: calc(var(--hub-header-offset) + 0.72rem);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    border-radius: 16px;
    overflow: visible;
  }

  .action-tracker-sections {
    grid-area: sections;
  }

  .action-mini-link {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    white-space: nowrap;
  }

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

  .action-map-tabs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .donation-amount-presets {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .donation-shortcut {
    min-width: auto;
  }

  .section-impact-suite {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  body.gallery-micro .section-impact-suite {
    width: min(100%, 39.5rem);
    margin-left: auto;
    grid-template-columns: minmax(0, 1fr);
  }

  .volunteer-filter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem 0.6rem;
  }

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

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

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

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

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

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-flow: dense;
    grid-auto-rows: minmax(54px, auto);
    gap: 0.65rem;
  }

  body.gallery-micro .gallery-grid {
    grid-auto-rows: 132px;
    gap: 0.56rem;
  }

  .gallery-item {
    min-height: 0;
    height: 100%;
  }

  .gallery-item.is-standard {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item.is-wide {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-item.is-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item.is-feature {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-item.is-expanded {
    width: min(760px, calc(100vw - 2.6rem));
    height: min(84vh, 760px);
  }

  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 980px) {
  :root {
    --header-h: 96px;
  }

  .main-inner.volunteer-page {
    padding-top: 86px;
  }

  .footer-newsletter-inner {
    padding-right: clamp(13rem, 32vw, 25rem);
  }

  .footer-newsletter::after {
    display: block;
  }

  .site-header {
    align-items: center;
    padding-inline: clamp(1rem, 2vw, 1.7rem);
    padding-top: 0;
    gap: 0.8rem;
  }

  .header-mobile {
    display: none;
  }

  .brand {
    max-width: none;
    height: 64px;
    overflow: visible;
    align-self: center;
    position: relative;
    top: 0;
    margin-top: 0;
    display: inline-flex;
    align-items: center;
  }

  .brand img {
    width: auto;
    height: 100%;
    max-width: none;
    transform: none;
  }

  .is-past-hero .site-header {
    height: 76px;
  }

  .is-past-hero .brand {
    height: 58px;
    top: 0;
  }

  .site-nav {
    justify-self: center;
    align-self: center;
    margin-top: 0;
  }

  .site-nav ul {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.1rem;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0;
  }

  .site-nav a {
    font-size: 0.66rem;
    letter-spacing: 0.06em;
    padding: 0.48rem 0.54rem;
    border-radius: 999px;
  }

  .header-tools {
    align-self: center;
    margin-top: 0;
  }

  .header-button {
    padding: 0.58rem 0.88rem;
    font-size: 0.72rem;
  }

  .header-tools .header-button-solid {
    min-width: 120px;
    padding: 0.7rem 1.06rem;
    font-size: 0.76rem;
  }

  .hero h1 {
    max-width: 16ch;
    font-size: clamp(2.5rem, 5.4vw, 5.1rem);
  }

  .hero-content {
    padding-bottom: clamp(0.9rem, 2.4vh, 2.1rem);
    min-height: calc(clamp(500px, 70vh, 780px) - 1.2in);
    grid-template-columns: minmax(0, 1fr) minmax(380px, 48rem);
  }

  .hero-side-panel {
    width: min(100%, 50rem);
    margin-right: clamp(1.2rem, 3.6vw, 4.8rem);
    transform: translateY(-6%);
  }

  .hero-mission-copy {
    max-width: 17ch;
    font-size: clamp(4.8rem, 7.4vw, 9.1rem);
    line-height: 1.12;
  }

  .home-text-reveal-paragraph {
    max-width: min(100%, 22ch);
    font-size: clamp(2.4rem, 4.7vw, 5.35rem);
    line-height: 1.01;
  }

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

  .helpers-home-grid {
    width: min(100%, 96%);
    max-width: 76rem;
    gap: clamp(0.24rem, 0.82vw, 0.86rem);
  }

  .helpers-home-link span {
    font-size: clamp(6.2rem, 8.2vw, 9.9rem);
  }

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

  .page-intro {
    min-height: clamp(380px, 56vh, 640px);
  }

  .slider-controls {
    display: flex;
    gap: 0.7rem;
  }

  .scroll-track {
    gap: 1rem;
  }

  .program-card {
    flex: 0 0 clamp(250px, 30vw, 430px);
  }

  .program-story-inner {
    grid-template-columns: 1fr 1fr;
    min-height: 470px;
  }

  .program-story.is-image-left .program-story-media {
    order: 1;
  }

  .program-story.is-image-left .program-story-copy {
    order: 2;
  }

  .program-story.is-image-right .program-story-copy {
    order: 1;
  }

  .program-story.is-image-right .program-story-media {
    order: 2;
  }

  .program-story-copy {
    padding: clamp(1.35rem, 3vw, 3rem);
    align-self: center;
  }

  .program-story-media {
    min-height: 100%;
    padding: clamp(1rem, 2.4vw, 2rem);
  }

  .discover-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1.05rem;
    align-items: start;
  }

  .discover-item {
    grid-template-columns: 150px 1fr;
    gap: 0.95rem;
  }

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

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

  .section-who .who-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
    gap: 0.85rem;
  }

  .section-who .who-image {
    width: min(100%, 470px);
    height: clamp(220px, 24vw, 280px);
    max-height: 280px;
  }

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

  .support-split {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .action-tracker-layout {
    grid-template-columns: minmax(0, 1fr) minmax(130px, 168px);
    grid-template-areas: "sections nav";
    gap: clamp(0.8rem, 1.9vw, 1.35rem);
    align-items: start;
  }

  .action-mini-nav {
    grid-area: nav;
    margin: 0;
    top: calc(var(--hub-header-offset) + 0.85rem);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    border-radius: 18px;
    overflow: visible;
  }

  .action-tracker-sections {
    grid-area: sections;
  }

  .action-mini-link {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    white-space: nowrap;
  }

  .support-media img {
    min-height: 260px;
    max-height: 340px;
  }

  .support-copy {
    padding: clamp(1.2rem, 2.6vw, 2rem);
  }

  .donation-hub-grid {
    grid-template-columns: 1.14fr 0.86fr;
    gap: 1rem;
    align-items: start;
  }

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

  .trust-card {
    padding: 1rem;
  }

  .section-support-heading p {
    max-width: 72ch;
  }

  body.gallery-micro .section-impact-suite {
    width: min(100%, 43rem);
    margin-left: auto;
    grid-template-columns: minmax(0, 1fr);
  }

  .support-way {
    min-height: 320px;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-flow: dense;
    grid-auto-rows: minmax(48px, auto);
    gap: 0.75rem;
  }

  body.gallery-micro .gallery-grid {
    grid-auto-rows: 148px;
    gap: 0.62rem;
  }

  .gallery-item {
    min-height: 0;
  }

  .gallery-item.is-standard {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item.is-wide {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-item.is-tall {
    grid-column: span 1;
    grid-row: span 2;
  }

  .gallery-item.is-feature {
    grid-column: span 2;
    grid-row: span 2;
  }

  body.gallery-micro .gallery-item.is-tall,
  body.gallery-micro .gallery-item.is-feature {
    grid-row: span 1;
  }

  .gallery-item.is-expanded {
    width: min(840px, calc(100vw - 4rem));
    height: min(84vh, 820px);
  }

  .footer-main-grid {
    grid-template-columns: 1.2fr 0.8fr 1fr;
  }

  .mobile-action-bar {
    display: none;
  }

  body.has-mobile-action-bar {
    padding-bottom: 0;
  }

  body.has-mobile-action-bar .chat-fab {
    bottom: calc(0.72rem + var(--floating-footer-lift));
  }

  body.has-mobile-action-bar .scroll-top-fab {
    bottom: calc(4.18rem + var(--floating-footer-lift));
  }

  .analytics-dashboard {
    left: 1rem;
    bottom: 1rem;
    width: min(560px, 44vw);
  }

  .footer-legal {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .footer-legal-right {
    justify-content: flex-end;
  }
}

@media (hover: none), (pointer: coarse) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: 110px;
    height: auto;
  }

  .gallery-item.is-expanded {
    width: min(94vw, 680px);
    height: min(84vh, 760px);
  }
}

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

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

  [data-text-animate] .text-animate-word {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* ------------------------------------
  Fauna-Inspired Navigation
------------------------------------ */
body.is-nav-open {
  overflow: hidden;
}

.nav-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  inset: 0;
  z-index: 1190;
  border: 0;
  margin: 0;
  padding: 0;
  background: rgba(17, 15, 11, 0.33);
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms ease;
}

.nav-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.header-mobile {
  display: flex;
  align-items: center;
  gap: 0.38rem;
  position: relative;
  z-index: 1260;
  grid-column: 3;
  justify-self: end;
}

.theme-toggle,
.nav-toggle {
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: currentColor;
  cursor: pointer;
  gap: 4px;
  position: relative;
  isolation: isolate;
  display: grid;
  place-content: center;
}

.theme-toggle::before,
.theme-toggle::after,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  pointer-events: none;
  transition:
    transform 420ms cubic-bezier(0.19, 1, 0.22, 1),
    opacity 260ms ease,
    background 280ms ease,
    border-color 280ms ease;
}

.theme-toggle::before,
.nav-toggle::before {
  inset: 8px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.04);
}

.theme-toggle::after,
.nav-toggle::after {
  inset: 11px;
  border: 1px solid color-mix(in srgb, var(--line-dark) 82%, transparent);
  opacity: 0;
  transform: scale(1.18);
}

.is-past-hero .theme-toggle::before,
.is-past-hero .nav-toggle::before,
body.page-inner .theme-toggle::before,
body.page-inner .nav-toggle::before {
  border-color: rgba(246, 241, 230, 0.52);
  background: rgba(18, 16, 12, 0.8);
}

.theme-toggle:hover::after,
.theme-toggle:focus-visible::after,
.nav-toggle:hover::after,
.nav-toggle:focus-visible::after,
body.is-nav-open .nav-toggle::after {
  opacity: 1;
  transform: scale(1);
}

.theme-toggle-icons {
  width: 22px;
  height: 22px;
  display: block;
  position: relative;
}

.theme-toggle-icon {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition:
    transform 520ms cubic-bezier(0.19, 1, 0.22, 1),
    opacity 280ms ease;
}

.theme-toggle-icon-sun {
  transform: rotate(0deg) scale(1);
  opacity: 1;
}

.theme-toggle-icon-moon {
  transform: rotate(-90deg) scale(0.42);
  opacity: 0;
}

.nav-toggle span:not(.visually-hidden) {
  width: 16px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
  position: relative;
  z-index: 1;
  transform-origin: center;
  transition:
    transform 620ms cubic-bezier(0.19, 1, 0.22, 1),
    opacity 280ms ease,
    width 300ms ease,
    background 260ms ease;
}

.nav-toggle span:not(.visually-hidden):nth-child(3) {
  width: 8px;
  margin-left: 8px;
}

.is-past-hero .theme-toggle-icon,
body.page-inner .theme-toggle-icon {
  color: #171612;
}

.is-past-hero .nav-toggle span:not(.visually-hidden),
body.page-inner .nav-toggle span:not(.visually-hidden) {
  height: 2px;
  background: #ffffff;
}

.nav-toggle[aria-expanded="true"] span:not(.visually-hidden):nth-child(1) {
  transform: translate3d(0, 5px, 0) rotate(135deg);
}

.nav-toggle[aria-expanded="true"] span:not(.visually-hidden):nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:not(.visually-hidden):nth-child(3) {
  width: 16px;
  margin-left: 0;
  transform: translate3d(0, -5px, 0) rotate(-135deg);
}

body.is-nav-open .nav-toggle::before {
  border-color: #dfd8c7;
  background: #ffffff;
}

:root[data-theme="dark"] .theme-toggle-icon-sun {
  transform: rotate(90deg) scale(0.42);
  opacity: 0;
}

:root[data-theme="dark"] .theme-toggle-icon-moon {
  transform: rotate(0deg) scale(1);
  opacity: 1;
}

:root[data-theme="dark"] .theme-toggle::before,
:root[data-theme="dark"] .nav-toggle::before {
  border-color: rgba(225, 234, 255, 0.34);
  background: rgba(12, 19, 37, 0.52);
}

:root[data-theme="dark"] .theme-toggle-icon {
  color: #e8eeff;
}

:root[data-theme="dark"] body.is-nav-open .nav-toggle::before {
  border-color: rgba(200, 216, 255, 0.42);
  background: rgba(13, 24, 45, 0.9);
}

.site-nav {
  position: fixed;
  inset: 0;
  z-index: 1240;
  pointer-events: none;
  grid-column: 1 / -1;
}

body.is-nav-open .site-nav {
  pointer-events: auto;
}

#primary-menu {
  --menu-size: clamp(620px, 90vmax, 860px);
  width: var(--menu-size);
  height: var(--menu-size);
  position: fixed;
  top: 0.92rem;
  right: 0.92rem;
  left: auto;
  margin: 0;
  padding-top: calc(var(--menu-size) * 0.54);
  padding-right: calc(var(--menu-size) * 0.12);
  padding-bottom: calc(var(--menu-size) * 0.09);
  padding-left: calc(var(--menu-size) * 0.17);
  list-style: none;
  display: flex !important;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: clamp(0.32rem, 0.85vh, 0.68rem);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 34px 72px rgba(19, 17, 11, 0.24);
  background: #ffffff;
  transform-origin: top right;
  transform: translate3d(50%, -50%, 0) scale(0);
  opacity: 0.98;
  pointer-events: none;
  backdrop-filter: none;
  transition:
    transform 950ms cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 460ms ease,
    opacity 280ms ease;
}

:root[data-theme="dark"] #primary-menu {
  background: #121c33;
  box-shadow: 0 34px 72px rgba(5, 8, 17, 0.52);
}

#primary-menu.open {
  transform: translate3d(50%, -50%, 0) scale(1);
  pointer-events: auto;
}

#primary-menu li {
  width: clamp(180px, 20vw, 280px);
  opacity: 0;
  transform: translate3d(20px, 0, 0);
  transition:
    opacity 260ms ease,
    transform 580ms cubic-bezier(0.19, 1, 0.22, 1);
}

#primary-menu li:first-child {
  margin-top: clamp(1.6rem, 3.8vw, 2.3rem);
}

#primary-menu.open li {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

#primary-menu.open li:nth-child(1) {
  transition-delay: 180ms;
}

#primary-menu.open li:nth-child(2) {
  transition-delay: 230ms;
}

#primary-menu.open li:nth-child(3) {
  transition-delay: 280ms;
}

#primary-menu.open li:nth-child(4) {
  transition-delay: 330ms;
}

#primary-menu.open li:nth-child(5) {
  transition-delay: 380ms;
}

#primary-menu.open li:nth-child(6) {
  transition-delay: 430ms;
}

#primary-menu.open li:nth-child(7) {
  transition-delay: 480ms;
}

.site-nav a {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #bd905b;
  text-decoration: none;
  text-transform: uppercase;
  text-align: right;
  letter-spacing: 0.045em;
  font-family: var(--font-display);
  font-size: clamp(1.425rem, 1.83vw, 2.04rem);
  font-weight: 600;
  line-height: 1.2;
  transition:
    letter-spacing 320ms ease,
    color 220ms ease;
}

:root[data-theme="dark"] .site-nav a {
  color: #d2defd;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border: 0;
  background: transparent;
  color: #d4472f;
  letter-spacing: 0.095em;
}

:root[data-theme="dark"] .site-nav a:hover,
:root[data-theme="dark"] .site-nav a:focus-visible {
  color: #f8fbff;
}

.site-nav a[aria-current="page"] {
  border: 0;
  background: transparent;
  color: #d4472f;
  letter-spacing: 0.08em;
}

:root[data-theme="dark"] .site-nav a[aria-current="page"] {
  color: #ffb39f;
}

@media (max-width: 979px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.5rem;
    padding-top: 0;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    align-self: center;
    height: clamp(42px, calc(var(--header-h) - 20px), 56px);
    max-width: none;
    position: relative;
    top: 0;
  }

  .brand img {
    width: auto;
    height: 100%;
    display: block;
    max-width: none;
    transform: none;
  }

  .header-mobile {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: center;
  }

  .site-nav {
    grid-column: 1 / -1;
  }

  .header-tools {
    display: none;
  }
}

.brand {
  grid-column: 1;
  justify-self: start;
}

@media (max-width: 680px) {
  #primary-menu {
    --menu-size: clamp(560px, 126vmax, 760px);
    width: var(--menu-size);
    height: var(--menu-size);
    top: 0.64rem;
    right: 0.64rem;
    left: auto;
    padding-top: calc(var(--menu-size) * 0.55);
    padding-right: calc(var(--menu-size) * 0.12);
    padding-bottom: calc(var(--menu-size) * 0.08);
    padding-left: calc(var(--menu-size) * 0.165);
    gap: 0.34rem;
  }

  #primary-menu li {
    width: min(220px, 62vw);
  }

  .site-nav a {
    font-size: clamp(1.29rem, 5.175vw, 1.65rem);
    line-height: 1.18;
  }
}

@media (max-height: 760px) {
  #primary-menu {
    padding-top: calc(var(--menu-size) * 0.515);
    gap: clamp(0.24rem, 0.7vh, 0.46rem);
  }

  #primary-menu li:first-child {
    margin-top: clamp(0.85rem, 1.4vh, 1.2rem);
  }

  .site-nav a {
    font-size: clamp(1.32rem, 1.56vw, 1.74rem);
  }
}

/* Keep header structure/controls, but hide the header bar itself. */
.site-header,
.is-past-hero .site-header,
.homepage-modern .site-header,
.homepage-modern.is-past-hero .site-header,
body.page-inner .site-header {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0.08rem clamp(0.48rem, 1.4vw, 1rem) auto;
  height: calc(100% - 0.12rem);
  border-radius: 16px;
  border: 1px solid rgba(182, 162, 134, 0.34);
  background:
    linear-gradient(180deg, rgba(252, 247, 238, 0.9) 0%, rgba(244, 236, 221, 0.76) 100%);
  box-shadow: 0 10px 24px rgba(24, 19, 12, 0.14);
  backdrop-filter: blur(9px) saturate(1.05);
  pointer-events: none;
  z-index: -1;
  opacity: 0.82;
  transition: opacity 240ms ease, border-color 240ms ease, background 240ms ease;
}

body.homepage-modern:not(.is-past-hero) .site-header::before {
  opacity: 0.7;
}

body.is-nav-open .site-header::before {
  opacity: 0.4;
}

:root[data-theme="dark"] .site-header::before {
  border-color: rgba(158, 182, 236, 0.34);
  background:
    linear-gradient(180deg, rgba(14, 23, 40, 0.84) 0%, rgba(16, 28, 48, 0.72) 100%);
  box-shadow: 0 10px 24px rgba(4, 7, 15, 0.35);
}

/* Dark theme overrides so theme changes are visible beyond header icons. */
:root[data-theme="dark"] .content-shell,
:root[data-theme="dark"] .main-inner,
:root[data-theme="dark"] .footer-main,
:root[data-theme="dark"] .footer-newsletter {
  background: var(--surface);
  color: var(--ink);
}

:root[data-theme="dark"] .section,
:root[data-theme="dark"] .footer-legal {
  border-top-color: var(--line);
}

:root[data-theme="dark"] .content-shell :is(h1, h2, h3, h4, p, li, small) {
  color: inherit;
}

:root[data-theme="dark"] .footer-links a,
:root[data-theme="dark"] .footer-legal a,
:root[data-theme="dark"] .footer-legal p,
:root[data-theme="dark"] .newsletter-copy p,
:root[data-theme="dark"] .footer-brand-block p,
:root[data-theme="dark"] .newsletter-consent,
:root[data-theme="dark"] .newsletter-confirmation {
  color: var(--ink);
}

:root[data-theme="dark"] .footer-social-row a {
  border-color: rgba(167, 187, 255, 0.48);
  color: #dbe6ff;
  background: linear-gradient(145deg, rgba(52, 73, 120, 0.55) 0%, rgba(69, 96, 152, 0.55) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

:root[data-theme="dark"] .footer-social-row a:hover {
  border-color: rgba(191, 206, 255, 0.64);
  color: #f3f7ff;
  background: linear-gradient(145deg, rgba(66, 91, 145, 0.64) 0%, rgba(84, 112, 173, 0.64) 100%);
}

:root[data-theme="dark"] .home-text-reveal-kicker {
  color: rgba(233, 239, 255, 0.74);
}

/* Final hamburger color lock:
   homepage hero closed icon = dark, other closed states = white, open icon (X) = dark. */
body:not(.is-nav-open) .site-header .nav-toggle {
  color: #ffffff !important;
}

.site-header .nav-toggle span:not(.visually-hidden) {
  background: currentColor !important;
}

body.is-nav-open .site-header .nav-toggle {
  color: #16124a !important;
}

body:not(.is-nav-open) .site-header .nav-toggle span:not(.visually-hidden) {
  background: #ffffff !important;
}

body.is-nav-open .site-header .nav-toggle span:not(.visually-hidden) {
  background: #16124a !important;
}

body.homepage-modern:not(.is-past-hero):not(.is-nav-open) .site-header .nav-toggle {
  color: #171612 !important;
}

body.homepage-modern:not(.is-past-hero):not(.is-nav-open) .site-header .nav-toggle span:not(.visually-hidden) {
  background: #171612 !important;
}

/* Homepage simplification pass: reduce visual chrome without changing structure. */
body.homepage-modern .content-shell .section {
  position: relative;
  z-index: 0;
  isolation: isolate;
  border-top: 0 !important;
}

body.homepage-modern .content-shell .section:not(.section-tier-primary)::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: clamp(16px, 2.2vw, 26px);
  border: 1px solid transparent;
  pointer-events: none;
  z-index: -1;
}

body.homepage-modern .content-shell .section:nth-of-type(odd):not(.section-tier-primary)::before {
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--surface) 90%, #ffffff) 0%,
    color-mix(in srgb, var(--surface-2) 45%, #ffffff) 100%
  );
  border-color: color-mix(in srgb, var(--line) 70%, transparent);
}

body.homepage-modern .content-shell .section:nth-of-type(even):not(.section-tier-primary)::before {
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--surface) 98%, #ffffff) 0%,
    color-mix(in srgb, var(--surface-2) 22%, #ffffff) 100%
  );
  border-color: color-mix(in srgb, var(--line) 44%, transparent);
}

body.homepage-modern .content-shell #programs::before {
  display: none;
}

body.homepage-modern .content-shell #programs {
  margin-bottom: clamp(0.35rem, 1vw, 0.75rem);
}

body.homepage-modern .content-shell .section-landing-links::before {
  display: none;
}

body.homepage-modern .content-shell .section-social-proof::before {
  display: none;
}

body.homepage-modern .content-shell .section + .section {
  margin-top: clamp(0.55rem, 1.6vw, 1.1rem);
}

body.homepage-modern .content-shell .section-tier-primary + .section,
body.homepage-modern .content-shell .section + .section-tier-primary {
  margin-top: clamp(1.8rem, 4.2vw, 3.2rem);
}

/* Header alignment mock: center homepage section headings for visual review. */
body.homepage-modern .content-shell .section > .section-top {
  align-items: center;
  text-align: center;
}

body.homepage-modern .content-shell .section > .section-top h2,
body.homepage-modern .content-shell .section > .section-top h3 {
  color: #d4472f !important;
}

body.homepage-modern .content-shell .section > .section-top .title-group {
  justify-content: center;
  align-items: center;
  margin-inline: auto;
}

@media (min-width: 720px) {
  body.homepage-modern .content-shell .section > .section-top {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

body.homepage-modern .program-card,
body.homepage-modern .landing-link-card,
body.homepage-modern .home-priority-card,
body.homepage-modern .volunteer-highlight-shell {
  border: 0 !important;
  box-shadow: none;
}

body.homepage-modern .program-footer {
  border-top: 0;
  background: transparent;
}

body.homepage-modern .button-outline,
body.homepage-modern .control-button,
body.homepage-modern .volunteer-highlight-button {
  border: 0;
  box-shadow: none;
}

body.homepage-modern .section-home-priorities .support-kicker,
body.homepage-modern .volunteer-highlight-eyebrow,
body.homepage-modern .landing-link-copy p,
body.homepage-modern .program-overline {
  display: none;
}

body.homepage-modern #programs-track .program-media {
  aspect-ratio: 16 / 8.4;
}

body.homepage-modern #programs-track {
  padding-bottom: clamp(0.75rem, 1.5vw, 1.05rem);
}

body.homepage-modern #programs-track .program-body {
  min-height: 87px;
  padding: 0.42rem 0.6rem;
  gap: 0.2rem;
}

body.homepage-modern #programs-track .program-title {
  font-size: clamp(1.1rem, 1.45vw, 1.35rem);
  line-height: 1.01;
  -webkit-line-clamp: 1;
}

body.homepage-modern #programs-track .program-footer {
  margin-left: -0.6rem;
  margin-right: -0.6rem;
  margin-bottom: -0.42rem;
  padding: 0.34rem 0.6rem 0.42rem;
  font-size: 0.67rem;
}

/* Programs section: shining tilt card treatment (Framer-style, theme-aligned). */
body.homepage-modern #programs-track .program-tilt-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --tilt-lift-y: -0.35rem;
  position: relative;
  isolation: isolate;
  transform: perspective(1200px) translate3d(0, var(--tilt-lift-y), 0) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  border: 0 !important;
  box-shadow:
    0 18px 34px color-mix(in srgb, var(--ink) 18%, transparent),
    0 6px 14px color-mix(in srgb, var(--ink) 12%, transparent);
  transition:
    transform 210ms cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 220ms ease;
}

body.homepage-modern #programs-track .program-tilt-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
  opacity: 0.34;
  background:
    radial-gradient(
      130% 120% at 0% 0%,
      color-mix(in srgb, var(--accent-soft) 70%, transparent) 0%,
      transparent 58%
    ),
    radial-gradient(
      130% 120% at 100% 100%,
      color-mix(in srgb, var(--accent) 24%, transparent) 0%,
      transparent 60%
    );
  transition: opacity 220ms ease;
}

body.homepage-modern #programs-track .program-tilt-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
  opacity: 0.22;
  background:
    radial-gradient(
      120% 110% at 100% 0%,
      color-mix(in srgb, var(--accent) 18%, transparent) 0%,
      transparent 62%
    ),
    radial-gradient(
      120% 110% at 0% 100%,
      color-mix(in srgb, var(--accent-soft) 36%, transparent) 0%,
      transparent 64%
    );
  transition: opacity 220ms ease;
}

body.homepage-modern #programs-track .program-tilt-card .program-card-link {
  transform-style: preserve-3d;
}

body.homepage-modern #programs-track .program-tilt-card .program-media {
  transform: translateZ(18px);
}

body.homepage-modern #programs-track .program-tilt-card .program-body {
  transform: translateZ(24px);
}

body.homepage-modern #programs-track .program-tilt-card .program-media img {
  transition: transform 280ms ease;
}

body.homepage-modern #programs-track .program-tilt-card:hover .program-media img,
body.homepage-modern #programs-track .program-tilt-card:focus-within .program-media img {
  transform: none;
}

body.homepage-modern #programs-track .program-tilt-card.is-tilt-active {
  box-shadow:
    0 28px 48px color-mix(in srgb, var(--ink) 26%, transparent),
    0 10px 20px color-mix(in srgb, var(--ink) 16%, transparent);
}

body.homepage-modern #programs-track .program-tilt-card.is-tilt-active::before {
  opacity: 0.56;
}

body.homepage-modern #programs-track .program-tilt-card.is-tilt-active::after {
  opacity: 0.38;
}

body.homepage-modern #programs-track .program-tilt-card.is-tilt-active .program-media img {
  transform: scale(1.045);
}

body.homepage-modern #programs-track .program-tilt-card .program-footer-action {
  transition: transform 220ms ease;
}

body.homepage-modern #programs-track .program-tilt-card.is-tilt-active .program-footer-action {
  transform: translateX(6px);
}

body.homepage-modern .landing-link-grid .landing-link-card figure {
  aspect-ratio: 16 / 8.4;
}

body.homepage-modern .landing-link-grid .landing-link-copy {
  min-height: 87px;
  padding: 0.42rem 0.6rem;
  gap: 0.2rem;
  display: flex;
  flex-direction: column;
}

body.homepage-modern .landing-link-grid .landing-link-copy h3 {
  font-size: clamp(1.1rem, 1.45vw, 1.35rem);
  line-height: 1.01;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.homepage-modern .landing-link-grid .landing-link-copy span {
  margin-top: auto;
  margin-left: -0.6rem;
  margin-right: -0.6rem;
  margin-bottom: -0.42rem;
  padding: 0.34rem 0.6rem 0.42rem;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--accent-soft) 25%, transparent) 0%,
    color-mix(in srgb, var(--accent-soft) 42%, transparent) 100%
  );
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  color: color-mix(in srgb, var(--ink) 94%, var(--accent));
  font-size: 0.67rem;
}

body.homepage-modern .landing-link-card:hover .landing-link-copy span,
body.homepage-modern .landing-link-card:focus-visible .landing-link-copy span {
  transform: none;
}

/* Card-hover mock inspired by Aceternity: focus card + soft gradient ring. */
body.homepage-modern .landing-link-grid .landing-link-card {
  position: relative;
  isolation: isolate;
  transition:
    transform 260ms cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 260ms ease,
    border-color 260ms ease,
    opacity 220ms ease,
    filter 220ms ease;
}

body.homepage-modern .landing-link-grid .landing-link-card {
  border: 0 !important;
  box-shadow:
    0 18px 34px color-mix(in srgb, var(--ink) 18%, transparent),
    0 6px 14px color-mix(in srgb, var(--ink) 12%, transparent) !important;
}

body.homepage-modern .landing-link-grid .landing-link-card::before,
body.homepage-modern .landing-link-grid .landing-link-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(
      120% 90% at 12% 8%,
      color-mix(in srgb, var(--accent-soft) 58%, transparent) 0%,
      transparent 52%
    ),
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--accent) 26%, transparent),
      color-mix(in srgb, var(--surface-2) 34%, transparent)
    );
  transition: opacity 240ms ease;
}

body.homepage-modern .landing-link-grid .landing-link-card:hover,
body.homepage-modern .landing-link-grid .landing-link-card:focus-within {
  transform: translateY(-5px) scale(1.01);
}

body.homepage-modern .landing-link-grid .landing-link-card:hover,
body.homepage-modern .landing-link-grid .landing-link-card:focus-within {
  border-color: transparent !important;
  box-shadow:
    0 28px 48px color-mix(in srgb, var(--ink) 26%, transparent),
    0 10px 20px color-mix(in srgb, var(--ink) 16%, transparent) !important;
}

body.homepage-modern .landing-link-grid .landing-link-card:hover::before,
body.homepage-modern .landing-link-grid .landing-link-card:focus-within::before {
  opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
  body.homepage-modern .landing-link-grid:hover .landing-link-card:not(:hover) {
    opacity: 0.68;
    filter: saturate(0.9);
  }
}

/* Homepage impact section: replace card slider with statistics-forward layout. */
body.homepage-modern .section-impact-stats {
  padding-top: clamp(2rem, 6vw, 4.4rem);
  padding-bottom: clamp(2.2rem, 7vw, 5.2rem);
  background: linear-gradient(180deg, #efefec 0%, #ecebe7 100%);
  border-radius: clamp(18px, 2.4vw, 28px);
}

body.homepage-modern .impact-stats-head {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.85rem;
}

body.homepage-modern .impact-stats-head h2 {
  margin: 0;
  font-size: clamp(2.1rem, 5.6vw, 4.8rem);
  line-height: 0.94;
  color: #3f3f41;
}

body.homepage-modern .impact-stats-subtitle {
  margin: 0;
  color: #616166;
  font-size: clamp(1rem, 1.65vw, 1.65rem);
  font-style: italic;
  letter-spacing: 0.01em;
}

body.homepage-modern .impact-stats-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.66rem 1.25rem;
  border-radius: 8px;
  background: #3f4044;
  color: #f7f6f2;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.72rem;
  font-weight: 800;
  transition: transform 180ms ease, filter 180ms ease;
}

body.homepage-modern .impact-stats-cta:hover,
body.homepage-modern .impact-stats-cta:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

body.homepage-modern .impact-stats-grid {
  margin-top: clamp(1.4rem, 4vw, 2.6rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.2rem, 3.1vw, 2.2rem) clamp(0.8rem, 2.2vw, 1.5rem);
}

body.homepage-modern .impact-stat-item {
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
  gap: 0.42rem;
}

body.homepage-modern .impact-stat-value {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.8vw, 3.9rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: #36363a;
}

body.homepage-modern .impact-stat-label {
  margin: 0;
  max-width: 20ch;
  color: #555459;
  font-size: clamp(0.86rem, 1.4vw, 1.15rem);
  line-height: 1.32;
}

@media (min-width: 720px) {
  body.homepage-modern .impact-stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
