:root {
  --bg-1: #effbf5;
  --bg-2: #fff8ef;
  --surface: #ffffff;
  --ink-1: #022f6a;
  --ink-2: #51667b;
  --primary: #004aad;
  --primary-dark: #004aad;
  --accent: #ff8b3d;
  --accent-soft: #ffe4cf;
  --line: #cfe5dd;
  --shadow: 0 12px 28px rgba(13, 53, 45, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  color: var(--ink-1);
  background:
    radial-gradient(1200px 500px at 10% -10%, #d6f7eb 0%, transparent 55%),
    radial-gradient(900px 420px at 100% 0%, #ffe8cc 0%, transparent 55%),
    linear-gradient(180deg, var(--bg-1), var(--bg-2));
  line-height: 1.6;
}

h1,
h2,
h3,
.brand-text {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.15;
  margin-top: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section-pad {
  padding: 5.5rem 0;
}

.form-status {
  position: fixed;
  top: 78px;
  right: 1rem;
  z-index: 150;
  max-width: 360px;
  padding: 0.8rem 1rem;
  border-radius: 0.75rem;
  background: #eaf8f2;
  color: #004aad;
  border: 1px solid var(--ink-1);
  box-shadow: 0 8px 20px rgba(13, 58, 47, 0.15);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.form-status.show {
  opacity: 1;
  transform: translateY(0);
}

.form-status.error {
  background: #fff1ee;
  color: #8c2917;
  border-color: #f1b3a8;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.8rem 1.3rem;
  font-weight: 700;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: #1e1f1d;
}

.btn-primary:hover {
  background: #d46d2f;
}

.btn-secondary {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  background: rgba(255, 255, 255, 0.7);
}

.btn-secondary:hover {
  background: var(--primary);
  color: #f4fbf8;
}

.text-link {
  color: var(--primary);
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(247, 252, 249, 0.88);
  border-bottom: 1px solid rgba(17, 110, 92, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 0;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
}

.brand-mark {
  width: 10rem;
  height: 6rem;
  display: block;
  object-fit: cover;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  font-weight: 600;
}

.main-nav a:hover {
  color: var(--primary);
}

.btn-nav {
  background: var(--primary);
  color: #fff;
  padding: 0.52rem 1rem;
}

.menu-toggle,
.menu-btn {
  display: none;
}

.hero {
  position: relative;
  min-height: 87vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(0, 74, 173, 0.92), rgba(0, 95, 204, 0.72)),
    url("https://images.unsplash.com/photo-1469571486292-b53601020a8a?auto=format&fit=crop&w=1800&q=80")
      center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 8% 15%,
      rgba(138, 188, 255, 0.34),
      transparent 35%
    ),
    radial-gradient(circle at 90% 90%, rgba(89, 159, 255, 0.3), transparent 40%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  padding: 4rem 0;
}

.hero-content {
  color: #effff7;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #d2f6e8;
  margin: 0 0 0.9rem;
}

.hero-kicker::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #f7bc84;
  box-shadow: 0 0 0 4px rgba(247, 188, 132, 0.2);
}

.hero-content h1 {
  font-size: clamp(2.05rem, 5vw, 4.2rem);
  margin-bottom: 1rem;
  max-width: 15.5ch;
}

.hero-content h1 span {
  color: #ffd7ae;
}

.hero-content p {
  max-width: 54ch;
  margin-bottom: 1.1rem;
  color: #d9f0e8;
}

.hero-cta {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-collage {
  position: relative;
  width: min(100%, 510px);
  aspect-ratio: 1 / 1;
}

.hero-collage::before {
  content: "";
  position: absolute;
  inset: 8% 5% 5% 8%;
  border-radius: 28px;
  background: radial-gradient(
    circle at 60% 35%,
    rgba(246, 177, 104, 0.3),
    rgba(44, 152, 126, 0.12)
  );
  filter: blur(10px);
}

.hero-tile {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
  border: 2px solid rgba(250, 255, 252, 0.75);
  box-shadow: 0 18px 30px rgba(4, 31, 26, 0.35);
}

.tile-a {
  background: #07100f;
  padding: 1rem;
}

.hero-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(112%) contrast(104%);
}

.tile-a img {
  object-fit: contain;
  filter: none;
}

.tile-a {
  top: 0;
  left: 8%;
  width: 44%;
  height: 42%;
  transform: rotate(-4deg);
}

.tile-b {
  top: 8%;
  right: 2%;
  width: 42%;
  height: 38%;
  transform: rotate(5deg);
}

.tile-c {
  bottom: 16%;
  left: 0;
  width: 41%;
  height: 40%;
  transform: rotate(3deg);
}

.tile-d {
  right: 8%;
  bottom: 0;
  width: 47%;
  height: 46%;
  transform: rotate(-3deg);
}

.hero-chip {
  position: absolute;
  left: 3%;
  bottom: 6%;
  max-width: 255px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 0.9rem;
  padding: 0.9rem 1rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(4px);
}

.hero-chip h2 {
  font-size: 1.18rem;
  margin-bottom: 0.45rem;
}

.hero-chip p {
  margin: 0 0 0.45rem;
  color: var(--ink-2);
}

.hero-chip strong {
  color: var(--ink-1);
}

.hero-quote {
  position: absolute;
  right: 1%;
  top: 3%;
  width: min(250px, 58%);
  background: rgba(8, 60, 50, 0.74);
  color: #dcf9ee;
  border: 1px solid rgba(145, 214, 190, 0.35);
  border-radius: 0.9rem;
  padding: 0.8rem 0.9rem;
  box-shadow: 0 16px 26px rgba(5, 30, 25, 0.28);
  backdrop-filter: blur(5px);
}

.hero-quote p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
}

.hero-quote h3 {
  margin: 0.5rem 0 0;
  font-size: 0.83rem;
  color: #bbebd9;
  font-weight: 600;
}

.hero-card {
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 1rem;
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  margin-bottom: 0.6rem;
}

.hero-card p {
  color: var(--ink-2);
}

.hero-card-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin: 1.2rem 0;
}

.hero-card-metrics span {
  font-size: 0.83rem;
  color: var(--ink-2);
}

.hero-card-metrics strong {
  display: block;
  font-size: 1.35rem;
}

.stats {
  margin-top: -2rem;
  position: relative;
  z-index: 3;
}

.stats-grid {
  background: var(--surface);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid #e4ece8;
}

.stats-grid article {
  padding: 1rem;
  border-radius: 0.8rem;
  background: linear-gradient(150deg, #ffffff, #f5fbf8);
  border: 1px solid var(--line);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.stats-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(18, 48, 41, 0.1);
}

.stats-grid h3 {
  margin-bottom: 0.35rem;
  font-size: 1.85rem;
  color: var(--primary-dark);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.about,
.programs,
.campaign,
.involved,
.stories,
.events,
.transparency,
.newsletter,
.contact {
  position: relative;
  isolation: isolate;
}

.about {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.35),
    rgba(245, 251, 248, 0.72)
  );
}

.about-points article {
  background: var(--surface);
  border-radius: 0.9rem;
  padding: 1.1rem;
  border: 1px solid var(--line);
  margin-bottom: 0.9rem;
  border-left: 4px solid #086aeb;
}

.about .split-grid > div:first-child p {
  max-width: 58ch;
}

.section-head {
  max-width: 760px;
  margin-bottom: 1.5rem;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  position: relative;
  padding-bottom: 0.45rem;
}

.section-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 68px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #6cc3a6);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.programs {
  background:
    radial-gradient(
      680px 280px at 110% 10%,
      rgba(221, 247, 238, 0.8),
      transparent 65%
    ),
    linear-gradient(180deg, rgba(255, 250, 243, 0.62), rgba(255, 255, 255, 0.8));
}

.program-card,
.help-card,
.story-card,
.event,
.fund-grid article {
  background: var(--surface);
  border-radius: 1rem;
  padding: 1.15rem;
}

.program-card {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.program-card:hover {
  transform: translateY(-5px);
  border-color: #aad8c7;
  box-shadow: 0 14px 30px rgba(17, 53, 46, 0.1);
}

.program-card .text-link::after {
  content: " ->";
  transition: transform 0.2s ease;
  display: inline-block;
}

.program-card:hover .text-link::after {
  transform: translateX(3px);
}

.campaign-wrap {
  background: linear-gradient(120deg, #f6fffb, #fff7f1);
  border-radius: 1rem;
  border: 1px solid #ddeae3;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  box-shadow: 0 14px 32px rgba(15, 50, 42, 0.1);
}

.campaign-progress {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #dce9e3;
  padding: 1rem;
  border-radius: 0.85rem;
}

.donation-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
}

.donation-form input {
  width: 100%;
  border: 1px solid #cfe0d9;
  border-radius: 0.7rem;
  padding: 0.72rem 0.9rem;
  font: inherit;
  color: var(--ink-1);
  background: #fff;
}

.donation-form input:focus {
  outline: none;
  border-color: #022f6a;
  box-shadow: 0 0 0 3px rgba(75, 167, 138, 0.16);
}

.donation-form .btn {
  width: 100%;
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.progress-bar {
  width: 100%;
  background: #ebf1ed;
  border-radius: 999px;
  height: 14px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.progress-bar span {
  display: block;
  width: 78%;
  height: 100%;
  background: linear-gradient(90deg, #0964db, #f0a058);
  animation: fillBar 1.5s ease-out;
}

.help-grid,
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.help-card {
  background: linear-gradient(160deg, #ffffff, #f3faf7);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.help-card:hover {
  transform: translateY(-4px);
  border-color: #9dceb9;
}

.team {
  background: linear-gradient(
    180deg,
    rgba(235, 246, 240, 0.55),
    rgba(255, 250, 243, 0.7)
  );
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(18, 48, 41, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 26px rgba(18, 48, 41, 0.12);
}

.team-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.team-info {
  padding: 0.95rem 1rem 1rem;
}

.team-info h3 {
  margin: 0 0 0.2rem;
  font-size: 1.1rem;
}

.team-info p {
  margin: 0;
  color: var(--ink-2);
  font-weight: 600;
}

.event-list {
  display: grid;
  gap: 1rem;
}

.event {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.event:hover {
  transform: translateY(-2px);
  border-color: #5e9ff4;
}

.date-pill {
  background: var(--accent-soft);
  color: #93491c;
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-weight: 700;
  font-size: 0.9rem;
  align-self: center;
}

.fund-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.fund-grid article {
  text-align: center;
  background: linear-gradient(170deg, #ffffff, #f4faf7);
}

.fund-grid h3 {
  color: var(--primary-dark);
  margin-bottom: 0.2rem;
}

.newsletter-wrap {
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(120deg, #8bcbb5, #ffd7bb) border-box;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: center;
  box-shadow: 0 12px 28px rgba(17, 40, 34, 0.08);
}

.newsletter-form {
  display: flex;
  gap: 0.6rem;
}

.newsletter-form input,
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfe0d9;
  border-radius: 0.7rem;
  padding: 0.74rem 0.9rem;
  font: inherit;
  color: var(--ink-1);
  background: #fff;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.newsletter-form input:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #4182d7;
  box-shadow: 0 0 0 3px rgba(75, 167, 138, 0.16);
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.2rem;
  box-shadow: 0 12px 24px rgba(12, 45, 37, 0.08);
}

.contact .split-grid > div:first-child {
  background: linear-gradient(170deg, #ffffff, #f4faf7);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.2rem;
}

.contact .split-grid > div:first-child p {
  margin: 0.45rem 0;
}

.contact-form label {
  font-weight: 600;
  display: block;
  margin: 0.65rem 0 0.35rem;
}

.site-footer {
  background: #1c2027;
  color: #dcf2ea;
  padding: 1.4rem 0;
  margin-top: 2rem;
  border-top: 3px solid #6fa2e4;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer nav {
  display: flex;
  gap: 0.9rem;
}

.site-footer a:hover {
  color: #fff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.reveal {
  animation: rise 0.8s ease both;
}

.delay-1 {
  animation-delay: 0.15s;
}

.delay-2 {
  animation-delay: 0.3s;
}

.delay-3 {
  animation-delay: 0.45s;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fillBar {
  from {
    width: 0;
  }
  to {
    width: 78%;
  }
}

@media (max-width: 980px) {
  .main-nav {
    position: absolute;
    top: 100%;
    right: 4%;
    left: 4%;
    background: #f8fcfa;
    border: 1px solid #d4e6de;
    border-radius: 0.8rem;
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 0.22s ease,
      transform 0.22s ease;
  }

  .menu-btn {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    margin-left: auto;
    padding: 0.3rem;
  }

  .menu-btn span {
    width: 22px;
    height: 2px;
    background: var(--ink-1);
  }

  .menu-toggle:checked + .menu-btn + .main-nav {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .hero-grid,
  .split-grid,
  .campaign-wrap,
  .newsletter-wrap {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .fund-grid,
  .card-grid,
  .help-grid,
  .story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-content {
    width: 100%;
  }

  .hero-content h1,
  .hero-content p {
    max-width: none;
  }

  .hero-cta {
    width: 100%;
  }

  .hero-cta .btn {
    flex: 1 1 0;
    min-width: 0;
  }

  .hero-visual {
    min-height: auto;
    justify-content: center;
    margin-top: 0.3rem;
  }

  .hero-photo-frame {
    height: auto;
    width: auto;
  }

  .hero-collage {
    width: min(100%, 420px);
  }

  .hero-chip {
    left: 4%;
    bottom: 4%;
    max-width: 230px;
  }

  .hero-quote {
    right: 1%;
    top: 3%;
    width: min(220px, 52%);
  }

  .section-head {
    margin-bottom: 1.1rem;
  }

  .program-card,
  .help-card,
  .story-card,
  .event,
  .fund-grid article,
  .about-points article {
    padding: 1rem;
  }

  .team-card img {
    height: 200px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .donation-form {
    grid-template-columns: 1fr 1fr;
  }

  .donation-form .btn {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .form-status {
    left: 3%;
    right: 3%;
    max-width: none;
    top: 70px;
  }

  .section-pad {
    padding: 3.7rem 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    gap: 1.15rem;
    padding: 4.35rem 0 2.15rem;
  }

  .hero-content h1 {
    max-width: 100%;
    font-size: clamp(1.72rem, 7.5vw, 2.3rem);
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 0.98rem;
    margin-bottom: 1.05rem;
  }

  .hero-cta {
    width: 100%;
    gap: 0.55rem;
  }

  .hero-cta .btn {
    width: auto;
    flex: 1 1 calc(50% - 0.3rem);
  }

  .hero-visual {
    display: block;
  }

  .hero-collage {
    width: min(100%, 340px);
    margin: 0 auto;
  }

  .hero-chip {
    position: relative;
    left: auto;
    bottom: auto;
    max-width: 92%;
    margin: -1.1rem auto 0;
    padding: 0.75rem 0.85rem;
  }

  .hero-chip h2 {
    font-size: 1.02rem;
  }

  .hero-chip p {
    font-size: 0.92rem;
  }

  .hero-quote {
    position: relative;
    right: auto;
    top: auto;
    width: 92%;
    margin: 0.75rem auto 0;
    background: rgba(14, 67, 58, 0.74);
  }

  .stats {
    margin-top: -1rem;
  }

  .stats-grid {
    padding: 0.9rem;
    gap: 0.75rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-grid h3 {
    font-size: 1.4rem;
  }

  .section-head h2 {
    font-size: clamp(1.36rem, 6.2vw, 1.7rem);
  }

  .team {
    padding-top: 3.1rem;
    padding-bottom: 3.3rem;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .team-card {
    max-width: none;
    margin: 0 auto;
  }

  .team-card img {
    height: 176px;
  }

  .team-info {
    padding: 0.72rem 0.82rem 0.82rem;
  }

  .team-info h3 {
    font-size: 1rem;
  }

  .team-info p {
    font-size: 0.92rem;
  }

  .section-head h2,
  .about h2,
  .programs h2,
  .campaign h2,
  .involved h2,
  .stories h2,
  .events h2,
  .transparency h2,
  .contact h2 {
    font-size: clamp(1.32rem, 5.8vw, 1.65rem);
  }

  .about .split-grid > div:first-child p,
  .about-points p,
  .program-card p,
  .help-card p,
  .story-card p,
  .event p,
  .fund-grid p,
  .team-info p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .about .split-grid > div:first-child p {
    line-clamp: 3;
    -webkit-line-clamp: 3;
  }

  .about-points p,
  .program-card p,
  .help-card p,
  .story-card p,
  .event p,
  .fund-grid p {
    line-clamp: 3;
    -webkit-line-clamp: 3;
  }

  .team-info p {
    line-clamp: 2;
    -webkit-line-clamp: 2;
  }

  .newsletter-wrap,
  .contact .split-grid > div:first-child,
  .contact-form {
    padding: 1rem;
  }

  .card-grid article:nth-child(2n),
  .help-grid article:nth-child(2n),
  .story-grid article:nth-child(2n),
  .team-grid article:nth-child(2n) {
    margin-top: 0.55rem;
  }

  .event {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .container {
    width: 94%;
  }

  .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.11em;
  }

  .hero-grid {
    padding-top: 4.05rem;
  }

  .hero-collage {
    width: min(100%, 300px);
  }

  .hero-cta .btn {
    flex-basis: 100%;
  }

  .team-grid,
  .card-grid,
  .help-grid,
  .story-grid,
  .fund-grid {
    grid-auto-columns: minmax(84%, 240px);
  }

  .team-card img {
    height: 164px;
  }

  .hero-cta .btn {
    flex-basis: 100%;
  }

  .donation-form {
    grid-template-columns: 1fr;
  }

  .donation-form .btn {
    grid-column: auto;
  }

  .card-grid,
  .help-grid,
  .story-grid,
  .team-grid,
  .fund-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .card-grid article:nth-child(2n),
  .help-grid article:nth-child(2n),
  .story-grid article:nth-child(2n),
  .team-grid article:nth-child(2n) {
    margin-top: 0;
  }
}
