:root {
  --green: #67bc45;
  --green-dark: #3f8f2d;
  --charcoal: #3f4446;
  --ink: #1f2426;
  --muted: #5f686b;
  --paper: #ffffff;
  --mist: #f4f7f3;
  --line: #dce4da;
  --shadow: 0 18px 45px rgba(31, 36, 38, 0.12);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: var(--green-dark); }
a:hover { color: var(--charcoal); }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 9999;
  padding: .75rem 1rem;
  color: #fff;
  background: var(--ink);
  border-radius: .5rem;
}
.skip-link:focus { top: 1rem; }

.container { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.section { padding: 5.5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-muted { background: var(--mist); }
.eyebrow {
  margin: 0 0 .75rem;
  color: var(--green-dark);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0 0 1rem; color: var(--ink); line-height: 1.12; }
h1 { font-size: clamp(2.6rem, 7vw, 5.8rem); letter-spacing: -.055em; }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); letter-spacing: -.035em; }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1.15rem; }
.lead { max-width: 760px; color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.3rem); }
.kicker { color: var(--green); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(63,68,70,.1);
  backdrop-filter: blur(14px);
}
.header-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: 92px; height: 72px; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: .35rem; }
.site-nav a {
  padding: .7rem .9rem;
  color: var(--charcoal);
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 750;
  text-decoration: none;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--ink); background: rgba(103,188,69,.14); }
