:root {
  --bg: #efe6d8;
  --bg-soft: #f8f3eb;
  --paper: rgba(255, 251, 245, 0.88);
  --paper-strong: rgba(255, 251, 245, 0.96);
  --ink: #231712;
  --muted: #685449;
  --line: rgba(68, 43, 32, 0.16);
  --accent: #9f4d27;
  --accent-deep: #5e2c1b;
  --olive: #6d6f57;
  --white: #fffdf9;
  --shadow: 0 24px 70px rgba(47, 28, 18, 0.11);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1720px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(159, 77, 39, 0.14), transparent 26%),
    radial-gradient(circle at right 18%, rgba(109, 111, 87, 0.14), transparent 28%),
    linear-gradient(180deg, #f7efe4 0%, #efe6d8 38%, #eadfcf 100%);
  font-family: "Manrope", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(35, 23, 18, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35, 23, 18, 0.22) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, black 18%, transparent 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.page-shell {
  width: min(calc(100% - 2.5rem), var(--max-width));
  margin: 0 auto;
  padding-bottom: 3rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 0.9rem;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3.35rem;
  height: 3.35rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.8);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.brand-copy {
  display: grid;
  gap: 0.15rem;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.88rem;
}

.nav-toggle {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.82);
  box-shadow: 0 12px 24px rgba(47, 28, 18, 0.05);
}

.site-nav > a,
.nav-item > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 700;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav > a:hover,
.site-nav > a.active,
.nav-item > a:hover,
.nav-item > a.active {
  background: var(--accent-deep);
  color: var(--white);
  transform: translateY(-1px);
}

.nav-item.open > a {
  color: var(--accent-deep);
  background: rgba(159, 77, 39, 0.12);
  box-shadow: inset 0 0 0 1px rgba(159, 77, 39, 0.14);
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 0.2rem;
}

