:root {
  --navy: #071525;
  --navy-2: #0b2036;
  --teal: #70d8cb;
  --orange: #f26022;
  --paper: #f6f3ec;
  --muted: #8ea0b5;
  --text: #102033;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--text);
  overflow-x: hidden;
}

.site-nav {
  position: fixed;
  top: 12px;
  left: 50%;
  z-index: 999;
  width: min(1040px, calc(100vw - 24px));
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 10px 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(4, 12, 22, 0.82);
  color: white;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(22px) saturate(1.25);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
  opacity: 1;
  transform: translate(-50%, 0);
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.site-nav.visible {
  background: rgba(4, 12, 22, 0.88);
}

.site-nav-brand,
.site-nav-links a,
.footer-links a {
  color: inherit;
  text-decoration: none;
}

.site-nav-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 38px;
  flex: 0 0 auto;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.site-nav-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  max-width: 720px;
  opacity: 1;
  overflow: hidden;
  transition: opacity 180ms ease;
}

.site-nav-links a {
  padding: 11px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 750;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav-links a:hover,
.site-nav-links a:focus-visible {
  background: rgba(255, 255, 255, 0.09);
  color: white;
  outline: none;
}

.site-nav-links .nav-donate {
  background: var(--teal);
  color: var(--navy);
}

.site-nav-links .nav-donate:hover,
.site-nav-links .nav-donate:focus-visible,
.site-nav-links .nav-donate[aria-current="page"] {
  background: white;
  color: var(--navy);
}

.section-nav {
  position: fixed;
  right: 18px;
  top: 50%;
  z-index: 998;
  display: grid;
  gap: 8px;
  padding: 14px 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(5, 11, 20, 0.58);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform: translateY(-50%);
}

.section-marker {
  position: relative;
  width: 46px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-decoration: none;
}

.section-marker::after {
  content: "";
  width: 40px;
  height: 4px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 1px 12px rgba(5, 11, 20, 0.22);
  transition: width 180ms ease, height 180ms ease, background 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.section-marker span {
  position: absolute;
  right: 30px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(6, 17, 31, 0.68);
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(6px);
  pointer-events: none;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.section-marker:hover span,
.section-marker:focus-visible span {
  opacity: 1;
  transform: translateX(0);
}

.section-marker.active::after {
  width: 46px;
  height: 5px;
  background: var(--teal);
  box-shadow: 0 0 22px rgba(112, 216, 203, 0.32);
}

.hero-sequence {
  height: 220vh;
  position: relative;
  background: #050b14;
}

.hero-sticky {
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  position: sticky;
  top: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #050b14;
}

.hero-video,
.video-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.1s linear, transform 0.1s linear;
}

.video-overlay {
  background:
    radial-gradient(circle at 72% 28%, rgba(112,216,203,0.12), transparent 34%),
    linear-gradient(90deg, rgba(7,21,37,0.32), rgba(7,21,37,0.10), rgba(7,21,37,0.02)),
    linear-gradient(0deg, rgba(7,21,37,0.46), transparent 44%, rgba(7,21,37,0.06));
  opacity: 0;
  transition: opacity 0.1s linear;
}

.intro-title {
  position: relative;
  z-index: 3;
  width: min(1120px, calc(100vw - 56px));
  text-align: center;
  transition: opacity 0.1s linear, transform 0.1s linear, filter 0.1s linear;
}

.intro-logo {
  display: block;
  width: clamp(132px, 16vw, 230px);
  height: auto;
  margin: 0 auto clamp(36px, 5vh, 58px);
  filter: drop-shadow(0 18px 42px rgba(0, 0, 0, 0.34));
}

.intro-title h1 {
  margin: 0 auto;
  color: white;
  font-size: clamp(54px, 8vw, 118px);
  line-height: 0.92;
  letter-spacing: -0.078em;
  max-width: 1050px;
}

.intro-title h1 span {
  display: block;
  color: var(--teal);
}

.eyebrow,
.kicker {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 800;
  color: var(--teal);
}

.video-title {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 82px;
  width: min(820px, calc(100vw - 44px));
  max-width: 820px;
  text-align: center;
  opacity: 0;
  transform: translate(-50%, 22px);
  transition: opacity 0.1s linear, transform 0.1s linear;
  color: white;
}

.video-title p:last-child {
  margin: 0;
  font-size: clamp(24px, 3.4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 760;
  text-shadow: 0 12px 40px rgba(0,0,0,0.38);
}

.sound-toggle {
  position: absolute;
  right: 32px;
  bottom: 32px;
  z-index: 8;
  height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(7, 21, 37, 0.38);
  color: white;
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
}

.sound-toggle.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sound-toggle:hover {
  background: rgba(7, 21, 37, 0.58);
}

.full-video-toggle {
  position: absolute;
  left: 50%;
  bottom: 92px;
  z-index: 8;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(7, 21, 37, 0.42);
  color: white;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  opacity: 0;
  transform: translate(-50%, 10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
}

.full-video-toggle.visible {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.full-video-toggle:hover {
  background: rgba(7, 21, 37, 0.62);
}

.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(3, 8, 15, 0.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.video-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.video-lightbox-player {
  width: 100%;
  height: 100%;
  max-width: 100vw;
  max-height: 100dvh;
  object-fit: contain;
  object-position: center center;
  background: black;
}

.video-lightbox-close {
  position: fixed;
  top: max(14px, env(safe-area-inset-top));
  right: max(14px, env(safe-area-inset-right));
  z-index: 1201;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-weight: 850;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

body.video-lightbox-open {
  overflow: hidden;
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 13px;
}

.section-scroll-cue {
  left: 50%;
  transform: translateX(-50%);
}

.section-scroll-cue.dark-cue {
  color: rgba(255, 255, 255, 0.68);
}

.section-scroll-cue.light-cue {
  color: rgba(7, 21, 37, 0.54);
}

.arrow {
  font-size: 24px;
  animation: bounce 1.6s infinite ease-in-out;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.55;
  }

  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}

.story-panel {
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  padding: 100px 48px;
}

.story-panel.dark {
  background: #050b14;
  color: white;
}

.response-panel {
  background: #f6f3ec;
  color: #071525;
}

.story-inner {
  max-width: 980px;
}

.story-inner.centered {
  text-align: center;
  max-width: 1080px;
}

.story-inner h2,
.section-heading h2,
.story-copy h2,
.campaign-copy h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 86px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.story-inner p,
.section-heading p,
.story-copy p,
.campaign-copy p {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
  max-width: 780px;
}

.story-panel.dark .story-inner p {
  color: rgba(255, 255, 255, 0.68);
}

.response-panel .story-inner p {
  color: #5f6d7e;
  margin-left: auto;
  margin-right: auto;
}

.highlights {
  height: 560vh;
  position: relative;
  background: #050b14;
  color: white;
}

.section-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.highlights-sticky {
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  position: sticky;
  top: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 35%, rgba(112,216,203,0.16), transparent 34%),
    #050b14;
}

.highlights-intro,
.highlight-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 100px 48px;
  opacity: 0;
  transform: translateY(32px) scale(0.985);
  filter: blur(4px);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1), filter 1s ease;
}

.highlights-intro {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.highlights-intro h2 {
  margin: 0 auto;
  max-width: 1000px;
  font-size: clamp(54px, 7vw, 112px);
  line-height: 0.94;
  letter-spacing: -0.075em;
}

.highlight-slide {
  max-width: 100%;
}

.highlight-slide > * {
  position: relative;
  z-index: 2;
}

.patients-bg,
.patients-bg-layer,
.frip-bg,
.frip-bg-layer,
.welfare-bg,
.welfare-bg-layer,
.aid-bg,
.aid-bg-layer,
#highlightOne::after,
#highlightTwo::after,
#highlightThree::after,
#highlightFour::after {
  position: absolute;
  inset: 0;
}

.patients-bg,
.frip-bg,
.welfare-bg,
.aid-bg {
  z-index: 0;
  overflow: hidden;
}

.patients-bg-layer,
.frip-bg-layer,
.welfare-bg-layer,
.aid-bg-layer {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: translateZ(0) scale(1.025);
  transition: opacity 1s ease;
  will-change: opacity;
}

.patients-bg-layer.active,
.frip-bg-layer.active,
.welfare-bg-layer.active,
.aid-bg-layer.active {
  opacity: 1;
}

#highlightOne::after,
#highlightTwo::after,
#highlightThree::after,
#highlightFour::after {
  content: "";
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 42%, rgba(5, 11, 20, 0.20), rgba(5, 11, 20, 0.76) 70%),
    linear-gradient(180deg, rgba(5, 11, 20, 0.62), rgba(5, 11, 20, 0.18) 42%, rgba(5, 11, 20, 0.78));
}

.highlight-number {
  display: block;
  font-size: clamp(78px, 14vw, 210px);
  line-height: 0.82;
  letter-spacing: -0.095em;
  font-weight: 850;
  text-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
}

.highlight-slide p {
  margin: 34px auto 0;
  max-width: 760px;
  font-size: clamp(22px, 3vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.045em;
  font-weight: 650;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.55);
}

#highlightOne .highlight-number {
  color: white;
}

