/* ============================================================
   Park Watch — Landing Page Styles
   Palette: deep park green + urban charcoal + safety amber
============================================================ */
:root {
  --green-900: #0f2e1e;
  --green-800: #123a25;
  --green-700: #1a5636;
  --green-600: #227446;
  --green-500: #2d9459;
  --green-100: #e9f5ee;
  --amber-500: #f5a623;
  --amber-600: #e39412;
  --ink-900:   #10161a;
  --ink-800:   #1c2529;
  --ink-700:   #2b363d;
  --ink-500:   #52636c;
  --ink-400:   #7a8892;
  --ink-200:   #d7dee2;
  --ink-100:   #eef2f4;
  --paper:     #ffffff;
  --grey-50:   #f7f9fa;

  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 18px;

  --shadow-sm: 0 1px 2px rgba(16,22,26,.06), 0 1px 3px rgba(16,22,26,.05);
  --shadow-md: 0 6px 16px rgba(16,22,26,.09), 0 2px 4px rgba(16,22,26,.06);
  --shadow-lg: 0 20px 40px rgba(16,22,26,.14), 0 6px 12px rgba(16,22,26,.08);

  --container: 1200px;

  --font-display: 'Barlow Condensed', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-800);
  background: var(--paper);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--green-700); text-decoration: none; }
a:hover { color: var(--green-600); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink-900);
  letter-spacing: .01em;
  line-height: 1.1;
  margin: 0 0 .5em;
  font-weight: 800;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.35rem; font-weight: 700; text-transform: none; letter-spacing: 0; font-family: var(--font-body); color: var(--ink-900); }