.nav-submenu {
  position: absolute;
  top: calc(100% - 0.05rem);
  left: 0;
  z-index: 50;
  display: none;
  gap: 0.35rem;
  min-width: 13.5rem;
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-submenu a {
  padding: 0.8rem 0.95rem;
  border-radius: 14px;
  color: var(--muted);
  font-weight: 700;
}

.nav-submenu a:hover {
  background: rgba(159, 77, 39, 0.1);
  color: var(--accent-deep);
}

.nav-item.open .nav-submenu {
  display: grid;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.button,
.text-link {
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.button:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.9rem 1.45rem;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.84);
}

.button-block {
  width: 100%;
}

.header-donate {
  min-width: 6.5rem;
}

main {
  display: grid;
  gap: 1.5rem;
}

body[data-page="donate"] main {
  gap: 0.55rem;
}

.hero,
.page-hero,
.content-section,
.donate-panel {
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hero {
  --hero-media-height: clamp(31rem, 68vh, 38rem);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(408px, 449px);
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 0.8rem;
  row-gap: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  border-radius: calc(var(--radius-xl) + 4px);
}

.hero-photo-stage {
  grid-column: 1;
  grid-row: 1;
  height: var(--hero-media-height);
  min-height: var(--hero-media-height);
  border-radius: var(--radius-xl) 0 0 0;
  background:
    linear-gradient(180deg, rgba(255, 249, 241, 0.04), rgba(255, 249, 241, 0.16)),
    url("assets/images/home-hero-web.webp") center center / cover no-repeat;
}

.page-hero,
.content-section,
.donate-panel {
  padding: clamp(1.45rem, 3vw, 2.4rem);
  border-radius: var(--radius-xl);
}

main [id] {
  scroll-margin-top: 7rem;
}

body[data-page="donate"] .content-section {
  padding: 0.75rem;
}

.hero-copy {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-self: start;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.6rem;
  min-width: 0;
  padding: clamp(1.1rem, 1.4vw, 1.45rem);
  background: none;
  border-radius: 0;
  overflow: visible;
  z-index: 2;
}

.hero-story {
  display: grid;
  width: fit-content;
  max-width: min(100%, 46rem);
  gap: 0.34rem;
  margin: 0;
  padding: 0.88rem 1.08rem 0.84rem;
  border: 1px solid rgba(68, 43, 32, 0.13);
  border-radius: var(--radius-lg);
  background: rgba(255, 251, 245, 0.92);
  box-shadow: 0 12px 34px rgba(47, 28, 18, 0.1);
  backdrop-filter: blur(8px);
  text-align: left;
}

.hero-story-copy {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.48rem;
}

.hero-story-copy .hero-text {
  max-width: 56rem;
  font-size: 0.95rem;
  line-height: 1.48;
}

.hero-bottom-panel {
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  gap: 0.72rem;
  width: 100%;
  margin: 0;
  padding: 0.92rem clamp(1.1rem, 1.4vw, 1.45rem) 1rem;
  background: linear-gradient(180deg, rgba(249, 242, 233, 0.99), rgba(244, 235, 225, 0.995));
  border-top: 1px solid rgba(117, 62, 32, 0.12);
  text-align: center;
  justify-items: center;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.hero-bottom-text {
  max-width: 76rem;
  margin: 0 auto;
  text-align: center;
}

.hero-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 0.5rem;
  align-items: stretch;
  margin: 0;
}

.hero-flow-step {
  display: grid;
  gap: 0.45rem;
  align-content: center;
  padding: 0.78rem 0.86rem 0.82rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(247, 238, 229, 0.9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.hero-flow-step strong {
  display: inline-grid;
  align-items: center;
  justify-content: center;
  justify-items: center;
  gap: 0.5rem;
  font-family: "Manrope", sans-serif;
  font-size: 1.08rem;
  line-height: 1.2;
  text-align: center;
}

.process-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 3.8rem;
  height: 3.8rem;
  padding: 0.72rem;
  border: 1px solid rgba(159, 77, 39, 0.24);
  border-radius: 1.2rem;
  color: var(--accent-deep);
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.95), transparent 42%),
    linear-gradient(145deg, rgba(248, 238, 223, 0.98), rgba(222, 190, 155, 0.76));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 10px 22px rgba(67, 39, 20, 0.11);
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.hero-flow-step > span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.42;
  text-align: center;
}

.hero-flow-arrow {
  display: grid;
  place-items: center;
  color: var(--accent-deep);
  font-size: 1.08rem;
  font-weight: 800;
}

.hero-flow-outcome-arrow {
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  color: var(--accent-deep);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
  margin: -0.05rem 0;
}

.hero-flow-outcome {
  grid-column: 1 / -1;
  display: grid;
  gap: 0.45rem;
  padding: 0.68rem 0.95rem 0.72rem;
  text-align: center;
  border: 1px solid rgba(117, 62, 32, 0.22);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(238, 224, 205, 0.92), rgba(246, 237, 227, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 10px 24px rgba(67, 39, 20, 0.08);
}

.hero-flow-outcome strong {
  display: inline-grid;
  align-items: center;
  justify-content: center;
  justify-items: center;
  gap: 0.5rem;
  font-family: "Manrope", sans-serif;
  font-size: 1.12rem;
  line-height: 1.2;
  text-align: center;
}

.hero-flow-outcome > span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
  text-align: center;
}

.hero-points {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: 0.5rem;
  row-gap: 0.5rem;
  margin: 0;
  overflow-x: visible;
  scrollbar-width: none;
  width: 100%;
  max-width: 100%;
  padding: 0.45rem 0;
  border: 1px solid rgba(68, 43, 32, 0.11);
  border-radius: var(--radius-md);
  background: rgba(255, 251, 245, 0.8);
  backdrop-filter: blur(7px);
}

.hero-points-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem;
  flex-wrap: nowrap;
  width: min(100%, 84rem);
  padding: 0 1.15rem;
  margin-top: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.hero-points::-webkit-scrollbar {
  display: none;
}

.hero-points a {
  display: flex;
  align-items: center;
  gap: 0.52rem;
  white-space: nowrap;
  justify-self: center;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.hero-points-item {
  display: flex;
  align-items: center;
  gap: 0.52rem;
  white-space: nowrap;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 700;
}

.hero-points a:nth-child(1) {
  grid-column: 1;
}

.hero-points a:nth-child(2) {
  grid-column: 3;
}

.hero-points a:nth-child(3) {
  grid-column: 5;
}

.hero-points a:nth-child(4) {
  grid-column: 7;
}

.hero-points a::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
  flex: 0 0 auto;
}

.hero-points-item::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
  flex: 0 0 auto;
}

