/* ── EXACT THEME TOKENS FROM theme.json ── */
:root {
  --primary: #F57C00;
  --secondary: #4D6201;
  --base: #f9f9f9;
  --base-2: #ffffff;
  --contrast: #111111;
  --contrast-2: #232323;
  --contrast-3: #A4A4A4;
  --contrast-4: #6B6B6B;
  --accent: #DDE1C9;
  --accent-2: #c2a990;
  --accent-3: #d8613c;
  --accent-4: #b1c5a4;
  --accent-6: #F5F8FE;
  --accent-7: #F8F8F8;
  --btn-hover: #A43700;
  --content-width: 1140px;
  --font-body: 'Inter', sans-serif;
  --font-display: 'Source Serif 4', serif;
  --ease-smooth: cubic-bezier(.22,1,.36,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ── DECORATIVE GRADIENT BLOBS ── */
@keyframes blobFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -40px) scale(1.1); }
  66% { transform: translate(-30px, 25px) scale(0.94); }
}
@keyframes blobFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-55px, 35px) scale(1.06); }
  66% { transform: translate(35px, -30px) scale(0.96); }
}
.decor-blobs { position: relative; overflow: hidden; }
.decor-blobs::before,
.decor-blobs::after {
  content: ''; position: absolute; border-radius: 50%;
  filter: blur(70px); z-index: 0; pointer-events: none; opacity: .3;
  will-change: transform;
}
.decor-blobs::before {
  width: 440px; height: 440px;
  background: radial-gradient(circle, var(--primary), transparent 70%);
  top: -140px; left: -120px;
  animation: blobFloat1 20s ease-in-out infinite;
}
.decor-blobs::after {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--accent-4), transparent 70%);
  bottom: -150px; right: -110px;
  animation: blobFloat2 24s ease-in-out infinite;
}
.decor-blobs.on-dark::before { opacity: .35; }
.decor-blobs.on-dark::after { background: radial-gradient(circle, var(--accent-2), transparent 70%); opacity: .25; }
.decor-blobs > * { position: relative; z-index: 1; }
@media (max-width: 640px) {
  .decor-blobs::before { width: 280px; height: 280px; }
  .decor-blobs::after { width: 260px; height: 260px; }
}
@media (prefers-reduced-motion: reduce) {
  .decor-blobs::before, .decor-blobs::after { animation: none; }
}

/* ── WHITE→GREEN GRADIENT BAND (replaces flat olive fill) ── */
.bg-green-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #eef3e2 40%, #b9cf8a 68%, #3a4901 100%);
}

html { overflow-x: hidden; }
body { font-family: var(--font-body); color: var(--contrast-2); background: var(--base-2); overflow-x: hidden; }
img, video { max-width: 100%; }
.ab-lead-grid { display: grid; grid-template-columns: 33% 1fr; gap: 40px; margin-bottom: 48px; }

/* ── HEADER (white bg, sticky) ── */
#header {
  background: var(--base-2);
  border-bottom: 1px solid #e8e8e8;
  position: sticky; top: 0; z-index: 900;
  padding: 20px 5%;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.header-inner {
  max-width: var(--content-width); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.site-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; min-width: 0; flex-shrink: 1; }
