:root {
  --navy: #1a4d2e;
  --blue: #217a3e;
  --light-blue: #d4edda;
  --accent: #e8720c;
  --green: #2a9d4a;
  --gray-50: #f7fafc;
  --gray-100: #edf2f7;
  --gray-200: #e2e8f0;
  --gray-600: #718096;
  --gray-800: #2d3748;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--gray-50);
  color: var(--gray-800);
  line-height: 1.6;
}

.page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* ── Header ── */
header {
  text-align: left;
  padding: 2rem 2rem 1.25rem;
  background: white;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  border-bottom: 4px solid var(--accent);
}
header .logo { height: 160px; margin-bottom: 0.5rem; }
header .subtitle { color: var(--navy); margin-top: 0.25rem; font-size: 1.05rem; font-weight: 600; }
header .tagline { color: var(--gray-600); margin-top: 0.25rem; font-size: 0.85rem; }

/* ── Navigation ── */
nav.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-top: 1rem;
  border-top: 1px solid var(--gray-200);
  padding-top: 0.75rem;
}
nav.site-nav a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.35rem 0.9rem;
  border-radius: 6px;
  border-bottom: 3px solid transparent;
}
nav.site-nav a:hover { background: var(--gray-100); color: var(--blue); }
nav.site-nav a.active { border-bottom-color: var(--accent); color: var(--blue); }

/* ── Mission ── */
.mission {
  background: linear-gradient(135deg, #f0f9f2, #fef6ee);
  border-radius: 8px; padding: 1.25rem 1.5rem; margin-bottom: 2rem;
  border-left: 4px solid var(--blue);
}
.mission p { font-size: 0.92rem; color: var(--navy); }
.mission strong { color: var(--blue); }

/* ── Stat Cards ── */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.stat-card {
  background: white; border-radius: 10px; padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--blue); box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.stat-card .label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray-600); }
.stat-card .value { font-size: 1.6rem; font-weight: 700; color: var(--navy); margin-top: 0.15rem; }
.stat-card .sub { font-size: 0.8rem; color: var(--gray-600); }

/* ── Sections ── */
.section {
  background: white; border-radius: 10px; padding: 1.75rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08); margin-bottom: 1.5rem;
}
.section h1 { font-size: 1.45rem; color: var(--navy); margin-bottom: 0.35rem; }
.section h2 { font-size: 1.15rem; color: var(--navy); margin-bottom: 0.35rem; }
.section h3 { font-size: 1rem; color: var(--navy); margin: 1rem 0 0.25rem; }
.section .section-sub { font-size: 0.85rem; color: var(--gray-600); margin-bottom: 1.25rem; }
.section p { font-size: 0.92rem; margin-bottom: 0.75rem; }
.section p:last-child { margin-bottom: 0; }
.section ul { font-size: 0.92rem; margin: 0 0 0.75rem 1.25rem; }
.section li { margin-bottom: 0.35rem; }
.section a { color: var(--blue); }

.chart-wrap { position: relative; width: 100%; max-height: 350px; }

/* ── Impact Highlights ── */
.highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.highlight-card {
  background: white; border-radius: 10px; padding: 1.25rem 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  border-top: 3px solid var(--accent);
}
.highlight-card h3 { font-size: 0.95rem; color: var(--navy); margin-bottom: 0.4rem; }
.highlight-card p { font-size: 0.85rem; color: var(--gray-600); }
.highlight-card .big-num { font-size: 1.8rem; font-weight: 700; color: var(--accent); }

/* ── Core Values ── */
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.value-card {
  text-align: center; padding: 1.25rem 1rem; border-radius: 8px;
  background: var(--gray-50); border: 1px solid var(--gray-200);
}
.value-icon { font-size: 1.8rem; margin-bottom: 0.4rem; }
.value-card h3 { font-size: 0.95rem; color: var(--navy); margin: 0 0 0.25rem; }
.value-card p { font-size: 0.82rem; color: var(--gray-600); margin: 0; }

@media (max-width: 600px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Board / Contact ── */
.board-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.75rem;
}
.board-member {
  padding: 0.85rem 1rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  border-left: 3px solid var(--accent);
}
.board-member .name { font-weight: 700; color: var(--navy); font-size: 0.95rem; }
.board-member .role { font-size: 0.8rem; color: var(--gray-600); margin-bottom: 0.25rem; }
.board-member a {
  display: block;
  color: var(--gray-800); font-size: 0.85rem;
  word-break: break-all; margin-top: 0.15rem;
}

/* ── Address / contact blocks ── */
.address-block {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  padding: 1.1rem 1.4rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.address-block .org-name { font-weight: 700; color: var(--navy); }

.fine-print { font-size: 0.78rem; color: var(--gray-600); font-style: italic; margin-top: 1rem; }

/* ── Previous filing addresses ── */
.section h3.address-history-title {
  font-size: 0.8rem; color: var(--gray-600); font-weight: 600;
  margin: 1rem 0 0.25rem;
}
.address-history {
  font-size: 0.78rem; color: var(--gray-600);
  border-collapse: collapse; margin-bottom: 0.75rem;
}
.address-history td { padding: 0.1rem 0; }
.address-history td:first-child { padding-right: 1.25rem; white-space: nowrap; }

/* ── Footer ── */
footer {
  text-align: center; padding: 1.5rem; font-size: 0.8rem; color: var(--gray-600);
  border-top: 1px solid var(--gray-200); margin-top: 1rem;
}
footer strong { color: var(--navy); }
footer a { color: var(--blue); }

@media (max-width: 600px) {
  header .logo { height: 110px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .highlights { grid-template-columns: 1fr; }
}