.hero-points a:hover {
  color: var(--accent-deep);
}

.hero .eyebrow {
  margin-bottom: 0.12rem;
}

.hero h1 {
  max-width: none;
  white-space: nowrap;
  margin: 0;
  font-size: clamp(2.1rem, 3vw, 3.45rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.hero .hero-text {
  max-width: 66rem;
  margin: 0;
}

.hero .hero-actions {
  display: inline-flex;
  gap: 2.4rem;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  width: fit-content;
  margin: 0.1rem 0 0;
}

.hero-process-section {
  display: grid;
  gap: 1rem;
  margin-top: 0.95rem;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.95), rgba(245, 236, 226, 0.98));
}

.process-heading {
  justify-content: flex-start;
}

.hero-copy h1 {
  max-width: none;
}

.hero-text,
.page-hero p,
.body-copy p,
.content-section p,
.financial-table td,
.financial-table th {
  color: var(--muted);
  line-height: 1.72;
}

.section-note,
.report-meta {
  color: var(--muted);
  font-size: 0.94rem;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--accent-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
strong {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.98;
}

h1 {
  font-size: clamp(2.55rem, 4vw, 5.1rem);
}

h2 {
  font-size: clamp(1.9rem, 2.6vw, 3rem);
  max-width: 18ch;
}

h3 {
  font-size: clamp(1.4rem, 1.8vw, 2rem);
}

.hero-actions,
.section-heading,
.final-cta {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.narrative-split,
.stewardship-layout,
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
}

.editorial-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: start;
}

.donate-banner {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.2rem;
}

.section-heading-block {
  display: grid;
  gap: 0.5rem;
}

.text-link {
  color: var(--accent-deep);
  font-weight: 800;
}

.hero .text-link {
  padding: 0.72rem 0.84rem;
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.82);
  backdrop-filter: blur(7px);
}

.hero-media {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  width: 100%;
  height: var(--hero-media-height);
  min-height: var(--hero-media-height);
  align-items: stretch;
  justify-content: stretch;
  background: transparent;
  z-index: 1;
}

.documentary-frame {
  overflow: hidden;
  border-radius: calc(var(--radius-xl) - 2px);
  background:
    linear-gradient(160deg, rgba(21, 15, 12, 0.08), rgba(21, 15, 12, 0.5)),
    radial-gradient(circle at top, rgba(207, 157, 103, 0.28), transparent 36%),
    url("assets/images/home-hero-web.webp") center/cover;
}

.documentary-frame-video {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  background: rgba(20, 13, 10, 0.88);
  border-radius: 0 var(--radius-xl) 0 0;
}

.hero-video-player {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #120d0a;
}

.hero-video-note {
  position: absolute;
  left: 50%;
  bottom: 16%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(calc(100% - 1.6rem), 24rem);
  max-width: min(calc(100% - 1.6rem), 24rem);
  padding: 0.78rem 1rem 0.72rem;
  border: 1px solid rgba(68, 43, 32, 0.13);
  border-radius: var(--radius-lg);
  background: rgba(255, 251, 245, 0.92);
  box-shadow: 0 12px 34px rgba(47, 28, 18, 0.1);
  backdrop-filter: blur(8px);
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 2.2vw, 2.55rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.045em;
  text-align: center;
  white-space: normal;
}

.video-poster {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 1.4rem;
  background: linear-gradient(180deg, rgba(19, 12, 9, 0.08), rgba(19, 12, 9, 0.68));
}

.play-chip,
.video-caption {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(18, 12, 10, 0.44);
  backdrop-filter: blur(10px);
}

.play-chip {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: var(--white);
  font-weight: 800;
}

.video-caption {
  display: grid;
  gap: 0.2rem;
  max-width: 19rem;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-md);
  color: var(--white);
}

.video-caption p,
.video-caption span {
  margin: 0;
  color: inherit;
}

.response-grid,
.impact-grid,
.work-grid,
.social-grid {
  display: grid;
  gap: 1rem;
}

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

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

.response-step,
.impact-card,
.work-card,
.social-card {
  display: grid;
  gap: 0.8rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 249, 0.8);
}