.site-logo img { height: 44px; width: 44px; object-fit: contain; flex-shrink: 0; }
.site-logo-text { line-height: 1.15; min-width: 0; }
.site-logo-text strong { display: block; font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--contrast); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.site-logo-text span { display: block; font-size: 10px; color: var(--contrast-3); letter-spacing: .8px; text-transform: uppercase; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.btn-donate-short { display: none; }
.site-nav { display: flex; align-items: center; gap: 4px; list-style: none; }
.site-nav a { font-family: 'Manrope', var(--font-body); font-size: 14.5px; font-weight: 600; letter-spacing: .2px; color: var(--contrast-2); text-decoration: none; padding: 6px 14px; border-radius: 4px; transition: color .15s var(--ease-smooth), background .15s var(--ease-smooth); }
.site-nav a:hover { color: var(--primary); background: rgba(245,124,0,.06); }
.site-nav a.active { color: var(--primary); font-weight: 600; }
.btn-donate {
  background: var(--primary); color: var(--base-2);
  padding: 12px 25px; border-radius: 4px;
  font-size: 15px; font-weight: 700; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s; white-space: nowrap; flex-shrink: 0;
}
.btn-donate:hover { background: var(--btn-hover); }
.btn-donate svg { width: 16px; height: 16px; fill: white; stroke: none; flex-shrink: 0; }
.burger {
  display: none; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; cursor: pointer; flex-shrink: 0;
  width: 40px; height: 40px; border-radius: 6px; border: none; background: transparent;
  transition: background .2s var(--ease-smooth);
}
.burger:hover { background: rgba(0,0,0,.05); }
.burger span {
  width: 20px; height: 2px; background: var(--contrast); border-radius: 2px; display: block;
  transition: transform .28s var(--ease-smooth), opacity .28s var(--ease-smooth);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO SLIDESHOW ── */
#hero {
  background: var(--contrast);
  min-height: 680px;
  padding: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.6s var(--ease-smooth);
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(10,14,6,.82) 0%, rgba(10,14,6,.58) 45%, rgba(10,14,6,.28) 100%);
}
.hero-inner {
  max-width: var(--content-width); margin: 0 auto; padding: 150px 5% 110px;
  position: relative; z-index: 2; width: 100%;
}
.hero-left { max-width: 620px; display: flex; flex-direction: column; gap: 0; }
.hero-eyebrow {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,.85); background: rgba(255,255,255,.14); padding: 5px 12px; border-radius: 100px;
  width: fit-content; margin-bottom: 16px; transition: opacity .4s cubic-bezier(.22,1,.36,1);
}
.hero-h1 {
  font-family: var(--font-display); font-size: 64px; font-weight: 600; line-height: 1.15;
  color: #fff; margin-bottom: 20px; letter-spacing: -.5px; transition: opacity .4s cubic-bezier(.22,1,.36,1);
}
.hero-h1 .primary-word { color: var(--primary); }
.hero-desc {
  font-size: 16px; letter-spacing: 0; line-height: 1.6;
  color: rgba(255,255,255,.85); margin-bottom: 28px; max-width: 480px;
  font-weight: 400; transition: opacity .4s cubic-bezier(.22,1,.36,1);
}
.hero-fade-out { opacity: 0; }
.hero-cta-row {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 36px;
}
.btn-hero-donate {
  background: var(--primary); color: var(--base-2);
  padding: 13px 26px; border-radius: 4px;
  font-size: 15px; font-weight: 700; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s;
}
.btn-hero-donate:hover { background: var(--btn-hover); }
.btn-hero-donate svg { width: 16px; height: 16px; fill: white; stroke: none; }
.hero-bottom-row {
  display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num { font-size: 32px; font-weight: 700; color: #fff; line-height: 1; }
.hero-stat-label { font-size: 14px; color: rgba(255,255,255,.7); font-weight: 500; margin-top: 2px; }
.hero-stat-sep { width: 1px; height: 50px; background: rgba(255,255,255,.25); }
.btn-involved {
  background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.55);
  padding: 11.5px 24px; border-radius: 4px;
  font-size: 15px; font-weight: 600; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s, border-color .2s;
}
.btn-involved:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.85); }
.btn-involved svg { width: 16px; height: 16px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn-involved-light {
  background: transparent; color: var(--contrast); border: 1.5px solid var(--contrast-3);
  padding: 11.5px 24px; border-radius: 4px;
  font-size: 15px; font-weight: 600; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s, border-color .2s;
}
.btn-involved-light:hover { background: rgba(0,0,0,.04); border-color: var(--contrast-2); }
.btn-involved-light svg { width: 16px; height: 16px; stroke: var(--contrast); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.hero-dots {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; gap: 9px;
}
.hero-dot {
  width: 9px; height: 9px; border-radius: 50%; border: none; padding: 0;
  background: rgba(255,255,255,.4); cursor: pointer; transition: background .2s, transform .2s;
}
.hero-dot:hover { background: rgba(255,255,255,.7); }
.hero-dot.active { background: #fff; transform: scale(1.25); }

.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.4);
  background: rgba(10,14,6,.25); cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}
.hero-arrow:hover { background: rgba(10,14,6,.5); border-color: rgba(255,255,255,.8); }
.hero-arrow svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.hero-arrow-prev { left: 20px; }
.hero-arrow-next { right: 20px; }
@media (max-width: 640px) {
  .hero-arrow { display: none; }
}

/* ── TOGETHER BAND (secondary = olive green) ── */
.together-band {
  background: var(--secondary); padding: 80px 5%;
}
.together-inner {
  max-width: var(--content-width); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.together-photo-col {
  height: 587px; border-radius: 8px; overflow: hidden;
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end; justify-content: center;
  position: relative;
}
.together-photo-col::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,14,6,.55) 0%, rgba(10,14,6,0) 45%);
}
.together-photo-btn {
  position: absolute; z-index: 1; bottom: 32px; left: 32px;
  background: var(--primary); color: white;
  padding: 12px 25px; border-radius: 4px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s;
}
.together-photo-btn:hover { background: var(--btn-hover); }
.together-photo-btn svg { width: 16px; height: 16px; fill: white; stroke: none; }
.together-right { color: var(--contrast); }
.together-right h2 {
  font-family: var(--font-display); font-size: 56px; font-weight: 600; line-height: 1.2;
  color: var(--contrast); margin-bottom: 32px;
}
.together-right h2 em { font-style: italic; color: var(--primary); }
.stat-glass {
  background: rgba(18,18,18,.38); border-radius: 8px;
  padding: 16px; margin-bottom: 12px;
  display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: center;
}
.stat-glass:last-child { margin-bottom: 0; }
.sg-num { font-size: 34px; font-weight: 700; color: var(--base-2); line-height: 1; }
.sg-label { font-size: 13px; color: var(--base-2); font-weight: 500; opacity: .8; }
.sg-desc { font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.5; margin-top: 3px; font-weight: 300; }

