:root {
  --purple-950: #1b082a;
  --purple-900: #290a44;
  --purple-850: #341053;
  --purple-800: #44106d;
  --purple-700: #61218d;
  --purple-100: #f6f1fb;
  --gold-700: #b57a15;
  --gold-600: #d89b2a;
  --gold-500: #e0aa3f;
  --gold-300: #f2ca78;
  --cream: #faf7f4;
  --white: #fff;
  --text: #271f2f;
  --muted: #6e6377;
  --line: rgba(52, 16, 83, 0.11);
  --shadow-soft: 0 16px 40px rgba(28, 8, 42, 0.08);
  --shadow-medium: 0 22px 60px rgba(28, 8, 42, 0.14);
  --shadow-heavy: 0 28px 90px rgba(28, 8, 42, 0.2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  background:
    radial-gradient(circle at 12% 0%, rgba(216,155,42,0.15), transparent 32rem),
    radial-gradient(circle at 88% 4%, rgba(97,33,141,0.14), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #faf8fd 46%, #ffffff 100%);
}
body.loading { min-height: 100vh; display: grid; place-items: center; }
.loading-screen { text-align: center; color: var(--purple-900); font-weight: 900; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.svg-icon svg,
.btn svg,
.trust-icon svg,
.mini-badge svg,
.stat-icon svg,
.privacy-icon svg,
.modal-play svg {
  display: inline-block;
  width: 1.15em;
  height: 1.15em;
  vertical-align: -0.18em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.progress-bar { position: fixed; top: 0; left: 0; width: 0%; height: 4px; z-index: 999; background: linear-gradient(90deg, var(--gold-500), var(--purple-700)); }

.site-header { position: sticky; top: 0; z-index: 200; padding: 16px clamp(12px, 4vw, 42px); backdrop-filter: blur(18px); }
.nav {
  width: min(1280px, 100%);
  margin: 0 auto;
  min-height: 98px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.72);
  box-shadow: var(--shadow-medium);
}
.brand { display: inline-flex; align-items: center; min-width: 0; }
.brand-logo { height: 94px; width: auto; max-width: min(340px, 48vw); object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 12px 14px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--purple-900);
  white-space: nowrap;
}
.nav-links a:hover { background: rgba(97,33,141,0.08); }
.donate-nav { margin-left: 8px; background: linear-gradient(135deg, var(--gold-600), var(--gold-500)); color: white !important; box-shadow: 0 14px 28px rgba(216,155,42,0.25); }
.menu-toggle { display: none; width: 48px; height: 48px; border: 0; border-radius: 50%; background: var(--purple-900); cursor: pointer; }
.menu-toggle span { display: block; width: 22px; height: 2px; margin: 4px auto; border-radius: 999px; background: white; }

.hero { width: min(1280px, calc(100% - 24px)); margin: -102px auto 0; padding-top: 114px; }
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.12fr);
  gap: 0;
  min-height: 760px;
  overflow: hidden;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(33,9,54,0.95), rgba(56,17,89,0.88));
  box-shadow: var(--shadow-heavy);
  position: relative;
}
.hero-copy { padding: 118px 48px 42px; position: relative; z-index: 4; min-width: 0; }
.tiny-kicker { margin: 0 0 20px; color: var(--gold-300); font-size: .92rem; font-weight: 700; }
.hero h1 { margin: 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(3.6rem, 6.8vw, 6rem); line-height: .9; color: white; }
.hero h1 .gold { color: var(--gold-500); display: block; }
.lead { max-width: 540px; margin: 24px 0 0; color: rgba(255,255,255,.9); line-height: 1.7; font-size: 1.14rem; }
.scripture {
  max-width: 560px;
  margin: 18px 0 0;
  padding: 16px 18px;
  border-left: 3px solid var(--gold-500);
  border-radius: 0 16px 16px 0;
  color: rgba(255,255,255,.84);
  background: rgba(255,255,255,.08);
  line-height: 1.65;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.18rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.btn { min-height: 56px; display: inline-flex; gap: 8px; align-items: center; justify-content: center; padding: 16px 22px; border-radius: 14px; font-weight: 800; transition: .25s ease; border: 0; cursor: pointer; }
.btn:hover { transform: translateY(-3px); }
.btn-gold { background: linear-gradient(135deg, var(--gold-600), var(--gold-500)); color: white; box-shadow: 0 18px 35px rgba(216,155,42,.28); }
.btn-ghost { color: white; border: 1px solid rgba(255,255,255,.38); background: transparent; }
.btn-purple { background: linear-gradient(135deg, var(--purple-800), var(--purple-700)); color: white; }
.btn.block { width: 100%; }
.play-icon { width: 38px; height: 38px; margin-right: 10px; border-radius: 50%; border: 1px solid rgba(255,255,255,.65); display: grid; place-items: center; color: white; }
.play-icon svg { width: 15px; height: 15px; fill: currentColor; stroke: currentColor; margin-left: 2px; }

.wa-box { width: max-content; max-width: 100%; display: flex; align-items: center; gap: 14px; margin-top: 22px; padding: 16px 18px; border-radius: 16px; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18); }
.wa-svg-icon { width: 40px; height: 40px; flex: 0 0 40px; display: grid; place-items: center; color: #25d366; background: rgba(255,255,255,.08); border-radius: 50%; }
.wa-svg-icon svg { width: 28px; height: 28px; display: block; }
.wa-text small { display: block; color: rgba(255,255,255,.76); font-size: .82rem; letter-spacing: .01em; }
.wa-text a { display: block; color: white; font-weight: 800; margin-top: 4px; font-size: 1.04rem; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 24px; }
.trust-item { display: flex; align-items: center; gap: 10px; color: white; }
.trust-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; color: var(--gold-300); border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.04); }
.trust-item strong, .trust-item small { display: block; }
.trust-item strong { font-size: .92rem; font-weight: 700; }
.trust-item small { color: rgba(255,255,255,.72); font-size: .78rem; }

