@font-face{font-family:Bornomala;src:url(/fonts/Bornomala-Regular.woff2) format("woff2");font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:Bornomala;src:url(/fonts/Bornomala-Bold.woff2) format("woff2");font-weight:700;font-style:normal;font-display:swap}
@font-face{font-family:UbuntuSans;src:url(/fonts/UbuntuSans.woff2) format("woff2");font-weight:500 700;font-style:normal;font-display:swap}

:root {
  --primary: #008E48;
  --primary-dark: #006648;
  --primary-deep: #00443d;
  --primary-soft: #CEF5E3;
  --warning: #E8B65D;
  --warning-soft: #F8DE9E;
  --ink: #0F2920;
  --muted: #637381;
  --text-secondary: #333333;
  --bg: #FFFFFF;
  --line: rgba(145, 158, 171, 0.2);
  --shadow: 0 0 2px rgba(145, 158, 171, 0.2), 0 12px 24px -4px rgba(145, 158, 171, 0.12);
  --radius: 8px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; height: 100%; overflow-x: clip; }
body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  font-family: UbuntuSans, Bornomala, sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
/* Pull main under floating header on every page (Assunnah) */
main { flex: 1 1 auto; margin-top: -100px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 1200px) {
  .wrap { padding: 0 48px; }
}

/* Buttons — Assunnah sizes */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius); padding: 8px 24px;
  font: inherit; font-weight: 700; border: 0; cursor: pointer;
  transition: background .15s ease, opacity .15s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-primary:disabled { opacity: .65; cursor: wait; }
