:root {
  --navy:      #1a3556;
  --navy-dark: #0f2238;
  --navy-mid:  #254872;
  --green:     #4a7c5f;
  --green-lt:  #6a9e7f;
  --green-pale:#daeade;
  --sage:      #9bbfac;
  --cream:     #f3f8f5;
  --surface:   #ffffff;
  --ink:       #1a2a22;
  --muted:     #4e6259;
  --line:      #c4d9cc;
  --shadow:    0 12px 40px rgba(26,53,86,0.10);
  --shadow-sm: 0 4px 16px rgba(26,53,86,0.07);
  --radius:    16px;
  --radius-sm: 10px;
  --max:       1160px;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--ink); background: var(--cream); line-height: 1.68; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 2.5rem), var(--max)); margin: 0 auto; }
.section { padding: 80px 0; }
.section.alt { background: var(--green-pale); }
.eyebrow { color: var(--green); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; font-size: .75rem; margin-bottom: 10px; display: block; }
h1, h2, h3 { line-height: 1.15; font-family: var(--font-head); }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); color: var(--navy-dark); margin-bottom: 18px; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); color: var(--navy-dark); margin-bottom: 18px; }
h3 { font-size: 1.12rem; color: var(--navy); margin-bottom: 10px; font-family: var(--font-body); font-weight: 600; }
p { color: var(--muted); margin-bottom: 14px; }
p:last-child { margin-bottom: 0; }
.btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 13px 26px; border-radius: 999px; font-weight: 600; font-family: var(--font-body); font-size: .92rem; border: 2px solid transparent; transition: all .2s; cursor: pointer; }
.btn.primary { background: var(--green); color: #fff; }
.btn.primary:hover { background: var(--green-lt); }
.btn.secondary { border-color: var(--navy); color: var(--navy); }
.btn.secondary:hover { background: var(--navy); color: #fff; }
.btn.white { background: #fff; color: var(--navy-dark); }
.btn.white:hover { background: var(--green-pale); }
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.97); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); box-shadow: 0 2px 10px rgba(26,53,86,0.06); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 48px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-weight: 700; font-size: .95rem; color: var(--navy-dark); font-family: var(--font-body); }
.brand-sub { font-size: .68rem; font-weight: 400; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }
.nav-links { display: flex; gap: 24px; font-size: .88rem; font-weight: 500; flex-wrap: wrap; }
.nav-links a { color: var(--navy); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.hero { padding: 88px 0 64px; }
.hero-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 52px; align-items: center; }
.mission-card { background: var(--navy); border-radius: var(--radius); padding: 32px; }
.mission-card .eyebrow { color: var(--sage); }
.mission-card h3 { color: #fff; font-family: var(--font-head); font-size: 1.2rem; margin-bottom: 12px; }
.mission-card p { color: rgba(255,255,255,0.78); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 44px; }
.stat { background: var(--surface); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); padding: 22px 18px; border-top: 3px solid var(--green); }
.stat strong { display: block; font-size: 1.85rem; color: var(--navy); font-family: var(--font-head); line-height: 1; margin-bottom: 6px; }
.stat span { font-size: .8rem; color: var(--muted); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 32px; }
.feature { background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 28px 24px; border-left: 4px solid var(--green); }
.feature-icon { font-size: 1.7rem; margin-bottom: 12px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.quote-block { background: var(--navy); border-radius: var(--radius); padding: 36px 32px; }
.quote-text { font-size: 1.2rem; color: rgba(255,255,255,0.95); font-family: var(--font-head); font-style: italic; line-height: 1.55; margin-bottom: 16px; }
.quote-attr { color: var(--sage); font-size: .88rem; font-weight: 500; }
.event-card { background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 28px 24px; }
.event-card h3 { color: var(--navy); }
.leaders { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.leader { background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column; }
.leader-img-wrap { position: relative; width: 100%; background: var(--green-pale); }
.leader-img-wrap img { width: 100%; height: auto; display: block; object-fit: contain; }
.leader-placeholder { width: 100%; height: 280px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; background: linear-gradient(145deg, var(--navy-mid), var(--navy-dark)); }
.leader-placeholder span { font-size: 3.5rem; }
.leader-placeholder small { font-size: .7rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.leader-copy { padding: 26px; flex: 1; }
.leader-copy h3 { font-size: 1.3rem; font-family: var(--font-head); color: var(--navy-dark); margin-bottom: 4px; }
.leader-role { color: var(--green); font-weight: 600; font-size: .78rem; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 14px; display: block; }
.leader-bio p { font-size: .9rem; color: var(--muted); line-height: 1.72; margin-bottom: 10px; }
.values-list { list-style: none; margin: 16px 0; }
.values-list li { padding: 11px 0 11px 22px; border-bottom: 1px solid var(--line); position: relative; color: var(--muted); font-size: .95rem; }
.values-list li::before { content: '✦'; position: absolute; left: 0; color: var(--green); font-size: .7rem; top: 14px; }
.values-list li:last-child { border-bottom: none; }
.program-list { list-style: none; margin-top: 18px; }
.program-list li { padding: 10px 0 10px 20px; position: relative; color: var(--muted); border-bottom: 1px solid var(--line); font-size: .92rem; }
.program-list li::before { content: '→'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.program-list li:last-child { border-bottom: none; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 44px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-item { background: var(--surface); border-radius: var(--radius-sm); padding: 20px 22px; box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 14px; }
.contact-item .icon { font-size: 1.5rem; }
.contact-item strong { color: var(--navy); font-weight: 600; display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 3px; }
.contact-item a { color: var(--green); font-weight: 500; font-size: .95rem; }
.contact-item span.val { color: var(--muted); font-size: .95rem; }
.form-wrap { background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow); padding: 36px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: .84rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; letter-spacing: .03em; }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: .92rem; color: var(--ink); background: var(--cream); transition: border-color .2s; outline: none; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--green); background: #fff; }
.form-field textarea { resize: vertical; min-height: 110px; }
.page-header { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%); padding: 68px 0 56px; }
.page-header .eyebrow { color: var(--sage); }
.page-header h1 { color: #fff; margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,0.72); max-width: 580px; font-size: 1.05rem; }
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.8); padding: 52px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.footer h4 { color: #fff; font-size: .82rem; font-weight: 700; margin-bottom: 14px; letter-spacing: .07em; text-transform: uppercase; font-family: var(--font-body); }
.footer p, .footer a { color: rgba(255,255,255,0.65); font-size: .88rem; }
.footer a:hover { color: var(--sage); }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-brand { font-family: var(--font-head); font-size: 1.2rem; color: #fff; margin-bottom: 10px; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin-bottom: 20px; }
.footer-bottom { font-size: .78rem; color: rgba(255,255,255,0.4); text-align: center; }
.footer-logo { height: 44px; width: auto; margin-bottom: 14px; opacity: 0.85; }
@media (max-width: 980px) {
  .hero-grid, .split, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .leaders { grid-template-columns: 1fr; }
  .grid-3, .stats { grid-template-columns: repeat(2, 1fr); }
  .nav { gap: 14px; align-items: flex-start; flex-direction: column; }
  .brand img { height: 40px; }
  .page-header { padding: 52px 0 40px; }
}
@media (max-width: 560px) {
  .grid-3, .stats { grid-template-columns: 1fr; }
  .btns { flex-direction: column; align-items: flex-start; }
}