h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: .1em; }
p { margin: 0 0 1em; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green-600);
  padding: 6px 10px;
  border: 1px solid rgba(45,148,89,.25);
  border-radius: 999px;
  background: rgba(45,148,89,.06);
  margin-bottom: 14px;
}
.lead { font-size: 1.1rem; color: var(--ink-500); max-width: 62ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-sm { padding: 9px 16px; font-size: .85rem; }
.btn-lg { padding: 16px 28px; font-size: 1rem; }

.btn-primary { background: var(--amber-500); color: var(--ink-900); box-shadow: 0 8px 20px rgba(245,166,35,.25); }
.btn-primary:hover { background: var(--amber-600); color: var(--ink-900); }

.btn-outline { background: transparent; color: var(--green-700); border-color: var(--green-700); }
.btn-outline:hover { background: var(--green-700); color: #fff; }

.btn-ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.4);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,.14); color: #fff; }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Icons (CSS-only glyphs) ---------- */
.ic { width: 16px; height: 16px; display: inline-block; background-repeat: no-repeat; background-position: center; background-size: contain; vertical-align: -3px; }
.ic-phone   { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232d9459'><path d='M6.6 10.8a15 15 0 006.6 6.6l2.2-2.2a1 1 0 011-.24 11.4 11.4 0 003.6.58 1 1 0 011 1V20a1 1 0 01-1 1A17 17 0 013 4a1 1 0 011-1h3.5a1 1 0 011 1 11.4 11.4 0 00.6 3.6 1 1 0 01-.24 1z'/></svg>"); }
.ic-phone-w { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2310161a'><path d='M6.6 10.8a15 15 0 006.6 6.6l2.2-2.2a1 1 0 011-.24 11.4 11.4 0 003.6.58 1 1 0 011 1V20a1 1 0 01-1 1A17 17 0 013 4a1 1 0 011-1h3.5a1 1 0 011 1 11.4 11.4 0 00.6 3.6 1 1 0 01-.24 1z'/></svg>"); }
.ic-mail    { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232d9459'><path d='M4 4h16a2 2 0 012 2v12a2 2 0 01-2 2H4a2 2 0 01-2-2V6a2 2 0 012-2zm0 2v.4l8 5 8-5V6H4zm16 2.6l-7.4 4.6a1 1 0 01-1.2 0L4 8.6V18h16V8.6z'/></svg>"); }
.ic-fb { background: #2d9459; -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M13 22v-8h3l1-4h-4V7.5c0-1.1.4-1.5 1.5-1.5H17V2h-3c-3 0-4 1.7-4 4.5V10H7v4h3v8h3z'/></svg>") center/contain no-repeat;
             mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M13 22v-8h3l1-4h-4V7.5c0-1.1.4-1.5 1.5-1.5H17V2h-3c-3 0-4 1.7-4 4.5V10H7v4h3v8h3z'/></svg>") center/contain no-repeat; }
.ic-ig { background: #2d9459; -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2h.5c2.7 0 3.1 0 4.2.1 1.1 0 1.9.2 2.5.5.7.3 1.3.7 1.9 1.3s1 1.2 1.3 1.9c.3.6.4 1.4.5 2.5.1 1.1.1 1.5.1 4.2v.5c0 2.7 0 3.1-.1 4.2 0 1.1-.2 1.9-.5 2.5a5 5 0 01-1.3 1.9 5 5 0 01-1.9 1.3c-.6.3-1.4.4-2.5.5-1.1.1-1.5.1-4.2.1H12c-2.7 0-3.1 0-4.2-.1-1.1 0-1.9-.2-2.5-.5a5 5 0 01-1.9-1.3 5 5 0 01-1.3-1.9c-.3-.6-.4-1.4-.5-2.5C1.5 15.1 1.5 14.7 1.5 12v-.5c0-2.7 0-3.1.1-4.2 0-1.1.2-1.9.5-2.5a5 5 0 011.3-1.9A5 5 0 015.3 1.6c.6-.3 1.4-.4 2.5-.5C8.9 1 9.3 1 12 1zM12 6.4a5.6 5.6 0 100 11.2 5.6 5.6 0 000-11.2zm0 2a3.6 3.6 0 110 7.2 3.6 3.6 0 010-7.2zm6-2.4a1.3 1.3 0 100 2.6 1.3 1.3 0 000-2.6z'/></svg>") center/contain no-repeat;
             mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2h.5c2.7 0 3.1 0 4.2.1 1.1 0 1.9.2 2.5.5.7.3 1.3.7 1.9 1.3s1 1.2 1.3 1.9c.3.6.4 1.4.5 2.5.1 1.1.1 1.5.1 4.2v.5c0 2.7 0 3.1-.1 4.2 0 1.1-.2 1.9-.5 2.5a5 5 0 01-1.3 1.9 5 5 0 01-1.9 1.3c-.6.3-1.4.4-2.5.5-1.1.1-1.5.1-4.2.1H12c-2.7 0-3.1 0-4.2-.1-1.1 0-1.9-.2-2.5-.5a5 5 0 01-1.9-1.3 5 5 0 01-1.3-1.9c-.3-.6-.4-1.4-.5-2.5C1.5 15.1 1.5 14.7 1.5 12v-.5c0-2.7 0-3.1.1-4.2 0-1.1.2-1.9.5-2.5a5 5 0 011.3-1.9A5 5 0 015.3 1.6c.6-.3 1.4-.4 2.5-.5C8.9 1 9.3 1 12 1zM12 6.4a5.6 5.6 0 100 11.2 5.6 5.6 0 000-11.2zm0 2a3.6 3.6 0 110 7.2 3.6 3.6 0 010-7.2zm6-2.4a1.3 1.3 0 100 2.6 1.3 1.3 0 000-2.6z'/></svg>") center/contain no-repeat; }
.ic-tt { background: #2d9459; -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M14 3v9.5a3.5 3.5 0 11-3.5-3.5H12V6h-1.5a6.5 6.5 0 106.5 6.5V8.4a7 7 0 004 1.3V6.4a4 4 0 01-4-3.4z'/></svg>") center/contain no-repeat;
             mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M14 3v9.5a3.5 3.5 0 11-3.5-3.5H12V6h-1.5a6.5 6.5 0 106.5 6.5V8.4a7 7 0 004 1.3V6.4a4 4 0 01-4-3.4z'/></svg>") center/contain no-repeat; }
.ic-tw { background: #2d9459; -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M22 5.9a8 8 0 01-2.4.7 4.2 4.2 0 001.8-2.3 8.5 8.5 0 01-2.7 1A4.2 4.2 0 0011.5 9c0 .3 0 .6.1.9A12 12 0 013 5.1a4.2 4.2 0 001.3 5.6 4 4 0 01-1.9-.5v.1c0 2.1 1.5 3.8 3.4 4.2a4 4 0 01-1.9.1 4.2 4.2 0 004 3A8.5 8.5 0 012 19.3 12 12 0 008.3 21c7.6 0 11.8-6.3 11.8-11.8v-.5A8 8 0 0022 5.9z'/></svg>") center/contain no-repeat;
             mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M22 5.9a8 8 0 01-2.4.7 4.2 4.2 0 001.8-2.3 8.5 8.5 0 01-2.7 1A4.2 4.2 0 0011.5 9c0 .3 0 .6.1.9A12 12 0 013 5.1a4.2 4.2 0 001.3 5.6 4 4 0 01-1.9-.5v.1c0 2.1 1.5 3.8 3.4 4.2a4 4 0 01-1.9.1 4.2 4.2 0 004 3A8.5 8.5 0 012 19.3 12 12 0 008.3 21c7.6 0 11.8-6.3 11.8-11.8v-.5A8 8 0 0022 5.9z'/></svg>") center/contain no-repeat; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--ink-900);
  color: #cfd6da;
  font-size: .82rem;
}
.topbar a { color: #cfd6da; }
.topbar a:hover { color: var(--amber-500); }
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 24px; gap: 20px;
}
.topbar-contact { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.topbar-contact .sep { opacity: .4; }
.topbar-social { display: flex; gap: 14px; align-items: center; }
.topbar-social .ic { filter: brightness(3); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--ink-100);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  min-height: 78px;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink-900); flex-shrink: 0; }
.brand img { height: 54px; width: auto; max-width: 220px; object-fit: contain; }

.primary-nav { display: flex; align-items: center; gap: 12px; flex: 1; justify-content: flex-end; }
.primary-nav ul { list-style: none; display: flex; gap: 2px; margin: 0; padding: 0; flex-wrap: nowrap; }
.primary-nav a {
  display: block; padding: 8px 9px; border-radius: 6px;
  color: var(--ink-700); font-weight: 600; font-size: .78rem;
  letter-spacing: .01em; white-space: nowrap;
  transition: background .15s, color .15s;
}
.primary-nav a:hover { color: var(--green-700); background: var(--green-100); }
.primary-nav a.is-active { color: var(--green-700); background: var(--green-100); }

/* --- Nav dropdown --- */
.primary-nav .has-dropdown { position: relative; }
.primary-nav .dd-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 10px; border-radius: 6px;
  background: transparent; border: 0; cursor: pointer;
  color: var(--ink-700); font-weight: 600; font-size: .82rem;
  letter-spacing: .01em; font-family: inherit;
  transition: background .15s, color .15s;
}
.primary-nav .dd-toggle:hover,
.primary-nav .has-dropdown:hover .dd-toggle,
.primary-nav .dd-toggle.is-active,
.primary-nav .dd-toggle[aria-expanded="true"] {
  color: var(--green-700); background: var(--green-100);
}
.primary-nav .caret {
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform .2s ease;
}
.primary-nav .has-dropdown:hover .caret,
.primary-nav .dd-toggle[aria-expanded="true"] .caret { transform: rotate(180deg); }

.primary-nav .dropdown {
  position: absolute; top: calc(100% + 6px); left: 50%;
  transform: translate(-50%, 8px);
  min-width: 340px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
  z-index: 60;
}
.primary-nav .has-dropdown:hover > .dropdown,
.primary-nav .has-dropdown:focus-within > .dropdown,
.primary-nav .dd-toggle[aria-expanded="true"] + .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translate(-50%, 0);
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear 0s;
}
.primary-nav .dropdown::before {
  content: ''; position: absolute; left: 50%; top: -7px;
  width: 14px; height: 14px; background: #fff;
  transform: translateX(-50%) rotate(45deg);
  border-left: 1px solid var(--ink-100);
  border-top: 1px solid var(--ink-100);
}
.primary-nav .dropdown-inner {
  position: relative;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 14px;
  box-shadow: 0 24px 60px -20px rgba(16,22,26,.18), 0 8px 24px rgba(16,22,26,.06);
  padding: 8px;
  display: grid; gap: 2px;
}
.primary-nav .dropdown-item {
  display: block !important;
  padding: 10px 14px !important;
  border-radius: 8px !important;
  background: transparent;
  color: var(--ink-800) !important;
  font-weight: 600; font-size: .88rem; letter-spacing: 0;
  white-space: normal !important;
}
.primary-nav .dropdown-item:hover,
.primary-nav .dropdown-item.is-active {
  background: var(--green-100) !important;
  color: var(--green-700) !important;
}
.primary-nav .di-label { display: block; }
.primary-nav .di-desc {
  display: block; margin-top: 2px;
  font-size: .74rem; font-weight: 500;
  color: var(--ink-500); letter-spacing: .01em;
}
.primary-nav .dropdown-item:hover .di-desc,
.primary-nav .dropdown-item.is-active .di-desc { color: var(--green-700); opacity: .75; }

.nav-toggle {
  display: none; background: transparent; border: 0; cursor: pointer;
  padding: 8px; width: 44px; height: 44px;
  flex-direction: column; justify-content: center; gap: 5px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2.5px; background: var(--ink-800); border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  min-height: 640px; display: flex; align-items: center;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(120deg, rgba(15,46,30,.90) 0%, rgba(15,46,30,.65) 50%, rgba(15,46,30,.35) 100%),
    linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.55) 100%);
}
.hero-inner { position: relative; padding: 96px 24px; }
.hero-inner > * { max-width: 900px; }
.hero .eyebrow {
  background: rgba(245,166,35,.15); color: var(--amber-500);
  border-color: rgba(245,166,35,.4);
}
.hero h1 {
  color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,.25);
  margin-bottom: 0;
}
.hero-sub {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  color: var(--amber-500); text-transform: uppercase; letter-spacing: .05em;
  margin: 8px 0 20px;
}
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,.88); max-width: 60ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.hero-badges {
  list-style: none; padding: 0; margin: 40px 0 0;
  display: flex; gap: 20px; flex-wrap: wrap;
  color: rgba(255,255,255,.85);
}
.hero-badges li {
  padding: 8px 14px; border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px; font-size: .82rem;
  background: rgba(255,255,255,.06);
}