.btn-xs { padding: 6px 16px; height: 40px; min-width: 128px; font-size: 17px; }
.btn-hero {
  padding: 6px 16px; height: 56px; min-width: 180px; font-size: 17px;
}
.btn-outline-light {
  background: transparent; color: #fff;
  border: 1px solid rgba(145, 158, 171, 0.32);
  height: 56px; min-width: 200px; padding: 5px 15px; font-size: 17px;
}
.btn-outline-light:hover { background: rgba(255,255,255,.08); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: #f5f5f5; }

/* ——— Floating frosted header (Assunnah) ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1101;
  background: transparent;
  border: 0;
  margin: 20px 0 0;
  padding: 0 20px;
  min-height: 0;
  transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.site-header.is-hidden {
  transform: translateY(calc(-100% - 28px));
  pointer-events: none;
}
.header-bar {
  max-width: 1536px;
  margin: 0 auto;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.875);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 10px;
  border: 1px solid rgba(145, 158, 171, 0.12);
}
.brand {
  display: flex; align-items: center; flex-shrink: 0;
  width: 90px; height: 44px;
}
.brand svg, .brand img {
  width: 70px; height: 44px; object-fit: contain;
}
.nav-links {
  display: none;
  align-items: center;
  justify-content: flex-start;
  gap: 36px;
  flex: 0 1 auto;
  margin-left: auto;
  margin-right: 20px;
}
@media (min-width: 1100px) {
  .nav-links { display: flex; }
}
.nav-links > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
  padding: 4px 6px;
  line-height: 1.5;
  border-radius: 0;
  white-space: nowrap;
}
.nav-links > a:hover { color: var(--primary); }
.nav-links > a.active {
  color: var(--primary);
  box-shadow: none;
}
.nav-links > a.active::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 0;
  height: 1.5px;
  background: var(--primary);
}
.nav-actions {
  display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.lang-toggle {
  display: none;
  border: 1px solid rgba(145, 158, 171, 0.08);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  height: 40px;
  gap: 4px;
}
@media (min-width: 1100px) {
  .lang-toggle { display: inline-flex; }
}
.lang-toggle button {
  font: inherit; font-size: 14px; font-weight: 700;
  padding: 7px; border: 0; background: transparent;
  color: var(--ink); cursor: pointer; height: 100%;
  min-width: 45px;
  display: inline-flex; align-items: center; justify-content: center;
}
.lang-toggle button.active {
  background: rgba(0, 142, 72, 0.3);
  color: var(--ink);
}
.user-btn {
  display: none;
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--warning-soft); color: var(--warning);
  border: 1px solid var(--warning); align-items: center; justify-content: center;
  cursor: pointer; text-decoration: none;
}
@media (min-width: 1100px) {
  .user-btn { display: inline-flex; }
}
.user-btn svg { width: 22px; height: 22px; }
.menu-btn {
  width: 40px; height: 40px; border: 0; background: transparent;
  cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px;
}
@media (min-width: 1100px) {
  .menu-btn { display: none; }
}
.menu-btn-bars,
.menu-btn-bars::before,
.menu-btn-bars::after {
  display: block; width: 20px; height: 2px; background: var(--ink);
  border-radius: 2px; position: relative;
}
.menu-btn-bars::before,
.menu-btn-bars::after { content: ""; position: absolute; left: 0; }
.menu-btn-bars::before { top: -6px; }
.menu-btn-bars::after { top: 6px; }
.menu-btn.is-open .menu-btn-bars { background: transparent; }
.menu-btn.is-open .menu-btn-bars::before { top: 0; transform: rotate(45deg); }
.menu-btn.is-open .menu-btn-bars::after { top: 0; transform: rotate(-45deg); }

.mobile-nav {
  display: none;
  margin-top: 8px;
  background: rgba(255,255,255,.96);
  border-radius: 10px;
  max-height: calc(100vh - 120px);
  overflow: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav-inner { padding: 1rem 1.25rem 1.25rem; }
.mobile-nav a {
  display: block; padding: .7rem 0;
  border-bottom: 1px solid var(--line); font-weight: 500;
}
.mobile-nav a.active { color: var(--primary); }
.mobile-nav-cta { width: 100%; margin-bottom: 1rem; }
.mobile-donate-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  background: var(--primary); color: #fff; text-align: center;
  padding: .85rem; font-weight: 700;
}
@media (max-width: 1099px) {
  .mobile-donate-bar { display: block; }
  body { padding-bottom: 56px; }
  body.nav-open .mobile-donate-bar { display: none; }
  .site-header { margin-top: 12px; padding: 0 12px; }
  .header-bar { height: 64px; padding: 0 14px; }
  main { margin-top: -76px; }
}

/* ——— Hero ——— */
.hero-as {
  position: relative;
  min-height: 560px;
  height: 750px;
  max-height: 85vh;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(98deg, rgba(0, 0, 0, 0.9) 30%, rgba(0, 0, 0, 0.02) 100%),
    var(--hero-img) center / cover no-repeat;
  overflow: hidden;
}
.hero-pattern {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: .35;
  background-image:
    radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 28px 28px;
}
.hero-as .wrap {
  position: relative; z-index: 1;
  padding-top: 80px; padding-bottom: 160px;
}
.hero-brand {
  font-size: 70px;
  font-weight: 700;
  line-height: 70px;
  letter-spacing: normal;
  max-width: 12ch;
}
.hero-lead {
  margin-top: 32px;
  font-size: 17px;
  line-height: 30.22px;
  color: #fff;
  max-width: 517px;
  font-weight: 400;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px;
}

/* Gold donate strip — CSS pattern only (no Assunnah assets) */
.donate-strip-wrap {
  position: relative; z-index: 2;
  margin-top: -116px;
  margin-bottom: 24px;
  padding: 0 24px;
  max-width: 1078px;
  margin-left: auto;
  margin-right: auto;
}
.donate-strip {
  position: relative;
  background-color: var(--warning);
  background-image:
    radial-gradient(circle at 12% 20%, rgba(255,255,255,.18) 0 18%, transparent 19%),
    radial-gradient(circle at 88% 78%, rgba(0,0,0,.06) 0 22%, transparent 23%),
    linear-gradient(135deg, rgba(255,255,255,.12), transparent 42%);
  background-size: auto;
  background-position: center;
  border-radius: 10px;
  padding: 39px 30px 40px;
  color: var(--ink);
  overflow: hidden;
}
.donate-strip h2 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 18px;
  line-height: 50.4px;
}
.donate-strip-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px 16px;
  align-items: end;
}
@media (min-width: 900px) {
  .donate-strip-form {
    grid-template-columns: 1.15fr 1.3fr 1.1fr auto;
  }
}
.donate-strip label {
  display: block;
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 6px;
}
.donate-strip .req { color: #c62828; }
.donate-strip select,
.donate-strip input[type="text"],
.donate-strip input[type="number"],
.donate-strip input[type="tel"],
.donate-strip input[type="email"] {
  width: 100%;
  height: 51px;
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  font: inherit;
  font-size: 17px;
  background: #fff;
  color: var(--ink);
  outline: none;
}
.donate-strip select:focus,
.donate-strip input:focus {
  box-shadow: 0 0 0 2px rgba(0,142,72,.35);
}
.amount-row {
  display: flex; align-items: center; background: #fff;
  border-radius: 8px; height: 51px; padding-left: 12px;
}
.amount-row > span { font-weight: 700; color: var(--muted); margin-right: 4px; }
.amount-row input {
  border: 0 !important; height: 100% !important; flex: 1;
  box-shadow: none !important; background: transparent !important;
  padding-left: 4px !important;
}
.donate-strip .btn {
  height: 50px; min-width: 231px; padding: 8px 24px; font-size: 17px;
}
.donate-strip .field-submit label { visibility: hidden; }
.donate-strip .tax-note {
  margin-top: 14px; font-size: 15px; color: var(--text-secondary); text-align: left;
}
.donate-strip .error {
  grid-column: 1 / -1; background: #ffebee; color: #c62828;
  padding: .65rem .85rem; border-radius: 8px; font-size: .95rem;
}

/* Sections */
.section { padding: 80px 0; }
.section-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 68px;
  text-align: center;
  margin-bottom: 40px;
  color: var(--ink);
}
.section-sub {
  text-align: center; color: var(--muted);
  margin: -24px auto 40px; max-width: 40rem; line-height: 1.65;
}
.section-actions {
  display: flex; justify-content: center; margin-top: 32px;
}