.hero-visual { position: relative; min-height: 100%; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: translateY(100%); transition: transform 1.1s cubic-bezier(.22,.61,.36,1), opacity 1.1s ease; }
.hero-slide.active { opacity: 1; transform: translateY(0); z-index: 1; }
.hero-slide.prev { opacity: 0; transform: translateY(-100%); z-index: 0; }
.visual-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(29,8,45,.78) 0%, rgba(29,8,45,.10) 35%, rgba(29,8,45,.12) 100%); z-index: 3; }
.curve-wave { position: absolute; right: -14%; bottom: -12%; width: 76%; height: 34%; border-top-left-radius: 100% 100%; background: linear-gradient(135deg, rgba(98,33,142,.95), rgba(56,17,89,.96)); z-index: 3; }
.leaf-decor { position: absolute; border: 4px solid rgba(216,155,42,.8); border-left-width: 0; border-bottom-width: 0; border-radius: 50% 0 50% 0; opacity: .9; z-index: 3; }
.leaf-one { right: 44px; bottom: 118px; width: 90px; height: 180px; transform: rotate(18deg); }
.leaf-two { right: 0; bottom: 78px; width: 58px; height: 120px; transform: rotate(18deg); }

.gift-impact { width: min(1280px, calc(100% - 24px)); margin: -20px auto 0; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(430px, .75fr); overflow: hidden; border-radius: 0 0 26px 26px; box-shadow: var(--shadow-medium); align-items: stretch; }
.impact-left { padding: 26px 26px 28px; background: linear-gradient(135deg, var(--purple-900), var(--purple-700)); min-width: 0; }
.impact-left h2 { margin: 0 0 18px; color: white; font-family: "Cormorant Garamond", Georgia, serif; font-size: 2.05rem; }
.impact-left h2 span { color: var(--gold-500); }
.auto-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 14px; }
.impact-card { position: relative; overflow: hidden; padding: 14px; border-radius: 16px; background: white; box-shadow: 0 10px 30px rgba(0,0,0,.08); min-width: 0; }
.card-thumb { height: 98px; margin: -14px -14px 14px; overflow: hidden; }
.card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.mini-badge { position: absolute; top: 76px; left: 12px; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--purple-700); border: 3px solid white; }
.mini-badge svg { width: 21px; height: 21px; }
.impact-card h3 { margin: 14px 0 8px; color: var(--purple-900); font-size: 1.35rem; font-family: "Cormorant Garamond", Georgia, serif; }
.impact-card p { margin: 0; color: var(--muted); line-height: 1.52; font-size: .94rem; }
.impact-card strong { display: block; margin-top: 14px; color: var(--gold-700); font-size: 1.05rem; }

