:root {
  --ink: #263247;
  --deep: #151d2b;
  --muted: #637084;
  --paper: #ffffff;
  --soft: #f6f8fb;
  --cream: #fff7e8;
  --coral: #df4d5e;
  --coral-text: #b72f42;
  --orange: #ea874f;
  --gold: #f1c84c;
  --focus: #172033;
  --focus-glow: rgba(241, 200, 76, 0.72);
  --mint: #67bd9d;
  --sky: #7d99c4;
  --label-blue: #42699c;
  --label-blue-on-dark: #c2d6ef;
  --lavender: #9a7bb6;
  --brand-green: #81bea6;
  --brand-light-blue: #a4cbe6;
  --line: rgba(38, 50, 71, 0.12);
  --shadow: 0 18px 45px rgba(38, 50, 71, 0.16);
  --lift: 0 24px 70px rgba(38, 50, 71, 0.22);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(246, 248, 251, 0.9), rgba(255, 255, 255, 0) 360px),
    var(--paper);
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px var(--focus-glow);
}

main[tabindex="-1"]:focus {
  outline: none;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-140%);
}

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

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px clamp(18px, 4vw, 52px);
  background: #ffffff;
  border-bottom: 1px solid rgba(38, 50, 71, 0.08);
  box-shadow: 0 6px 22px rgba(38, 50, 71, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(168px, 17vw, 236px);
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.9rem;
  font-weight: 750;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a[aria-current="page"] {
  color: var(--coral-text);
}

.social-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--paper);
  background: #1877f2;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(24, 119, 242, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.social-logo-link:hover {
  background: #0f63d4;
  box-shadow: 0 14px 26px rgba(24, 119, 242, 0.24);
  transform: translateY(-1px);
}

.social-logo-link svg,
.button-with-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.button-with-icon {
  gap: 9px;
}

.button-with-icon svg {
  width: 19px;
  height: 19px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  color: var(--paper);
  font-weight: 850;
  text-decoration: none;
  background: #c9364a;
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 10px 20px rgba(201, 54, 74, 0.24);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: var(--coral-text);
  box-shadow: 0 16px 26px rgba(183, 47, 66, 0.3);
  transform: translateY(-1px);
}

.button-donate {
  color: var(--deep);
  background: var(--brand-green);
  box-shadow: 0 10px 20px rgba(70, 132, 109, 0.24);
}

.button-donate:hover {
  color: var(--deep);
  background: #6faf95;
  box-shadow: 0 16px 26px rgba(70, 132, 109, 0.3);
}

.button-light {
  color: var(--ink);
  background: var(--paper);
  box-shadow: none;
}

.button-light:hover {
  background: var(--cream);
}

.button-small {
  min-height: 44px;
  padding: 10px 16px;
  font-size: 0.9rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-home img,
.hero-journey img {
  object-position: center 34%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 29, 43, 0.72), rgba(21, 29, 43, 0.28) 48%, rgba(21, 29, 43, 0.02)),
    linear-gradient(0deg, rgba(21, 29, 43, 0.6), rgba(21, 29, 43, 0.02) 58%);
}