/* Below-fold sections: faster paint */
.mission-band,
.funds-section,
.section,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 720px;
}

.pillars {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
}
@media (min-width: 900px) {
  .pillars {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0 24px; align-items: start;
  }
}
.pillar-divider {
  display: none; width: 1px; background: var(--line);
  align-self: stretch; min-height: 220px;
}
@media (min-width: 900px) {
  .pillar-divider { display: block; }
}
.pillar h3 {
  font-size: 36px; font-weight: 700; margin-bottom: 8px; text-align: center;
}
.pillar p {
  color: var(--muted); line-height: 1.7; font-size: 17px; text-align: center;
}

.grid-3 {
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 700px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}
.card {
  background: #fff; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  transition: transform .2s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-3px); }
.card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.card-body { padding: 16px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.card h3 { font-size: 24px; font-weight: 700; line-height: 1.35; }
.card .muted { color: var(--muted); font-size: 15px; }
.progress {
  height: 6px; background: rgba(145,158,171,.2); border-radius: 99px;
  margin: 14px 0 8px; overflow: hidden;
}
.progress span {
  display: block; height: 100%; background: var(--primary); border-radius: 99px;
}
.meta {
  display: flex; justify-content: space-between; gap: .5rem;
  font-size: 14px; color: var(--muted); font-weight: 600;
}

.funds-section {
  position: relative;
  background:
    radial-gradient(ellipse at 10% 0%, rgba(0, 142, 72, 0.06), transparent 55%),
    rgba(223, 227, 232, 0.25);
  padding: 100px 0;
  overflow: hidden;
}
.funds-section .wrap { position: relative; z-index: 1; }

.video-frame {
  position: relative; border-radius: 16px; overflow: hidden;
  background: var(--primary); aspect-ratio: 16/9;
}
.video-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.35));
  pointer-events: none;
}