#highlightTwo {
  background: #050b14;
  color: white;
}

#highlightThree {
  background: #050b14;
  color: white;
}

#highlightFour {
  background: #050b14;
  color: white;
}

.impact-story {
  padding: 130px 48px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: white;
}

.journey-teaser {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 150px 48px;
  background:
    radial-gradient(circle at 82% 20%, rgba(112, 216, 203, 0.14), transparent 30%),
    linear-gradient(135deg, #06111f, #0a2037 58%, #071525);
  color: white;
}

.journey-teaser::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -120px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(112, 216, 203, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(112, 216, 203, 0.025),
    0 0 0 140px rgba(112, 216, 203, 0.018);
  pointer-events: none;
}

.journey-teaser::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--teal) 38%, var(--orange) 68%, transparent);
  opacity: 0.72;
}

.journey-teaser-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.journey-teaser h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(46px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.journey-teaser-inner > p:not(.kicker) {
  max-width: 780px;
  margin: 30px 0 38px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.6;
}

.journey-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  text-decoration: none;
  font-weight: 850;
  transition: background 180ms ease, transform 180ms ease;
}

.journey-link:hover,
.journey-link:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  outline: none;
  transform: translateY(-2px);
}

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

.journey-page .site-nav-links a[aria-current="page"] {
  background: rgba(112, 216, 203, 0.16);
  color: var(--teal);
}