.response-step span,
.work-card span {
  color: var(--accent-deep);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
}

.editorial-media {
  min-height: 360px;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
}

.editorial-media.is-families {
  background-image:
    linear-gradient(160deg, rgba(23, 16, 12, 0.18), rgba(23, 16, 12, 0.48)),
    url("assets/images/freeing-families.jpg");
}

.editorial-media.is-release {
  background-image:
    linear-gradient(160deg, rgba(23, 16, 12, 0.1), rgba(23, 16, 12, 0.36)),
    url("assets/images/home-field-report-web.webp");
}

.editorial-media.is-education {
  background-image:
    linear-gradient(160deg, rgba(23, 16, 12, 0.18), rgba(23, 16, 12, 0.42)),
    url("assets/images/childrens-education-web.webp");
}

.editorial-media.is-bibles {
  background:
    linear-gradient(160deg, rgba(33, 23, 18, 0.22), rgba(33, 23, 18, 0.44)),
    radial-gradient(circle at top, rgba(210, 181, 138, 0.28), transparent 36%),
    linear-gradient(135deg, #b79473, #705341);
}

.editorial-media.is-training {
  background-image:
    linear-gradient(160deg, rgba(23, 16, 12, 0.18), rgba(23, 16, 12, 0.42)),
    url("assets/images/training-web.webp");
}

.body-copy {
  display: grid;
  gap: 0.95rem;
  align-content: start;
}

.ministry-overview .body-copy {
  gap: 1.1rem;
}

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

.newsletter-section-early {
  background: linear-gradient(135deg, rgba(159, 77, 39, 0.12), rgba(255, 251, 245, 0.92));
}

.newsletter-section-bottom {
  padding-top: clamp(0.85rem, 1.25vw, 1.15rem);
  padding-bottom: clamp(0.95rem, 1.5vw, 1.35rem);
}

.newsletter-section-bottom .newsletter-layout {
  align-items: center;
}

.newsletter-copy {
  gap: 0.35rem;
}

.newsletter-copy h2 {
  margin-bottom: 0.3rem;
}

.contact-panel-content {
  display: grid;
  gap: 1.2rem;
}

.body-copy {
  max-width: 68ch;
}

.body-copy p {
  margin: 0;
}

.donate-banner p {
  max-width: 56ch;
}

.financial-panel,
.faq-list,
.donate-panel,
.newsletter-form {
  display: grid;
  gap: 1rem;
}

.financial-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.financial-metrics article {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 249, 0.76);
}

.financial-metrics span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.financial-metrics strong {
  font-size: clamp(1.7rem, 2.2vw, 2.4rem);
}

.bar-stack {
  display: flex;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(111, 78, 60, 0.1);
}

.bar-segment {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
}

.is-program {
  background: var(--accent);
}

.is-operations {
  background: var(--olive);
}

.is-processing {
  background: #9f8b72;
}

.financial-table {
  width: 100%;
  border-collapse: collapse;
}

.financial-table th,
.financial-table td {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.social-card {
  min-height: 220px;
  align-content: end;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.44), rgba(255, 253, 249, 0.92)),
    linear-gradient(140deg, rgba(159, 77, 39, 0.08), rgba(109, 111, 87, 0.12));
}

.social-label {
  color: var(--accent-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.faq-list details {
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 249, 0.82);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 0.8rem 0 0;
}

.final-cta {
  align-items: center;
  background: linear-gradient(135deg, rgba(159, 77, 39, 0.14), rgba(255, 251, 245, 0.84));
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: end;
  gap: 1.25rem;
  padding: 2rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.footer-address {
  display: grid;
  gap: 0.2rem;
  justify-items: start;
  text-align: left;
}

.footer-center {
  display: grid;
  gap: 0;
  justify-items: center;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
}

.footer-donate-link {
  min-height: 2.8rem;
  padding: 0.75rem 1.25rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgba(117, 62, 32, 0.16);
  border-radius: 999px;
  color: var(--accent-deep);
  background: rgba(255, 251, 245, 0.78);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.footer-social-link:hover {
  transform: translateY(-1px);
  border-color: rgba(117, 62, 32, 0.34);
  color: var(--accent);
  background: rgba(255, 248, 242, 0.96);
}

.footer-social-link svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
}

.footer-links-contact {
  display: grid;
  gap: 0.2rem;
  justify-items: end;
  align-self: end;
  text-align: right;
}

.footer-copyright {
  color: var(--muted);
  font-size: 0.9rem;
}

.donate-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: 0.75rem;
  max-width: 1610px;
  margin-inline: auto;
  padding-top: 0;
}

.donate-layout-header {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-start;
  margin-bottom: -0.15rem;
}

.donate-layout-header h2 {
  margin: 0;
  max-width: none;
  text-align: center;
  font-size: clamp(2rem, 2.6vw, 3rem);
}

.donate-primary {
  display: flex;
  min-height: 0;
  align-self: start;
}

.donate-visual {
  margin: 0;
  width: 100%;
  height: clamp(27rem, 58vh, 34rem);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 251, 245, 0.92);
  box-shadow: var(--shadow);
}

