:root {
  --ink: #28324d;
  --muted: #657189;
  --paper: #fff8ea;
  --paper-deep: #ffeec8;
  --white: #ffffff;
  --sun: #ffd84d;
  --sun-soft: #fff2aa;
  --coral: #ff6b5f;
  --coral-dark: #e84d44;
  --sky: #7ed4ff;
  --sky-soft: #def6ff;
  --mint: #8be6ba;
  --mint-soft: #dcf8e8;
  --grass: #43b66f;
  --blue: #2772d8;
  --grape: #7057d8;
  --crayon: #f27c38;
  --line: rgba(40, 50, 77, 0.16);
  --shadow: 0 18px 52px rgba(40, 50, 77, 0.16);
  --max-width: 1180px;
  --header-height: 78px;
  font-family: "Trebuchet MS", "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fffdf6 0%, var(--paper) 55%, #fffdf6 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

.skip-link:focus {
  z-index: 20;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 48px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  color: var(--ink);
  background: rgba(255, 253, 246, 0.96);
  box-shadow: 0 10px 34px rgba(40, 50, 77, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  position: relative;
  min-width: 260px;
  max-width: min(520px, calc(100vw - 128px));
  min-height: 46px;
  padding-left: 58px;
  text-decoration: none;
}

.brand::before,
.brand::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.brand::before {
  width: 44px;
  height: 44px;
  background:
    linear-gradient(135deg, var(--sun) 0 52%, var(--sky) 52% 100%);
  border: 3px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(40, 50, 77, 0.16);
}

.brand::after {
  left: 14px;
  width: 18px;
  height: 18px;
  background: var(--coral);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  transform: translateY(-48%) rotate(12deg);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.2;
}

.brand strong {
  font-size: 0.98rem;
  font-weight: 900;
}

.brand small {
  color: currentColor;
  opacity: 0.82;
  font-size: 0.78rem;
}

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

.primary-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
  font-size: 0.9rem;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  outline: none;
}

.site-header.is-scrolled .primary-nav a:hover,
.site-header.is-scrolled .primary-nav a:focus-visible,
.site-header.menu-active .primary-nav a:hover,
.site-header.menu-active .primary-nav a:focus-visible {
  background: var(--sun-soft);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  color: currentColor;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid currentColor;
  border-radius: 8px;
}

.menu-line {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
}

.hero {
  position: relative;
  isolation: isolate;
  --hero-shift: 0px;
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 62px) clamp(18px, 5vw, 68px) 142px;
  overflow: hidden;
  color: var(--white);
  background: var(--blue);
}

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

.hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, var(--hero-shift), 0) scale(1.08);
  transform-origin: center;
  will-change: transform;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(31, 38, 65, 0.88), rgba(39, 114, 216, 0.52) 44%, rgba(255, 216, 77, 0.12) 78%),
    linear-gradient(0deg, rgba(40, 50, 77, 0.42), rgba(40, 50, 77, 0.08));
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -8vw;
  bottom: -60px;
  left: -8vw;
  height: 124px;
  background: var(--paper);
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
  box-shadow: 0 -22px 46px rgba(40, 50, 77, 0.08);
}

.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  display: block;
}

.shape-circle {
  top: 19%;
  left: 51%;
  width: 78px;
  height: 78px;
  border: 14px solid var(--sun);
  border-radius: 50%;
  opacity: 0.92;
}

.shape-triangle {
  right: 10%;
  top: 18%;
  width: 66px;
  height: 58px;
  background: var(--mint);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  transform: rotate(17deg);
  opacity: 0.9;
}

.shape-square {
  right: 28%;
  bottom: 25%;
  width: 42px;
  height: 42px;
  background: var(--coral);
  border: 6px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  transform: rotate(-13deg);
  opacity: 0.9;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(690px, 100%);
  text-shadow: 0 3px 22px rgba(20, 27, 44, 0.44);
}

.hero-character-wrap {
  position: absolute;
  z-index: 2;
  right: clamp(10px, 5vw, 76px);
  bottom: 104px;
  width: clamp(220px, 27vw, 410px);
  pointer-events: none;
  animation: float-kid 4.8s ease-in-out infinite;
}

.hero-character {
  width: 100%;
  filter: drop-shadow(0 26px 30px rgba(20, 27, 44, 0.24));
}

@keyframes float-kid {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-1deg);
  }

  50% {
    transform: translate3d(0, -14px, 0) rotate(1.5deg);
  }
}

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

