:root {
  --green: #123f32;
  --green-deep: #082b22;
  --green-soft: #eaf0ea;
  --orange: #ed671e;
  --orange-dark: #ce4e0a;
  --cream: #f7f0e3;
  --gold: #d6a24a;
  --ink: #17332a;
  --muted: #63706a;
  --white: #fffdf8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

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

.wrap {
  width: min(1240px, calc(100% - 96px));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.hero {
  position: relative;
  min-height: 900px;
  color: var(--cream);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(4, 44, 34, .98) 0%, rgba(4, 44, 34, .9) 32%, rgba(4, 44, 34, .48) 58%, rgba(4, 44, 34, .12) 100%),
    linear-gradient(0deg, rgba(2, 27, 21, .58), transparent 45%),
    url("images/children-gathering.jpeg") center 42% / cover no-repeat;
}

.site-header {
  width: min(1344px, calc(100% - 64px));
  height: 112px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1000;
  isolation: isolate;
  border-bottom: 1px solid rgba(255, 255, 255, .17);
}

.brand {
  width: 242px;
  height: 76px;
  overflow: hidden;
  background: white;
  border-radius: 7px;
  display: flex;
  align-items: center;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 15px;
  font-weight: 600;
}

.nav > a:not(.nav-donate) {
  position: relative;
  padding: 18px 0;
}

.nav > a:not(.nav-donate)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width .18s ease;
}

.nav > a:hover::after {
  width: 100%;
}

.nav-donate {
  background: var(--orange);
  border-radius: 7px;
  padding: 17px 23px;
  transition: background .18s ease, transform .18s ease;
}

.nav-donate:hover {
  background: #ff7a2a;
  transform: translateY(-2px);
}

.menu-button {
  display: none;
}

.hero-content {
  padding-top: 112px;
  animation: hero-in .65s ease-out both;
}

.eyebrow,
.section-kicker {
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 870px;
  margin: 24px 0 22px;
  color: var(--cream);
  font-size: clamp(50px, 5.55vw, 80px);
  line-height: 1.04;
  letter-spacing: -.045em;
  font-weight: 800;
}

.hero-copy {
  max-width: 625px;
  margin: 0;
  color: rgba(247, 240, 227, .88);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 38px;
}