.refined-donation { display: grid; align-content: start; justify-items: stretch; gap: 16px; padding: 28px; text-align: left; background: radial-gradient(circle at right top, rgba(255,255,255,.22), transparent 18rem), linear-gradient(135deg, var(--gold-500), var(--gold-600)); }
.donation-mini-head { color: white; text-align: left; }
.donation-mini-head span { display: inline-flex; margin-bottom: 10px; padding: 7px 10px; border-radius: 999px; background: rgba(255,255,255,.18); color: white; font-size: .72rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.donation-mini-head h3 { margin: 0; color: white; font-family: "Cormorant Garamond", Georgia, serif; font-size: 2.1rem; line-height: .98; }
.donation-mini-head p { margin: 10px 0 0; color: rgba(255,255,255,.86); line-height: 1.55; font-size: .96rem; }
.clean-bank { margin: 0; padding: 0; overflow: hidden; border-radius: 22px; background: rgba(255,255,255,.96); box-shadow: 0 22px 45px rgba(52,16,83,.16); }
.clean-bank .bank-row { padding: 14px 16px; border-top: 1px solid rgba(52,16,83,.10); background: white; }
.clean-bank .bank-row:first-child { border-top: 0; }
.clean-bank .bank-row.highlight { background: linear-gradient(135deg, rgba(52,16,83,.06), rgba(216,155,42,.13)); }
.clean-bank .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.clean-bank small { display: block; margin-bottom: 4px; color: var(--gold-700); font-size: .72rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.clean-bank strong { display: block; color: var(--purple-950); line-height: 1.35; font-size: .96rem; }
.clean-bank .account-number { font-size: 1.65rem !important; color: var(--purple-800) !important; letter-spacing: .06em; }
.refined-donation .btn { width: 100%; border-radius: 16px; background: linear-gradient(135deg, var(--purple-900), var(--purple-700)); box-shadow: 0 18px 34px rgba(52,16,83,.22); }

.dashboard { width: min(1280px, calc(100% - 24px)); margin: 18px auto 0; display: grid; grid-template-columns: 1.15fr .78fr .95fr; gap: 16px; }
.stats-card, .testimonial-card, .campaign-card, .feature-card, .about-section, .referral-section, .charter-section, .pillars-section, .values-section { border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.84); box-shadow: var(--shadow-soft); min-width: 0; }
.stats-card, .testimonial-card, .campaign-card { padding: 28px; }
.stats-card h3, .campaign-card h3, .feature-text h3, .about-left h2 { margin: 0 0 18px; font-family: "Cormorant Garamond", Georgia, serif; color: var(--purple-900); }
.stats-card h3 { font-size: 2rem; }
.stats-grid { grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); }
.stat-box { padding: 20px 14px; text-align: center; border-radius: 18px; border: 1px solid rgba(52,16,83,.08); background: #fffdfa; min-width: 0; }
.stat-icon { width: 42px; height: 42px; margin: 0 auto; display: grid; place-items: center; border-radius: 15px; color: var(--gold-700); background: rgba(216,155,42,.11); }
.stat-icon svg { width: 24px; height: 24px; }
.stat-box strong, .stat-box small { display: block; }
.stat-box strong { margin-top: 10px; font-size: 2rem; color: var(--purple-900); }
.stat-box small { margin-top: 8px; color: var(--muted); line-height: 1.4; }
.quote-mark { color: rgba(97,33,141,.28); font-size: 4rem; line-height: .8; font-weight: 900; }
.testimonial-card p { margin: 6px 0 24px; color: var(--purple-900); line-height: 1.6; font-size: 1.08rem; }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.testimonial-person img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.testimonial-person strong, .testimonial-person small { display: block; }
.testimonial-dots { display: flex; gap: 8px; justify-content: center; margin-top: 18px; }
.dot { width: 10px; height: 10px; border: 0; padding: 0; border-radius: 50%; background: #d4d0d8; cursor: pointer; }
.dot.active { background: var(--purple-700); }
.campaign-tag { display: inline-flex; padding: 6px 10px; border-radius: 999px; background: var(--purple-900); color: white; font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.campaign-card p { color: var(--muted); line-height: 1.6; }
.progress-track { height: 12px; margin: 20px 0 12px; overflow: hidden; border-radius: 999px; background: #ece8ef; }
.progress-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--purple-700), var(--gold-500)); }
.campaign-meta { display: flex; justify-content: space-between; gap: 10px; margin-bottom: 18px; color: var(--muted); }
.compact-bank { margin: 0 0 18px; padding: 14px 16px; border-radius: 16px; background: var(--purple-100); border: 1px solid rgba(52,16,83,.09); }
.compact-bank span { display: block; color: var(--gold-700); font-size: .76rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.compact-bank strong { display: block; margin-top: 5px; color: var(--purple-900); line-height: 1.45; font-size: .98rem; }
.compact-bank small { display: block; margin-top: 6px; color: var(--muted); line-height: 1.45; font-size: .82rem; }

.feature-row { width: min(1280px, calc(100% - 24px)); margin: 18px auto 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: 16px; }
.feature-card { overflow: hidden; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: stretch; }
.feature-text { padding: 22px 18px; min-width: 0; }
.feature-text h3 { font-size: 1.9rem; }
.feature-text p { color: var(--muted); line-height: 1.55; margin: 0 0 18px; }
.feature-card > img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; }
.outline-btn { display: inline-flex; padding: 12px 18px; border-radius: 12px; border: 1px solid rgba(52,16,83,.25); color: var(--purple-900); font-size: .92rem; font-weight: 700; }

.about-section { width: min(1280px, calc(100% - 24px)); margin: 18px auto 0; padding: 28px; display: grid; grid-template-columns: 1.15fr .62fr; gap: 22px; }
.about-left h2 { font-size: 3rem; margin-bottom: 16px; }
.about-left p { margin: 0; color: var(--muted); line-height: 1.72; font-size: 1.02rem; }
.about-left ul { margin: 20px 0 0; padding-left: 18px; color: var(--purple-900); }
.about-left li { margin: 10px 0; line-height: 1.5; }
.video-card { height: 100%; padding: 28px; border-radius: 22px; color: white; background: linear-gradient(135deg, var(--purple-900), var(--purple-700)); box-shadow: var(--shadow-medium); }
.video-card h3 { margin: 0 0 12px; font-size: 2rem; font-family: "Cormorant Garamond", Georgia, serif; }
.video-card p { margin: 0 0 22px; line-height: 1.65; color: rgba(255,255,255,.8); }

.section-mini { display: inline-flex; margin-bottom: 14px; color: var(--gold-700); font-weight: 900; letter-spacing: .13em; text-transform: uppercase; font-size: .78rem; }
.charter-section, .pillars-section, .values-section { width: min(1280px, calc(100% - 24px)); margin: 18px auto 0; border-radius: 28px; box-shadow: var(--shadow-soft); }
.charter-section { padding: 34px; background: radial-gradient(circle at right top, rgba(216,155,42,.16), transparent 30rem), linear-gradient(135deg, #fff, #fbf7ff); border: 1px solid var(--line); }
.charter-head { max-width: 920px; margin-bottom: 24px; }
.charter-head h2, .pillars-intro h2, .values-section h2 { margin: 0; color: var(--purple-900); font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(2.3rem, 5vw, 4.7rem); line-height: .95; }
.charter-head p { margin: 14px 0 0; color: var(--purple-700); font-weight: 900; font-size: 1.15rem; }
.charter-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; }
.charter-card { padding: 24px; border-radius: 22px; background: white; border: 1px solid rgba(52,16,83,.1); }
.charter-card.large { grid-column: 1 / -1; background: linear-gradient(135deg, var(--purple-900), var(--purple-700)); color: white; }
.charter-card h3, .pillars-grid h3 { margin: 0 0 10px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.7rem; color: var(--purple-900); }
.charter-card.large h3 { color: var(--gold-300); }
.charter-card p, .pillars-grid p { margin: 0; color: var(--muted); line-height: 1.7; }
.charter-card.large p { color: rgba(255,255,255,.82); }
.pillars-section { padding: 34px; background: linear-gradient(135deg, var(--purple-900), var(--purple-700)); }
.pillars-intro { max-width: 900px; margin-bottom: 26px; }
.pillars-intro h2 { color: white; }
.pillars-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.pillars-grid article { padding: 24px; border-radius: 22px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); }
.pillars-grid span { display: inline-flex; width: 44px; height: 44px; margin-bottom: 18px; align-items: center; justify-content: center; border-radius: 50%; color: var(--purple-900); background: var(--gold-300); font-weight: 900; }
.pillars-grid h3 { color: white; }
.pillars-grid p { color: rgba(255,255,255,.78); }
.values-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; align-items: center; padding: 34px; background: white; border: 1px solid var(--line); }
.values-list { display: flex; flex-wrap: wrap; gap: 10px; }
.values-list span { display: inline-flex; padding: 11px 14px; border-radius: 999px; color: var(--purple-900); background: var(--purple-100); border: 1px solid rgba(52,16,83,.08); font-weight: 800; font-size: .92rem; }