/* ── IMPACT SECTION ── */
#impact { background: var(--base); padding: 80px 5%; }
.impact-inner { max-width: var(--content-width); margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--primary); margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display); font-size: 56px; font-weight: 600; line-height: 1.3; color: var(--contrast);
}
.section-title em { font-style: italic; color: var(--primary); font-weight: 700; }
.section-eyebrow.alt { color: var(--secondary); }
.section-title .alt-em { font-style: italic; color: var(--secondary); font-weight: 700; }
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.impact-card {
  background: var(--base-2); border-radius: 8px; overflow: hidden;
  border: 1px solid #eee; transition: transform .4s var(--ease-smooth), box-shadow .4s var(--ease-smooth);
}
.impact-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.1); }
.impact-card-img {
  height: 200px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; background-color: var(--contrast-2);
  background-size: cover; background-position: center;
  transition: transform .5s var(--ease-smooth);
}
.impact-card:hover .impact-card-img { transform: scale(1.06); }
.ic-tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,.18); color: white;
  font-size: 10.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
}
.impact-card-body { padding: 24px; }
.impact-card-body h3 { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--contrast); margin-bottom: 8px; }
.impact-card-body p { font-size: 14px; color: var(--contrast-4); line-height: 1.65; font-weight: 300; }
.impact-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--primary);
  text-decoration: none; margin-top: 14px; transition: gap .15s;
}
.impact-card-link:hover { gap: 10px; }
.impact-card-link svg { width: 13px; height: 13px; stroke: var(--primary); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ── HOW TO HELP ── */
#help { background: var(--base-2); padding: 80px 5%; }
.help-inner { max-width: var(--content-width); margin: 0 auto; }
.help-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.help-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.help-card {
  background: var(--base-2); border-radius: 6px; padding: 24px;
  border: 1px solid #eee;
  transition: box-shadow .25s, border-color .25s, transform .25s;
}
.help-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.09); border-color: var(--accent); transform: translateY(-4px); }
.help-card-icon {
  width: 60px; height: 60px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
}
.hci-green { background: rgba(77,98,1,.1); }
.hci-orange { background: rgba(245,124,0,.1); }
.help-card-icon svg { width: 28px; height: 28px; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; fill: none; }
.si-green { stroke: var(--secondary); }
.si-orange { stroke: var(--primary); }
.help-card h3 { font-size: 21px; font-weight: 600; color: var(--contrast); margin-bottom: 10px; }
.help-card p { font-size: 14px; color: var(--contrast-4); line-height: 1.65; font-weight: 300; }