/* ---------- Stats ---------- */
.stats {
  background: var(--ink-900); color: #fff;
  padding: 40px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem); color: var(--amber-500); line-height: 1;
}
.stat-label { font-size: .85rem; color: rgba(255,255,255,.75); letter-spacing: .04em; margin-top: 6px; }

/* ---------- Sections ---------- */
.section { padding: 90px 0; }
.section.grey { background: var(--grey-50); }
.section-head { margin-bottom: 48px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .lead { margin-left: auto; margin-right: auto; }
.section-head.between {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap;
}
.section-head h2 { margin: 6px 0 12px; }

/* ---------- Services ---------- */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: #fff; border: 1px solid var(--ink-100); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative; display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--green-100); }
.service-img { aspect-ratio: 4/3; overflow: hidden; background: var(--ink-100); }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-img img { transform: scale(1.05); }
.service-card h3 { padding: 20px 22px 4px; }
.service-card p { padding: 0 22px; color: var(--ink-500); flex: 1; }
.service-card .link-arrow {
  padding: 12px 22px 22px; font-weight: 700; color: var(--green-700); font-size: .9rem;
}
.service-card .badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--amber-500); color: var(--ink-900);
  font-size: .7rem; padding: 5px 10px; border-radius: 999px;
  font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
}
.service-card.featured { border-color: var(--amber-500); }