.donate-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: inherit;
}

.donate-panel {
  display: grid;
  gap: 0.65rem;
  align-content: start;
  align-self: start;
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(73, 48, 38, 0.98), rgba(35, 24, 19, 0.98));
}

.donate-panel p,
.donation-callout p,
.form-field span,
.donate-panel .checkbox-field {
  color: rgba(255, 251, 245, 0.78);
}

.donate-panel strong,
.donate-panel .text-link {
  color: var(--white);
}

.donation-toggle,
.donation-amounts {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.donation-mode,
.donation-amount {
  min-height: 3rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 251, 245, 0.88);
  background: rgba(255, 255, 255, 0.04);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.donation-mode.active,
.donation-amount.active,
.donation-mode:hover,
.donation-amount:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.34);
}

.form-field {
  display: grid;
  gap: 0;
}

.form-field-inline {
  grid-template-columns: 7rem minmax(0, 1fr);
  align-items: center;
  gap: 0.15rem;
}

.form-field-light span,
.newsletter-section .body-copy p,
.checkbox-field,
.form-status {
  color: var(--muted);
}

.form-field.is-hidden {
  display: none;
}

.form-field input {
  min-height: 3rem;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  font: inherit;
}

.form-field textarea {
  min-height: 10rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  font: inherit;
  resize: vertical;
}

.form-field input::placeholder {
  color: rgba(255, 251, 245, 0.46);
}

.form-field-light input {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 253, 249, 0.86);
}

.form-field-light textarea {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 253, 249, 0.86);
}

.form-field-light input::placeholder {
  color: rgba(104, 84, 73, 0.6);
}

.form-field textarea::placeholder {
  color: rgba(255, 251, 245, 0.46);
}

.form-field-light textarea::placeholder {
  color: rgba(104, 84, 73, 0.6);
}

.checkbox-field {
  display: flex;
  align-items: start;
  gap: 0.7rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.checkbox-field input {
  margin-top: 0.2rem;
  accent-color: var(--accent);
}

.form-error {
  margin: 0;
  color: #ffd8cb;
  font-size: 0.95rem;
  font-weight: 700;
}

.form-status {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
}

.newsletter-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.2rem;
  align-items: start;
}

.newsletter-form {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 249, 0.82);
}

.donation-status-page {
  max-width: 60rem;
  margin: 4rem auto;
}

.donation-callout {
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
}

.checkbox-field-strong {
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
}

.checkbox-field-summary {
  margin-top: -0.1rem;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
}

.donation-summary {
  display: grid;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
}

.donation-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.96rem;
}

.donation-summary-row span {
  color: rgba(255, 251, 245, 0.72);
}

.donation-summary-row strong {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
}

.donation-summary-total {
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.donation-summary-total span,
.donation-summary-total strong {
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 800;
}

#donation-base-amount,
#donation-fee-amount,
#donation-total-amount {
  letter-spacing: 0.01em;
}

.giving-alternative {
  gap: 0;
}

body[data-page="donate"] .giving-alternative,
body[data-page="donate"] .faq-section {
  width: 100%;
  max-width: 1610px;
  margin-inline: auto;
}