.referral-section { width: min(1280px, calc(100% - 24px)); margin: 18px auto 26px; overflow: hidden; display: grid; grid-template-columns: .7fr 1.2fr .5fr; gap: 0; background: linear-gradient(135deg, var(--purple-900), var(--purple-700)); }
.referral-copy { padding: 30px; color: white; }
.referral-copy h2 { margin: 0 0 16px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 3rem; line-height: .95; }
.referral-copy p { color: rgba(255,255,255,.82); line-height: 1.65; }
.referral-form { padding: 24px; align-self: center; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-grid input, .form-grid select { width: 100%; min-height: 54px; padding: 0 16px; border-radius: 12px; border: 1px solid rgba(255,255,255,.22); background: white; font: inherit; color: var(--text); }
.submit-btn { width: 100%; min-height: 56px; margin-top: 12px; border: 0; border-radius: 12px; font: inherit; font-weight: 800; cursor: pointer; color: white; background: linear-gradient(135deg, var(--gold-700), var(--gold-500)); display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.privacy-box { display: grid; align-content: center; justify-items: center; text-align: center; padding: 24px; color: white; border-left: 1px solid rgba(255,255,255,.14); }
.privacy-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 18px; color: white; border: 1px solid rgba(255,255,255,.24); background: rgba(255,255,255,.08); }
.privacy-box p { margin: 14px 0 0; max-width: 180px; line-height: 1.6; color: rgba(255,255,255,.84); }

.footer { width: min(1280px, calc(100% - 24px)); margin: 0 auto 24px; padding: 26px 10px 10px; display: grid; grid-template-columns: 1fr auto auto; gap: 20px; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { height: 64px; }
.footer-brand p { margin: 0; color: var(--muted); max-width: 340px; }
.footer-brand small { display: block; margin-top: 4px; color: #968c9c; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; }
.footer-links a { color: var(--purple-900); font-weight: 700; }
.footer-contact a { color: var(--purple-700); font-weight: 800; }
.floating-wa { position: fixed; right: 18px; bottom: 18px; z-index: 150; min-height: 52px; padding: 14px 18px; display: inline-flex; gap: 9px; align-items: center; justify-content: center; border-radius: 999px; background: #25d366; color: white; font-weight: 800; box-shadow: 0 18px 36px rgba(37,211,102,.32); }
.wa-mini-icon svg { width: 22px; height: 22px; display: block; }
.modal { position: fixed; inset: 0; display: none; z-index: 300; }
.modal.open { display: block; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(15,8,26,.7); backdrop-filter: blur(8px); }
.modal-card { position: relative; width: min(620px, calc(100% - 24px)); margin: 10vh auto 0; padding: 26px; border-radius: 24px; background: white; box-shadow: var(--shadow-heavy); z-index: 2; }
.modal-close { position: absolute; top: 14px; right: 14px; width: 40px; height: 40px; border: 0; border-radius: 50%; background: #f1edf5; font-size: 1.4rem; cursor: pointer; }
.modal-card h3 { margin: 0 0 14px; color: var(--purple-900); font-family: "Cormorant Garamond", Georgia, serif; font-size: 2rem; }
.modal-card p { color: var(--muted); line-height: 1.7; }
.modal-video-placeholder { margin-top: 18px; min-height: 250px; border-radius: 18px; display: grid; place-items: center; text-align: center; padding: 18px; background: linear-gradient(135deg, var(--purple-900), var(--purple-700)); color: white; }
.modal-play { width: 76px; height: 76px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.12); }
.modal-play svg { width: 32px; height: 32px; fill: currentColor; stroke: currentColor; margin-left: 4px; }
.modal-video-placeholder small { color: rgba(255,255,255,.82); }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .74s ease, transform .74s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (max-width: 1180px) {
  .hero-inner, .gift-impact, .dashboard, .about-section, .referral-section, .values-section { grid-template-columns: 1fr; }
  .hero-inner { min-height: auto; }
  .hero-visual { min-height: 420px; }
  .gift-impact { border-radius: 0 0 24px 24px; }
  .feature-card { grid-template-columns: 1fr 1fr; }
  .privacy-box { border-left: 0; border-top: 1px solid rgba(255,255,255,.14); }
}

@media (max-width: 900px) {
  .site-header { padding: 10px; }
  .nav { min-height: 88px; border-radius: 24px; padding: 12px 14px; }
  .brand-logo { height: 78px; max-width: 62vw; }
  .menu-toggle { display: block; flex: 0 0 auto; }
  .nav-links { position: absolute; left: 10px; right: 10px; top: 100px; display: none; flex-direction: column; align-items: stretch; padding: 16px; border-radius: 20px; background: rgba(255,255,255,.98); box-shadow: var(--shadow-medium); }
  .nav-links.open { display: flex; }
  .nav-links a { text-align: center; color: var(--purple-900); }
  .hero { width: calc(100% - 18px); margin-top: -86px; padding-top: 100px; }
  .hero-inner { border-radius: 28px; }
  .hero-copy { padding: 94px 20px 24px; }
  .hero h1 { font-size: clamp(3rem, 11vw, 4.5rem); line-height: .94; }
  .lead { max-width: 100%; font-size: 1rem; line-height: 1.72; }
  .wa-box { width: 100%; align-items: center; }
  .hero-visual { min-height: 360px; }
  .gift-impact, .dashboard, .feature-row, .about-section, .referral-section, .footer, .charter-section, .pillars-section, .values-section { width: calc(100% - 18px); }
  .impact-left, .refined-donation, .stats-card, .testimonial-card, .campaign-card, .about-section, .charter-section, .pillars-section, .values-section { padding: 22px 18px; }
  .impact-left h2 { font-size: 1.7rem; line-height: 1.05; }
  .feature-card { grid-template-columns: 1fr; }
  .feature-card > img { min-height: 240px; }
  .about-left h2, .referral-copy h2 { font-size: 2.35rem; line-height: .96; }
  .referral-copy, .referral-form, .privacy-box { padding: 22px 18px; }
  .form-grid, .clean-bank .two-col { grid-template-columns: 1fr; }
  .footer { grid-template-columns: 1fr; text-align: left; }
  .footer-brand { align-items: flex-start; }
  .footer-brand img { height: 58px; }
}

@media (max-width: 620px) {
  .nav { min-height: 82px; }
  .brand-logo { height: 68px; }
  .hero { width: calc(100% - 14px); margin-top: -78px; padding-top: 92px; }
  .hero-copy { padding: 84px 16px 20px; }
  .tiny-kicker { font-size: .82rem; line-height: 1.4; }
  .hero h1 { font-size: 2.8rem; }
  .lead { font-size: .96rem; }
  .scripture { font-size: 1.04rem; }
  .hero-actions, .trust-badges { flex-direction: column; align-items: stretch; }
  .btn, .outline-btn, .submit-btn { width: 100%; }
  .wa-box { padding: 14px; }
  .wa-text a { font-size: .98rem; word-break: break-word; }
  .trust-item { width: 100%; }
  .hero-visual { min-height: 300px; }
  .curve-wave { width: 88%; height: 28%; }
  .leaf-one { right: 28px; bottom: 90px; width: 70px; height: 140px; }
  .leaf-two { right: 2px; bottom: 62px; width: 46px; height: 100px; }
  .gift-impact, .dashboard, .feature-row, .about-section, .referral-section, .footer, .charter-section, .pillars-section, .values-section { width: calc(100% - 14px); }
  .donation-mini-head h3 { font-size: 1.78rem; }
  .clean-bank .account-number { font-size: 1.38rem !important; }
  .stat-box strong { font-size: 1.7rem; }
  .about-left h2, .referral-copy h2 { font-size: 2rem; }
  .footer-brand img { height: 52px; }
  .floating-wa { right: 12px; bottom: 12px; padding: 13px 15px; }
}