.join-grid {
  display: grid; grid-template-columns: 1fr; gap: 18px;
}
@media (min-width: 700px) {
  .join-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .join-grid { grid-template-columns: repeat(4, 1fr); }
}
.join-card {
  border-radius: 16px; overflow: hidden; position: relative;
  min-height: 276px; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 20px; color: #fff;
  background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,100,72,.88)), var(--primary-deep);
}
.join-card:nth-child(2) { background: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,142,72,.9)), #006648; }
.join-card:nth-child(3) { background: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,68,61,.92)), #0F2920; }
.join-card:nth-child(4) { background: linear-gradient(180deg, rgba(0,0,0,.1), rgba(232,182,93,.95)), #8d6a2b; }
.join-card h3 { font-size: 24px; font-weight: 700; margin-bottom: 6px; }
.join-card p { font-size: 15px; opacity: .92; line-height: 1.5; }
.join-ico {
  position: absolute; top: 16px; left: 16px;
  font-size: 12px; font-weight: 700;
  background: rgba(255,255,255,.18); padding: 6px 10px; border-radius: 99px;
}

.gallery-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
@media (min-width: 800px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
.gallery-grid a {
  border-radius: 12px; overflow: hidden; aspect-ratio: 4/3;
}
.gallery-grid img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .35s ease;
}
.gallery-grid a:hover img { transform: scale(1.04); }

.donor-list { display: grid; gap: 10px; max-width: 720px; margin: 0 auto; }
.donor-item {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; padding: 16px 18px; border-radius: 12px;
  border: 1px solid var(--line); background: #fff;
}

.cta-band {
  background: var(--primary); color: #fff; padding: 56px 0;
}
.cta-band .wrap {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 20px;
}
.cta-band h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; }