/* ---------- Split sections ---------- */
.split { padding: 90px 0; }
.split.alt { background: var(--grey-50); }
.split-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.split-grid.reverse .split-media { order: 2; }
.split-media { position: relative; display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
.split-media.single { display: block; }
.split-media img {
  width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.split-media img:first-child { grid-row: span 2; aspect-ratio: 3/4; }
.split-media img.stack { aspect-ratio: 3/2; }
.split-media.single img { aspect-ratio: 4/3; }
.split-body h2 { margin: 8px 0 16px; }

.checklist { list-style: none; padding: 0; margin: 20px 0 28px; }
.checklist li {
  position: relative; padding: 6px 0 6px 30px;
  color: var(--ink-700); font-weight: 500;
}
.checklist li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--green-500) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4'><polyline points='4,12 10,18 20,6'/></svg>") center/60% no-repeat;
}

.donate-tiers {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
  margin: 20px 0 28px;
}
.tier {
  background: #fff; border: 1.5px solid var(--ink-200); border-radius: var(--radius);
  padding: 14px 8px; font-weight: 800; font-size: 1.05rem; color: var(--ink-900);
  display: flex; flex-direction: column; align-items: center; gap: 4px; cursor: pointer;
  transition: transform .12s, border-color .15s, box-shadow .15s;
}
.tier span { font-size: .72rem; font-weight: 600; color: var(--ink-500); text-transform: uppercase; letter-spacing: .06em; }
.tier:hover { border-color: var(--green-500); transform: translateY(-1px); }
.tier.is-active { border-color: var(--amber-500); background: rgba(245,166,35,.06); box-shadow: 0 0 0 4px rgba(245,166,35,.15); }

