@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
:root {
  --primary: #2c4a5e;
  --primary-dark: #203746;
  --secondary: #2d3846;
  --accent: #8a6f3e;
  --accent-soft: #dbc99a;
  --bg: #f3f1ed;
  --surface: #ffffff;
  --surface-soft: #ebe7df;
  --text: #202832;
  --muted: #5d6772;
  --border: #d7d1c8;
  --radius: 18px;
  --shadow: 0 18px 45px rgba(32, 40, 50, 0.10);
  --shadow-soft: 0 8px 24px rgba(32, 40, 50, 0.08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif; color: var(--text); background: var(--bg); line-height: 1.7; }
a { color: inherit; }
img { max-width: 100%; display: block; }
.site-header { background: var(--surface); border-bottom: 1px solid var(--border); }
.header-inner { max-width: 1180px; margin: 0 auto; padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: 132px; height: auto; }
.header-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; justify-content: flex-end; }
.header-actions a { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; color: var(--muted); font-size: 0.92rem; font-weight: 600; }
.header-actions img { width: 18px; height: 18px; }
.site-nav { position: sticky; top: 0; z-index: 50; padding: 12px 20px; background: rgba(243, 241, 237, .88); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(215,209,200,.55); }
.nav-inner { max-width: 1180px; margin: 0 auto; }
.nav-links { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 8px; border-radius: 999px; background: var(--secondary); box-shadow: var(--shadow-soft); }
.nav-links a { text-decoration: none; color: rgba(255,255,255,.86); font-size: .92rem; font-weight: 650; padding: 10px 15px; border-radius: 999px; transition: background .2s ease, color .2s ease, transform .2s ease; }
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,.14); }
.nav-links a[href="contact.html"] { background: #fff; color: var(--primary-dark); margin-left: 8px; }
.nav-toggle { display: none; width: 100%; border: 1px solid var(--border); border-radius: 12px; background: var(--surface); padding: 12px 16px; font-weight: 700; color: var(--primary-dark); }
main { max-width: 1180px; margin: 0 auto; padding: 28px 24px 64px; }
.page-hero { min-height: 290px; border-radius: 28px; position: relative; overflow: hidden; background: linear-gradient(135deg, rgba(44,74,94,.98), rgba(45,56,70,.94)); box-shadow: var(--shadow); margin: 10px 0 34px; display: flex; align-items: flex-end; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(120deg, rgba(255,255,255,.08) 0 1px, transparent 1px 80px), radial-gradient(circle at 88% 18%, rgba(255,255,255,.18), transparent 230px); }
.page-hero.with-photo { min-height: 560px; background-image: linear-gradient(90deg, rgba(23,36,45,.86), rgba(23,36,45,.48), rgba(23,36,45,.20)), var(--hero-image); background-size: cover; background-position: center; }
.page-hero.with-photo::before { background: linear-gradient(0deg, rgba(0,0,0,.38), transparent 45%); }
.hero-content { position: relative; max-width: 790px; padding: 44px; color: #fff; }
.kicker { text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 800; color: var(--accent); margin: 0 0 10px; }
.hero-content .kicker { color: var(--accent-soft); }
h1, h2, h3 { line-height: 1.15; letter-spacing: -.03em; margin: 0 0 14px; }
h1 { font-size: clamp(2rem, 4vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.45rem, 2vw, 2.15rem); }
h3 { font-size: 1.12rem; }
p { color: var(--muted); margin: 0 0 16px; }
.hero-content p { color: rgba(255,255,255,.90); font-size: 1.08rem; max-width: 64ch; }
.quick-info { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin: -10px 0 42px; }
.quick-info article { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 18px; box-shadow: var(--shadow-soft); }
.quick-info span { display: block; color: var(--muted); font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.quick-info strong { color: var(--primary-dark); font-size: 1.05rem; }
.intro-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 18px; margin-bottom: 46px; }
.intro-card, .stat-card, .content-panel, .feature-card, .phase-grid article, .staff-card, .donation-card, .note-panel, .action-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.intro-card { padding: 32px; }
.intro-card.emphasis { background: linear-gradient(180deg, #fff, #f7f5f1); }
.stat-card { padding: 24px; display: flex; flex-direction: column; justify-content: center; min-height: 150px; }
.stat-card strong { color: var(--primary); font-size: 1.3rem; line-height: 1.15; }
.stat-card span { color: var(--muted); margin-top: 8px; }
.button-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.button-row.center { justify-content: center; }
.button { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; border-radius: 999px; padding: 12px 18px; font-weight: 750; border: 1px solid transparent; }
.button.primary { background: var(--primary); color: #fff; }
.button.secondary { background: transparent; color: var(--primary); border-color: var(--border); }
.button.light { background: #fff; color: var(--primary-dark); }
.button.secondary.light { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.35); }
.section-heading { margin: 38px 0 18px; }
.section-heading.compact { margin-top: 0; }
.section-heading h2 { max-width: 760px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 48px; }
.feature-grid.compact article, .feature-card { padding: 26px; }
.feature-card img { height: 120px; margin-bottom: 18px; object-fit: contain; }
.feature-card a { color: var(--primary); text-decoration: none; font-weight: 800; }
.parent-actions { margin-bottom: 48px; }
.action-grid, .mini-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.action-card { display: block; text-decoration: none; padding: 22px; transition: transform .2s ease, box-shadow .2s ease; }
.action-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.action-card span { display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 12px; background: var(--surface-soft); color: var(--primary); font-weight: 800; margin-bottom: 14px; }
.action-card strong, .mini-grid strong { display: block; color: var(--primary-dark); margin-bottom: 8px; }
.action-card p, .mini-grid p { margin: 0; font-size: .94rem; }
.cta-panel { display: flex; justify-content: space-between; gap: 24px; align-items: center; padding: 30px; background: var(--primary-dark); border-radius: 24px; box-shadow: var(--shadow); }
.cta-panel h2, .cta-panel p { color: #fff; }
.cta-panel .kicker { color: var(--accent-soft); }
.content-panel { padding: 32px; margin-bottom: 22px; }
.content-panel.centered { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
.content-panel.centered p { margin-left: auto; margin-right: auto; }
.split-panel { display: grid; grid-template-columns: 1.45fr .85fr; gap: 24px; align-items: center; }
.highlight-box { background: var(--surface-soft); border-radius: 16px; padding: 22px; }
.highlight-box strong { color: var(--primary-dark); font-size: 1.2rem; }
.two-column, .contact-grid, .donation-layout { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.timeline { display: grid; gap: 14px; margin-bottom: 24px; }
.timeline div { display: grid; grid-template-columns: 90px 1fr; gap: 16px; align-items: start; padding: 16px; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow-soft); }
.timeline span { font-weight: 800; color: var(--primary); }
.phase-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; margin-bottom: 28px; }
.phase-grid article { padding: 24px; }
.phase-grid article h2 { color: var(--primary); font-size: 1.25rem; }
.pathway { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 10px; margin: 20px 0; }
.pathway span { background: var(--primary); color: #fff; border-radius: 999px; padding: 10px 12px; text-align: center; font-weight: 800; }
.staff-note { background: #fff8e8; }
.staff-section { margin-bottom: 34px; }
.staff-section > h2 { color: var(--primary-dark); margin-bottom: 14px; }
.staff-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.staff-card { display: flex; gap: 16px; align-items: center; padding: 18px; min-height: 116px; }
.avatar { width: 58px; height: 58px; flex: 0 0 58px; border-radius: 16px; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; display: grid; place-items: center; font-weight: 800; letter-spacing: .04em; }
.staff-card h3 { margin-bottom: 6px; }
.staff-card p { margin: 0; font-size: .94rem; }
.note-panel { padding: 22px; background: #fff8e8; }
.donation-card { padding: 30px; }
.donation-card.accent { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; }
.donation-card.accent p, .donation-card.accent h2 { color: #fff; }
.small-note { font-size: .92rem; border-top: 1px solid var(--border); padding-top: 14px; margin-top: 18px; }
dl { display: grid; grid-template-columns: 140px 1fr; gap: 8px 16px; }
dt { font-weight: 800; color: var(--primary); }
dd { margin: 0; color: var(--muted); }
.step-list { display: grid; gap: 14px; margin: 18px 0 24px; }
.step-list article { display: flex; gap: 16px; align-items: flex-start; background: var(--surface-soft); padding: 18px; border-radius: 16px; }
.step-list span { width: 36px; height: 36px; border-radius: 999px; display: grid; place-items: center; background: var(--primary); color: #fff; font-weight: 800; flex: 0 0 36px; }
.step-list strong { color: var(--primary-dark); }
.step-list p { margin: 4px 0 0; }
.quick-contact { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.quick-contact a { text-decoration: none; background: var(--primary-dark); color: #fff; border-radius: 18px; padding: 24px; box-shadow: var(--shadow-soft); }
.quick-contact strong, .quick-contact span { display: block; }
.quick-contact span { color: rgba(255,255,255,.76); margin-top: 6px; }
.resource-list { display: grid; gap: 12px; margin-top: 18px; }
.resource-list article { display: flex; justify-content: space-between; gap: 14px; padding: 16px; background: var(--surface-soft); border-radius: 14px; }
.resource-list span { color: var(--muted); font-weight: 700; }
address { font-style: normal; }
ul, ol { color: var(--muted); padding-left: 1.2rem; }
.site-footer { background: var(--secondary); color: #fff; padding: 46px 24px 24px; }
.footer-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 32px; }
.footer-logo { width: 112px; background: #fff; border-radius: 16px; padding: 8px; margin-bottom: 16px; }
.site-footer h2 { font-size: 1rem; color: #fff; }
.site-footer p, .site-footer a { color: rgba(255,255,255,.78); text-decoration: none; }
.footer-bottom { max-width: 1180px; margin: 28px auto 0; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.65); font-size: .9rem; }
@media (max-width: 980px) {
  .header-inner { flex-direction: column; justify-content: center; text-align: center; }
  .header-actions { justify-content: center; }
  .nav-toggle { display: block; }
  .nav-links { display: none; margin-top: 10px; border-radius: 18px; flex-direction: column; align-items: stretch; }
  .nav-links.open { display: flex; }
  .nav-links a { text-align: center; }
  .nav-links a[href="contact.html"] { margin-left: 0; }
  .intro-grid, .feature-grid, .phase-grid, .staff-grid, .footer-grid, .quick-info, .action-grid, .mini-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .intro-card.emphasis { grid-column: 1 / -1; }
  .split-panel { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  main { padding: 18px 14px 42px; }
  .site-nav { padding: 10px 12px; }
  .brand img { width: 118px; }
  .header-actions { gap: 8px; }
  .header-actions a { font-size: .86rem; }
  .page-hero, .page-hero.with-photo { min-height: 400px; border-radius: 20px; }
  .hero-content { padding: 28px; }
  .intro-grid, .feature-grid, .phase-grid, .staff-grid, .two-column, .contact-grid, .donation-layout, .footer-grid, .quick-info, .action-grid, .mini-grid, .quick-contact, .pathway { grid-template-columns: 1fr; }
  .cta-panel { flex-direction: column; align-items: flex-start; }
  .timeline div { grid-template-columns: 1fr; }
  dl { grid-template-columns: 1fr; }
  .content-panel, .intro-card, .feature-card, .phase-grid article, .donation-card { padding: 22px; }
  .resource-list article { flex-direction: column; }
}