.hero-photo-label {
  position: absolute;
  top: clamp(96px, 9vw, 124px);
  right: clamp(16px, 3vw, 34px);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: min(300px, calc(100% - 32px));
  padding: 8px 11px;
  color: var(--paper);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
  background: rgba(21, 29, 43, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.hero-content {
  position: relative;
  width: min(720px, calc(100% - 40px));
  margin: 0 auto;
  padding: 132px 0 72px;
  transform: translateX(calc((min(1160px, 100vw - 40px) - min(720px, 100vw - 40px)) / -2));
}

.hero-content h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(3.05rem, 6.1vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-content p:not(.eyebrow) {
  max-width: 620px;
  margin: 20px 0 28px;
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 730;
  text-shadow: 0 2px 18px rgba(21, 29, 43, 0.45);
}

.hero-content .eyebrow {
  color: var(--label-blue-on-dark);
}

.hero-dream .hero-overlay {
  background:
    linear-gradient(90deg, rgba(21, 29, 43, 0.72), rgba(21, 29, 43, 0.58) 38%, rgba(21, 29, 43, 0.2) 64%, rgba(21, 29, 43, 0.03) 84%),
    linear-gradient(0deg, rgba(21, 29, 43, 0.18), rgba(21, 29, 43, 0) 48%);
}

.section {
  padding: clamp(58px, 8vw, 104px) 0;
}

.section[id] {
  scroll-margin-top: 104px;
}

.visual-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  background: var(--deep);
}

.visual-rail figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.visual-rail img {
  width: 100%;
  height: clamp(150px, 20vw, 260px);
  object-fit: cover;
  border-radius: var(--radius);
}

.visual-rail figcaption {
  position: absolute;
  bottom: 8px;
  left: 8px;
  display: inline-block;
  width: auto;
  max-width: calc(100% - 16px);
  padding: 7px 8px;
  color: var(--paper);
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  line-height: 1.1;
  text-transform: uppercase;
  background: rgba(21, 29, 43, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.mobile-quick-actions {
  display: none;
}

.intro-band,
.dream-band,
.timeline-band {
  background: var(--cream);
}

.stats-band,
.support-band,
.why-donate,
.sponsorship-band,
.board-band {
  background: var(--soft);
}

.campaign-section {
  padding: clamp(52px, 6vw, 78px) 0;
  background:
    linear-gradient(135deg, rgba(125, 153, 196, 0.16), rgba(103, 189, 157, 0.12)),
    var(--paper);
}

.campaign-section .container {
  width: min(1380px, calc(100% - 56px));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--label-blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  font-size: 1.03rem;
}

.lead-copy p:first-child {
  margin-top: 0;
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 700;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.intro-copy {
  display: grid;
  align-content: center;
}

.intro-copy h2 {
  max-width: 620px;
}

.intro-copy p:not(.eyebrow) {
  max-width: 600px;
}

.intro-visual {
  position: relative;
  min-height: clamp(340px, 38vw, 520px);
  overflow: hidden;
  margin: 0;
  background: var(--deep);
  border-radius: var(--radius);
  box-shadow: var(--lift);
}

.intro-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center 45%;
}

.intro-visual figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 16px 18px;
  color: var(--paper);
  background: rgba(21, 29, 43, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.intro-visual span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.intro-visual strong {
  display: block;
  max-width: 540px;
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  line-height: 1.15;
}

.intro-band-expanded .intro-layout {
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
  grid-template-areas:
    "heading heading"
    "visual body";
  column-gap: clamp(34px, 5vw, 72px);
  row-gap: clamp(30px, 3.5vw, 48px);
  align-items: stretch;
}

.intro-band-expanded .intro-heading {
  grid-area: heading;
  max-width: 1180px;
}

.intro-band-expanded .intro-heading h2 {
  max-width: 1180px;
  font-size: clamp(2.35rem, 3.5vw, 3.55rem);
  line-height: 1.03;
}

.intro-band-expanded .intro-visual {
  grid-area: visual;
  min-height: clamp(440px, 34vw, 520px);
}

.intro-band-expanded .intro-body {
  grid-area: body;
  display: grid;
  align-content: center;
}

.intro-band-expanded .intro-body p {
  max-width: 590px;
  margin: 0;
  font-size: clamp(0.98rem, 1.15vw, 1.07rem);
  line-height: 1.65;
}

.intro-band-expanded .intro-body p + p {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(38, 50, 71, 0.14);
}

.intro-band-expanded .intro-closing {
  padding-left: 16px;
  color: var(--ink);
  border-left: 4px solid var(--coral);
}

.intro-band-expanded .intro-closing strong {
  color: var(--ink);
}

.campaign-dashboard {
  display: grid;
  grid-template-columns: minmax(520px, 1.08fr) minmax(440px, 0.92fr);
  gap: clamp(18px, 2.5vw, 34px);
  align-items: start;
  padding: clamp(14px, 1.8vw, 22px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
}

.campaign-photo {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
}

.campaign-photo img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center center;
}

.campaign-photo-caption {
  padding: 16px 18px 18px;
  color: var(--paper);
  background: var(--deep);
}

.campaign-photo-caption span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.campaign-photo-caption strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1.05;
}

.campaign-panel {
  display: grid;
  align-content: start;
  gap: clamp(12px, 1vw, 16px);
  padding: clamp(24px, 2.4vw, 34px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
}

.campaign-panel h2 {
  max-width: 590px;
  margin-bottom: 0;
  font-size: clamp(2.25rem, 2.35vw, 2.75rem);
  line-height: 1;
}

.campaign-panel p {
  max-width: 690px;
  margin: 0;
}

.campaign-meter {
  display: grid;
  gap: 9px;
  padding: 14px 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.meter-track {
  height: 14px;
  overflow: hidden;
  background: #e1e8f2;
  border-radius: 999px;
}

.meter-track span {
  display: block;
  width: var(--step);
  height: 100%;
  background: linear-gradient(90deg, var(--coral), var(--gold));
  border-radius: inherit;
}

.meter-labels {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 850;
}

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

.campaign-stages article {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 9px;
  align-content: start;
  min-height: 0;
  padding: 11px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 5px solid var(--coral);
  border-radius: var(--radius);
}

.campaign-stages article:nth-child(2) {
  border-top-color: var(--orange);
}

.campaign-stages article:nth-child(3) {
  border-top-color: var(--mint);
}

.campaign-stages span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin: 0;
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0;
  background: var(--coral);
  border-radius: 50%;
}

.campaign-stages article:nth-child(2) span {
  background: var(--orange);
}

.campaign-stages article:nth-child(3) span {
  background: var(--mint);
}

.campaign-stages strong {
  display: block;
  font-size: clamp(1.02rem, 1.2vw, 1.14rem);
  line-height: 1.1;
}

.campaign-stages p {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.28;
}

.campaign-dashboard-simple {
  align-items: stretch;
}

.campaign-dashboard-simple .campaign-photo {
  height: auto;
}

.campaign-panel.campaign-panel-simple {
  position: relative;
  overflow: hidden;
  grid-template-rows: auto auto;
  align-content: center;
  gap: clamp(22px, 2.5vw, 34px);
  padding: clamp(28px, 3vw, 42px);
  color: var(--paper);
  text-align: center;
  background: var(--deep);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 6px 0 var(--coral);
}

.campaign-panel.campaign-panel-simple h2 {
  max-width: none;
  color: var(--paper);
  font-size: clamp(2.5rem, 3.2vw, 3rem);
  line-height: 1;
}

.campaign-stages.campaign-stages-progress {
  --phase-chart-size: 132px;
  position: relative;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 18px);
  align-content: center;
}

.campaign-stages.campaign-stages-progress::before {
  content: "";
  position: absolute;
  top: calc(var(--phase-chart-size) / 2);
  right: 16.666%;
  left: 16.666%;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
}

.campaign-stages.campaign-stages-progress article {
  --phase-color: var(--coral);
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
  min-height: 0;
  padding: 0;
  text-align: center;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.campaign-stages.campaign-stages-progress article:nth-child(2) {
  --phase-color: var(--orange);
}

.campaign-stages.campaign-stages-progress article:nth-child(3) {
  --phase-color: var(--mint);
}

.campaign-stages.campaign-stages-progress .phase-progress {
  --phase-progress: 0%;
  position: relative;
  display: grid;
  place-items: center;
  width: var(--phase-chart-size);
  height: var(--phase-chart-size);
  margin: 0;
  color: var(--paper);
  background: conic-gradient(
    from -90deg,
    var(--phase-color) 0 var(--phase-progress),
    rgba(255, 255, 255, 0.16) var(--phase-progress) 100%
  );
  border: 0;
  border-radius: 50%;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
}

.campaign-stages.campaign-stages-progress .phase-progress::before {
  content: "";
  position: absolute;
  inset: 14px;
  background: #202b3e;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.campaign-stages.campaign-stages-progress article .phase-progress span {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  height: auto;
  margin: 0;
  color: var(--paper);
  font-size: 1.45rem;
  font-weight: 950;
  letter-spacing: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.campaign-stages.campaign-stages-progress strong {
  grid-column: auto;
  margin: 0;
  padding: 0;
  color: var(--paper);
  font-size: clamp(1.3rem, 1.8vw, 1.65rem);
  line-height: 1;
}

.campaign-stages.campaign-stages-progress strong::before {
  content: "";
  display: block;
  width: 28px;
  height: 4px;
  margin: 0 auto 10px;
  background: var(--phase-color);
  border-radius: 999px;
}

.campaign-thermometer {
  display: grid;
  gap: 20px;
  text-align: left;
}

.campaign-progress-summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  color: var(--paper);
}

.campaign-progress-summary span {
  width: auto;
  height: auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
  background: transparent;
  border-radius: 0;
}

.campaign-progress-summary strong {
  color: var(--paper);
  font-size: clamp(2.1rem, 3.5vw, 3rem);
  line-height: 0.9;
}

.thermometer-progress {
  --campaign-progress: 15%;
  position: relative;
  height: 28px;
  margin-left: 24px;
  padding: 5px;
  background: #364359;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  box-shadow: inset 0 2px 7px rgba(0, 0, 0, 0.28);
}

.thermometer-progress::before {
  position: absolute;
  top: 50%;
  left: -27px;
  width: 52px;
  height: 52px;
  content: "";
  background: var(--brand-green);
  border: 7px solid #364359;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28), inset 0 0 0 2px rgba(255, 255, 255, 0.32);
  transform: translateY(-50%);
}

.thermometer-fill {
  position: relative;
  z-index: 1;
  display: block;
  width: var(--campaign-progress);
  min-width: 18px;
  height: 100%;
  background: linear-gradient(90deg, var(--brand-green), var(--gold));
  border-radius: inherit;
}

.thermometer-milestones {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.thermometer-milestones li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 74px;
  padding: 12px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.thermometer-milestones .milestone-status {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--paper);
  font-size: 0.85rem;
  font-weight: 950;
  background: var(--sky);
  border-radius: 50%;
}

.thermometer-milestones .is-complete {
  background: rgba(129, 190, 166, 0.16);
  border-color: rgba(129, 190, 166, 0.5);
}

.thermometer-milestones .is-complete .milestone-status {
  color: var(--deep);
  background: var(--brand-green);
}

.thermometer-milestones strong,
.thermometer-milestones small {
  display: block;
}

.thermometer-milestones strong {
  color: var(--paper);
  font-size: 0.98rem;
  line-height: 1.14;
}

.thermometer-milestones small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 760;
  line-height: 1.2;
}

@media (max-width: 1060px) {
  .campaign-panel.campaign-panel-simple {
    gap: 26px;
    padding: 30px;
  }

  .campaign-stages.campaign-stages-progress {
    --phase-chart-size: 112px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .campaign-stages.campaign-stages-progress article {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    padding: 0;
    text-align: center;
    border-bottom: 0;
  }
}

@media (max-width: 680px) {
  .campaign-panel.campaign-panel-simple {
    gap: 22px;
    padding: 22px 14px;
  }

  .campaign-panel.campaign-panel-simple h2 {
    font-size: 2.25rem;
  }

  .campaign-stages.campaign-stages-progress {
    --phase-chart-size: 82px;
    gap: 8px;
  }

  .campaign-stages.campaign-stages-progress .phase-progress {
    width: var(--phase-chart-size);
    height: var(--phase-chart-size);
  }

  .campaign-stages.campaign-stages-progress .phase-progress::before {
    inset: 10px;
  }

  .campaign-stages.campaign-stages-progress article .phase-progress span {
    font-size: 1rem;
  }

  .campaign-stages.campaign-stages-progress strong {
    font-size: 1rem;
  }

  .campaign-thermometer {
    gap: 18px;
  }

  .campaign-progress-summary {
    align-items: center;
  }

  .thermometer-milestones {
    grid-template-columns: 1fr;
  }

  .thermometer-milestones li {
    min-height: 64px;
    padding: 10px;
  }
}

.purpose-section {
  background:
    linear-gradient(90deg, rgba(253, 232, 237, 0.64), rgba(228, 245, 238, 0.5)),
    var(--paper);
}

.purpose-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.purpose-media {
  position: relative;
  min-height: 470px;
}

.purpose-media img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--lift);
}

.purpose-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(260px, calc(100% - 36px));
  padding: 18px;
  color: var(--paper);
  background: rgba(21, 29, 43, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.purpose-badge span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.purpose-badge strong {
  display: block;
  font-size: 1.34rem;
  line-height: 1.08;
}

.purpose-copy h2 {
  max-width: 680px;
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1.03;
}

.purpose-statements {
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.purpose-statements article {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.purpose-statements span {
  color: var(--label-blue);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.purpose-statements p {
  margin: 0;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 760;
  line-height: 1.42;
}

.purpose-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.purpose-steps span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 14px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(38, 50, 71, 0.07);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 32px;
}

.stats-grid,
.support-grid,
.program-grid,
.ways-grid,
.sponsor-grid,
.funding-cards {
  display: grid;
  gap: 16px;
}

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

.stat-card {
  min-height: 190px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(38, 50, 71, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.stat-card:hover,
.image-card:hover,
.support-grid article:hover,
.sponsor-grid article:hover {
  transform: translateY(-3px);
  box-shadow: var(--lift);
}

.stat-card strong {
  display: block;
  color: var(--coral);
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 0.95;
}

.stat-card span {
  display: block;
  margin-top: 16px;
  color: var(--ink);
  font-weight: 760;
}

.image-story,
.board-section,
.origin-grid,
.funding-layout,
.ways-layout,
.updates-layout,
.spotlight-layout,
.future-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.image-story.reverse,
.updates-layout {
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
}

.board-section {
  grid-template-columns: minmax(310px, 0.78fr) minmax(0, 1.22fr);
  grid-template-areas:
    "copy media"
    "roster media";
  grid-template-rows: auto 1fr;
  gap: clamp(24px, 4vw, 52px);
  align-items: stretch;
}

.building-collage {
  position: relative;
  min-height: 410px;
}

.building-collage-main,
.building-collage-inset,
.image-stack img,
.board-section img,
.origin-grid img,
.spotlight-layout img,
.future-layout img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.building-collage-main {
  height: 360px;
  object-fit: cover;
  object-position: center 48%;
}

.building-collage-inset {
  position: absolute;
  bottom: 0;
  left: 28px;
  width: min(210px, 38%);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 48%;
  border: 7px solid var(--paper);
}

.building-collage-label {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(300px, 48%);
  padding: 18px;
  color: var(--paper);
  background: rgba(21, 29, 43, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.building-collage-label span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.building-collage-label strong {
  display: block;
  font-size: 1.25rem;
  line-height: 1.12;
}

.story-copy p,
.origin-grid p,
.updates-layout p {
  max-width: 620px;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--coral-text);
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

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

.support-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.46fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  margin-bottom: 22px;
  background: var(--deep);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.support-visual img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.support-visual div {
  display: grid;
  gap: 12px;
  align-items: center;
  padding: 30px;
  background: linear-gradient(135deg, rgba(223, 77, 94, 0.95), rgba(241, 200, 76, 0.9));
}

.support-photo-label {
  display: inline-flex;
  width: fit-content;
  padding: 6px 9px;
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  line-height: 1.1;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
}

.support-visual strong {
  color: var(--paper);
  font-size: clamp(1.5rem, 3vw, 2.9rem);
  line-height: 1.02;
  text-wrap: balance;
}

.support-grid article {
  min-height: 132px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.support-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  min-height: 34px;
  margin-bottom: 16px;
  padding: 7px 9px;
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 900;
  background: var(--sky);
  border-radius: 999px;
}

.support-grid .feature-icon {
  width: 46px;
  min-width: 46px;
  min-height: 46px;
  padding: 0;
  border-radius: 50%;
}

.feature-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.feature-icon circle {
  fill: none;
}

.support-grid article:nth-child(2n) span {
  background: var(--mint);
}

.support-grid article:nth-child(3n) span {
  background: var(--orange);
}

.support-grid article:nth-child(4n) span {
  background: var(--lavender);
}

.support-grid strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.2;
}

@media (max-width: 820px) {
  .why-donate .support-grid.feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .why-donate .support-grid.feature-grid article {
    display: grid;
    align-content: start;
    min-height: 114px;
    padding: 14px;
  }

  .why-donate .support-grid.feature-grid .feature-icon {
    width: 42px;
    min-width: 42px;
    min-height: 42px;
    margin-bottom: 10px;
  }

  .why-donate .support-grid.feature-grid .feature-icon svg {
    width: 22px;
    height: 22px;
  }

  .why-donate .support-grid.feature-grid strong {
    font-size: clamp(0.86rem, 3.2vw, 0.98rem);
    line-height: 1.16;
  }
}

.quote-section {
  background:
    linear-gradient(135deg, rgba(38, 50, 71, 0.98), rgba(21, 29, 43, 0.98)),
    var(--ink);
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(360px, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
}

.quote-media {
  position: relative;
  margin: 0;
}

.quote-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.quote-media figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 9px 12px;
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 850;
  background: rgba(21, 29, 43, 0.78);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.quote-copy {
  max-width: 560px;
}

.quote-copy .eyebrow {
  color: var(--gold);
}

blockquote {
  margin: 0;
}

.quote-copy blockquote p {
  margin: 0;
  color: var(--paper);
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1.05;
  font-weight: 850;
  text-wrap: balance;
}

.quote-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.board-section img,
.origin-grid img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.board-copy {
  grid-area: copy;
  display: grid;
  align-content: end;
}

.board-copy h2 {
  max-width: 540px;
  font-size: clamp(2.35rem, 3.35vw, 3.65rem);
  line-height: 0.98;
}

.board-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 0;
}

.board-roster {
  grid-area: roster;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-self: start;
  margin-top: 0;
}

.board-roster article {
  display: grid;
  grid-template-columns: minmax(116px, 0.42fr) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 56px;
  padding: 12px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 5px solid var(--sky);
  border-radius: var(--radius);
  box-shadow: 0 8px 18px rgba(38, 50, 71, 0.05);
}

.board-roster article:nth-child(2n) {
  border-left-color: var(--mint);
}

.board-roster article:nth-child(3n) {
  border-left-color: var(--orange);
}

.board-roster span {
  display: block;
  margin-bottom: 0;
  color: var(--label-blue);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.board-roster strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.2;
}

.board-media {
  grid-area: media;
  position: relative;
  min-height: clamp(420px, 42vw, 560px);
  margin: 0;
  overflow: hidden;
  color: var(--paper);
  background: var(--deep);
  border: 1px solid rgba(38, 50, 71, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--lift);
}

.board-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center 45%;
}

.board-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  content: "";
  background: linear-gradient(180deg, rgba(21, 29, 43, 0), rgba(21, 29, 43, 0.86));
}

.board-media figcaption {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 1;
  display: grid;
  gap: 7px;
  max-width: 520px;
}

.board-media span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.board-media strong {
  font-size: clamp(1.45rem, 2.2vw, 2.3rem);
  line-height: 1.04;
}

.board-section.board-section--portraits {
  display: block;
}

.board-section--portraits .board-copy {
  display: block;
  max-width: 840px;
  margin-bottom: clamp(26px, 4vw, 42px);
}

.board-section--portraits .board-copy h2 {
  max-width: 720px;
}

.board-portrait-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.board-person {
  flex: 0 1 calc((100% - 54px) / 4);
  min-width: 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 5px solid var(--sky);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(38, 50, 71, 0.1);
}

.board-person:nth-child(2n) {
  border-top-color: var(--mint);
}

.board-person:nth-child(3n) {
  border-top-color: var(--orange);
}

.board-person:nth-child(4n) {
  border-top-color: var(--lavender);
}

.board-person img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  box-shadow: none;
}

.board-person > div {
  display: grid;
  align-content: start;
  min-height: 108px;
  padding: 16px;
}

.board-person span {
  display: block;
  margin-bottom: 7px;
  color: var(--label-blue);
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.board-person h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.12;
}

@media (max-width: 1050px) {
  .board-person {
    flex-basis: calc((100% - 36px) / 3);
  }
}

@media (max-width: 680px) {
  .board-portrait-grid {
    gap: 10px;
  }

  .board-person {
    flex-basis: calc((100% - 10px) / 2);
  }

  .board-person > div {
    min-height: 98px;
    padding: 12px;
  }

  .board-person span {
    font-size: 0.59rem;
    letter-spacing: 0.07em;
  }

  .board-person h3 {
    font-size: 0.98rem;
  }
}

.note {
  color: #7b5b13;
  font-size: 0.92rem;
  font-weight: 700;
}

.centered {
  text-align: center;
}

.final-cta {
  scroll-margin-top: 92px;
  padding: clamp(54px, 8vw, 88px) 0;
  background:
    linear-gradient(135deg, rgba(241, 200, 76, 0.24), rgba(241, 200, 76, 0) 34%),
    linear-gradient(180deg, var(--cream), #f8fbfd);
}

.cta-panel {
  display: grid;
  justify-items: start;
  gap: 18px;
  padding: clamp(32px, 6vw, 68px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  max-width: 760px;
}

.cta-panel p {
  max-width: 760px;
  margin: 0;
}

.dream-next-step {
  padding: clamp(38px, 5vw, 58px) 0;
  background:
    linear-gradient(110deg, rgba(164, 203, 230, 0.48), rgba(255, 255, 255, 0.82) 58%, rgba(129, 190, 166, 0.28)),
    var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dream-next-step-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.dream-next-step h2 {
  max-width: 760px;
  margin-top: 6px;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.dream-next-step p:not(.eyebrow) {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--muted);
}

.dream-next-step .text-link {
  white-space: nowrap;
}

.final-cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: stretch;
}

.final-cta-media {
  position: relative;
  min-height: clamp(430px, 46vw, 560px);
  margin: 0;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid rgba(38, 50, 71, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--lift);
}

.final-cta-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center 38%;
}

.final-cta-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  content: "";
  background: linear-gradient(180deg, rgba(21, 29, 43, 0), rgba(21, 29, 43, 0.88));
}

.final-cta-media figcaption {
  position: absolute;
  right: clamp(18px, 4vw, 34px);
  bottom: clamp(18px, 4vw, 34px);
  left: clamp(18px, 4vw, 34px);
  z-index: 1;
  display: grid;
  gap: 8px;
}

.final-cta-media span,
.final-cta-card .eyebrow {
  color: var(--gold);
}

.final-cta-media span {
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.final-cta-media strong {
  max-width: 480px;
  font-size: clamp(2rem, 4.2vw, 4.1rem);
  line-height: 0.95;
}

.final-cta-card {
  position: relative;
  align-content: center;
  overflow: hidden;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(223, 77, 94, 0.22), rgba(223, 77, 94, 0) 38%),
    var(--deep);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--lift);
}

.final-cta-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 8px;
  content: "";
  background: linear-gradient(90deg, var(--coral), var(--gold), var(--mint), var(--sky));
}

.final-cta-card h2 {
  max-width: 560px;
  color: var(--paper);
}

.final-cta-card p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
}

.final-cta-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  margin-top: 6px;
}

.final-action {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 88px;
  padding: 15px;
  color: var(--paper);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.final-action:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.34);
  transform: translateY(-2px);
}

.final-action-primary {
  grid-column: 1 / -1;
  color: var(--deep);
  background: var(--brand-green);
  border-color: transparent;
  box-shadow: 0 18px 34px rgba(70, 132, 109, 0.24);
}

.final-action-primary:hover {
  color: var(--deep);
  background: #6faf95;
}

.final-action-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 50%;
}