/* ---------- How it works ---------- */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}
.step {
  background: #fff; border-radius: var(--radius-lg); padding: 34px 28px;
  border: 1px solid var(--ink-100); box-shadow: var(--shadow-sm);
  position: relative;
}
.step-num {
  font-family: var(--font-display); font-weight: 800; font-size: 2.4rem;
  color: var(--amber-500); line-height: 1; margin-bottom: 10px;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--ink-500); margin: 0; }

/* ---------- Testimonial ---------- */
.testimonial {
  background:
    linear-gradient(135deg, rgba(15,46,30,.94), rgba(15,46,30,.86)),
    url('/images/2024/06/home-page-banner.jpg') center/cover no-repeat;
  color: #fff; padding: 90px 0;
}
.testimonial-inner { text-align: center; max-width: 780px; margin: 0 auto; padding: 0 24px; }
.quote-avatar {
  width: 84px; height: 84px; border-radius: 50%; object-fit: cover;
  border: 4px solid var(--amber-500); margin: 0 auto 20px;
}
.testimonial blockquote {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.35; margin: 0 0 24px; color: #fff;
}
.testimonial cite { display: block; font-style: normal; color: rgba(255,255,255,.85); }
.testimonial cite strong { display: block; font-family: var(--font-display); font-size: 1.15rem; letter-spacing: .05em; color: var(--amber-500); }