.mail-option-card {
  display: grid;
  grid-template-columns: minmax(12rem, 1fr) minmax(18rem, auto) minmax(12rem, 1fr);
  align-items: center;
  gap: 1rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.mail-option-card h2,
.mail-option-card p {
  margin: 0;
}

.mail-option-card h2,
body[data-page="donate"] .faq-section h2 {
  max-width: none;
  font-size: clamp(2rem, 2.4vw, 2.65rem);
}

.mail-option-card h2 {
  grid-column: 1;
  text-align: left;
}

.mail-option-address {
  grid-column: 2;
  display: grid;
  gap: 0.18rem;
  color: var(--ink);
  justify-items: center;
  text-align: center;
  font-size: 1.02rem;
  line-height: 1.45;
}

body[data-page="donate"] .faq-section .section-heading {
  margin-bottom: 0.75rem;
  justify-content: center;
  text-align: center;
}

body[data-page="donate"] .faq-list {
  gap: 0.9rem;
}

body[data-page="donate"] .faq-list details {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body[data-page="donate"] .faq-list summary {
  padding: 0;
}

body[data-page="donate"] .faq-list p {
  margin-top: 0.55rem;
  padding: 0;
}

.mail-option-address strong,
.mail-option-address span,
.mail-option-address .text-link {
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.45;
}

.mail-option-address span {
  font-weight: 600;
}

.mail-option-address .text-link {
  font-weight: 700;
}

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

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: reveal-up 650ms ease forwards;
}

.reveal:nth-child(2) { animation-delay: 70ms; }
.reveal:nth-child(3) { animation-delay: 120ms; }
.reveal:nth-child(4) { animation-delay: 170ms; }
.reveal:nth-child(5) { animation-delay: 220ms; }
.reveal:nth-child(6) { animation-delay: 270ms; }
.reveal:nth-child(7) { animation-delay: 320ms; }

@keyframes reveal-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: #2c1711;
  color: #fffaf3;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

:where(a, button, input, textarea, select, summary, [tabindex]):focus-visible {
  outline: 3px solid #c86d37;
  outline-offset: 3px;
}

.body-copy h2,
.program-section h2,
.program-journey h2,
.cost-callout h2,
.fund-use-section h2,
.cost-ledger h2,
.reporting-panel h2,
.trust-paths h2 {
  max-width: 18ch;
}

.editorial-layout {
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}

.section-heading-wide {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(20rem, 1.15fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
}

.section-heading-wide > p {
  max-width: 62ch;
  justify-self: end;
}

.program-section,
.cost-ledger,
.fund-use-section,
.trust-paths {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

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

.program-card,
.fund-use-grid article {
  position: relative;
  min-width: 0;
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 249, 0.58);
  overflow: hidden;
}

.program-card::after,
.fund-use-grid article::after {
  content: "";
  position: absolute;
  width: 6rem;
  height: 6rem;
  right: -2.8rem;
  bottom: -3.4rem;
  border-radius: 50%;
  background: rgba(157, 77, 39, 0.08);
}

.program-card > span,
.fund-use-grid article > span,
.trust-link-grid a > span {
  display: inline-flex;
  margin-bottom: 2.4rem;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.program-card h3,
.fund-use-grid h3 {
  margin: 0 0 0.6rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  line-height: 1;
}

.program-journey {
  display: grid;
  grid-template-columns: minmax(15rem, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(1.5rem, 5vw, 5rem);
}

.journey-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: journey;
}

.journey-list li {
  counter-increment: journey;
  display: grid;
  grid-template-columns: minmax(8rem, 0.45fr) minmax(0, 1fr);
  gap: 1rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
}

.journey-list li::before {
  content: "0" counter(journey);
  grid-column: 1 / -1;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.journey-list strong {
  color: var(--ink);
}

.journey-list span {
  color: var(--muted);
}

.cost-callout {
  display: grid;
  grid-template-columns: minmax(16rem, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  color: #fff8ef;
  background:
    radial-gradient(circle at 90% 0%, rgba(190, 105, 57, 0.34), transparent 32%),
    linear-gradient(135deg, #3b2119, #5b2b1b 68%, #72361f);
}

.cost-callout .eyebrow,
.cost-callout .fine-print,
.cost-callout p,
.cost-callout span {
  color: rgba(255, 248, 239, 0.78);
}

.cost-callout .button {
  justify-self: start;
  background: #fff8ef;
  color: #572716;
}

.cost-pairs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

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

.cost-pairs-single {
  grid-template-columns: minmax(0, 1fr);
}

.cost-pairs p {
  display: grid;
  align-content: start;
  gap: 0.55rem;
  min-width: 0;
  margin: 0;
  padding: 1.2rem;
  border: 1px solid rgba(255, 248, 239, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
}

.cost-pairs strong {
  color: #fff8ef;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.fine-print {
  grid-column: 1 / -1;
  max-width: 82ch;
  font-size: 0.8rem;
}

.editorial-image {
  position: relative;
  display: grid;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #7a5a47;
}

.editorial-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.editorial-image figcaption {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  max-width: calc(100% - 1.6rem);
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(34, 20, 15, 0.72);
  font-size: 0.7rem;
  backdrop-filter: blur(8px);
}

.transparency-hero {
  display: grid;
  grid-template-columns: minmax(16rem, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 6vw, 6rem);
}

.transparency-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
}

.transparency-strip article {
  display: grid;
  gap: 0.45rem;
  padding: clamp(1.35rem, 3vw, 2rem);
  color: #fff9f1;
  background: #4c261a;
}

.transparency-strip span {
  color: rgba(255, 249, 241, 0.62);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.transparency-strip strong {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.transparency-strip p {
  color: rgba(255, 249, 241, 0.74);
}

.fund-use-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.cost-ledger-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: end;
  gap: 1.5rem;
}

.cost-ledger-heading .eyebrow,
.cost-ledger-heading h2 {
  grid-column: 1;
}

.cost-ledger-heading > p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
}

.table-scroll {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.financial-table {
  min-width: 48rem;
  margin: 0;
  font-variant-numeric: tabular-nums;
}

.financial-table caption {
  padding: 1rem;
  color: var(--muted);
  text-align: left;
  background: rgba(157, 77, 39, 0.05);
}

.financial-table th[scope="row"] {
  color: var(--ink);
  font-weight: 700;
}

.method-note {
  display: grid;
  grid-template-columns: minmax(12rem, 0.45fr) minmax(0, 1fr);
  gap: 1.5rem;
  padding: 1.25rem;
  border-left: 3px solid var(--accent);
  background: rgba(157, 77, 39, 0.055);
}

.reporting-panel {
  display: grid;
  grid-template-columns: minmax(16rem, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(1.5rem, 5vw, 5rem);
}

.reporting-list {
  display: grid;
  align-content: start;
}

.reporting-list p {
  display: grid;
  grid-template-columns: minmax(10rem, 0.7fr) minmax(0, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.reporting-list a {
  color: var(--accent);
  font-weight: 800;
}

.faq-intro {
  max-width: 52rem;
  margin-bottom: 1.8rem;
}

.trust-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.trust-link-grid a {
  display: grid;
  align-content: start;
  min-width: 0;
  min-height: 13rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  color: inherit;
  background: rgba(255, 253, 249, 0.58);
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.trust-link-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(157, 77, 39, 0.38);
  background: rgba(255, 253, 249, 0.92);
}

.trust-link-grid strong {
  margin-top: auto;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
}

.secure-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  line-height: 1.5;
}

@media (max-width: 1360px) {
  .hero {
    --hero-media-height: clamp(24rem, 56vh, 34rem);
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .hero-photo-stage,
  .hero-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-photo-stage {
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  }

  .hero-media {
    grid-column: 1;
    grid-row: 2;
    width: min(100%, 26rem);
    justify-self: center;
    height: auto;
    min-height: 0;
    aspect-ratio: 9 / 16;
  }

  .documentary-frame-video {
    border-radius: 0;
  }

  .hero-bottom-panel {
    grid-column: 1;
    grid-row: 3;
  }
}

@media (max-width: 1120px) {
  .section-heading-wide,
  .program-journey,
  .cost-callout,
  .transparency-hero,
  .reporting-panel {
    grid-template-columns: 1fr;
  }

  .section-heading-wide > p {
    justify-self: start;
  }

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

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

  .hero,
  .donate-layout,
  .narrative-split,
  .stewardship-layout,
  .editorial-layout,
  .contact-panel,
  .donate-banner,
  .newsletter-layout {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    white-space: normal;
  }

  .hero-flow {
    grid-template-columns: 1fr;
  }

  .hero-flow-arrow {
    display: none;
  }

  .hero-flow-outcome-arrow {
    margin: 0.1rem 0 0;
  }

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

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

@media (max-width: 720px) {
  .program-grid,
  .trust-link-grid,
  .fund-use-grid,
  .transparency-strip,
  .cost-pairs,
  .cost-pairs-three,
  .cost-ledger-heading,
  .method-note {
    grid-template-columns: 1fr;
  }

  .program-card > span,
  .fund-use-grid article > span,
  .trust-link-grid a > span {
    margin-bottom: 1.35rem;
  }

  .journey-list li,
  .reporting-list p {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .cost-ledger-heading .eyebrow,
  .cost-ledger-heading h2,
  .cost-ledger-heading > p:last-child {
    grid-column: 1;
    grid-row: auto;
  }

  .table-scroll {
    margin-right: -0.3rem;
  }

  .hero {
    --hero-media-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .hero-photo-stage,
  .hero-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-photo-stage {
    min-height: clamp(18rem, 48vh, 24rem);
    height: clamp(18rem, 48vh, 24rem);
  }

  .hero-media {
    grid-column: 1;
    grid-row: 2;
    width: min(100%, 22rem);
    max-width: 100%;
    margin: 0 auto;
    justify-self: center;
    align-self: start;
    min-height: 0;
    height: auto;
    aspect-ratio: 9 / 16;
  }

  .hero-video-note {
    width: auto;
    max-width: min(92%, 20rem);
    font-size: clamp(1.4rem, 6vw, 2rem);
    white-space: normal;
  }

  .hero-bottom-panel {
    grid-column: 1;
    grid-row: 3;
    padding: 0.85rem 0.9rem 1rem;
    justify-items: center;
  }

  .hero-bottom-text {
    max-width: 100%;
    font-size: 0.95rem;
  }

  .hero-points-footer {
    width: 100%;
    padding: 0;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.55rem 1rem;
  }

  .page-shell {
    width: min(calc(100% - 1rem), var(--max-width));
  }

  .site-header {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 253, 249, 0.88);
    font: inherit;
    font-weight: 800;
  }

  .header-actions {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .header-actions.open {
    display: flex;
  }

  .site-nav {
    width: 100%;
    display: grid;
    gap: 0.45rem;
    border-radius: var(--radius-lg);
  }

  .site-nav > a,
  .nav-item > a {
    width: 100%;
    justify-content: space-between;
  }

  .nav-item {
    display: grid;
    gap: 0.35rem;
    padding-bottom: 0;
  }

  .nav-submenu {
    position: static;
    min-width: 0;
    display: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
  }

  .nav-item.open .nav-submenu {
    display: grid;
  }

  .header-donate {
    width: 100%;
  }

  h1 {
    font-size: clamp(2.3rem, 8vw, 3.6rem);
  }

  h2 {
    font-size: clamp(1.8rem, 6vw, 2.6rem);
  }

  .hero-story-copy {
    grid-template-columns: 1fr;
    gap: 0.62rem;
  }

  .hero-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 0.65rem;
    column-gap: 1rem;
    padding: 0.55rem 0.7rem;
  }

  .hero-points a {
    justify-self: center;
  }

  .hero-points a:nth-child(1),
  .hero-points a:nth-child(2),
  .hero-points a:nth-child(3),
  .hero-points a:nth-child(4) {
    grid-column: auto;
  }

  .response-grid,
  .impact-grid,
  .work-grid,
  .social-grid,
  .financial-metrics {
    grid-template-columns: 1fr;
  }

  .video-poster {
    min-height: 24rem;
    align-items: end;
    flex-direction: column;
    justify-content: space-between;
  }

  .donation-toggle,
  .donation-amounts,
  .footer-links {
    flex-direction: column;
  }

  .mail-option-card {
    grid-template-columns: 1fr;
  }

  .mail-option-card h2,
  .mail-option-address {
    grid-column: 1;
    justify-items: center;
    text-align: center;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-address {
    justify-items: center;
    text-align: center;
  }

  .footer-links-contact {
    justify-items: center;
    text-align: center;
  }

  .form-field-inline {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .bar-stack {
    flex-direction: column;
    border-radius: var(--radius-md);
  }
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
