:root {
  --deep: #3d5b60;
  --teal: #7c8670;
  --teal-light: #e6e3dc;
  --gold: #dd5a2e;
  --ink: #2b3a3c;
  --muted: #667169;
  --paper: #ffffff;
  --line: #dedad2;
  --radius: 14px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.2; margin: 0 0 .5em; color: var(--deep); }
h1 { font-size: 2.4rem; }
h2 { font-size: 1.9rem; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
a { color: var(--teal); }
ul, ol { margin: 0 0 1em; padding-left: 1.3em; }
li { margin-bottom: .35em; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: 1080px; margin: 0 auto; flex-wrap: wrap; gap: 10px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--deep); text-decoration: none; font-size: 1.1rem; }
.brand .logo-icon { flex-shrink: 0; display: block; }
nav.links { display: flex; gap: 22px; flex-wrap: wrap; }
nav.links a { color: var(--ink); text-decoration: none; font-size: .95rem; font-weight: 600; padding-bottom: 3px; border-bottom: 2px solid transparent; }
nav.links a:hover { color: var(--teal); }
nav.links a.active { color: var(--gold); border-bottom-color: var(--gold); }

.hero {
  background: linear-gradient(135deg, var(--deep), var(--gold));
  color: #fff; padding: 84px 0 72px; text-align: center;
}
.hero.compact { padding: 56px 0 48px; }
.hero h1 { color: #fff; max-width: 780px; margin: 0 auto .4em; }
.hero .eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; color: #f3ded0; font-weight: 700; margin-bottom: 14px; }
.hero p.sub { max-width: 620px; margin: 0 auto 32px; color: #f7ece2; font-size: 1.1rem; }
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 13px 26px; border-radius: 999px; text-decoration: none;
  font-weight: 700; font-size: .95rem; transition: transform .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--gold); color: #2a1b06; }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.6); }

section { padding: 68px 0; }
section.alt { background: var(--teal-light); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 42px; }
.section-head p { color: var(--muted); }

.grid-programs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 720px) { .grid-programs { grid-template-columns: 1fr; } }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: 0 1px 2px rgba(20,40,35,.04);
}
.card h3 { margin-bottom: .3em; }
.card .num { display: inline-block; background: var(--teal); color: #fff; width: 28px; height: 28px; border-radius: 50%; text-align: center; line-height: 28px; font-size: .85rem; font-weight: 700; margin-bottom: 10px; }

.story-block { display: flex; gap: 40px; align-items: flex-start; flex-wrap: wrap; }
.story-block .text { flex: 1 1 420px; }
.note-box {
  background: #fff; border-left: 4px solid var(--gold); border-radius: 0 10px 10px 0;
  padding: 18px 22px; margin-top: 20px; font-size: .95rem; color: var(--muted);
}
.pull-quote {
  border-left: 4px solid var(--gold); padding: 4px 0 4px 22px; margin: 28px 0;
  font-family: Georgia, "Times New Roman", serif; font-size: 1.2rem; color: var(--deep); font-style: italic;
}
.book-list { columns: 2; column-gap: 32px; }
@media (max-width: 640px) { .book-list { columns: 1; } }
.book-list li { break-inside: avoid; }

.leadership { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 10px; }
@media (max-width: 720px) { .leadership { grid-template-columns: 1fr; } }
.person { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; text-align: center; }
.avatar { width: 128px; height: 128px; border-radius: 50%; object-fit: cover; object-position: center; margin: 0 auto 16px; display: block; border: 3px solid var(--teal-light); }
.avatar-top { object-position: center top; }
.person h3 { margin-bottom: 0; }
.role { color: var(--gold); font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }
.person p { color: var(--muted); text-align: left; font-size: .96rem; }
.join-cta {
  margin-top: 34px; text-align: center; background: var(--deep); color: #fff;
  border-radius: var(--radius); padding: 36px 28px;
}
.join-cta h3 { color: #fff; }
.join-cta p { color: #ecdccb; max-width: 520px; margin: 0 auto 20px; }

.resource-list { display: flex; flex-direction: column; gap: 18px; }
.resource { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 26px; }
.resource h3 { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.tag { font-size: .7rem; background: var(--teal-light); color: var(--teal); padding: 3px 10px; border-radius: 999px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }

.faq details { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 16px 20px; margin-bottom: 12px; }
.faq summary { font-weight: 700; cursor: pointer; color: var(--deep); }
.faq p { margin-top: 10px; color: var(--muted); }

.involve-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .involve-grid { grid-template-columns: 1fr; } }

form.contact { display: grid; gap: 16px; max-width: 560px; margin: 0 auto; }
form.contact label { font-weight: 700; font-size: .9rem; display: block; margin-bottom: 6px; }
form.contact input, form.contact select, form.contact textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px; font-size: 1rem; font-family: inherit;
}
form.contact button { justify-self: start; }

footer { background: var(--deep); color: #ddcdba; padding: 40px 0; text-align: center; font-size: .9rem; }
footer a { color: #fff; }
.footer-links { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; margin-bottom: 14px; }
.footer-links a { text-decoration: none; font-weight: 600; }