/* ---------- News ---------- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--ink-100); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-img { aspect-ratio: 16/10; overflow: hidden; background: var(--ink-100); }
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.news-card:hover .news-img img { transform: scale(1.05); }
.news-body { padding: 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pill {
  display: inline-block; align-self: flex-start;
  background: var(--green-100); color: var(--green-700);
  font-size: .72rem; padding: 4px 10px; border-radius: 999px;
  font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
}
.news-body h3 { margin: 4px 0; }
.news-body p { color: var(--ink-500); flex: 1; margin: 0 0 8px; }
.link-arrow { font-weight: 700; color: var(--green-700); }
.link-arrow:hover { color: var(--amber-600); }

/* ---------- Final CTA ---------- */
.final-cta {
  background: linear-gradient(135deg, var(--green-800), var(--green-900));
  color: #fff; padding: 80px 0; text-align: center;
}
.final-cta h2 { color: #fff; }
.final-cta p { color: rgba(255,255,255,.85); max-width: 60ch; margin: 0 auto 24px; }
.final-cta .cta-row { justify-content: center; }

/* ---------- Placeholder Page ---------- */
.page-hero {
  padding: 100px 0 120px;
  background: linear-gradient(180deg, var(--grey-50), #fff);
  text-align: center;
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero .lead { margin: 0 auto 32px; }
.page-hero .cta-row { justify-content: center; }

/* ---------- Newsletter band ---------- */
.newsletter {
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  color: #fff;
  padding: 64px 0;
}
.newsletter-inner {
  display: grid; grid-template-columns: 1fr;
  gap: 24px; align-items: start;
  max-width: 720px;
}
.newsletter-copy .eyebrow {
  color: var(--amber-500); border-color: rgba(245,166,35,.4); background: rgba(245,166,35,.12);
}
.newsletter-copy h2 { color: #fff; margin: 6px 0 12px; }
.newsletter-copy p { color: rgba(255,255,255,.82); margin: 0; max-width: 52ch; }
.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  background: rgba(255,255,255,.08);
  padding: 10px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  max-width: 560px;
}
.newsletter-form input[type=email] {
  background: transparent; border: 0; outline: none;
  color: #fff; padding: 14px 20px;
  font-family: inherit; font-size: 1rem; min-width: 0;
}
.newsletter-form input[type=email]::placeholder { color: rgba(255,255,255,.55); }
.newsletter-form .btn-primary { border-radius: 999px; padding: 14px 24px; }
.news-spinner {
  width: 16px; height: 16px; border-radius: 50%;
  border: 2.5px solid rgba(0,0,0,.25); border-top-color: var(--ink-900);
  animation: spinnews .8s linear infinite;
  display: none; margin-left: 8px;
}
.newsletter-form .btn-primary.is-loading { pointer-events: none; opacity: .9; }
.newsletter-form .btn-primary.is-loading .news-spinner { display: inline-block; }
@keyframes spinnews { to { transform: rotate(360deg); } }
.newsletter-msg {
  padding-left: 20px; font-size: .88rem; min-height: 1em;
  color: rgba(255,255,255,.7);
  margin-top: -8px;
}
.newsletter-msg.is-ok  { color: #d3f5df; }
.newsletter-msg.is-err { color: #ffd0c8; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-900); color: #cfd6da; padding-top: 70px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 60px;
}
.footer-col h4 { color: #fff; margin-bottom: 20px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: 6px 0; }
.footer-col a { color: #cfd6da; font-size: .9rem; }
.footer-col a:hover { color: var(--amber-500); }
.brand-light img { height: 50px; filter: brightness(0) invert(1); }
.brand-light .brand-name { color: #fff; }
.brand-light .brand-tag  { color: rgba(255,255,255,.6); }
.footer-blurb { color: rgba(255,255,255,.7); margin: 20px 0 20px; max-width: 40ch; font-size: .92rem; }
.footer-social { display: flex; gap: 14px; }
.footer-social a { font-size: .82rem; padding: 8px 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 6px; }
.footer-social a:hover { border-color: var(--amber-500); }

.report-list li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  padding: 8px 0; border-bottom: 1px dashed rgba(255,255,255,.08);
}
.report-list span { color: rgba(255,255,255,.7); font-size: .85rem; }
.report-list a { font-weight: 700; color: #fff; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 22px 0; }
.footer-bottom-inner {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .82rem; color: rgba(255,255,255,.55);
}
.footer-bottom-inner p { margin: 0; }

/* ============================================================
   Responsive
============================================================ */
@media (max-width: 1400px) {
  .primary-nav a { font-size: .74rem; padding: 8px 6px; }
  .nav-cta { display: none; }
}

@media (max-width: 1280px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--ink-100);
    box-shadow: var(--shadow-md);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 0 24px;
    max-height: 0; overflow: hidden;
    transition: max-height .3s ease, padding .2s ease;
  }
  .primary-nav.is-open { max-height: 90vh; overflow-y: auto; padding: 12px 24px 20px; }
  .primary-nav ul { flex-direction: column; gap: 0; width: 100%; flex-wrap: nowrap; }
  .primary-nav li { border-bottom: 1px solid var(--ink-100); }
  .primary-nav a { padding: 14px 4px; font-size: .95rem; }

  /* Dropdown becomes an inline accordion on mobile */
  .primary-nav .dd-toggle {
    width: 100%; justify-content: space-between;
    padding: 14px 4px; font-size: .95rem; border-radius: 0;
  }
  .primary-nav .dropdown {
    position: static; transform: none; min-width: 0;
    opacity: 1; visibility: visible; pointer-events: auto;
    display: none; padding: 0 0 10px;
  }
  .primary-nav .dropdown::before { display: none; }
  .primary-nav .dropdown-inner {
    box-shadow: none; border: 0; padding: 4px 0 4px 12px;
    border-left: 3px solid var(--green-100);
    border-radius: 0; background: transparent;
  }
  .primary-nav .has-dropdown.is-open .dropdown,
  .primary-nav .dd-toggle[aria-expanded="true"] + .dropdown { display: block; }
  .nav-cta { display: block; margin-top: 12px; }
  .header-inner { position: relative; }
}

@media (max-width: 960px) {
  .newsletter-inner { grid-template-columns: 1fr; gap: 24px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid     { grid-template-columns: repeat(2, 1fr); }
  .steps         { grid-template-columns: 1fr; }
  .split-grid    { grid-template-columns: 1fr; gap: 40px; }
  .split-grid.reverse .split-media { order: 0; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 640px) {
  .services-grid,
  .news-grid,
  .footer-grid,
  .stats-grid,
  .donate-tiers { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .news-grid     { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .topbar-contact { font-size: .78rem; gap: 8px; }
  .topbar-contact .sep { display: none; }
  .brand img { height: 44px; }
  .hero { min-height: 560px; }
  .hero-inner { padding: 72px 24px; }
  .split-media { grid-template-columns: 1fr; }
  .split-media img:first-child { grid-row: auto; aspect-ratio: 4/3; }
  .section, .split { padding: 64px 0; }
}
