:root {
  --navy: #10243f;
  --blue: #1e5a7a;
  --gold: #c99a3e;
  --cream: #f7f2e8;
  --light: #f8fafc;
  --text: #1e293b;
  --muted: #64748b;
  --white: #ffffff;
  --line: #e2e8f0;
  --shadow: 0 24px 70px rgba(16, 36, 63, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226,232,240,0.85);
}
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 78px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--navy); }
.brand-mark { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: var(--navy); color: var(--gold); font-weight: 800; letter-spacing: -0.04em; }
.brand-text { font-weight: 800; line-height: 1.05; font-size: 0.95rem; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: var(--navy); text-decoration: none; font-weight: 650; font-size: 0.95rem; }
.nav-toggle { display: none; border: 0; background: none; font-size: 1.8rem; color: var(--navy); }
.button { display: inline-flex; align-items: center; justify-content: center; padding: 13px 22px; border-radius: 999px; border: 1px solid var(--gold); background: var(--gold); color: var(--navy); text-decoration: none; font-weight: 800; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease; }
.button:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(201,154,62,0.28); }
.button-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.button-small { padding: 9px 16px; }

.hero { position: relative; overflow: hidden; background: var(--navy); color: var(--white); }
.hero-bg { position: absolute; inset: 0; opacity: .22; background: linear-gradient(135deg, transparent 0 30%, rgba(201,154,62,.55) 30% 31%, transparent 31% 58%, rgba(255,255,255,.4) 58% 59%, transparent 59%), radial-gradient(circle at 80% 20%, var(--blue), transparent 36%); }
.hero-grid { position: relative; min-height: 680px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 64px; align-items: center; padding: 80px 0; }
.eyebrow { margin: 0 0 14px; color: var(--gold); font-size: .78rem; text-transform: uppercase; letter-spacing: .16em; font-weight: 800; }
h1, h2, h3 { margin: 0; color: inherit; line-height: 1.08; }
h1 { font-family: "Libre Baskerville", Georgia, serif; font-size: clamp(3rem, 7vw, 6rem); letter-spacing: -0.05em; }
h2 { font-family: "Libre Baskerville", Georgia, serif; font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: -0.04em; color: var(--navy); }
h3 { font-size: 1.2rem; color: var(--navy); }
.hero-text { max-width: 660px; font-size: 1.25rem; color: rgba(255,255,255,.84); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-card { background: rgba(255,255,255,.95); color: var(--navy); border-radius: 28px; padding: 34px; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.6); }
.hero-card p { font-family: "Libre Baskerville", Georgia, serif; font-size: 1.55rem; line-height: 1.35; margin: 12px 0 0; }
.card-label { color: var(--gold); font-weight: 800; text-transform: uppercase; letter-spacing: .14em; font-size: .75rem; }

.section { padding: 96px 0; }
.muted { background: var(--light); }
.two-column { display: grid; grid-template-columns: .75fr 1.25fr; gap: 72px; align-items: center; }
.align-start { align-items: start; }
.large-copy { font-size: 1.13rem; color: #334155; }
.large-copy p:first-child { margin-top: 0; }
.section-heading { max-width: 760px; margin: 0 auto 42px; text-align: center; }
.section-heading.left { text-align: left; margin: 0; }
.cards.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.info-card { background: var(--white); border: 1px solid var(--line); border-radius: 24px; padding: 30px; box-shadow: 0 12px 42px rgba(16, 36, 63, .06); }
.info-card p { color: var(--muted); margin-bottom: 0; }
.program-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 72px; align-items: start; }
.program-list { display: grid; gap: 18px; }
.program-item { display: grid; grid-template-columns: 52px 1fr; gap: 20px; padding: 24px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); }
.program-item span { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--cream); color: var(--gold); font-weight: 900; }
.program-item p { margin: 8px 0 0; color: var(--muted); }
.impact-band { background: linear-gradient(135deg, var(--navy), var(--blue)); color: var(--white); }
.impact-content { max-width: 880px; text-align: center; }
.impact-content h2 { color: var(--white); }
.impact-content p { font-size: 1.25rem; color: rgba(255,255,255,.82); }
.placeholder-note { padding: 18px 20px; background: var(--cream); border-left: 4px solid var(--gold); border-radius: 14px; }
.contact-section { background: var(--cream); }
.contact-card { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; background: var(--white); border-radius: 30px; padding: 44px; box-shadow: var(--shadow); }
.contact-form { display: grid; gap: 16px; }
label { display: grid; gap: 8px; font-weight: 750; color: var(--navy); }
input, textarea { width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 14px 15px; font: inherit; color: var(--text); }
input:focus, textarea:focus { outline: 2px solid rgba(201,154,62,.35); border-color: var(--gold); }
.site-footer { background: #071527; color: rgba(255,255,255,.78); padding: 42px 0; }
.footer-grid { display: flex; justify-content: space-between; gap: 30px; }
.site-footer strong { color: var(--white); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,.78); text-decoration: none; }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links { display: none; position: absolute; left: 20px; right: 20px; top: 78px; flex-direction: column; align-items: stretch; gap: 0; background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); padding: 10px; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 14px; }
  .hero-grid, .two-column, .program-grid, .contact-card { grid-template-columns: 1fr; gap: 34px; }
  .hero-grid { min-height: auto; }
  .cards.three { grid-template-columns: 1fr; }
  .footer-grid { flex-direction: column; }
}