.journey-hero {
  min-height: 86vh;
  display: flex;
  align-items: flex-end;
  padding: 170px 48px 100px;
  background:
    radial-gradient(circle at 76% 28%, rgba(112, 216, 203, 0.16), transparent 28%),
    radial-gradient(circle at 18% 90%, rgba(242, 96, 34, 0.09), transparent 24%),
    linear-gradient(145deg, #050b14, #0a2037 62%, #071525);
  color: white;
}

.journey-hero-inner,
.timeline-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.journey-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(58px, 9vw, 126px);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.journey-hero-copy {
  max-width: 720px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.45;
}

.timeline-section {
  padding: 140px 48px 160px;
  background: var(--paper);
}

.timeline-heading {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 76px;
}

.timeline-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.timeline-heading p {
  max-width: 620px;
  margin: 0;
  color: #647487;
  font-size: 19px;
  line-height: 1.65;
}

.timeline-list {
  position: relative;
  display: grid;
  gap: 28px;
}

.timeline-list::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 137px;
  width: 1px;
  background: rgba(7, 21, 37, 0.14);
}

.timeline-entry {
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 54px;
  align-items: start;
}

.timeline-year {
  position: sticky;
  top: 100px;
  padding-top: 24px;
  color: var(--orange);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.timeline-year::after {
  content: "";
  position: absolute;
  top: 30px;
  right: -35px;
  width: 11px;
  height: 11px;
  border: 4px solid var(--paper);
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 1px rgba(7, 21, 37, 0.13);
}

.timeline-card {
  padding: clamp(30px, 4vw, 54px);
  border: 1px solid rgba(7, 21, 37, 0.07);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 28px 80px rgba(9, 28, 50, 0.07);
}

.timeline-card-header {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 0.7fr);
  gap: 34px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(7, 21, 37, 0.1);
}

.timeline-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.timeline-theme {
  margin: 0;
  color: #52657a;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.5;
}

.timeline-summary {
  max-width: 850px;
  margin: 30px 0;
  color: #586a7e;
  font-size: 18px;
  line-height: 1.7;
}