/* FAQ ── sits next to help cards */
.faq-wrap {}
.faq-title { font-family: var(--font-display); font-size: 56px; font-weight: 600; color: var(--contrast); line-height: 1.3; margin-bottom: 24px; }
.faq-title em { font-style: italic; color: var(--primary); }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid #eee; border-radius: 6px; overflow: hidden; }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 20px; cursor: pointer; user-select: none;
  font-size: 14.5px; font-weight: 600; color: var(--contrast);
  transition: background .15s;
}
.faq-q:hover { background: var(--accent-7); }
.faq-q svg { width: 18px; height: 18px; stroke: var(--primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; transition: transform .25s; }
.faq-item.open .faq-q { background: var(--secondary); color: var(--base-2); }
.faq-item.open .faq-q svg { stroke: rgba(255,255,255,.7); transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  font-size: 14px; color: var(--contrast-4); line-height: 1.75; font-weight: 300;
  transition: max-height .3s ease, padding .3s ease; padding: 0 20px;
}
.faq-item.open .faq-a { max-height: 300px; padding: 14px 20px 18px; }

/* ── PARTNERS ── */
#partners { background: var(--base); padding: 80px 5%; }
.partners-inner { max-width: var(--content-width); margin: 0 auto; }
.pgroup { margin-bottom: 40px; }
.pgroup:last-child { margin-bottom: 0; }
.ptitle { font-size: 10.5px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: var(--contrast-3); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid #e8e8e8; }
.plogos { display: flex; flex-wrap: wrap; gap: 10px; }
.plogo {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; padding: 16px 12px; width: 116px; min-height: 86px;
  border: 1px solid #e8e8e8; border-radius: 8px; background: var(--base-2);
  text-align: center; transition: all .3s var(--ease-smooth); cursor: default;
}
.plogo:hover { border-color: var(--primary); background: rgba(245,124,0,.04); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,124,0,.1); }
.plogo img { height: 30px; width: auto; max-width: 84px; object-fit: contain; opacity: .82; transition: opacity .25s var(--ease-smooth), transform .35s var(--ease-smooth); }
.plogo:hover img { opacity: 1; transform: scale(1.08); }
.plogo span { font-size: 10px; font-weight: 700; color: var(--contrast-3); line-height: 1.3; }

/* ── CONTACT ── */
#contact { background: var(--base-2); padding: 80px 5%; }
.contact-inner { max-width: var(--content-width); margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 32px; align-items: stretch; }
.contact-info-card { background: var(--base); border: 1px solid #eee; border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; }
.contact-info-photo { width: 100%; height: 190px; object-fit: cover; display: block; }
.contact-info-body { padding: 32px; }
.contact-info-desc { font-size: 14.5px; color: var(--contrast-4); line-height: 1.75; font-weight: 300; margin-bottom: 28px; }
.ci-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.ci-row:last-child { margin-bottom: 0; }
.ci-ico { width: 40px; height: 40px; border-radius: 8px; background: var(--secondary); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.ci-ico svg { width: 16px; height: 16px; stroke: var(--base-2); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ci-lbl { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--contrast-3); margin-bottom: 2px; }
.ci-val { font-size: 14px; color: var(--contrast-2); }
.ci-val a { color: var(--contrast-2); text-decoration: none; }
.ci-val a:hover { color: var(--primary); }
.contact-form-box { background: var(--base); border-radius: 10px; padding: 40px; border: 1px solid #eee; }
.contact-form-box h3 { font-size: 22px; font-weight: 700; color: var(--contrast); margin-bottom: 24px; }
.fg { margin-bottom: 14px; }
.fg label { display: block; font-size: 11.5px; font-weight: 700; color: var(--contrast-2); margin-bottom: 5px; letter-spacing: .3px; text-transform: uppercase; }
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 11px 14px; border: 1px solid #ddd;
  border-radius: 6px; font-size: 14px; font-family: var(--font-body);
  color: var(--contrast-2); background: var(--base-2); outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(245,124,0,.1); }
.fg-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-send {
  width: 100%; padding: 13px; background: var(--primary); color: white; border: none;
  border-radius: 6px; font-family: var(--font-body); font-size: 15px; font-weight: 600;
  cursor: pointer; transition: background .2s; display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-send:hover { background: var(--btn-hover); }
.btn-send svg { width: 16px; height: 16px; fill: white; stroke: none; }
.form-ok { display: none; text-align: center; padding: 40px 20px; }
.form-ok-check { width: 52px; height: 52px; border-radius: 50%; background: rgba(77,98,1,.12); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.form-ok-check svg { width: 22px; height: 22px; stroke: var(--secondary); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.form-ok h4 { font-size: 22px; font-weight: 700; color: var(--contrast); margin-bottom: 8px; }
.form-ok p { font-size: 14px; color: var(--contrast-4); }

/* ── DONATE ── */
#donate { padding: 80px 5%; }
.donate-inner { max-width: var(--content-width); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.donate-left h2 { font-family: var(--font-display); font-size: 42px; font-weight: 600; line-height: 1.2; color: var(--contrast); margin-bottom: 16px; }
.donate-left h2 em { font-style: italic; color: var(--primary); }
.donate-left p { font-size: 15px; color: var(--contrast-4); line-height: 1.75; font-weight: 300; margin-bottom: 32px; }
.donate-impact-list { display: flex; flex-direction: column; gap: 14px; }
.di-item { display: flex; gap: 14px; align-items: flex-start; padding: 16px 18px; background: var(--base-2); border: 1px solid #e3e9d4; border-radius: 8px; }
.di-amt { flex-shrink: 0; font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--primary); min-width: 56px; }
.di-desc { font-size: 13.5px; color: var(--contrast-4); line-height: 1.5; font-weight: 300; padding-top: 2px; }
.amts { display: flex; gap: 8px; flex-wrap: wrap; }
.amt { border: 1.5px solid #ddd; color: var(--contrast-2); background: var(--base-2); padding: 9px 16px; border-radius: 4px; font-weight: 700; font-size: 14px; cursor: pointer; font-family: var(--font-body); transition: all .15s; }
.amt:hover, .amt.on { background: var(--primary); border-color: var(--primary); color: white; }
.donate-card { background: var(--base-2); border-radius: 10px; padding: 40px; border: 1px solid #eee; box-shadow: 0 12px 40px rgba(0,0,0,.06); }
.donate-card h3 { font-size: 22px; font-weight: 700; color: var(--contrast); margin-bottom: 22px; }
.d-btn { width: 100%; padding: 13px; background: var(--primary); color: white; border: none; border-radius: 6px; font-family: var(--font-body); font-size: 15px; font-weight: 600; cursor: pointer; transition: background .2s; display: flex; align-items: center; justify-content: center; gap: 8px; }
.d-btn:hover { background: var(--btn-hover); }
.d-btn svg { width: 16px; height: 16px; fill: white; stroke: none; }
.d-note { font-size: 11px; color: var(--contrast-4); text-align: center; margin-top: 10px; }

/* ── FOOTER (contrast = #111111) ── */
footer { background: #263301; padding: 64px 5% 0; }
.footer-inner { max-width: var(--content-width); margin: 0 auto; }
.footer-top {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 24px;
  padding-bottom: 32px; border-bottom: 1px solid var(--accent-2); margin-bottom: 0;
}
.footer-newsletter h3 { font-size: 26px; font-weight: 500; color: var(--base-2); line-height: 1.3; margin-bottom: 14px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a { width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: background .15s; }
.footer-social a:hover { background: var(--primary); }
.footer-social svg { width: 13px; height: 13px; fill: rgba(255,255,255,.6); stroke: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.footer-email-form { display: flex; gap: 8px; }
.footer-email-form input { padding: 10px 14px; border: 1px solid transparent; border-radius: 4px; background: rgba(255,255,255,.1); color: white; font-family: var(--font-body); font-size: 13.5px; min-width: 200px; transition: border-color .15s, background .15s; }
.footer-email-form input:focus { outline: none; border-color: var(--primary); background: rgba(255,255,255,.16); }
.footer-email-form input::placeholder { color: rgba(255,255,255,.4); }
.footer-email-form button { padding: 10px 18px; background: var(--primary); color: white; border: none; border-radius: 4px; font-family: var(--font-body); font-size: 13px; font-weight: 600; cursor: pointer; transition: background .15s; }
.footer-email-form button:hover { background: var(--btn-hover); }
.footer-cols { display: grid; grid-template-columns: 2fr 1fr 1.5fr 1.5fr; gap: 48px; padding: 48px 0 36px; border-bottom: 1px solid rgba(255,255,255,.08); }
.ft-col h4 { font-size: 21px; font-weight: 600; color: var(--base-2); margin-bottom: 12px; }
.ft-col-divider { height: 2px; background: var(--primary); width: 40px; margin-bottom: 16px; }
.ft-col p { font-size: 15px; color: var(--accent-6); line-height: 1.6; font-weight: 300; }
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.ft-col ul li { font-size: 15px; color: var(--base); }
.ft-col ul li a { color: var(--base); text-decoration: none; transition: color .15s; }
.ft-col ul li a:hover { color: var(--primary); }
.ft-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.ft-contact-item svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
.ft-contact-item span { font-size: 15px; color: var(--base); line-height: 1.5; }
.footer-bottom { padding: 20px 0; text-align: center; font-size: 13px; color: rgba(255,255,255,.3); }
.footer-bottom a { color: rgba(255,255,255,.3); text-decoration: none; }

/* ── REVEAL ── */
.rv { opacity: 0; transform: translateY(16px); transition: opacity .85s var(--ease-smooth), transform .85s var(--ease-smooth); }
.rv.d1 { transition-delay: .1s; } .rv.d2 { transition-delay: .2s; } .rv.d3 { transition-delay: .3s; }
.rv.in { opacity: 1; transform: none; }

/* ── TOAST ── */
.toast { position: fixed; bottom: 24px; right: 24px; z-index: 9999; background: var(--contrast); color: white; padding: 12px 20px; border-radius: 6px; font-size: 14px; font-weight: 500; border-left: 3px solid var(--secondary); transform: translateY(60px); opacity: 0; transition: all .35s cubic-bezier(.34,1.56,.64,1); }
.toast.show { transform: none; opacity: 1; }

/* ── RESPONSIVE ── */
@media(max-width:1100px) {
  .hero-h1 { font-size: 52px; } .section-title { font-size: 44px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media(max-width:900px) {
  #hero { min-height: 560px; }
  .hero-inner { padding: 110px 5% 80px; }
  .together-inner, .donate-inner, .contact-grid, .help-layout, .ab-lead-grid { grid-template-columns: 1fr; gap: 40px; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .footer-email-form input { min-width: 0; flex: 1; }
  .header-inner { gap: 10px; }
  .site-nav {
    display: none; flex-direction: column; align-items: stretch; gap: 0; list-style: none;
    position: absolute; top: 100%; left: 0; right: 0; background: #dce8c2;
    padding: 10px 0; box-shadow: 0 12px 28px rgba(0,0,0,.12);
    z-index: 800;
  }
  .site-nav.open { display: flex; }
  .site-nav li { border-bottom: 1px solid rgba(77,98,1,.12); }
  .site-nav li:last-child { border-bottom: none; }
  .site-nav a {
    display: block; border-radius: 0; padding: 16px 6%;
    text-align: left; font-size: 14px; letter-spacing: .8px; text-transform: uppercase;
    color: var(--contrast);
  }
  .site-nav a:hover, .site-nav a.active { color: var(--secondary); background: rgba(77,98,1,.08); }
  .burger { display: flex; }
}
@media(max-width:480px) {
  #header { padding: 14px 5%; }
  .header-inner { gap: 8px; }
  .site-logo { gap: 7px; }
  .site-logo img { height: 34px; width: 34px; }
  .site-logo-text strong { font-size: 16px; }
  .site-logo-text span { display: none; }
  .btn-donate { padding: 9px 14px; font-size: 13px; gap: 0; }
  .btn-donate svg { display: none; }
  .btn-donate-full { display: none; }
  .btn-donate-short { display: inline; }
}
@media(max-width:640px) {
  #hero { min-height: 480px; }
  .hero-h1 { font-size: 38px; } .section-title { font-size: 34px; } .faq-title { font-size: 34px; } .donate-left h2 { font-size: 34px; } .together-right h2 { font-size: 34px; } .footer-cols { grid-template-columns: 1fr; gap: 28px; }
  .impact-grid { grid-template-columns: 1fr; }
  .help-cards-grid { grid-template-columns: 1fr; }
  .fg-2 { grid-template-columns: 1fr; }
  .donate-card, .contact-form-box, .contact-info-body { padding: 24px; }
  .hero-cta-row { gap: 10px; }
  .hero-bottom-row { gap: 24px; }
  .donate-impact-list { gap: 10px; }
  .di-item { padding: 12px 14px; }
}
@media(max-width:480px) {
  #hero { min-height: 560px; }
  .hero-inner { padding: 130px 6% 60px; }
  .hero-eyebrow { font-size: 10px; margin-bottom: 14px; }
  .hero-h1 { font-size: 30px; line-height: 1.25; margin-bottom: 16px; }
  .hero-desc { font-size: 14.5px; margin-bottom: 24px; }
  .hero-cta-row { margin-bottom: 28px; }
  .hero-stat-num { font-size: 26px; }
  .hero-stat-label { font-size: 12.5px; }
  .hero-bottom-row { gap: 20px; }
}
@media(prefers-reduced-motion:reduce){*{animation:none!important;transition:none!important}}

/* ── WOW.js + Animate.css (fadeInUp only) — exact from Charity Grove theme ── */
:root { --animate-duration: 1.2s; --animate-delay: 1s; --animate-repeat: 1; }

.animate__animated {
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: var(--ease-smooth);
  animation-timing-function: var(--ease-smooth);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 34px, 0);
    transform: translate3d(0, 34px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

/* WOW hidden state — elements start invisible until WOW triggers */
.wow { visibility: hidden; }

#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--primary); z-index: 2000; transition: width .1s linear;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .animate__animated { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .wow { visibility: visible !important; }
}

