:root {
  --ink: #173a3a;
  --ink-soft: #355b57;
  --cream: #fff8ef;
  --paper: #fffdf8;
  --sage: #dcebe5;
  --sage-deep: #779b85;
  --terracotta: #c97947;
  --terracotta-dark: #a85c32;
  --gold: #f4c989;
  --muted: #667570;
  --line: #d9e2dd;
  --shadow: 0 22px 65px rgba(23,58,58,.12);
  --radius: 24px;
  --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.6;
  text-rendering: optimizeLegibility;
}
body.no-scroll { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 1000;
  padding: 12px 16px; border-radius: 10px; background: var(--ink); color: white;
}
.skip-link:focus { top: 16px; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; margin: 0 0 14px;
  color: var(--terracotta-dark); font-weight: 800; letter-spacing: .13em; text-transform: uppercase; font-size: .76rem;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(2.8rem, 6vw, 5.7rem); max-width: 11ch; }
h2 { font-size: clamp(2rem, 4vw, 3.7rem); max-width: 15ch; }
h3 { font-size: 1.3rem; }
p { margin: 0; }
.lede { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--ink-soft); max-width: 60ch; }
.muted { color: var(--muted); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 20px; border: 1px solid transparent; border-radius: 999px;
  font-weight: 800; text-decoration: none; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: var(--terracotta); box-shadow: 0 12px 30px rgba(201,121,71,.28); }