.final-action svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.final-action strong,
.final-action small {
  display: block;
}

.final-action strong {
  font-size: 1.05rem;
  line-height: 1.05;
}

.final-action small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.25;
}

.final-action-primary small {
  color: rgba(21, 29, 43, 0.72);
}

.final-cta-roadmap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.final-cta-roadmap span {
  display: grid;
  gap: 3px;
  min-height: 84px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.07);
}

.final-cta-roadmap strong {
  color: var(--gold);
  font-size: 0.98rem;
}

.final-cta-roadmap small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.25;
}

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

.image-card {
  grid-column: span 2;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(38, 50, 71, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-card div {
  padding: 20px;
}

.image-card .image-label {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 10px;
  padding: 5px 8px;
  color: var(--label-blue);
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  line-height: 1.1;
  text-transform: uppercase;
  background: rgba(223, 77, 94, 0.09);
  border: 1px solid rgba(223, 77, 94, 0.18);
  border-radius: 999px;
}

.image-card h2 {
  font-size: 1.35rem;
  line-height: 1.15;
}

.image-card p {
  margin-bottom: 0;
  font-size: 0.98rem;
}

.exhibit-grid .image-card:nth-last-child(-n + 2) {
  grid-column: span 3;
}

.exhibit-grid .image-card:nth-last-child(-n + 2) img {
  aspect-ratio: 16 / 9;
}

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

.ways-grid a {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 68px;
  padding: 17px 19px;
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.program-grid > span {
  --program-accent: var(--sky);
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-height: 136px;
  overflow: hidden;
  padding: 20px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(125, 153, 196, 0.14), rgba(125, 153, 196, 0) 58%),
    var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(38, 50, 71, 0.09);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.program-grid > span::after {
  position: absolute;
  right: -42px;
  bottom: -48px;
  width: 134px;
  height: 134px;
  content: "";
  background: var(--program-accent);
  border-radius: 50%;
  opacity: 0.08;
}

.program-grid > span:hover {
  border-color: rgba(38, 50, 71, 0.22);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.program-grid .program-icon {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 64px;
  min-width: 64px;
  height: 64px;
  color: var(--paper);
  background: var(--program-accent);
  border-radius: 50%;
  box-shadow: 0 15px 28px rgba(38, 50, 71, 0.13);
}

.action-icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  color: var(--paper);
  background: var(--sky);
  border-radius: 50%;
}

.program-grid .program-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.85;
}

.action-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.program-grid .program-icon circle {
  fill: none;
}

.action-icon circle {
  fill: none;
}

.program-grid > span:nth-child(2n) {
  --program-accent: var(--mint);
  background:
    linear-gradient(135deg, rgba(103, 189, 157, 0.16), rgba(103, 189, 157, 0) 58%),
    var(--paper);
}

.program-grid > span:nth-child(3n) {
  --program-accent: var(--orange);
  background:
    linear-gradient(135deg, rgba(234, 135, 79, 0.16), rgba(234, 135, 79, 0) 58%),
    var(--paper);
}

.program-grid > span:nth-child(4n) {
  --program-accent: var(--lavender);
  background:
    linear-gradient(135deg, rgba(154, 123, 182, 0.16), rgba(154, 123, 182, 0) 58%),
    var(--paper);
}

.program-grid > span:nth-child(5n) {
  --program-accent: var(--gold);
  background:
    linear-gradient(135deg, rgba(241, 200, 76, 0.26), rgba(241, 200, 76, 0) 58%),
    var(--paper);
}

.program-grid > span:nth-child(2n) .program-icon,
.ways-grid a:nth-child(2n) .action-icon {
  background: var(--mint);
}

.program-grid > span:nth-child(3n) .program-icon,
.ways-grid a:nth-child(3n) .action-icon {
  background: var(--orange);
}

.program-grid > span:nth-child(4n) .program-icon,
.ways-grid a:nth-child(4n) .action-icon {
  background: var(--lavender);
}

.program-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  min-width: 0;
}

.program-grid strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.18;
}