.timeline-highlights-label {
  margin: 0 0 15px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.timeline-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline-highlights li {
  position: relative;
  padding: 14px 0 14px 20px;
  border-top: 1px solid rgba(7, 21, 37, 0.08);
  color: #52657a;
  line-height: 1.5;
}

.timeline-highlights li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.timeline-quote {
  margin: 32px 0 0;
  padding: 26px 28px;
  border-left: 3px solid var(--teal);
  background: rgba(112, 216, 203, 0.08);
  color: #31475e;
  font-size: 19px;
  font-style: italic;
  line-height: 1.6;
}

.timeline-legacy {
  margin: 32px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(7, 21, 37, 0.1);
  color: var(--navy);
  font-weight: 760;
  line-height: 1.6;
}

.timeline-legacy span {
  display: block;
  margin-bottom: 7px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.about-page .site-nav-links a[aria-current="page"] {
  background: rgba(112, 216, 203, 0.16);
  color: var(--teal);
}

.about-hero {
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding: 170px 48px 105px;
  background:
    radial-gradient(circle at 77% 24%, rgba(112, 216, 203, 0.16), transparent 29%),
    radial-gradient(circle at 18% 92%, rgba(242, 96, 34, 0.08), transparent 24%),
    linear-gradient(145deg, #050b14, #0a2037 62%, #071525);
  color: white;
}

.about-hero-inner,
.about-section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.about-hero h1 {
  max-width: 1080px;
  margin: 0;
  font-size: clamp(54px, 8.2vw, 116px);
  line-height: 0.91;
  letter-spacing: -0.075em;
}

.about-hero-copy {
  max-width: 800px;
  margin: 36px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(19px, 2.25vw, 28px);
  line-height: 1.5;
}

.about-who {
  padding: 150px 48px;
  background: var(--paper);
}

.about-who-grid {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 70px;
  align-items: start;
}

.about-section-title {
  margin: 0;
  color: var(--navy);
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.about-who-copy > p:first-child {
  margin: 0;
  color: #5a6a7d;
  font-size: clamp(20px, 2.2vw, 27px);
  line-height: 1.65;
}

.about-closing-line {
  margin: 48px 0 0;
  padding: 32px 0 0;
  border-top: 1px solid rgba(7, 21, 37, 0.14);
  color: var(--navy);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 760;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.purpose-section {
  padding: 140px 48px;
  background: white;
}

.purpose-heading,
.work-heading {
  max-width: 760px;
  margin-bottom: 54px;
}

.purpose-heading p,
.work-heading p {
  margin-bottom: 16px;
}

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

.purpose-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: clamp(34px, 4vw, 54px);
  border-radius: 34px;
  background: var(--navy);
  color: white;
  overflow: hidden;
}

.purpose-card:last-child {
  background:
    radial-gradient(circle at 88% 15%, rgba(112, 216, 203, 0.2), transparent 28%),
    var(--navy-2);
}

.purpose-number {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.purpose-card h3 {
  margin: 52px 0 24px;
  font-size: clamp(40px, 5vw, 66px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.purpose-card > p:not(.purpose-support) {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.6;
}

.purpose-support {
  margin: auto 0 0;
  padding-top: 34px;
  color: rgba(255, 255, 255, 0.57);
  line-height: 1.65;
}

.work-section {
  padding: 150px 48px;
  background: var(--paper);
}

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

.work-card {
  min-height: 210px;
  padding: 28px;
  border: 1px solid rgba(7, 21, 37, 0.06);
  border-radius: 28px;
  background: white;
  box-shadow: 0 22px 65px rgba(9, 28, 50, 0.055);
}

.work-card span {
  display: block;
  margin-bottom: 42px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.work-card p {
  margin: 0;
  color: var(--navy);
  font-size: 18px;
  font-weight: 720;
  line-height: 1.45;
}

.work-closing {
  max-width: 820px;
  margin: 52px 0 0;
  color: #5a6a7d;
  font-size: 20px;
  line-height: 1.65;
}

.philosophy-section {
  min-height: 78vh;
  display: grid;
  place-items: center;
  padding: 130px 48px;
  background:
    radial-gradient(circle at 78% 26%, rgba(112, 216, 203, 0.14), transparent 32%),
    #050b14;
  color: white;
}

.philosophy-content {
  max-width: 980px;
}

.philosophy-content h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(52px, 8vw, 108px);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.philosophy-content > p:last-child {
  max-width: 780px;
  margin: 38px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.65;
}

.about-join {
  padding: 150px 48px;
  background: white;
}

.about-join-content {
  max-width: 1000px;
}

.about-join h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(52px, 8vw, 104px);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.about-join-content > p:not(.kicker) {
  max-width: 700px;
  margin: 30px 0 38px;
  color: #5a6a7d;
  font-size: clamp(19px, 2.2vw, 26px);
  line-height: 1.6;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-action {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border: 1px solid rgba(7, 21, 37, 0.14);
  border-radius: 999px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 850;
  transition: transform 180ms ease, background 180ms ease;
}

.about-action.primary {
  border-color: var(--navy);
  background: var(--navy);
  color: white;
}

.about-action:hover,
.about-action:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.about-action:not(.primary):hover,
.about-action:not(.primary):focus-visible {
  background: rgba(7, 21, 37, 0.05);
}

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

.donate-hero {
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  padding: 170px 48px 94px;
  overflow: hidden;
  background:
    radial-gradient(circle at 77% 22%, rgba(112, 216, 203, 0.2), transparent 30%),
    radial-gradient(circle at 18% 90%, rgba(242, 96, 34, 0.1), transparent 25%),
    linear-gradient(145deg, #050b14, #0a2037 62%, #071525);
  color: white;
}

.donate-hero-inner,
.donation-layout {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.donate-hero h1 {
  max-width: 930px;
  margin: 0;
  font-size: clamp(64px, 10vw, 132px);
  line-height: 0.88;
  letter-spacing: -0.078em;
}

.donate-hero-inner > p:last-child {
  max-width: 720px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(20px, 2.4vw, 29px);
  line-height: 1.5;
}

.donation-section {
  padding: 120px 48px 150px;
  background:
    radial-gradient(circle at 6% 18%, rgba(112, 216, 203, 0.08), transparent 21%),
    var(--paper);
}

.donation-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: start;
}

.donation-details,
.donation-form-panel {
  border: 1px solid rgba(7, 21, 37, 0.07);
  border-radius: 34px;
  box-shadow: 0 28px 80px rgba(9, 28, 50, 0.08);
}

.donation-details {
  position: sticky;
  top: 92px;
  padding: clamp(30px, 4vw, 48px);
  background: white;
}

.donation-details h2,
.donation-form-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(39px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.donation-intro {
  margin: 24px 0 30px;
  color: #5f7083;
  font-size: 17px;
  line-height: 1.65;
}

.account-card {
  overflow: hidden;
  border: 1px solid rgba(112, 216, 203, 0.23);
  border-radius: 26px;
  background: var(--navy);
  color: white;
}

.account-card-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.account-card-heading span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.account-card-heading strong {
  color: var(--teal);
}

.account-list {
  margin: 0;
  padding: 4px 24px;
}

.account-list > div {
  padding: 19px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.account-list > div:last-child {
  border-bottom: 0;
}

.account-list dt {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.account-list dd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  color: white;
  font-size: 16px;
  font-weight: 760;
  overflow-wrap: anywhere;
}

.copy-button {
  flex: 0 0 auto;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--teal);
  font: inherit;
  font-size: 11px;
  cursor: pointer;
}

.copy-button:hover,
.copy-button:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  outline: none;
}

.donation-note {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  margin-top: 24px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(112, 216, 203, 0.11);
}

.donation-note > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: var(--navy);
  font-weight: 900;
}

.donation-note p {
  margin: 2px 0 0;
  color: #506377;
  font-size: 14px;
  line-height: 1.55;
}

.donation-form-panel {
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.86);
}

.donation-form-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.donation-form-heading a {
  flex: 0 0 auto;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--navy);
  color: white;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.donation-form-heading a:hover,
.donation-form-heading a:focus-visible {
  background: var(--orange);
  color: white;
  outline: none;
}

.form-signin-note {
  margin: 0 0 22px;
  padding: 15px 18px;
  border-left: 3px solid var(--orange);
  border-radius: 0 14px 14px 0;
  background: rgba(242, 96, 34, 0.07);
  color: #5d6e80;
  font-size: 13px;
  line-height: 1.55;
}

.donation-form {
  display: block;
  width: 100%;
  height: 720px;
  border: 0;
  border-radius: 20px;
  background: #f2f5f7;
}

.placeholder-media {
  min-height: 520px;
  width: 100%;
  border-radius: 34px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.75);
  background:
    linear-gradient(135deg, rgba(112,216,203,0.22), rgba(242,96,34,0.14)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.08), rgba(255,255,255,0.08) 1px, transparent 1px, transparent 18px),
    #12304e;
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.story-photo {
  min-height: 620px;
}

.story-copy p {
  color: #5a6a7d;
}

.mini-metrics {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.mini-metrics div {
  padding: 20px 0;
  border-top: 1px solid #dfe5ea;
}

.mini-metrics strong {
  display: block;
  font-size: 42px;
  letter-spacing: -0.04em;
  color: var(--navy);
}

.mini-metrics span {
  color: #66778a;
}

.campaign {
  padding: 130px 48px;
  position: relative;
  background: var(--navy);
  color: white;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.campaign-copy p {
  color: rgba(255, 255, 255, 0.68);
}

.breakdown {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: grid;
  gap: 14px;
  max-width: 580px;
}

.breakdown li {
  display: flex;
  gap: 18px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.breakdown span {
  color: var(--teal);
  font-weight: 800;
  min-width: 100px;
}

.campaign-card {
  background: white;
  color: var(--navy);
  border-radius: 34px;
  padding: 32px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.campaign-card-top,
.campaign-numbers {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.campaign-card-top strong {
  display: block;
  font-size: 56px;
  letter-spacing: -0.06em;
}

.campaign-card-top span {
  display: block;
  color: #617287;
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.campaign-card-top em {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(242, 96, 34, 0.12);
  color: var(--orange);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.progress-bar {
  height: 14px;
  border-radius: 50px;
  overflow: hidden;
  background: #e6edf0;
  margin: 20px 0 26px;
}

.progress-bar div {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  border-radius: inherit;
}

.campaign-numbers p {
  margin: 0;
}

.campaign-numbers strong,
.campaign-numbers span {
  display: block;
}

.campaign-numbers span {
  color: #728294;
  font-size: 14px;
}

.payment-card {
  margin-top: 30px;
  padding: 18px;
  border: 1px solid rgba(7, 21, 37, 0.08);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(112, 216, 203, 0.12), rgba(255, 255, 255, 0)),
    #f7f9fb;
}

.payment-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.payment-tabs span {
  padding: 9px 12px;
  border-radius: 999px;
  background: white;
  color: #52657a;
  font-size: 12px;
  font-weight: 850;
}

.payment-grid {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
}

.qr-placeholder {
  height: 150px;
  border-radius: 24px;
  background:
    linear-gradient(45deg, #111 25%, transparent 25%),
    linear-gradient(-45deg, #111 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #111 75%),
    linear-gradient(-45deg, transparent 75%, #111 75%);
  background-size: 26px 26px;
  background-position: 0 0, 0 13px, 13px -13px, -13px 0px;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.payment-details span,
.payment-details strong,
.payment-details small {
  display: block;
}

.payment-details span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.payment-details strong {
  margin: 8px 0;
  font-size: 22px;
  line-height: 1.08;
}

.payment-details p {
  margin: 0 0 12px;
  color: #617287;
}

.payment-details small {
  margin-top: 6px;
  color: #748498;
  line-height: 1.4;
}

.campaign-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

.donate-btn {
  flex: 1;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--navy);
  color: white;
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
}

.preview-link {
  color: var(--navy);
  font-weight: 850;
  text-decoration: none;
}

.transparency-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.transparency-panel div {
  padding: 14px;
  border-radius: 18px;
  background: #f3f6f8;
}

.transparency-panel strong,
.transparency-panel span {
  display: block;
}

.transparency-panel strong {
  color: var(--orange);
  font-size: 20px;
}

.transparency-panel span {
  margin-top: 6px;
  color: #617287;
  font-size: 12px;
  line-height: 1.35;
}

.collaborate,
.archive {
  padding: 130px 48px;
  position: relative;
}

.archive {
  z-index: 2;
  margin-top: -34px;
  border-radius: 42px 42px 0 0;
  background:
    radial-gradient(circle at 88% 10%, rgba(112, 216, 203, 0.13), transparent 24%),
    radial-gradient(circle at 8% 92%, rgba(242, 96, 34, 0.06), transparent 22%),
    var(--paper);
  box-shadow: 0 -26px 70px rgba(4, 12, 22, 0.14);
}

.section-heading {
  max-width: 1120px;
  margin: 0 auto 48px;
}

.section-heading h2 {
  color: var(--navy);
  max-width: 900px;
}

.section-heading p {
  color: var(--teal);
}

.collab-grid,
.archive-grid {
  max-width: 1120px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.collab-grid article,
.project-card {
  border: 1px solid rgba(7, 21, 37, 0.055);
  background: white;
  border-radius: 28px;
  padding: 26px;
  min-height: 210px;
  box-shadow: 0 24px 70px rgba(9, 28, 50, 0.07);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), border-color 280ms ease, box-shadow 280ms ease;
}

.project-card:hover {
  border-color: rgba(112, 216, 203, 0.42);
  box-shadow: 0 32px 80px rgba(9, 28, 50, 0.13);
  transform: translateY(-7px);
}

.collab-grid h3,
.project-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
}

.collab-grid p,
.project-card p {
  margin: 0;
  color: #617287;
  line-height: 1.55;
}

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

.project-card span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--orange);
  font-weight: 900;
}

.footer {
  position: relative;
  padding: 62px 48px;
  background:
    radial-gradient(circle at 15% 20%, rgba(112, 216, 203, 0.12), transparent 30%),
    linear-gradient(135deg, #06111f, #081a2e 52%, #050b14);
  color: white;
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) minmax(160px, 0.7fr) minmax(220px, 0.9fr);
  gap: 34px;
  align-items: start;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 48px;
  left: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--teal), rgba(112, 216, 203, 0.08) 48%, var(--orange));
}

.footer-logo {
  display: block;
  width: 108px;
  height: 68px;
  margin-bottom: 22px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 0.96;
}

.footer-brand span {
  display: block;
  color: var(--teal);
  font-weight: 850;
}

.footer-brand p,
.footer-contact p {
  max-width: 440px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.6;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 750;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: white;
  outline: none;
}

.footer-contact span {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 850;
}

.footer-email {
  display: inline-block;
  margin-top: 14px;
  color: var(--teal);
  font-weight: 800;
  line-height: 1.5;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.footer-social {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  text-decoration: none;
}

.footer-social:hover,
.footer-social:focus-visible {
  color: var(--teal);
  outline: none;
}

.footer-meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

@keyframes section-rise {
  from {
    opacity: 0;
    transform: translateY(34px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@supports (animation-timeline: view()) {
  .journey-teaser-inner > *,
  .archive .section-heading,
  .project-card,
  .footer > * {
    animation: section-rise both linear;
    animation-timeline: view();
    animation-range: entry 5% cover 28%;
  }

  .donation-details,
  .donation-form-panel {
    animation: section-rise both linear;
    animation-timeline: view();
    animation-range: entry 5% cover 22%;
  }
}

.footer-email:hover,
.footer-email:focus-visible {
  color: white;
  outline: none;
}

@media (max-width: 900px) {
  .site-nav {
    top: 10px;
    width: calc(100vw - 20px);
    min-height: 48px;
    padding: 6px 7px 6px 12px;
    gap: 8px;
  }

  .site-nav-brand {
    width: 76px;
    height: 34px;
    flex: 0 0 auto;
    padding: 3px 6px;
  }

  .site-nav-links {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .site-nav-links::-webkit-scrollbar {
    display: none;
  }

  .site-nav-links a {
    padding: 10px 10px;
    font-size: 12px;
    white-space: nowrap;
  }

  .section-nav {
    display: none;
  }

  .hero-sequence {
    height: 200vh;
    height: 200svh;
    height: 200dvh;
  }

  .hero-sticky,
  .highlights-sticky {
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    min-height: 100svh;
    min-height: 100dvh;
  }

  .hero-video,
  .video-overlay,
  .patients-bg,
  .patients-bg-layer,
  .frip-bg,
  .frip-bg-layer,
  .welfare-bg,
  .welfare-bg-layer,
  .aid-bg,
  .aid-bg-layer {
    width: 100%;
    height: 100%;
  }

  .hero-video {
    object-fit: cover;
    object-position: center center;
  }

  .intro-title {
    width: min(100% - 36px, 1100px);
  }

  .video-title {
    left: 50%;
    right: auto;
    bottom: 76px;
    transform: translate(-50%, 22px);
  }

  .sound-toggle {
    right: 18px;
    bottom: 22px;
    height: 40px;
    padding: 0 13px;
    font-size: 12px;
  }

  .full-video-toggle {
    display: inline-flex;
    bottom: 78px;
  }

  .highlights {
    height: 540vh;
    height: 540svh;
  }

  .highlights-intro,
  .highlight-slide {
    padding: 86px 18px 72px;
    overflow: hidden;
  }

  .highlights-intro h2 {
    max-width: 92vw;
    font-size: clamp(42px, 14vw, 72px);
    line-height: 0.96;
    letter-spacing: -0.055em;
  }

  .highlight-number {
    max-width: 94vw;
    font-size: clamp(48px, 16vw, 82px);
    line-height: 0.9;
    letter-spacing: -0.06em;
    overflow-wrap: anywhere;
  }

  .highlight-slide p {
    max-width: min(88vw, 420px);
    margin-top: 20px;
    font-size: clamp(18px, 6vw, 26px);
    line-height: 1.16;
    letter-spacing: -0.025em;
  }

  #highlightOne::after,
  #highlightTwo::after,
  #highlightThree::after,
  #highlightFour::after {
    background:
      radial-gradient(circle at 50% 42%, rgba(5, 11, 20, 0.06), rgba(5, 11, 20, 0.38) 72%),
      linear-gradient(180deg, rgba(5, 11, 20, 0.34), rgba(5, 11, 20, 0.08) 44%, rgba(5, 11, 20, 0.46));
  }

  .highlight-number {
    text-shadow: 0 12px 34px rgba(0, 0, 0, 0.78);
  }

  .highlight-slide p {
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.82);
  }

  .impact-story,
  .campaign {
    grid-template-columns: 1fr;
  }

  .payment-grid,
  .transparency-panel {
    grid-template-columns: 1fr;
  }

  .campaign-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .preview-link {
    text-align: center;
  }

  .collab-grid,
  .archive-grid {
    grid-template-columns: 1fr;
  }

  .story-panel,
  .impact-story,
  .journey-teaser,
  .campaign,
  .collaborate,
  .archive {
    padding: 86px 22px;
  }

  .journey-hero {
    min-height: 78vh;
    padding: 150px 22px 76px;
  }

  .about-hero {
    min-height: 82vh;
    padding: 150px 22px 78px;
  }

  .donate-hero {
    min-height: 68vh;
    padding: 150px 22px 76px;
  }

  .donation-section {
    padding: 76px 18px 96px;
  }

  .donation-layout {
    grid-template-columns: 1fr;
  }

  .donation-details {
    position: static;
  }

  .donation-form-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .donation-form {
    height: 760px;
  }

  .about-who,
  .purpose-section,
  .work-section,
  .philosophy-section,
  .about-join {
    padding: 90px 22px;
  }

  .about-who-grid,
  .purpose-grid {
    grid-template-columns: 1fr;
  }

  .about-who-grid {
    gap: 32px;
  }

  .purpose-card {
    min-height: 390px;
    border-radius: 27px;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-card {
    min-height: 170px;
  }

  .philosophy-section {
    min-height: 70vh;
  }

  .about-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .timeline-section {
    padding: 90px 22px 110px;
  }

  .timeline-heading,
  .timeline-card-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .timeline-heading {
    margin-bottom: 48px;
  }

  .timeline-list::before {
    display: none;
  }

  .timeline-entry {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .timeline-year {
    position: static;
    padding: 0 0 0 4px;
  }

  .timeline-year::after {
    display: none;
  }

  .timeline-card {
    border-radius: 26px;
  }

  .timeline-highlights {
    grid-template-columns: 1fr;
  }

  .footer {
    grid-template-columns: 1fr;
    padding: 34px 22px;
  }

  .footer::before {
    right: 22px;
    left: 22px;
  }

  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .archive {
    margin-top: -22px;
    border-radius: 28px 28px 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .journey-teaser-inner > *,
  .archive .section-heading,
  .project-card,
  .footer > * {
    animation: none !important;
  }

  .project-card {
    transition: none;
  }

  .donation-details,
  .donation-form-panel {
    animation: none !important;
  }
}