.hero .eyebrow {
  display: inline-flex;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--sun);
  border-radius: 999px;
  text-shadow: none;
  box-shadow: 0 12px 22px rgba(40, 50, 77, 0.18);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: 5.4rem;
  line-height: 0.95;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: 3.35rem;
  line-height: 1.03;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 640px;
  margin-bottom: 28px;
  font-size: 1.28rem;
}

.hero-actions,
.donate-layout .button {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 19px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 900;
  line-height: 1.2;
  box-shadow: 0 12px 24px rgba(40, 50, 77, 0.16);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: 3px solid rgba(255, 216, 77, 0.58);
  outline-offset: 2px;
}

.button-primary {
  color: var(--white);
  background: var(--coral);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--coral-dark);
}

.button-secondary {
  color: var(--ink);
  background: var(--sun);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: #ffe073;
}

.impact-strip {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 5vw, 68px);
  bottom: 26px;
  left: clamp(18px, 5vw, 68px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.impact-strip div {
  min-height: 108px;
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(40, 50, 77, 0.16);
  backdrop-filter: blur(10px);
}

.impact-strip div:nth-child(1) {
  border-bottom: 7px solid var(--sun);
}

.impact-strip div:nth-child(2) {
  border-bottom: 7px solid var(--mint);
}

.impact-strip div:nth-child(3) {
  border-bottom: 7px solid var(--coral);
}

.impact-strip dt {
  font-size: 1.55rem;
  line-height: 1;
  font-weight: 950;
}

.impact-strip dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  position: relative;
  padding: clamp(64px, 9vw, 112px) clamp(18px, 5vw, 68px);
  overflow: hidden;
}

.section-inner {
  position: relative;
  width: min(var(--max-width), 100%);
  margin: 0 auto;
}

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

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading.compact {
  margin-bottom: 24px;
}

.split-layout,
.donate-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
}

.section-care {
  background:
    linear-gradient(90deg, rgba(255, 216, 77, 0.12) 0 18%, transparent 18% 100%),
    var(--white);
}

.section-care::before {
  content: "";
  position: absolute;
  right: clamp(18px, 6vw, 90px);
  top: 70px;
  width: 96px;
  height: 96px;
  border: 16px solid var(--sky);
  border-radius: 50%;
  opacity: 0.55;
}

.section-care p {
  color: var(--muted);
  font-size: 1.06rem;
}

.check-list,
.donation-list,
.needs-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.check-list li,
.donation-list li,
.needs-list li {
  position: relative;
  padding-left: 32px;
}

.check-list li + li,
.donation-list li + li {
  margin-top: 12px;
}

.check-list li::before,
.donation-list li::before,
.needs-list li::before {
  content: "";
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 14px;
  height: 14px;
  background: var(--sun);
  border: 3px solid var(--mint);
  border-radius: 50%;
}

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

.media-panel::before {
  content: "";
  position: absolute;
  z-index: 0;
  right: -18px;
  top: -18px;
  width: 88px;
  height: 78px;
  background: var(--sun);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  transform: rotate(18deg);
}