.program-grid small {
  display: block;
  max-width: 220px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 720;
  line-height: 1.35;
}

.image-stack {
  display: grid;
  gap: 16px;
}

.image-stack figure,
.origin-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.image-stack img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.image-stack img,
.origin-photo img {
  display: block;
}

.image-stack figcaption,
.origin-photo figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 8px 10px;
  color: var(--paper);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  line-height: 1.1;
  text-transform: uppercase;
  background: rgba(21, 29, 43, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.image-stack .supporters-figure {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.supporters-collage-crop {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1500 / 640;
  background: #ffffff;
}

.supporters-collage-crop img {
  display: block;
  width: 100%;
  height: auto;
  transform: translateY(-17%);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.supporter-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 10px 20px 14px;
  background: #ffffff;
}

.supporter-logo-row img {
  display: block;
  width: min(68%, 250px);
  height: auto;
  max-height: 42px;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.image-stack .supporters-figure figcaption {
  position: relative;
  inset: auto;
  display: flex;
  width: 100%;
  margin: 0;
  padding: 12px 16px;
  color: #ffffff;
  background: var(--deep);
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
}

.future-section {
  padding: clamp(64px, 7vw, 86px) 0;
  background: var(--soft);
}

.future-section .container {
  width: min(100% - 64px, 1320px);
}

.future-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: start;
}

.future-layout img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.future-visual {
  position: relative;
  min-height: 0;
  aspect-ratio: 3 / 2;
  margin: 0;
  overflow: hidden;
  background: var(--deep);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--lift);
}

.future-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center center;
  border-radius: 0;
  box-shadow: none;
}

.future-visual figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 14px 16px;
  color: var(--paper);
  background: rgba(21, 29, 43, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.future-visual span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.future-visual strong {
  display: block;
  font-size: clamp(1rem, 1.4vw, 1.28rem);
  line-height: 1.15;
}

.future-copy {
  display: grid;
  align-content: center;
  gap: 16px;
  min-width: 0;
}

.future-copy h2 {
  max-width: 620px;
  margin-bottom: 0;
  font-size: clamp(2.35rem, 4.25vw, 4.65rem);
  line-height: 0.98;
}

.future-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.future-tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 2px;
}

.future-tags span {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  font-weight: 850;
  line-height: 1.15;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(38, 50, 71, 0.06);
}

.future-tags span::before {
  width: 9px;
  height: 9px;
  margin-right: 10px;
  content: "";
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(91, 194, 158, 0.16);
}

.future-tags span:nth-child(2n)::before {
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(241, 200, 76, 0.18);
}

.future-tags span:nth-child(3n)::before {
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(224, 75, 96, 0.14);
}

.future-copy .dream-builder {
  margin-top: 4px;
  padding: 22px 24px;
  background:
    linear-gradient(135deg, rgba(241, 200, 76, 0.22), rgba(255, 255, 255, 0.94)),
    var(--paper);
}

.future-copy .dream-builder strong {
  font-size: clamp(1.22rem, 1.7vw, 1.72rem);
  line-height: 1.08;
}

.contact-page {
  background: var(--paper);
}

.contact-hero {
  position: relative;
  display: grid;
  min-height: min(650px, 72svh);
  align-items: end;
  overflow: hidden;
  color: var(--paper);
  background: var(--deep);
}

.contact-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 29, 43, 0.9) 0%, rgba(21, 29, 43, 0.68) 38%, rgba(21, 29, 43, 0.08) 74%),
    linear-gradient(0deg, rgba(21, 29, 43, 0.5), transparent 58%);
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding-top: 180px;
  padding-bottom: clamp(56px, 8vw, 92px);
}

.contact-hero-content h1 {
  max-width: 700px;
  margin: 10px 0 18px;
  color: var(--paper);
  font-size: clamp(3.4rem, 7vw, 7rem);
  line-height: 0.92;
}

.contact-hero-content > p:not(.eyebrow) {
  max-width: 600px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.55;
}

.contact-hero .eyebrow,
.contact-direct-band .eyebrow {
  color: var(--label-blue-on-dark);
}