.button {
  min-height: 62px;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 16px;
  font-weight: 750;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

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

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

.button-orange:hover {
  background: #ff7a2a;
}

.button-outline-light {
  border-color: rgba(255, 255, 255, .72);
  color: var(--cream);
}

.button-outline-light:hover {
  background: var(--cream);
  color: var(--green-deep);
}

.impact-strip {
  position: absolute;
  left: 50%;
  bottom: 44px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.impact-strip > div {
  min-height: 106px;
  padding: 22px 30px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(247, 240, 227, .25);
  border-radius: 12px;
  background: rgba(8, 43, 34, .72);
  backdrop-filter: blur(13px);
}

.impact-strip strong {
  color: white;
  font-size: 40px;
  letter-spacing: -.04em;
}

.impact-strip span {
  max-width: 112px;
  color: rgba(247, 240, 227, .78);
  font-size: 14px;
  line-height: 1.35;
}

.about {
  background: var(--cream);
}

.about-grid,
.story-grid,
.donate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image > img {
  width: 100%;
  aspect-ratio: 1.05;
  object-fit: cover;
  border-radius: 4px;
}

.about-image::before {
  content: "";
  position: absolute;
  inset: -20px auto auto -20px;
  width: 108px;
  height: 108px;
  border-top: 3px solid var(--orange);
  border-left: 3px solid var(--orange);
}

.about-badge {
  position: absolute;
  right: -24px;
  bottom: -28px;
  min-width: 210px;
  padding: 22px;
  background: var(--green);
  color: white;
}

.about-badge strong,
.about-badge span {
  display: block;
}

.about-badge strong {
  color: var(--orange);
  font-size: 22px;
}

.about-badge span {
  margin-top: 5px;
  font-size: 13px;
}

.about h2,
.section-heading h2,
.story h2,
.involved h2,
.donate h2 {
  margin: 16px 0 26px;
  font-size: clamp(40px, 4vw, 62px);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.about-copy > p:not(.section-kicker),
.donate-grid > div > p:not(.section-kicker) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.about-copy .lead {
  color: var(--ink) !important;
  font-size: 20px !important;
}

.mission-quote {
  margin-top: 32px;
  padding: 20px 0 20px 25px;
  border-left: 4px solid var(--orange);
}

.mission-quote span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.mission-quote p {
  margin: 7px 0 0;
  font-size: 19px;
  font-weight: 700;
}

.legacy {
  background: var(--white);
}

.legacy-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 96px;
  align-items: center;
}

.legacy-portrait {
  position: relative;
  padding: 18px 18px 0 0;
}

.legacy-portrait::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 74%;
  height: 72%;
  background: var(--green-soft);
}

.legacy-portrait img {
  position: relative;
  width: 100%;
  aspect-ratio: .93;
  object-fit: cover;
  object-position: center 20%;
  filter: sepia(.08) contrast(1.03);
}

.legacy-caption {
  position: relative;
  width: calc(100% - 34px);
  margin: -26px 0 0 34px;
  padding: 21px 24px;
  background: var(--green-deep);
  color: var(--cream);
}

.legacy-caption strong,
.legacy-caption span {
  display: block;
}

.legacy-caption strong {
  font-size: 18px;
}

.legacy-caption span {
  margin-top: 5px;
  color: rgba(247, 240, 227, .7);
  font-size: 12px;
}

.legacy-copy h2 {
  margin: 16px 0 26px;
  font-size: clamp(40px, 4vw, 62px);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.legacy-copy > p:not(.section-kicker) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.legacy-copy .lead {
  color: var(--ink) !important;
  font-size: 20px !important;
}

.legacy-values {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.legacy-values span {
  padding: 11px 17px;
  border: 1px solid #d5dfd7;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.vision {
  padding: 78px 0;
  background: var(--green);
  color: var(--cream);
}

.vision-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 90px;
  align-items: center;
}

.vision h2 {
  max-width: 730px;
  margin: 14px 0 0;
  font-size: clamp(36px, 3.5vw, 54px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.vision-grid > p {
  margin: 0;
  color: rgba(247, 240, 227, .74);
  font-size: 17px;
  line-height: 1.75;
}

.focus {
  background: var(--white);
}

.section-heading {
  margin-bottom: 54px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 80px;
  align-items: end;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  margin: 0 0 6px;
  color: var(--muted);
  line-height: 1.7;
}

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

.focus-card {
  min-height: 410px;
  padding: 34px 28px;
  border: 1px solid #dbe2dc;
  border-right: 0;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.focus-card:last-child {
  border-right: 1px solid #dbe2dc;
}

.focus-card:hover {
  z-index: 1;
  background: var(--green);
  color: var(--cream);
  transform: translateY(-8px);
}

.focus-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.focus-top > span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
}

.focus-top svg {
  width: 50px;
  height: 50px;
  color: var(--orange);
}

.focus-symbol {
  color: var(--orange);
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}

.focus-card h3 {
  margin: 70px 0 18px;
  font-size: 23px;
  line-height: 1.22;
}

.focus-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  transition: color .25s ease;
}

.focus-card:hover p {
  color: rgba(247, 240, 227, .75);
}

.focus-card > a {
  margin-top: 28px;
  display: inline-flex;
  gap: 12px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 800;
}

.story {
  padding-bottom: 0;
  background: var(--green-deep);
  color: var(--cream);
}

.story-grid {
  gap: 72px;
  align-items: stretch;
}

.story-copy {
  padding: 35px 0 100px;
}

.section-kicker.light {
  color: var(--gold);
}

.story-copy > p:not(.section-kicker) {
  max-width: 540px;
  color: rgba(247, 240, 227, .72);
  line-height: 1.75;
}

.story blockquote {
  margin: 36px 0;
  padding-left: 25px;
  border-left: 3px solid var(--orange);
  font-size: 19px;
  line-height: 1.55;
}

.text-link {
  color: var(--orange);
  display: inline-flex;
  gap: 14px;
  font-weight: 800;
}

.story-image {
  min-height: 620px;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery {
  background: var(--cream);
}

.gallery-heading {
  grid-template-columns: 1.35fr .65fr;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 230px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  padding: 0;
  overflow: hidden;
  border: 0;
  cursor: zoom-in;
  background: var(--green);
}

.gallery-item-1 { grid-column: span 7; grid-row: span 2; }
.gallery-item-2 { grid-column: span 5; }
.gallery-item-3 { grid-column: span 5; }
.gallery-item-4,
.gallery-item-5,
.gallery-item-6 { grid-column: span 4; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, opacity .3s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
  opacity: .76;
}

.gallery-item span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  color: white;
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease;
}

.gallery-item:hover span {
  opacity: 1;
  transform: none;
}

.involved {
  padding: 0;
  background: var(--cream);
}

.involved-card {
  padding: 76px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 70px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(8, 43, 34, .98), rgba(8, 43, 34, .8)),
    url("images/community-event.jpeg") center / cover;
  color: var(--cream);
}

.involved h2 {
  margin-bottom: 18px;
}

.involved-card > div > p:not(.section-kicker) {
  max-width: 650px;
  color: rgba(247, 240, 227, .75);
  line-height: 1.7;
}

.involved-actions {
  display: grid;
  gap: 14px;
}

.button-cream {
  background: var(--cream);
  color: var(--green-deep);
}

.button-cream:hover {
  background: white;
}

.donate {
  background: var(--cream);
}

.donate-grid {
  gap: 120px;
}

.donate-copy > p:not(.section-kicker) {
  color: var(--muted);
  line-height: 1.75;
}

.donation-impact {
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
}

.donation-impact li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.donation-impact li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 900;
}

.momo-card {
  overflow: hidden;
  background: var(--white);
  border-top: 5px solid #f4c300;
  box-shadow: 0 18px 60px rgba(18, 63, 50, .12);
}

.momo-card-top {
  padding: 22px 28px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.momo-label {
  color: var(--green-deep);
  font-weight: 850;
}

.secure-giving {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.momo-card > img {
  width: 100%;
  max-height: 240px;
  object-fit: cover;
  object-position: center 37%;
  border-top: 1px solid #edf0ed;
  border-bottom: 1px solid #edf0ed;
}

.momo-details {
  padding: 25px 28px 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.momo-details > div {
  padding: 17px;
  background: var(--cream);
}

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

.momo-details span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.momo-details strong {
  margin-top: 6px;
  color: var(--green-deep);
  font-size: 21px;
}

.momo-card > p {
  margin: 0;
  padding: 10px 28px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.momo-card > a {
  margin: 21px 28px 28px;
  display: inline-flex;
  gap: 12px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 850;
}

.donate-panel {
  padding: 38px;
  background: var(--white);
  border-top: 4px solid var(--orange);
  box-shadow: 0 15px 45px rgba(18, 63, 50, .08);
}

.donate-panel p {
  color: var(--muted);
  line-height: 1.6;
}

.donate-panel a {
  margin-top: 18px;
  display: inline-flex;
  gap: 14px;
  color: var(--orange);
  font-weight: 800;
}

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

.contact-heading {
  grid-template-columns: 1.1fr .9fr;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #dbe2dc;
  border-left: 1px solid #dbe2dc;
}

.contact-card {
  min-height: 255px;
  padding: 32px 27px;
  border-right: 1px solid #dbe2dc;
  border-bottom: 1px solid #dbe2dc;
  background: white;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.contact-card:hover {
  z-index: 1;
  border-color: transparent;
  box-shadow: 0 18px 48px rgba(18, 63, 50, .1);
  transform: translateY(-5px);
}

.contact-icon {
  color: var(--orange);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
}

.contact-card h3 {
  margin: 42px 0 17px;
  color: var(--green-deep);
  font-size: 20px;
}

.contact-card p,
.contact-card a {
  margin: 7px 0;
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.contact-card a:hover {
  color: var(--orange);
}

.contact-card .gps-code {
  color: var(--green);
  font-size: 21px;
  font-weight: 850;
  letter-spacing: .035em;
}

.contact-card .contact-note {
  color: #89938e;
  font-size: 11px;
}

.contact-band {
  padding: 27px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  background: var(--green-soft);
}

.contact-band p {
  margin: 0;
  color: var(--green);
  font-size: 14px;
}

.contact-band a {
  display: inline-flex;
  gap: 12px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 850;
}

footer {
  padding: 80px 0 24px;
  background: #061f18;
  color: var(--cream);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.35fr;
  gap: 70px;
}

.footer-brand img {
  width: 245px;
  height: 112px;
  padding: 6px;
  object-fit: contain;
  object-position: center;
  background: white;
  border-radius: 4px;
}

.footer-brand p,
.footer-grid > div > p,
.footer-grid a {
  color: rgba(247, 240, 227, .65);
  font-size: 14px;
  line-height: 1.7;
}

.footer-brand p {
  max-width: 320px;
}

.footer-grid h3 {
  margin: 7px 0 23px;
  color: white;
  font-size: 14px;
}

.footer-grid > div:not(.footer-brand) a {
  margin: 11px 0;
  display: block;
}

.footer-grid a:hover {
  color: var(--orange);
}

.footer-bottom {
  margin-top: 62px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(247, 240, 227, .13);
  color: rgba(247, 240, 227, .43);
  font-size: 12px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  padding: 40px;
  display: grid;
  place-items: center;
  background: rgba(2, 20, 15, .94);
  backdrop-filter: blur(8px);
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 25px 80px rgba(0, 0, 0, .45);
}

.lightbox button {
  position: fixed;
  top: 22px;
  right: 28px;
  color: white;
  border: 0;
  background: transparent;
  font-size: 42px;
  cursor: pointer;
}

@keyframes hero-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1040px) {
  .wrap { width: min(100% - 48px, 900px); }
  .site-header { width: calc(100% - 48px); }
  .menu-button {
    width: 48px;
    height: 48px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 7px;
    background: rgba(8, 43, 34, .58);
  }
  .menu-button span { width: 22px; height: 2px; background: white; }
  .nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    z-index: 1001;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    padding: 18px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 6px;
    background: #082b22;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .4);
  }
  .nav.open { display: flex; }
  .nav > a:not(.nav-donate) {
    display: block;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
    font-size: 16px;
  }
  .nav > a:not(.nav-donate)::after { display: none; }
  .nav-donate {
    margin-top: 8px;
    padding: 15px 18px;
    text-align: center;
  }
  body.menu-open { overflow: hidden; }
  .hero-content { padding-top: 95px; }
  .impact-strip { width: calc(100% - 48px); }
  .about-grid, .story-grid, .legacy-grid { gap: 45px; }
  .focus-grid { grid-template-columns: repeat(2, 1fr); }
  .focus-card:nth-child(2) { border-right: 1px solid #dbe2dc; }
  .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .wrap { width: calc(100% - 36px); }
  .section { padding: 78px 0; }
  .site-header { width: calc(100% - 32px); height: 88px; }
  .brand { width: 186px; height: 59px; }
  .hero { min-height: 880px; background-position: 63% center; }
  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(5, 42, 33, .25);
    pointer-events: none;
  }
  .site-header { z-index: 1000; }
  .hero-content, .impact-strip { z-index: 2; }
  .hero-content { position: relative; padding-top: 78px; }
  .hero h1 { font-size: clamp(42px, 12vw, 58px); }
  .hero-copy { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .impact-strip {
    bottom: 24px;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
  .impact-strip > div {
    min-height: 92px;
    padding: 13px 9px;
    display: block;
    text-align: center;
  }
  .impact-strip strong { display: block; font-size: 29px; }
  .impact-strip span { display: block; margin-top: 4px; font-size: 10px; }
  .about-grid, .story-grid, .legacy-grid, .vision-grid, .donate-grid, .section-heading, .involved-card {
    grid-template-columns: 1fr;
  }
  .about-grid { gap: 70px; }
  .about-badge { right: -5px; }
  .about h2, .section-heading h2, .story h2, .involved h2, .donate h2 { font-size: 40px; }
  .legacy-copy h2, .vision h2 { font-size: 40px; }
  .legacy-grid { gap: 58px; }
  .vision-grid { gap: 20px; }
  .section-heading { gap: 18px; margin-bottom: 35px; }
  .focus-grid { grid-template-columns: 1fr; }
  .focus-card, .focus-card:nth-child(2) { border-right: 1px solid #dbe2dc; }
  .focus-card { min-height: 340px; }
  .focus-card h3 { margin-top: 48px; }
  .story { padding-bottom: 0; }
  .story-grid { gap: 0; }
  .story-copy { padding: 0 0 70px; }
  .story-image { min-height: 480px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; }
  .gallery-item-1 { grid-column: 1 / -1 !important; }
  .involved-card { padding: 48px 25px; gap: 35px; }
  .donate-grid { gap: 35px; }
  .momo-card-top { align-items: flex-start; flex-direction: column; gap: 5px; }
  .momo-details { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { min-height: 220px; }
  .contact-band { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 42px 28px; }
  .footer-brand, .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { display: grid; gap: 8px; }
}

@media (max-width: 430px) {
  .brand { width: 165px; }
  .hero { min-height: 900px; }
  .hero-content { padding-top: 66px; }
  .hero h1 { font-size: 40px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { grid-column: 1 !important; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div { grid-column: 1 !important; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