.media-panel img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 8px solid var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.media-panel figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.section-programs {
  background:
    linear-gradient(180deg, var(--sky-soft), #fff7df);
}

.section-programs::before,
.section-team::before,
.section-legal::before {
  content: "";
  position: absolute;
  left: -42px;
  top: 58px;
  width: 112px;
  height: 112px;
  border: 18px solid var(--coral);
  border-radius: 50%;
  opacity: 0.38;
}

.program-grid,
.team-grid,
.legal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.program-card,
.team-card,
.legal-card {
  position: relative;
  min-height: 220px;
  padding: 24px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(40, 50, 77, 0.08);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.program-card::before,
.team-card::before,
.legal-card::before {
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  background: var(--sun);
  border-radius: 50%;
  box-shadow: inset -10px -10px 0 rgba(255, 255, 255, 0.38);
}

.program-card:nth-child(2)::before,
.team-card:nth-child(2)::before,
.legal-card:nth-child(2)::before {
  background: var(--mint);
  border-radius: 8px;
  transform: rotate(10deg);
}

.program-card:nth-child(3)::before,
.team-card:nth-child(3)::before,
.legal-card:nth-child(3)::before {
  background: var(--sky);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  border-radius: 0;
  box-shadow: none;
}

.program-card:nth-child(4)::before,
.team-card:nth-child(4)::before,
.legal-card:nth-child(4)::before {
  background: var(--coral);
  border-radius: 50%;
}

.program-card:hover,
.team-card:hover,
.legal-card:hover {
  border-color: rgba(39, 114, 216, 0.28);
  box-shadow: 0 20px 46px rgba(40, 50, 77, 0.12);
  transform: translateY(-4px) rotate(-0.35deg);
}

.program-card h3,
.team-card h3,
.legal-card h3 {
  color: var(--blue);
}

.program-card p,
.team-card p,
.legal-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.section-needs {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(39, 114, 216, 0.98), rgba(67, 182, 111, 0.96) 62%, rgba(242, 124, 56, 0.94));
}

.section-needs::after {
  content: "";
  position: absolute;
  right: 8%;
  top: 70px;
  width: 80px;
  height: 70px;
  background: var(--sun);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  transform: rotate(-20deg);
  opacity: 0.55;
}

.section-needs .eyebrow {
  color: var(--sun);
}

.section-needs .section-heading p {
  color: rgba(255, 255, 255, 0.82);
}

.needs-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.needs-list li {
  min-height: 90px;
  padding: 18px 18px 18px 48px;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  backdrop-filter: blur(8px);
}

.needs-list li::before {
  top: 23px;
  left: 18px;
  background: var(--sun);
  border-color: rgba(255, 255, 255, 0.34);
}

.section-team {
  background: var(--paper);
}

.team-card {
  min-height: 250px;
}

.team-number {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--sun-soft);
  border-radius: 999px;
  font-weight: 950;
  font-size: 0.9rem;
}

.section-family {
  background:
    linear-gradient(180deg, var(--white), var(--mint-soft));
}

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

.timeline-item {
  position: relative;
  padding: 26px 20px 0 0;
  border-top: 4px solid var(--blue);
}

.timeline-item:nth-child(2) {
  border-top-color: var(--coral);
}

.timeline-item:nth-child(3) {
  border-top-color: var(--grass);
}

.timeline-item span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 16px;
  color: var(--ink);
  background: var(--sun);
  border-radius: 50%;
  font-weight: 950;
}

.timeline-item p {
  color: var(--muted);
}

.section-donate {
  color: var(--white);
  background:
    linear-gradient(135deg, var(--blue), var(--grass) 58%, var(--crayon));
}

.section-donate::before {
  content: "";
  position: absolute;
  left: 8%;
  bottom: 52px;
  width: 58px;
  height: 58px;
  background: var(--sun);
  border: 8px solid rgba(255, 255, 255, 0.46);
  border-radius: 8px;
  transform: rotate(16deg);
  opacity: 0.7;
}

.section-donate .eyebrow {
  color: var(--sun);
}

.donate-layout {
  align-items: start;
}

.donate-layout p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
}