.contact-photo-label {
  position: absolute;
  right: clamp(18px, 3vw, 48px);
  bottom: 22px;
  z-index: 2;
  padding: 8px 12px;
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(21, 29, 43, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.contact-options-section {
  padding-top: clamp(72px, 8vw, 112px);
  padding-bottom: clamp(78px, 9vw, 126px);
  background:
    linear-gradient(135deg, rgba(231, 240, 251, 0.64), rgba(255, 247, 232, 0.62)),
    var(--paper);
}

.contact-options-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.6fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  margin-bottom: 38px;
}

.contact-options-heading h2 {
  max-width: 760px;
  margin: 10px 0 0;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 1;
}

.contact-options-heading > p {
  max-width: 430px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.contact-option-card {
  --contact-accent: var(--coral);
  position: relative;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  color: var(--ink);
  text-decoration: none;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(38, 50, 71, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.contact-option-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  content: "";
  background: var(--contact-accent);
}

.contact-option-card:hover {
  border-color: color-mix(in srgb, var(--contact-accent) 46%, transparent);
  box-shadow: var(--lift);
  transform: translateY(-4px);
}

.contact-option-facebook {
  --contact-accent: #1877f2;
}

.contact-option-onecause {
  --contact-accent: var(--brand-green);
}

.contact-option-onecause .contact-option-icon {
  color: var(--deep);
}

.contact-option-icon {
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 28px;
  color: var(--paper);
  background: var(--contact-accent);
  border-radius: 50%;
}

.contact-option-icon svg,
.contact-option-action svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.contact-option-icon .contact-facebook-icon {
  fill: currentColor;
  stroke: none;
}

.contact-option-kicker {
  color: var(--label-blue);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-option-card > strong {
  display: block;
  margin-top: 9px;
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  line-height: 1.05;
}

.contact-option-card > p {
  margin: 16px 0 26px;
  color: var(--muted);
}

.contact-option-action {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-top: auto;
  padding-top: 20px;
  color: var(--ink);
  font-weight: 900;
  border-top: 1px solid var(--line);
}

.contact-option-action svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
}

.contact-direct-band {
  padding: clamp(64px, 8vw, 110px) 0;
  color: var(--paper);
  background: var(--deep);
}

.contact-direct-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.65fr);
  gap: clamp(32px, 8vw, 110px);
  align-items: center;
}

.contact-direct-layout h2 {
  max-width: 650px;
  margin: 10px 0 0;
  color: var(--paper);
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 1;
}

.contact-direct-layout > div:last-child p {
  max-width: 480px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

@media (min-width: 1100px) {
  .future-tags {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .future-tags span {
    min-height: 52px;
  }
}

.policy-page {
  background:
    linear-gradient(180deg, rgba(246, 248, 251, 0.96), rgba(255, 255, 255, 0) 430px),
    var(--paper);
}

.policy-hero {
  padding: 150px 0 24px;
}

.policy-header {
  max-width: 860px;
}

.policy-header h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.96;
}

.policy-header > p:not(.eyebrow) {
  color: var(--muted);
  font-weight: 750;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.38fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 68px);
  align-items: start;
}

.policy-card {
  position: sticky;
  top: 104px;
  padding: 24px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(38, 50, 71, 0.08);
}

.policy-card h2,
.policy-content h2 {
  font-size: 1.45rem;
  line-height: 1.15;
}

.policy-card p,
.policy-card li,
.policy-content p,
.policy-content li {
  color: var(--muted);
  font-size: 1.02rem;
}

.policy-card ul,
.policy-content ul {
  padding-left: 1.2rem;
}

.policy-card li + li,
.policy-content li + li {
  margin-top: 8px;
}

.policy-content {
  display: grid;
  gap: 18px;
}

.policy-content section {
  padding: clamp(22px, 3vw, 34px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(38, 50, 71, 0.06);
}

.policy-content h2 {
  margin-top: 0;
}

.policy-content p:last-child,
.policy-content ul:last-child {
  margin-bottom: 0;
}

.policy-content a {
  color: var(--coral);
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.dream-builder {
  position: relative;
  padding: clamp(24px, 4vw, 36px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(38, 50, 71, 0.08);
}

.dream-builder > span {
  display: block;
  margin-bottom: 8px;
  color: var(--label-blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dream-builder strong {
  display: block;
  font-size: clamp(1.7rem, 2.7vw, 2.55rem);
  line-height: 1.05;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: stretch;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 19px;
  right: calc((100% - 84px) / 14);
  left: calc((100% - 84px) / 14);
  height: 5px;
  background:
    linear-gradient(
      90deg,
      var(--mint) 0 43%,
      var(--coral) 43% 72%,
      rgba(125, 153, 196, 0.4) 72% 100%
    );
  border-radius: 999px;
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-rows: 42px minmax(0, 1fr);
  gap: 14px;
  align-content: start;
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.timeline-dot {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  justify-self: center;
  color: var(--paper);
  font-size: 0.9rem;
  font-weight: 950;
  background: var(--sky);
  border: 5px solid var(--cream);
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(38, 50, 71, 0.16);
}

.timeline li.is-complete .timeline-dot {
  background: var(--mint);
}

.timeline li.is-current .timeline-dot {
  background: var(--coral);
}

.timeline-card {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  height: 100%;
  min-height: 246px;
  padding: 20px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 6px solid var(--sky);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(38, 50, 71, 0.08);
}

.timeline li.is-complete .timeline-card {
  border-top-color: var(--mint);
}

.timeline li.is-current .timeline-card {
  border-top-color: var(--coral);
  box-shadow: var(--shadow);
}

.timeline strong {
  display: block;
  color: var(--coral);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1;
}

.timeline h3 {
  margin: 14px 0 0;
  font-size: 1.04rem;
  line-height: 1.14;
}

.timeline p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.timeline em {
  display: block;
  align-self: end;
  margin-top: 18px;
  color: var(--ink);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.funding-layout {
  align-items: center;
}

.funding-cards {
  display: grid;
  gap: 14px;
}

.funding-cards article {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  min-height: 0;
  padding: 20px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 8px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(38, 50, 71, 0.08);
}

.funding-cards article:nth-child(2) {
  border-left-color: var(--coral);
}

.funding-cards article:nth-child(3) {
  border-left-color: var(--gold);
}

.funding-step {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--paper);
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  background: var(--ink);
  border-radius: 50%;
}

.funding-cards article:nth-child(2) .funding-step {
  background: var(--coral);
}

.funding-cards article:nth-child(3) .funding-step {
  color: var(--ink);
  background: var(--gold);
}

.funding-cards strong {
  display: block;
  color: var(--coral);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  word-break: normal;
  overflow-wrap: normal;
  white-space: nowrap;
}

.funding-cards article:first-child strong {
  color: var(--ink);
}

.funding-cards article:nth-child(3) strong {
  color: #9a6d00;
}

.funding-cards h3 {
  margin: 8px 0 0;
  font-size: 1.24rem;
  line-height: 1.15;
}

.funding-cards p,
.funding-copy p {
  max-width: 620px;
}

.funding-cards p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.ways-section {
  background:
    linear-gradient(135deg, rgba(231, 240, 251, 0.78), rgba(255, 242, 189, 0.42)),
    var(--soft);
}

.ways-layout {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
}

.ways-layout-no-photo {
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(32px, 5vw, 72px);
}

.ways-layout-no-photo .ways-copy {
  max-width: 440px;
}

.ways-layout-no-photo .ways-copy > p:not(.eyebrow) {
  max-width: 40ch;
}

.ways-copy > p:not(.eyebrow) {
  max-width: 600px;
  font-size: 1.06rem;
}

.ways-photo {
  overflow: hidden;
  margin: 30px 0 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(38, 50, 71, 0.16);
}

.ways-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 42%;
}

.ways-photo figcaption {
  display: grid;
  gap: 6px;
  padding: 16px 18px 18px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(241, 200, 76, 0.18), rgba(255, 255, 255, 0.96)),
    var(--paper);
}

.ways-photo span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ways-photo strong {
  display: block;
  max-width: 420px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.18;
}

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

.ways-grid .way-card {
  position: relative;
  align-items: center;
  min-height: 112px;
  padding: 16px 18px;
  box-shadow: 0 14px 36px rgba(38, 50, 71, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.ways-grid .way-card:hover {
  transform: translateY(-3px);
  border-color: rgba(38, 50, 71, 0.2);
  box-shadow: var(--lift);
}

.ways-grid .way-card-primary {
  grid-column: 1 / -1;
  align-items: center;
  min-height: 118px;
  padding-block: 18px;
  color: var(--deep);
  background: var(--brand-green);
  border-color: rgba(70, 132, 109, 0.36);
}

.ways-grid .way-card-primary .action-icon {
  width: 56px;
  min-width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.2);
}

.way-card-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.way-card-copy strong {
  color: inherit;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.1;
}

.way-card-copy small {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.4;
}

.way-card-primary .way-card-copy strong {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.way-card-primary .way-card-copy small {
  max-width: 540px;
  color: rgba(21, 29, 43, 0.78);
}

.way-arrow {
  display: inline-grid;
  place-items: center;
  width: 34px;
  min-width: 34px;
  height: 34px;
  margin-left: auto;
  color: currentColor;
  border: 1px solid rgba(38, 50, 71, 0.12);
  border-radius: 50%;
}

.way-arrow svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.way-card-primary .way-arrow {
  border-color: rgba(21, 29, 43, 0.24);
}

@media (max-width: 820px) {
  .ways-section .ways-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .ways-section .ways-grid .way-card,
  .ways-section .ways-grid .way-card-primary {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    min-height: 102px;
    padding: 14px;
  }

  .ways-section .ways-grid .way-card-primary {
    grid-column: auto;
  }

  .ways-section .ways-grid .action-icon,
  .ways-section .ways-grid .way-card-primary .action-icon {
    width: 42px;
    min-width: 42px;
    height: 42px;
  }

  .ways-section .ways-grid .action-icon svg {
    width: 22px;
    height: 22px;
  }

  .ways-section .way-card-copy {
    gap: 4px;
    padding-right: 22px;
  }

  .ways-section .way-card-copy strong,
  .ways-section .way-card-primary .way-card-copy strong {
    font-size: clamp(0.9rem, 3.4vw, 1.02rem);
    line-height: 1.14;
  }

  .ways-section .way-card-copy small {
    display: none;
  }

  .ways-section .way-arrow {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 26px;
    min-width: 26px;
    height: 26px;
    opacity: 0.68;
  }

  .ways-section .way-arrow svg {
    width: 14px;
    height: 14px;
  }

  .ways-section .ways-grid .way-card:nth-child(odd):last-child {
    grid-column: 1 / -1;
    min-height: 92px;
  }
}

@media (max-width: 350px) {
  .ways-section .ways-grid {
    grid-template-columns: 1fr;
  }
}

.gift-section {
  background:
    radial-gradient(circle at 18% 20%, rgba(223, 77, 94, 0.18), transparent 32%),
    linear-gradient(135deg, #111b2b, #263247 72%),
    var(--deep);
}

.gift-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.66fr) minmax(640px, 1.34fr);
  gap: clamp(24px, 3.5vw, 46px);
  align-items: start;
}

.gift-copy {
  align-self: start;
  padding-top: clamp(4px, 1vw, 18px);
}

.gift-copy h2,
.gift-copy p {
  color: var(--paper);
}

.gift-copy p {
  color: rgba(255, 255, 255, 0.76);
  max-width: 500px;
}

.gift-copy h2 {
  max-width: 500px;
  font-size: clamp(2.15rem, 3.35vw, 3.45rem);
  line-height: 1.04;
}

.gift-priorities {
  display: grid;
  gap: 8px;
  margin: 20px 0 22px;
}

.gift-priorities article {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 10px 12px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.gift-priorities span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  min-width: 32px;
  height: 32px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.gift-priorities svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.gift-levels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.gift-level-card {
  position: relative;
  display: grid;
  gap: 11px;
  align-content: start;
  min-height: 238px;
  overflow: hidden;
  padding: clamp(16px, 1.8vw, 20px);
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.14);
}

.gift-level-card::after {
  position: absolute;
  right: -56px;
  bottom: -68px;
  width: 168px;
  height: 168px;
  content: "";
  background: var(--sky);
  border-radius: 50%;
  opacity: 0.1;
}

.gift-level-card:nth-child(3)::after {
  background: var(--mint);
}

.gift-level-card:nth-child(4)::after {
  background: var(--lavender);
}

.gift-level-card:nth-child(5)::after {
  background: var(--gold);
}

.gift-level-featured {
  background:
    linear-gradient(135deg, rgba(223, 77, 94, 0.12), rgba(241, 200, 76, 0.2)),
    var(--paper);
  border-color: rgba(241, 200, 76, 0.42);
}

.gift-level-major {
  grid-column: 1 / -1;
  min-height: 196px;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(223, 77, 94, 0.96), rgba(241, 132, 75, 0.92)),
    var(--coral);
}

.gift-level-major::after {
  background: var(--paper);
  opacity: 0.15;
}

.gift-level-head,
.gift-detail,
.gift-donate-link,
.gift-level-card h3,
.gift-level-card p {
  position: relative;
  z-index: 1;
}

.gift-level-head {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}

.gift-amount {
  font-size: clamp(1.95rem, 3.35vw, 2.7rem);
  font-weight: 950;
  line-height: 0.95;
}

.gift-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 9px;
  color: var(--paper);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--label-blue);
  border-radius: 999px;
}

.gift-level-major .gift-tag {
  color: var(--ink);
  background: var(--gold);
}

.gift-level-card h3 {
  margin: 0;
  font-size: clamp(1.15rem, 1.75vw, 1.45rem);
  line-height: 1.08;
}

.gift-level-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.38;
}

.gift-level-major p {
  color: rgba(255, 255, 255, 0.82);
}

.gift-detail {
  display: grid;
  gap: 5px;
  min-height: 58px;
  padding: 10px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.gift-level-major .gift-detail {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.2);
}

.gift-detail small {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gift-detail strong {
  font-size: 0.92rem;
  line-height: 1.14;
}

.gift-donate-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 44px;
  margin-top: auto;
  padding: 10px 12px;
  color: var(--paper);
  font-weight: 950;
  text-decoration: none;
  background: var(--coral);
  border-radius: var(--radius);
  transition: transform 180ms ease, background 180ms ease;
}

.gift-donate-link:hover {
  background: var(--coral-text);
  transform: translateY(-2px);
}

.gift-level-major .gift-donate-link {
  color: var(--paper);
  background: var(--coral-text);
}

.gift-level-major .gift-donate-link:hover {
  background: var(--deep);
}

.gift-donate-link svg {
  width: 18px;
  min-width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.sponsor-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.sponsor-story h2 {
  max-width: 620px;
  font-size: clamp(2.4rem, 4.2vw, 4.2rem);
  line-height: 1.02;
}

.sponsor-story p:not(.eyebrow) {
  max-width: 560px;
  font-size: 1.06rem;
}

.sponsor-actions {
  margin-top: 22px;
  margin-bottom: 24px;
}

.donor-wall-visual {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
  color: var(--paper);
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: 0 26px 70px rgba(38, 50, 71, 0.16);
}

.donor-wall-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 42%;
  opacity: 0.72;
}

.donor-photo-label {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 28px);
  padding: 7px 10px;
  color: var(--paper);
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  line-height: 1.1;
  text-transform: uppercase;
  background: rgba(21, 29, 43, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.donor-wall-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 18px;
  background: rgba(21, 29, 43, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.donor-wall-card > span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.donor-wall-card > strong {
  display: block;
  max-width: 520px;
  font-size: 1.12rem;
  line-height: 1.18;
}

.plaque-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.plaque-grid i {
  min-height: 44px;
  padding: 11px 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 850;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
}

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

.sponsor-grid article {
  min-height: 190px;
  padding: 20px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(38, 50, 71, 0.08);
}

.sponsor-tier {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.sponsor-grid .sponsor-tier-featured {
  grid-column: 1 / -1;
  min-height: 170px;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(223, 77, 94, 0.98), rgba(241, 200, 76, 0.88)),
    var(--coral);
  border-color: rgba(223, 77, 94, 0.28);
}

.sponsor-tier-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--paper);
  background: var(--sky);
  border-radius: 50%;
}

.sponsor-tier-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.sponsor-grid .sponsor-tier-featured .sponsor-tier-icon {
  width: 58px;
  height: 58px;
  background: rgba(255, 255, 255, 0.2);
}

.sponsor-tier:nth-child(2) .sponsor-tier-icon {
  background: var(--sky);
}

.sponsor-tier:nth-child(3) .sponsor-tier-icon {
  background: var(--gold);
}

.sponsor-tier:nth-child(4) .sponsor-tier-icon {
  background: var(--lavender);
}

.sponsor-tier:nth-child(5) .sponsor-tier-icon {
  background: var(--mint);
}

.sponsor-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 900;
}

.sponsor-grid .sponsor-tier-featured span {
  color: rgba(255, 255, 255, 0.82);
}

.sponsor-grid strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1;
}