.site-footer {
  background: #0F2920; color: #fff; padding: 56px 0 24px;
}
.footer-grid {
  display: grid; gap: 32px; grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
}
.footer-brand { font-size: 22px; font-weight: 700; }
.footer-col h4 { font-size: 16px; margin-bottom: 14px; font-weight: 700; }
.footer-col p { margin: 8px 0; }
.footer-col a { color: rgba(255,255,255,.72); font-size: 15px; }
.footer-col a:hover { color: #fff; }
.footer-help-links { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.footer-seo-links {
  display: flex; flex-wrap: wrap; gap: 8px 14px;
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer-seo-links a { font-size: 12px; color: rgba(255,255,255,.4); }
.copy {
  margin-top: 20px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 14px; color: rgba(255,255,255,.5);
}

.page { padding: 40px 0 64px; }

/* Assunnah inner page hero — Asahay gallery photo only */
.page-hero {
  height: 350px;
  padding: 150px 20px 79px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(0deg, rgba(37, 52, 45, 0.85), rgba(37, 52, 45, 0.85)),
    url(/assets/images/page-hero.webp) center / cover no-repeat;
}
.page-hero h1 {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 50.4px;
  color: #fff;
  max-width: 18ch;
}
.page-hero-strip { display: none; } /* legacy removed */

.grid-2 {
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 800px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
}
.narrow { max-width: 860px; margin-left: auto; margin-right: auto; }
.prose p { margin: 0 0 1rem; line-height: 1.7; }
.font-display { font-weight: 700; }

/* Donate funds grid (Assunnah /donate) */
.funds-page {
  padding: 100px 0 80px;
  max-width: 1170px;
  margin: 0 auto;
}
.fund-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 700px) {
  .fund-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .fund-grid { grid-template-columns: repeat(3, 1fr); }
}
.fund-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.03);
  height: 100%;
  transition: transform .2s ease;
}
.fund-card:hover { transform: translateY(-3px); }
.fund-card > img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: #eef2f0;
}
.fund-card-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}
.fund-card-body h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
}
.fund-card-body p {
  margin: 0;
  font-size: 16px;
  line-height: 26px;
  color: var(--text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.fund-card-body .btn {
  align-self: flex-start;
  height: 50px;
  min-width: 128px;
  margin-top: 8px;
}

.form-box {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 24px; box-shadow: var(--shadow);
}
.form-box label {
  display: block; font-size: 15px; font-weight: 600; margin: 14px 0 6px;
}
.form-box label:first-child { margin-top: 0; }
.form-box input,
.form-box select,
.form-box textarea {
  width: 100%; height: 48px; border: 1px solid var(--line);
  border-radius: 8px; padding: 0 14px; font: inherit; background: #fff;
}
.form-box textarea { height: auto; min-height: 120px; padding: 12px 14px; }
.form-box .note { margin-top: 12px; font-size: 13px; color: var(--muted); }
.form-box .error {
  margin: 12px 0; padding: 10px 12px; border-radius: 8px;
  background: #fff1f0; color: #b42318; font-size: 14px;
}
.presets { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }
.presets button {
  border: 1px solid var(--line); background: #fff; border-radius: 8px;
  padding: 8px 14px; font: inherit; cursor: pointer;
}
.presets button.active,
.presets button:hover {
  border-color: var(--primary); background: var(--primary-soft); color: var(--primary-deep);
}
.amount-field {
  display: flex; align-items: center; border: 1px solid var(--line);
  border-radius: 8px; overflow: hidden; height: 48px;
}
.amount-prefix {
  padding: 0 12px; font-weight: 700; color: var(--muted); background: #f7f9f8;
  height: 100%; display: flex; align-items: center;
}
.amount-field input {
  border: 0 !important; height: 100% !important; border-radius: 0 !important;
}
.checkbox {
  display: flex !important; align-items: center; gap: 8px;
  font-weight: 400 !important; margin-top: 14px !important;
}
.checkbox input { width: auto; height: auto; }
.field-hint { font-size: 13px; color: var(--muted); margin: 6px 0 0; }
.donate-layout {
  display: grid; grid-template-columns: 1fr; gap: 28px; align-items: start;
}
@media (min-width: 900px) {
  .donate-layout { grid-template-columns: 1fr 1.05fr; gap: 36px; }
}
.check-list { margin: 1rem 0 0; padding-left: 1.1rem; color: var(--muted); }
.check-list li { margin: .4rem 0; }
.trust-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 1.25rem;
}
.trust-row div {
  background: #f7f9f8; border-radius: 10px; padding: 12px; text-align: center;
}
.trust-row strong { display: block; color: var(--primary); font-size: 1.05rem; }
.trust-row span { font-size: 12px; color: var(--muted); }
.muted { color: var(--muted); }
.faq-list { margin-top: 1.5rem; display: grid; gap: 10px; }
.faq-item {
  border: 1px solid var(--line); border-radius: 12px; padding: 14px 18px; background: #fff;
}
.faq-item summary {
  cursor: pointer; font-weight: 700; list-style: none; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin: 10px 0 0; }

@media (prefers-reduced-motion: no-preference) {
  .fade-up { animation: fadeUp .7s ease both; }
  .d1 { animation-delay: .08s; }
  .d2 { animation-delay: .16s; }
  .d3 { animation-delay: .24s; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 699px) {
  .hero-as { height: auto; min-height: 520px; max-height: none; }
  .hero-as .wrap { padding-bottom: 120px; padding-top: 72px; }
  .hero-brand { font-size: 42px; line-height: 42px; }
  .hero-lead { line-height: 26px; }
  .donate-strip-wrap { margin-top: -90px; max-width: none; }
  .donate-strip { padding: 28px 18px 30px; }
  .donate-strip h2 { font-size: 26px; line-height: 36px; }
  .donate-strip .btn { min-width: 100%; width: 100%; }
  .section-title { font-size: 32px; line-height: 44px; }
  .pillar h3 { font-size: 28px; }
  .page-hero { height: 280px; padding: 120px 16px 56px; }
  .page-hero h1 { font-size: 28px; line-height: 40px; }
  .funds-page { padding: 56px 0 48px; }
}