.btn-primary:hover { background: var(--terracotta-dark); }
.btn-secondary { color: var(--ink); background: transparent; border-color: rgba(23,58,58,.28); }
.btn-secondary:hover { background: white; box-shadow: 0 12px 30px rgba(23,58,58,.08); }
.btn-light { color: var(--ink); background: white; }
.btn svg { width: 18px; height: 18px; }
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,253,248,.88); border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px); transition: box-shadow .2s, border-color .2s;
}
.site-header.scrolled { box-shadow: 0 10px 30px rgba(23,58,58,.07); border-color: var(--line); }
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: 240px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a:not(.btn) { text-decoration: none; font-weight: 750; font-size: .94rem; }
.nav-links a:not(.btn):hover { color: var(--terracotta-dark); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 12px; background: var(--sage); color: var(--ink); }
.menu-toggle svg { width: 24px; }
.hero { position: relative; overflow: hidden; padding: 82px 0 58px; }
.hero::before {
  content: ""; position: absolute; width: 540px; height: 540px; border-radius: 50%; right: -190px; top: -230px;
  background: rgba(220,235,229,.7); z-index: -1;
}
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 70px; align-items: center; }
.hero-copy p.lede { margin-top: 24px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-note { display: flex; align-items: center; gap: 10px; margin-top: 28px; font-size: .9rem; color: var(--muted); }
.hero-note svg { flex: 0 0 auto; width: 20px; color: var(--terracotta); }
.hero-art { position: relative; }
.hero-art > img { border-radius: 36px; box-shadow: var(--shadow); }
.floating-card {
  position: absolute; left: -34px; bottom: 28px; width: 220px; padding: 18px; background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.8); border-radius: 18px; box-shadow: var(--shadow); backdrop-filter: blur(8px);
}
.floating-card strong { display: block; font-size: 1.05rem; }
.floating-card span { display: block; color: var(--muted); font-size: .86rem; margin-top: 3px; }
.trust-strip { margin-top: 58px; border-block: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-item { padding: 24px; border-right: 1px solid var(--line); }
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; font-size: .95rem; }
.trust-item span { display: block; margin-top: 4px; color: var(--muted); font-size: .83rem; }
.section { padding: 100px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 46px; }
.section-head .lede { max-width: 48ch; }
.mission-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 80px; align-items: start; }
.mission-statement {
  position: sticky; top: 120px; padding: 32px; border-radius: var(--radius); background: var(--ink); color: white; box-shadow: var(--shadow);
}
.mission-statement blockquote { margin: 0; font-size: clamp(1.45rem, 2.7vw, 2.15rem); font-weight: 800; line-height: 1.2; letter-spacing: -.03em; }
.mission-statement cite { display: block; margin-top: 24px; color: #cde0d7; font-style: normal; font-size: .9rem; }
.story { display: grid; gap: 26px; }
.story p { font-size: 1.08rem; color: var(--ink-soft); }
.story strong { color: var(--ink); }
.programs { background: #f3f7f4; }
.card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.card {
  padding: 30px; border-radius: var(--radius); background: white; border: 1px solid var(--line); box-shadow: 0 12px 35px rgba(23,58,58,.06);
}
.icon-box { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 16px; background: var(--sage); color: var(--ink); margin-bottom: 24px; }
.icon-box svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--muted); }
.card .micro { margin-top: 18px; font-size: .8rem; color: var(--terracotta-dark); font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; counter-reset: process; }
.process-step { position: relative; padding-top: 25px; border-top: 2px solid var(--line); counter-increment: process; }
.process-step::before {
  content: counter(process, decimal-leading-zero); position: absolute; right: 0; top: 18px; color: #cbd8d1;
  font-size: 2.4rem; font-weight: 900; line-height: 1;
}
.process-step h3 { max-width: 12ch; margin-bottom: 12px; }
.process-step p { color: var(--muted); font-size: .94rem; }
.impact-panel {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; border-radius: 34px; overflow: hidden; background: var(--ink); color: white;
  box-shadow: var(--shadow);
}
.impact-copy { padding: clamp(38px, 6vw, 72px); display: flex; flex-direction: column; justify-content: center; }
.impact-copy h2 { margin-bottom: 22px; }
.impact-copy .lede { color: #cfe0d8; }
.impact-list { display: grid; gap: 18px; margin: 32px 0 0; padding: 0; list-style: none; }
.impact-list li { display: flex; gap: 14px; align-items: start; }
.impact-list svg { width: 22px; flex: 0 0 22px; color: var(--gold); margin-top: 2px; }
.impact-visual { position: relative; min-height: 480px; background: #dcebe5; }
.impact-visual svg { width: 100%; height: 100%; display: block; }
.get-involved-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.action-card { position: relative; min-height: 290px; overflow: hidden; }
.action-card::after { content: ""; position: absolute; width: 140px; height: 140px; border-radius: 50%; right: -45px; bottom: -50px; background: var(--sage); }
.action-card a { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 8px; margin-top: 24px; font-weight: 850; color: var(--terracotta-dark); text-decoration: none; }
.action-card a:hover { gap: 12px; }
.transparency { background: var(--cream); }
.transparency-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.facts { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
.fact { padding: 18px; border-radius: 16px; background: white; border: 1px solid #eadfce; }
.fact span { display: block; color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
.fact strong { display: block; margin-top: 5px; font-size: 1rem; }
.verification-card { padding: 34px; border-radius: 26px; background: white; border: 1px solid #eadfce; box-shadow: var(--shadow); }
.verification-card .seal { width: 76px; height: 76px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: white; margin-bottom: 24px; }
.verification-card .seal svg { width: 38px; }
.verification-card p { margin-top: 14px; color: var(--muted); }
.verification-card small { display: block; margin-top: 18px; color: var(--muted); }
.contact { padding-bottom: 120px; }
.contact-panel { display: grid; grid-template-columns: 1.05fr .95fr; overflow: hidden; border-radius: 34px; background: var(--terracotta); color: white; box-shadow: var(--shadow); }
.contact-copy { padding: clamp(38px, 6vw, 70px); }
.contact-copy .eyebrow { color: #fff1df; }
.contact-copy h2 { margin-bottom: 22px; }
.contact-copy p { color: #fff3e8; max-width: 54ch; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.contact-info { padding: clamp(38px, 6vw, 70px); background: #a85c32; display: flex; flex-direction: column; justify-content: center; gap: 24px; }
.contact-row { display: flex; gap: 16px; align-items: start; }
.contact-row svg { width: 24px; flex: 0 0 24px; margin-top: 2px; }
.contact-row span { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; opacity: .8; font-weight: 800; }
.contact-row strong, .contact-row a { display: block; margin-top: 3px; font-size: 1.06rem; color: white; text-decoration: none; }
.site-footer { border-top: 1px solid var(--line); padding: 44px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 40px; }
.footer-brand img { width: 220px; }
.footer-brand p { margin-top: 16px; color: var(--muted); max-width: 40ch; font-size: .9rem; }
.footer-col h3 { font-size: .86rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }
.footer-col a { display: block; color: var(--muted); text-decoration: none; margin: 8px 0; font-size: .9rem; }
.footer-col a:hover { color: var(--terracotta-dark); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: .8rem; }
.policy-page { min-height: 100vh; background: var(--paper); }
.policy-hero { padding: 80px 0 40px; }
.policy-hero h1 { max-width: 16ch; }
.policy-content { padding: 20px 0 100px; }
.policy-card { max-width: 850px; padding: 44px; border-radius: 26px; background: white; border: 1px solid var(--line); box-shadow: var(--shadow); }
.policy-card h2 { font-size: 1.55rem; margin: 32px 0 12px; max-width: none; }
.policy-card h2:first-child { margin-top: 0; }
.policy-card p, .policy-card li { color: var(--ink-soft); }
.policy-card ul { padding-left: 20px; }
.notice { padding: 18px; background: var(--sage); border-radius: 14px; margin: 22px 0; }
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
@media (max-width: 950px) {
  .menu-toggle { display: grid; place-items: center; }
  .nav-links { display: none; position: absolute; top: 78px; left: 20px; right: 20px; padding: 20px; border-radius: 18px; background: white; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; gap: 8px; }
  .nav-links.open { display: flex; }
  .nav-links a:not(.btn) { padding: 10px; }
  .hero-grid, .mission-layout, .transparency-grid, .contact-panel { grid-template-columns: 1fr; }
  .hero { padding-top: 55px; }
  .hero-copy { order: 1; }
  .hero-art { order: 2; max-width: 700px; }
  .mission-statement { position: static; }
  .card-grid, .get-involved-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; row-gap: 36px; }
  .impact-panel { grid-template-columns: 1fr; }
  .impact-visual { min-height: 380px; }
}
@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .brand img { width: 205px; }
  .section { padding: 74px 0; }
  .hero { padding-top: 40px; }
  h1 { font-size: clamp(2.65rem, 13vw, 4.2rem); }
  .floating-card { left: 14px; bottom: 14px; width: calc(100% - 28px); }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { padding: 18px 12px; border-bottom: 1px solid var(--line); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-bottom: 0; }
  .section-head { display: block; }
  .section-head .lede { margin-top: 20px; }
  .card-grid, .get-involved-grid, .process-grid, .facts, .footer-grid { grid-template-columns: 1fr; }
  .impact-copy { padding: 36px 26px; }
  .contact-copy, .contact-info { padding: 36px 26px; }
  .footer-bottom { flex-direction: column; }
  .policy-card { padding: 28px 22px; }
}