.sponsor-grid p {
  margin: 10px 0 0;
  font-size: 0.94rem;
  line-height: 1.4;
}

.sponsor-grid .sponsor-tier-featured p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.82);
}

.sponsor-note {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 780px;
  margin-top: 8px;
}

.updates-section {
  background:
    linear-gradient(135deg, rgba(231, 240, 251, 0.78), rgba(255, 255, 255, 0.2)),
    var(--paper);
}

.updates-layout {
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
}

.updates-layout-historic-only {
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
}

.updates-layout-historic-only .historic-clips img {
  height: clamp(280px, 24vw, 340px);
}

.updates-layout-social-only {
  display: block;
}

.updates-layout-social-only .updates-copy {
  max-width: 860px;
  margin: 0 auto;
}

.updates-copy h2 {
  max-width: 580px;
  font-size: clamp(2.5rem, 4.2vw, 4.4rem);
  line-height: 1.02;
}

.facebook-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 38px;
  gap: 16px;
  align-items: center;
  max-width: 520px;
  margin-top: 28px;
  padding: 18px;
  color: var(--ink);
  text-decoration: none;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(38, 50, 71, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.facebook-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--lift);
}

.facebook-mark {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--paper);
  background: #1877f2;
  border-radius: 50%;
}

.facebook-mark svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.facebook-card strong,
.facebook-card small {
  display: block;
}

.facebook-card strong {
  font-size: 1.16rem;
  line-height: 1.12;
}

.facebook-card small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.35;
}

.facebook-arrow {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #1877f2;
  background: #e7f0fb;
  border-radius: 50%;
}

.facebook-arrow svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.updates-visuals {
  display: grid;
  gap: 18px;
}

.supporter-board,
.historic-clips figure {
  overflow: hidden;
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.supporter-board {
  padding: clamp(18px, 3vw, 32px);
}

.supporter-board img {
  display: block;
  width: 100%;
  height: auto;
}

.supporter-board figcaption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.supporter-board span,
.historic-clips figcaption {
  color: var(--label-blue);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.supporter-board strong {
  max-width: 520px;
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.18;
}

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

.historic-clips figure {
  display: grid;
  padding: 14px;
}

.historic-clips img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: contain;
  background: var(--cream);
  border-radius: 7px;
}

.historic-clips figcaption {
  margin-top: 12px;
}

.building-history-clips {
  margin-top: clamp(38px, 5vw, 64px);
  padding-top: clamp(28px, 4vw, 44px);
  border-top: 1px solid var(--line);
}

.building-history-clips-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, 1.3fr);
  gap: clamp(20px, 4vw, 54px);
  align-items: end;
  margin-bottom: 22px;
}

.building-history-clips-heading h3 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  line-height: 1.05;
}

.building-history-clips .historic-clips img {
  height: clamp(260px, 25vw, 360px);
}

.social-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
  scroll-margin-top: 120px;
}

.social-proof article {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(38, 50, 71, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.social-proof article::after {
  position: absolute;
  right: -44px;
  bottom: -48px;
  width: 150px;
  height: 150px;
  content: "";
  background: currentColor;
  border-radius: 50%;
  opacity: 0.08;
}

.social-proof article:hover {
  transform: translateY(-3px);
  box-shadow: var(--lift);
}

.proof-card-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 28px;
}

.proof-icon {
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: var(--paper);
  background: var(--sky);
  border-radius: 50%;
  box-shadow: 0 14px 28px rgba(38, 50, 71, 0.12);
}

.proof-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.85;
}

.proof-card-facebook .proof-icon svg {
  fill: currentColor;
  stroke: none;
}

.proof-card-share .proof-icon circle {
  fill: none;
}