.site-nav .nav-cta { color: #fff; background: var(--green-dark); }
.site-nav .nav-cta:hover, .site-nav .nav-cta[aria-current="page"] { color: #fff; background: var(--charcoal); }
.nav-toggle { display: none; padding: .65rem; border: 0; background: transparent; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 2px; margin: 5px 0; background: var(--ink); }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  display: grid;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(103,188,69,.34), transparent 28%),
    linear-gradient(125deg, #171b1c 0%, #303638 58%, #3f4446 100%);
}
.hero::after {
  content: "";
  position: absolute;
  right: -7rem;
  bottom: -12rem;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(103,188,69,.35);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(103,188,69,.05), 0 0 0 140px rgba(103,188,69,.035);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 4rem; padding: 6rem 0; }
.hero h1, .hero h2 { color: #fff; }
.hero .lead { color: rgba(255,255,255,.78); }
.hero-logo { justify-self: end; width: min(100%, 430px); filter: drop-shadow(0 28px 45px rgba(0,0,0,.28)); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: .8rem 1.25rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
.button-primary { color: #172015; background: var(--green); }
.button-primary:hover { color: #fff; background: var(--green-dark); }
.button-secondary { color: #fff; border-color: rgba(255,255,255,.45); background: transparent; }
.button-secondary:hover { color: var(--ink); background: #fff; }
.button-dark { color: #fff; background: var(--charcoal); }
.button-dark:hover { color: #fff; background: var(--green-dark); }

.quote-band { background: var(--green); }
.quote-band blockquote { margin: 0; padding: 2.2rem 0; color: #172015; font-size: clamp(1.25rem, 3vw, 2rem); font-weight: 800; text-align: center; }
.quote-band cite { display: block; margin-top: .35rem; font-size: .9rem; font-style: normal; letter-spacing: .08em; text-transform: uppercase; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 2rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.25rem; }
.card { height: 100%; padding: 2rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 10px 30px rgba(31,36,38,.06); }
.card-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 1.25rem; color: #fff; background: var(--charcoal); border-radius: 14px; font-weight: 900; }
.card p:last-child { margin-bottom: 0; }

.feature-panel { padding: clamp(2rem, 5vw, 4rem); color: #fff; background: var(--charcoal); border-radius: 30px; box-shadow: var(--shadow); }
.feature-panel h2, .feature-panel h3 { color: #fff; }
.feature-panel p { color: rgba(255,255,255,.78); }
.feature-panel .eyebrow { color: var(--green); }

.page-hero { padding: 6rem 0 4.5rem; color: #fff; background: linear-gradient(125deg, #1b2021, #3f4446); }
.page-hero h1 { color: #fff; font-size: clamp(2.7rem, 6vw, 5rem); }
.page-hero .lead { color: rgba(255,255,255,.76); }

.values-list { display: grid; gap: 1rem; }
.value-row { display: grid; grid-template-columns: 54px 1fr; gap: 1rem; align-items: start; padding: 1.25rem 0; border-bottom: 1px solid var(--line); }
.value-row:last-child { border-bottom: 0; }
.value-number { color: var(--green-dark); font-size: 1.4rem; font-weight: 900; }

.leader-card { display: grid; grid-template-columns: .8fr 1.2fr; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 30px; box-shadow: var(--shadow); }
.leader-photo { min-height: 560px; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.leader-copy { padding: clamp(2rem, 5vw, 4.5rem); }
.leader-title { margin-top: -.5rem; color: var(--green-dark); font-weight: 800; }

.donate-hero { background: linear-gradient(135deg, #2f3537, #1b201c 70%); }
.giving-card { position: relative; overflow: hidden; }
.giving-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 5px; background: var(--green); }
.address-block { font-style: normal; }

.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 2rem; align-items: start; }
.contact-details { padding: 2rem; color: #fff; background: var(--charcoal); border-radius: var(--radius); }
.contact-details h2, .contact-details h3 { color: #fff; }
.contact-details a { color: var(--green); }
.contact-item { padding: 1.1rem 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.contact-item:last-child { border-bottom: 0; }
.form-card { padding: clamp(1.5rem, 4vw, 2.5rem); background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
.field { display: grid; gap: .45rem; }
.field-full { grid-column: 1 / -1; }
label { font-weight: 750; }
input, textarea, select { width: 100%; padding: .85rem 1rem; color: var(--ink); background: #fff; border: 1px solid #bfc9bd; border-radius: 10px; }
textarea { min-height: 170px; resize: vertical; }
input:focus, textarea:focus, select:focus { outline: 3px solid rgba(103,188,69,.25); border-color: var(--green-dark); }
.checkbox { display: flex; gap: .7rem; align-items: flex-start; }

.checkbox input { width: auto; margin-top: .35rem; }
.honeypot { position: absolute !important; left: -9999px !important; }
.form-note { color: var(--muted); font-size: .9rem; }

.site-footer { padding: 4rem 0 2rem; color: rgba(255,255,255,.72); background: #171b1c; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 2rem; }
.footer-logo { width: 150px; margin-bottom: 1rem; }
.site-footer h3 { color: #fff; font-size: 1rem; }
.site-footer a { color: rgba(255,255,255,.78); text-decoration: none; }
.site-footer a:hover { color: var(--green); }
.footer-links { display: grid; gap: .55rem; }
.footer-bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .88rem; }

.notice { padding: 1rem 1.2rem; border-radius: 12px; }
.notice-success { color: #1f5f1f; background: #e8f7e4; border: 1px solid #b9dfae; }
.notice-error { color: #7a1f1f; background: #fff0f0; border: 1px solid #efbcbc; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav { position: absolute; top: 88px; left: 1rem; right: 1rem; display: none; padding: 1rem; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); }
  .site-nav.is-open { display: grid; }
  .site-nav a { width: 100%; }
  .hero { min-height: auto; }
  .hero-grid, .grid-2, .leader-card, .contact-layout { grid-template-columns: 1fr; }
  .hero-logo { justify-self: center; width: min(70vw, 360px); order: -1; }
  .grid-3 { grid-template-columns: 1fr; }
  .leader-photo { min-height: 420px; max-height: 620px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .section { padding: 4rem 0; }
  .header-inner { min-height: 76px; }
  .brand img { width: 78px; height: 60px; }
  .site-nav { top: 76px; }
  .hero-grid { gap: 2rem; padding: 4rem 0; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .leader-photo { min-height: 360px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