.donation-list {
  margin-top: 0;
  padding: 28px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.donation-list li::before {
  background: var(--coral);
  border-color: var(--sun-soft);
}

.section-legal {
  background:
    linear-gradient(180deg, #fffdf6, var(--paper));
}

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

.legal-card {
  min-height: 210px;
}

.compliance-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.compliance-bar span {
  padding: 16px;
  background: var(--white);
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.section-contact {
  background: var(--white);
}

.contact-layout {
  align-items: start;
}

.contact-layout p,
address {
  color: var(--muted);
}

address {
  font-style: normal;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(39, 114, 216, 0.24);
  border-color: var(--blue);
}

.full-span,
.flash-stack {
  grid-column: 1 / -1;
}

.flash-stack {
  display: grid;
  gap: 8px;
}

.flash {
  margin: 0;
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 800;
}

.flash-success {
  color: #164d35;
  background: var(--mint-soft);
}

.flash-error {
  color: #7a241d;
  background: #ffe0dc;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 68px);
  color: var(--white);
  background: #24304c;
}

.site-footer p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

html.js [data-reveal] {
  --reveal-x: 0;
  --reveal-y: 34px;
  --reveal-scale: 0.98;
  --reveal-rotate: 0deg;
  --reveal-delay: 0ms;
  opacity: 0;
  filter: blur(8px);
  transform:
    translate3d(var(--reveal-x), var(--reveal-y), 0)
    scale(var(--reveal-scale))
    rotate(var(--reveal-rotate));
  transition:
    opacity 720ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 720ms ease,
    transform 880ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay);
  will-change: opacity, filter, transform;
}

html.js [data-reveal="left"] {
  --reveal-x: -64px;
  --reveal-y: 18px;
}

html.js [data-reveal="right"] {
  --reveal-x: 64px;
  --reveal-y: 18px;
}

html.js [data-reveal="rise"] {
  --reveal-y: 58px;
  --reveal-scale: 0.96;
}

html.js [data-reveal="zoom"] {
  --reveal-y: 22px;
  --reveal-scale: 0.9;
}

html.js [data-reveal="tilt-left"] {
  --reveal-x: -46px;
  --reveal-y: 24px;
  --reveal-scale: 0.94;
  --reveal-rotate: -2.4deg;
}

html.js [data-reveal="tilt-right"] {
  --reveal-x: 46px;
  --reveal-y: 24px;
  --reveal-scale: 0.94;
  --reveal-rotate: 2.4deg;
}

html.js [data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
}

html.js .program-card[data-reveal].is-visible:hover,
html.js .team-card[data-reveal].is-visible:hover,
html.js .legal-card[data-reveal].is-visible:hover {
  transform: translate3d(0, -4px, 0) rotate(-0.35deg);
}

@media (max-width: 1120px) {
  h1 {
    font-size: 4.6rem;
  }

  h2 {
    font-size: 2.8rem;
  }

  .hero-character-wrap {
    right: -12px;
    width: 285px;
  }

  .program-grid,
  .team-grid,
  .needs-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .hero {
    min-height: 94vh;
  }

  .hero-content {
    width: min(620px, 100%);
  }

  .hero-character-wrap {
    right: -48px;
    bottom: 126px;
    width: 230px;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 68px;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    top: 68px;
    right: 14px;
    left: 14px;
    display: none;
    grid-template-columns: 1fr;
    padding: 12px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav a {
    color: var(--ink);
  }

  .hero {
    padding-bottom: 192px;
  }

  .impact-strip,
  .split-layout,
  .donate-layout,
  .contact-layout,
  .timeline {
    grid-template-columns: 1fr;
  }

  .impact-strip {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .impact-strip div {
    min-height: 0;
    padding: 14px;
  }

  .media-panel img {
    aspect-ratio: 16 / 11;
  }
}

@media (max-width: 620px) {
  :root {
    --header-height: 68px;
  }

  .brand {
    min-width: 0;
    max-width: calc(100vw - 112px);
    padding-left: 50px;
  }

  .brand::before {
    width: 38px;
    height: 38px;
  }

  .brand::after {
    left: 12px;
    width: 16px;
    height: 16px;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 100vh;
    padding-top: 112px;
    padding-right: 23px;
    padding-bottom: 58px;
    padding-left: 23px;
    align-items: start;
  }

  .hero-content {
    justify-self: start;
    width: min(100%, 360px);
    max-width: 360px;
    inline-size: min(100%, 360px);
    max-inline-size: 360px;
  }

  .hero-actions {
    flex-direction: column;
    width: min(100%, 360px);
    max-width: 360px;
  }

  .hero .button {
    width: min(100%, 360px);
    max-width: 360px;
  }

  .hero-character-wrap {
    right: -58px;
    bottom: 128px;
    width: 178px;
    opacity: 0.74;
  }

  .impact-strip {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: min(100%, 360px);
    max-width: 360px;
    margin-top: 26px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .hero-lede {
    max-width: 100%;
    font-size: 1.1rem;
    overflow-wrap: break-word;
  }

  .hero-actions,
  .button,
  .site-footer {
    width: 100%;
  }

  .hero .hero-actions,
  .hero .button,
  .hero .impact-strip {
    width: min(100%, 360px);
    max-width: 360px;
  }

  .button {
    min-height: 50px;
  }

  .shape-circle,
  .shape-triangle,
  .shape-square {
    opacity: 0.44;
  }

  .program-grid,
  .team-grid,
  .needs-list,
  .legal-grid,
  .compliance-bar,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .program-card,
  .team-card,
  .legal-card {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 2.5rem;
  }

  .hero-character-wrap {
    display: none;
  }
}

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

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

  html.js [data-reveal] {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }

  .program-card:hover,
  .team-card:hover,
  .legal-card:hover,
  html.js .program-card[data-reveal].is-visible:hover,
  html.js .team-card[data-reveal].is-visible:hover,
  html.js .legal-card[data-reveal].is-visible:hover {
    transform: none;
  }
}