.social-proof .proof-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 11px;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.proof-card-facebook {
  color: #1877f2;
  background: linear-gradient(180deg, #ffffff, #f2f7ff);
}

.proof-card-facebook .proof-icon {
  background: #1877f2;
}

.proof-card-updates {
  color: var(--mint);
  background: linear-gradient(180deg, #ffffff, #eefaf5);
}

.proof-card-updates .proof-icon {
  background: var(--mint);
}

.proof-card-share {
  color: var(--coral);
  background: linear-gradient(180deg, #ffffff, #fff1f3);
}

.proof-card-share .proof-icon {
  background: var(--coral);
}

.social-proof strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.7rem, 2.7vw, 2.55rem);
  line-height: 1.08;
}

.social-proof strong span {
  font-size: 0.68em;
}

.social-proof p {
  max-width: 330px;
  margin-top: 14px;
  margin-bottom: 0;
  color: var(--muted);
}

.social-proof a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 24px;
  color: var(--ink);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.spotlight-section {
  background:
    linear-gradient(135deg, rgba(255, 242, 189, 0.42), rgba(231, 240, 251, 0.78)),
    var(--soft);
}

.sponsor-spotlight {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}

.spotlight-sponsor-board {
  overflow: hidden;
  margin: 0;
  padding: clamp(18px, 3vw, 32px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.spotlight-sponsor-board .supporter-logo-row {
  margin-top: 0;
}

.spotlight-sponsor-board figcaption {
  display: grid;
  grid-template-columns: minmax(120px, 0.28fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.spotlight-sponsor-board span {
  color: var(--label-blue);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spotlight-sponsor-board strong {
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.18;
}

.sponsor-feature {
  border-top: 7px solid var(--gold);
}

.sponsor-feature p {
  margin-top: 16px;
}

.sponsor-feature-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.sponsor-feature-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  font-weight: 850;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.sponsor-feature-list span::before {
  width: 10px;
  height: 10px;
  content: "";
  background: var(--coral);
  border-radius: 50%;
}

.site-footer {
  padding: 56px 0 88px;
  color: var(--paper);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.25fr) minmax(170px, 0.8fr) minmax(230px, 0.95fr);
  gap: 30px;
  align-items: start;
}

.footer-logo {
  width: 280px;
  height: auto;
  max-width: 100%;
  padding: 12px;
  background: var(--paper);
  border-radius: var(--radius);
}

.site-footer h2 {
  margin: 0 0 12px;
  color: var(--paper);
  font-size: 1rem;
}

.site-footer p,
.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.96rem;
}

.site-footer a {
  margin: 8px 0;
  text-decoration: none;
}

.site-footer .social-logo-link {
  display: inline-flex;
  margin: 10px 0;
}

.sticky-donate {
  position: fixed;
  right: clamp(14px, 2vw, 24px);
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  max-width: calc(100vw - 28px);
  padding: 0 19px 0 15px;
  color: var(--deep);
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  background: var(--brand-green);
  border: 1px solid rgba(21, 29, 43, 0.18);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(38, 50, 71, 0.2), 0 2px 6px rgba(38, 50, 71, 0.14);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.sticky-donate:hover {
  color: var(--deep);
  background: #6faf95;
  box-shadow: 0 14px 28px rgba(38, 50, 71, 0.24), 0 3px 8px rgba(38, 50, 71, 0.16);
  transform: translateY(-2px);
}

.sticky-donate:focus-visible {
  outline: 3px solid var(--paper);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--deep), 0 14px 28px rgba(38, 50, 71, 0.24);
}

.sticky-donate__icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1060px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 10px;
    left: 10px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100svh - 86px);
    overflow-y: auto;
    gap: 8px;
    padding: 12px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 10px;
    border-radius: var(--radius);
  }

  .site-nav .button {
    min-height: 48px;
    margin-top: 2px;
  }

  .site-nav .social-logo-link {
    width: 48px;
    height: 48px;
    min-height: 48px;
    padding: 0;
  }

  .hero-content {
    transform: none;
  }

  .stats-grid,
  .support-grid,
  .visual-rail,
  .sponsor-grid,
  .exhibit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visual-rail figure:last-child,
  .visual-rail img:last-child {
    grid-column: 1 / -1;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 0 0 28px;
  }

  .timeline::before {
    top: 18px;
    bottom: 18px;
    left: 21px;
    width: 5px;
    height: auto;
    background:
      linear-gradient(
        180deg,
        var(--mint) 0 43%,
        var(--coral) 43% 72%,
        rgba(125, 153, 196, 0.4) 72% 100%
      );
  }

  .timeline li {
    grid-template-columns: 42px minmax(0, 1fr);
    grid-template-rows: auto;
    gap: 14px;
  }

  .timeline-dot {
    justify-self: start;
    margin-left: -28px;
  }

  .timeline-card {
    display: block;
    height: auto;
    min-height: 0;
  }

  .funding-cards article {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .funding-step {
    width: 50px;
    height: 50px;
  }

  .exhibit-grid .image-card,
  .exhibit-grid .image-card:nth-last-child(-n + 2) {
    grid-column: span 1;
  }

  .exhibit-grid .image-card:last-child {
    grid-column: span 2;
  }

  .exhibit-grid .image-card:nth-last-child(-n + 2) img {
    aspect-ratio: 4 / 3;
  }

  .exhibit-grid .image-card:last-child img {
    aspect-ratio: 16 / 9;
  }

  .two-column,
  .intro-layout,
  .image-story,
  .image-story.reverse,
  .board-section,
  .campaign-dashboard,
  .purpose-layout,
  .origin-grid,
  .funding-layout,
  .ways-layout,
  .gift-layout,
  .sponsor-layout,
  .updates-layout,
  .spotlight-layout,
  .final-cta-layout,
  .future-layout,
  .policy-layout,
  .quote-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .intro-band-expanded .intro-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "visual"
      "body";
    gap: 28px;
  }

  .intro-band-expanded .intro-heading {
    max-width: 860px;
  }

  .intro-band-expanded .intro-visual {
    min-height: clamp(400px, 54vw, 520px);
  }

  .intro-band-expanded .intro-body {
    width: min(100%, 760px);
    justify-self: center;
  }

  .board-section {
    grid-template-areas:
      "copy"
      "media"
      "roster";
  }

  .policy-card {
    position: static;
  }

  .support-visual {
    grid-template-columns: 1fr;
  }

  .campaign-photo {
    min-height: 0;
  }

  .campaign-photo img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .campaign-panel h2 {
    max-width: 760px;
  }

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

  .campaign-stages article {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .purpose-media,
  .purpose-media img {
    min-height: 380px;
    height: 420px;
  }

  .building-collage {
    min-height: 360px;
  }

  .building-collage-main {
    height: 320px;
  }

  .gift-copy h2 {
    max-width: 760px;
  }

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

  .sponsor-story h2 {
    max-width: 760px;
  }

  .final-cta-media {
    min-height: 390px;
  }

  .future-section .container {
    width: min(100% - 44px, 1160px);
  }

  .future-layout {
    gap: 24px;
  }

  .future-visual {
    min-height: 0;
  }

  .future-copy {
    align-content: start;
  }

  .future-copy h2 {
    max-width: 760px;
  }
}

@media (max-width: 680px) {
  .building-history-clips-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .building-history-clips-heading h3 {
    font-size: clamp(1.65rem, 8vw, 2.25rem);
  }

  .dream-next-step-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .dream-next-step h2 {
    font-size: clamp(1.9rem, 9vw, 2.5rem);
  }

  .dream-next-step .text-link {
    justify-self: start;
    white-space: normal;
  }

  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .container {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand {
    width: 166px;
  }

  .hero {
    min-height: min(650px, 68svh);
  }

  .hero-content {
    width: min(100% - 28px, 760px);
    padding: 92px 0 36px;
  }

  .hero-home img,
  .hero-journey img {
    object-position: center 32%;
  }

  .hero-content h1 {
    font-size: clamp(2.15rem, 9.8vw, 3.05rem);
    line-height: 0.98;
  }

  .hero-content p:not(.eyebrow) {
    margin: 14px 0 18px;
    font-size: 0.98rem;
  }

  .hero .button-row,
  .hero-content .button {
    width: 100%;
    max-width: 340px;
  }

  .section {
    padding: 52px 0;
  }

  .section-heading h2,
  .origin-grid h2,
  .ways-copy h2,
  .gift-copy h2,
  .sponsor-story h2,
  .updates-copy h2,
  .future-copy h2,
  .purpose-copy h2,
  .final-cta-card h2,
  .cta-panel h2 {
    font-size: clamp(1.8rem, 8vw, 2.45rem);
    line-height: 1.05;
  }

  .campaign-section {
    padding: 46px 0;
  }

  .campaign-section .container {
    width: min(100% - 28px, 1160px);
  }

  .campaign-dashboard {
    background: transparent;
    border: 0;
    box-shadow: none;
    gap: 12px;
    padding: 0;
  }

  .campaign-panel {
    gap: 14px;
    padding: 20px;
    border: 1px solid var(--line);
    box-shadow: 0 14px 34px rgba(38, 50, 71, 0.12);
  }

  .campaign-panel h2 {
    font-size: clamp(1.9rem, 8.8vw, 2.65rem);
    line-height: 1.03;
  }

  .campaign-meter {
    padding: 13px;
  }

  .meter-labels {
    font-size: 0.78rem;
  }

  .intro-visual,
  .intro-band-expanded .intro-visual {
    min-height: 0;
    background: var(--paper);
    border: 1px solid var(--line);
  }

  .intro-band-expanded .intro-heading h2 {
    font-size: 2.15rem;
  }

  .intro-visual img {
    display: block;
    height: auto;
    min-height: 0;
    aspect-ratio: 3 / 2;
  }

  .intro-visual figcaption {
    position: static;
    padding: 14px 16px 16px;
    color: var(--ink);
    background:
      linear-gradient(135deg, rgba(241, 200, 76, 0.18), rgba(255, 255, 255, 0.96)),
      var(--paper);
    border: 0;
    border-radius: 0;
    backdrop-filter: none;
  }

  .intro-visual strong {
    max-width: none;
    color: var(--ink);
  }

  .future-section .container {
    width: min(100% - 28px, 1160px);
  }

  .future-visual {
    min-height: 0;
  }

  .future-visual figcaption {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 12px;
  }

  .future-copy {
    gap: 14px;
  }

  .future-copy h2 {
    font-size: clamp(1.8rem, 8vw, 2.45rem);
    line-height: 1.05;
  }

  .future-tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .future-tags span {
    min-height: 58px;
    padding: 10px;
    font-size: clamp(0.86rem, 3.6vw, 0.98rem);
  }

  .future-tags span::before {
    width: 8px;
    height: 8px;
    margin-right: 8px;
    box-shadow: 0 0 0 4px rgba(91, 194, 158, 0.16);
  }

  .future-copy .dream-builder {
    padding: 18px;
  }

  .policy-hero {
    padding: 108px 0 8px;
  }

  .contact-hero {
    min-height: 590px;
  }

  .contact-hero > img {
    object-position: center center;
  }

  .contact-hero-overlay {
    background:
      linear-gradient(0deg, rgba(21, 29, 43, 0.94) 0%, rgba(21, 29, 43, 0.76) 45%, rgba(21, 29, 43, 0.16) 78%),
      linear-gradient(90deg, rgba(21, 29, 43, 0.34), transparent);
  }

  .contact-hero-content {
    padding-top: 190px;
    padding-bottom: 58px;
  }

  .contact-hero-content h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .contact-photo-label {
    top: 94px;
    right: 14px;
    bottom: auto;
  }

  .contact-options-heading,
  .contact-direct-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-options-heading h2,
  .contact-direct-layout h2 {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

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

  .contact-option-card {
    min-height: 0;
    padding: 24px;
  }

  .contact-option-icon {
    margin-bottom: 22px;
  }

  .policy-header h1 {
    font-size: clamp(2rem, 9.8vw, 3rem);
  }

  .policy-content section {
    padding: 22px 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
  }

  .policy-card {
    padding: 18px;
  }

  .stats-grid,
  .support-grid,
  .visual-rail,
  .program-grid,
  .ways-grid,
  .social-proof,
  .sponsor-grid,
  .exhibit-grid,
  .funding-cards {
    grid-template-columns: 1fr;
  }

  .visual-rail {
    display: flex;
    grid-template-columns: none;
    gap: 8px;
    overflow-x: auto;
    padding: 8px 14px;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
  }

  .visual-rail figure,
  .visual-rail figure:last-child {
    flex: 0 0 min(46vw, 188px);
    width: min(46vw, 188px);
    grid-column: auto;
    scroll-snap-align: start;
  }

  .visual-rail img,
  .visual-rail img:last-child {
    width: 100%;
    height: 96px;
    grid-column: auto;
    scroll-snap-align: start;
  }

  .visual-rail figcaption {
    bottom: 6px;
    left: 6px;
    max-width: calc(100% - 12px);
    padding: 5px 6px;
    font-size: 0.56rem;
  }

  .mobile-quick-actions {
    display: block;
    padding: 14px 0 4px;
    background: var(--paper);
  }

  .mobile-quick-actions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mobile-quick-actions .button {
    min-height: 50px;
    width: 100%;
  }

  .gift-priorities {
    grid-template-columns: 1fr;
  }

  .gift-levels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 12px;
  }

  .gift-level-card,
  .gift-level-major {
    grid-column: auto;
    min-height: 0;
    padding: 14px;
  }

  .gift-level-major {
    grid-column: 1 / -1;
  }

  .gift-level-card h3 {
    font-size: clamp(1.05rem, 4.1vw, 1.28rem);
  }

  .gift-level-card p {
    display: none;
  }

  .gift-amount {
    font-size: clamp(1.75rem, 7vw, 2.3rem);
  }

  .gift-tag {
    min-height: 28px;
    padding: 6px 8px;
    font-size: 0.64rem;
  }

  .gift-detail {
    min-height: 0;
    padding: 10px;
  }

  .gift-donate-link {
    min-height: 44px;
    padding: 10px 11px;
    font-size: 0.86rem;
    line-height: 1.1;
  }

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

  .support-grid.feature-grid article {
    display: grid;
    align-content: start;
    min-height: 122px;
    padding: 14px;
  }

  .support-grid.feature-grid .feature-icon {
    width: 42px;
    min-width: 42px;
    min-height: 42px;
    margin-bottom: 10px;
  }

  .support-grid.feature-grid .feature-icon svg {
    width: 22px;
    height: 22px;
  }

  .support-grid.feature-grid strong {
    font-size: clamp(0.86rem, 3.6vw, 0.96rem);
    line-height: 1.16;
  }

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

  .program-grid > span {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 116px;
    padding: 14px;
  }

  .program-grid .program-icon {
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
  }

  .program-grid .program-icon svg {
    width: 22px;
    height: 22px;
  }

  .program-grid strong {
    font-size: clamp(0.88rem, 3.7vw, 0.98rem);
    line-height: 1.16;
  }

  .program-grid small {
    display: none;
  }

  .ways-section .ways-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ways-section .ways-grid .way-card,
  .ways-section .ways-grid .way-card-primary {
    grid-column: 1 / -1;
    grid-template-columns: 44px minmax(0, 1fr) 30px;
    align-items: center;
    min-height: 0;
    padding: 13px;
  }

  .ways-section .ways-grid .action-icon,
  .ways-section .ways-grid .way-card-primary .action-icon {
    width: 44px;
    min-width: 44px;
    height: 44px;
  }

  .ways-section .way-card-copy {
    padding-right: 0;
  }

  .ways-section .way-card-copy small {
    display: block;
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .ways-section .way-arrow {
    position: static;
    align-self: center;
    justify-self: end;
  }

  .campaign-stages {
    position: relative;
    grid-template-columns: 1fr;
    gap: 8px;
    padding-left: 0;
  }

  .campaign-stages::before {
    content: "";
    display: none;
  }

  .campaign-stages article {
    position: relative;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 8px 12px;
    min-height: 0;
    padding: 12px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-left: 5px solid var(--coral);
    border-radius: var(--radius);
  }

  .campaign-stages article:nth-child(2) {
    border-left-color: var(--orange);
  }

  .campaign-stages article:nth-child(3) {
    border-left-color: var(--mint);
  }

  .campaign-stages span {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin: 0;
    color: var(--paper);
    font-size: 0.76rem;
    letter-spacing: 0;
    background: var(--coral);
    border: 0;
    border-radius: 50%;
  }

  .campaign-stages article:nth-child(2) span {
    background: var(--orange);
  }

  .campaign-stages article:nth-child(3) span {
    background: var(--mint);
  }

  .campaign-stages strong,
  .campaign-stages p {
    grid-column: 2;
    margin: 0;
    padding: 0;
  }

  .campaign-stages strong {
    font-size: 1.15rem;
    line-height: 1.1;
  }

  .campaign-stages p {
    max-width: 250px;
    margin-top: 2px;
    font-size: 0.9rem;
    line-height: 1.3;
  }

  .facebook-card {
    grid-template-columns: 50px minmax(0, 1fr) 38px;
    gap: 12px;
  }

  .facebook-mark {
    width: 50px;
    height: 50px;
  }

  .facebook-arrow {
    grid-column: auto;
    justify-self: end;
  }

  .supporter-board figcaption {
    display: grid;
  }

  .historic-clips {
    grid-template-columns: 1fr;
  }

  .historic-clips img {
    height: 220px;
  }

  .updates-layout-historic-only .historic-clips img {
    height: 220px;
  }

  .spotlight-sponsor-board figcaption {
    grid-template-columns: 1fr;
  }

  .social-proof article {
    min-height: 0;
    padding: 22px;
  }

  .proof-card-top {
    margin-bottom: 20px;
  }

  .proof-icon {
    width: 54px;
    height: 54px;
  }

  .proof-icon svg {
    width: 27px;
    height: 27px;
  }

  .donor-wall-card {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin: -38px 12px 12px;
  }

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

  .sponsor-tier {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
  }

  .sponsor-tier-icon {
    width: 42px;
    height: 42px;
  }

  .funding-cards article {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
  }

  .funding-cards strong {
    font-size: clamp(2rem, 12vw, 2.8rem);
    white-space: normal;
  }

  .timeline {
    padding-left: 24px;
  }

  .timeline::before {
    left: 18px;
  }

  .timeline li {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
  }

  .timeline-dot {
    width: 38px;
    height: 38px;
    margin-left: -24px;
    border-width: 4px;
  }

  .exhibit-grid .image-card,
  .exhibit-grid .image-card:last-child,
  .exhibit-grid .image-card:nth-last-child(-n + 2) {
    grid-column: span 1;
  }

  .exhibit-grid .image-card:last-child img,
  .exhibit-grid .image-card:nth-last-child(-n + 2) img {
    aspect-ratio: 4 / 3;
  }

  .building-collage {
    min-height: auto;
    padding-bottom: 0;
  }

  .building-collage-main {
    height: 270px;
  }

  .building-collage-inset {
    position: relative;
    bottom: auto;
    left: auto;
    width: 52%;
    margin-top: -54px;
    margin-left: 16px;
  }

  .building-collage-label {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 32px);
    margin: -54px 16px 0 auto;
    padding: 16px;
  }

  .support-visual img {
    height: 230px;
  }

  .campaign-photo {
    min-height: 0;
  }

  .campaign-photo img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .purpose-media,
  .purpose-media img {
    min-height: 310px;
    height: 330px;
  }

  .purpose-copy h2 {
    font-size: clamp(1.8rem, 8vw, 2.45rem);
    line-height: 1.05;
  }

  .purpose-statements article {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }

  .purpose-statements p {
    font-size: 1.02rem;
  }

  .purpose-steps {
    margin-bottom: 42px;
  }

  .board-roster {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .board-roster article {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 8px;
    min-height: auto;
    padding: 13px;
  }

  .board-media {
    min-height: 330px;
  }

  .board-roster span {
    font-size: 0.64rem;
    line-height: 1.15;
  }

  .board-roster strong {
    font-size: 0.96rem;
  }

  .meter-labels {
    display: grid;
  }

  .stat-card,
  .support-grid article,
  .sponsor-grid article {
    min-height: auto;
  }

  .final-cta {
    padding: 42px 0 54px;
  }

  .final-cta-media {
    min-height: 300px;
  }

  .final-cta-media strong {
    font-size: clamp(1.75rem, 9vw, 2.7rem);
  }

  .final-cta-card {
    padding: 24px;
  }

  .final-cta-card h2 {
    font-size: clamp(1.85rem, 8.5vw, 2.55rem);
  }

  .final-cta-actions,
  .final-cta-roadmap {
    grid-template-columns: 1fr;
  }

  .final-action {
    grid-template-columns: 48px minmax(0, 1fr);
    min-height: 76px;
    padding: 13px;
  }

  .final-action-icon {
    width: 48px;
    height: 48px;
  }

  .final-cta-roadmap span {
    min-height: auto;
    padding: 13px 15px;
  }

  .cta-panel {
    padding: 28px;
  }

  .cta-panel.final-cta-card {
    padding: 24px;
  }

  .sticky-donate {
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: auto;
    min-height: 48px;
    padding: 0 16px 0 13px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .gift-levels {
    grid-template-columns: 1fr;
  }

  .gift-level-card,
  .gift-level-major {
    grid-column: 1 / -1;
  }
}

/* Journey page: keep contrast behind copy while exposing more of the photography. */
body[data-page="journey"] .hero-overlay {
  background:
    linear-gradient(90deg, rgba(21, 29, 43, 0.66) 0%, rgba(21, 29, 43, 0.62) 42%, rgba(21, 29, 43, 0.38) 64%, rgba(21, 29, 43, 0.05) 100%),
    linear-gradient(0deg, rgba(21, 29, 43, 0.28) 0%, rgba(21, 29, 43, 0.06) 52%, rgba(21, 29, 43, 0) 76%);
}

body[data-page="journey"] .hero-content h1,
body[data-page="journey"] .hero-content p {
  text-shadow: 0 3px 20px rgba(8, 14, 24, 0.82);
}

body[data-page="journey"] .visual-rail {
  background: #e7f0fb;
}

body[data-page="journey"] .final-cta {
  background:
    linear-gradient(135deg, rgba(164, 203, 230, 0.42), rgba(255, 255, 255, 0.18) 44%, rgba(129, 190, 166, 0.2)),
    #f8fbfd;
}

body[data-page="journey"] .final-cta-card {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(164, 203, 230, 0.34), rgba(255, 255, 255, 0.96) 52%, rgba(129, 190, 166, 0.16)),
    var(--paper);
  border-color: rgba(38, 50, 71, 0.12);
  box-shadow: 0 24px 70px rgba(38, 50, 71, 0.16);
}

body[data-page="journey"] .final-cta-card h2 {
  color: var(--ink);
}

body[data-page="journey"] .final-cta-card p,
body[data-page="journey"] .final-cta-card .eyebrow {
  color: var(--muted);
}

body[data-page="journey"] .final-cta-card .eyebrow {
  color: var(--label-blue);
}

body[data-page="journey"] .final-action:not(.final-action-primary) {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(38, 50, 71, 0.14);
}

body[data-page="journey"] .final-action:not(.final-action-primary):hover {
  background: var(--paper);
  border-color: rgba(38, 50, 71, 0.28);
}

body[data-page="journey"] .final-action:not(.final-action-primary) small,
body[data-page="journey"] .final-cta-roadmap small {
  color: var(--muted);
}

body[data-page="journey"] .final-cta-roadmap {
  background: rgba(66, 105, 156, 0.12);
  border-color: rgba(38, 50, 71, 0.14);
}

body[data-page="journey"] .final-cta-roadmap span {
  background: rgba(255, 255, 255, 0.72);
}

body[data-page="journey"] .final-cta-roadmap strong {
  color: var(--label-blue);
}

@media (max-width: 680px) {
  body[data-page="journey"] .hero-overlay {
    background:
      linear-gradient(180deg, rgba(21, 29, 43, 0.03) 0%, rgba(21, 29, 43, 0.12) 26%, rgba(21, 29, 43, 0.64) 51%, rgba(21, 29, 43, 0.72) 100%),
      linear-gradient(90deg, rgba(21, 29, 43, 0.32), rgba(21, 29, 43, 0.08));
  }
}
