:root {
  --blue: #123a8f;
  --blue-deep: #0c2a6b;
  --blue-ink: #0a1f4d;
  --gold: #e8a413;
  --gold-soft: #fdf3dd;
  --paper: #fbfaf7;
  --ink: #1c2333;
  --muted: #5b6478;
  --line: #e6e4dd;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(10, 31, 77, 0.10);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: "Fraunces", Georgia, serif; line-height: 1.15; color: var(--blue-ink); }
a { color: var(--blue); }
img { max-width: 100%; display: block; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.7rem clamp(1rem, 4vw, 3rem);
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; font-weight: 700; color: var(--blue-ink); font-size: 1.02rem; }
.nav-brand img { height: 34px; width: 34px; }
.nav-links { display: flex; align-items: center; gap: clamp(0.8rem, 2vw, 1.5rem); }
.nav-links a { text-decoration: none; color: var(--ink); font-weight: 500; font-size: 0.95rem; }
.nav-links a:hover { color: var(--blue); }
.nav-cta {
  background: var(--blue); color: #fff !important;
  padding: 0.45rem 0.95rem; border-radius: 999px; font-weight: 600;
}
.nav-toggle { display: none; background: none; border: 0; font-size: 1.5rem; color: var(--blue-ink); cursor: pointer; }

/* ---------- hero ---------- */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero-media {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
  filter: saturate(1.05);
}
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10, 31, 77, 0.92) 25%, rgba(12, 42, 107, 0.72) 55%, rgba(12, 42, 107, 0.45));
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto;
  padding: clamp(4rem, 10vw, 7.5rem) clamp(1.2rem, 4vw, 3rem) clamp(3rem, 6vw, 5rem);
}
.hero-kicker {
  display: inline-block; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase;
  background: rgba(232, 164, 19, 0.18); border: 1px solid rgba(232, 164, 19, 0.5);
  color: #ffd98a; padding: 0.3rem 0.8rem; border-radius: 999px; margin-bottom: 1.2rem; font-weight: 600;
}
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); color: #fff; margin-bottom: 1.2rem; }
.hero h1 em { color: var(--gold); font-style: italic; }
.hero-sub { max-width: 620px; font-size: clamp(1rem, 1.6vw, 1.15rem); color: #e8ecf7; margin-bottom: 1.8rem; }
.hero-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }

.btn {
  display: inline-block; text-decoration: none; font-weight: 600;
  padding: 0.75rem 1.4rem; border-radius: 999px; font-size: 0.97rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-gold { background: var(--gold); color: #2b1d00; }
.btn-blue { background: var(--blue); color: #fff; }
.btn-ghost { border: 1.5px solid rgba(255, 255, 255, 0.7); color: #fff; }

.stats-band {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(5, 1fr);
  background: rgba(9, 25, 61, 0.75); backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.stats-band div { padding: 1.3rem 1rem; text-align: center; }
.stats-band strong { display: block; font-family: "Fraunces", serif; font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--gold); }
.stats-band span { font-size: 0.82rem; color: #c8d2ea; }

/* ---------- sections ---------- */
.section { max-width: 1100px; margin: 0 auto; padding: clamp(3rem, 7vw, 5.5rem) clamp(1.2rem, 4vw, 3rem); }
.section-alt { max-width: none; background: #f2efe8; }
.section-alt > * { max-width: 1100px; margin-left: auto; margin-right: auto; }
.section-head { margin-bottom: 2.2rem; }
.eyebrow { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; color: var(--gold); margin-bottom: 0.5rem; }
.section-head h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
.muted { color: var(--muted); }
.center { text-align: center; margin-top: 1.6rem; }
.fineprint { font-size: 0.82rem; color: var(--muted); margin-top: 1.6rem; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.tile {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.4rem; box-shadow: 0 2px 8px rgba(10, 31, 77, 0.04);
}
.tile-icon { margin-bottom: 0.7rem; color: var(--blue); }
.tile-icon svg {
  width: 30px; height: 30px; fill: none; stroke: currentColor;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.tile h3 { font-size: 1.15rem; margin-bottom: 0.55rem; }
.tile p { font-size: 0.94rem; color: #3d465c; }
.tile-cta { display: flex; flex-direction: column; }
.tile-cta .btn { margin-top: auto; align-self: flex-start; margin-top: 1.1rem; }

.photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; margin-top: 2rem; }
.photo-strip img {
  border-radius: 10px; aspect-ratio: 4/3; object-fit: cover; width: 100%;
  box-shadow: 0 4px 14px rgba(10, 31, 77, 0.12);
}

/* ---------- timeline ---------- */
.timeline { display: grid; gap: 0; border-left: 3px solid var(--gold); padding-left: 1.6rem; max-width: 760px; }
.tl-item { position: relative; padding-bottom: 1.7rem; }
.tl-item::before {
  content: ""; position: absolute; left: calc(-1.6rem - 8.5px); top: 0.45rem;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold); border: 3px solid #f2efe8;
}
.tl-year { font-family: "Fraunces", serif; font-weight: 700; color: var(--blue); font-size: 1.05rem; display: block; margin-bottom: 0.25rem; }
.tl-item p { font-size: 0.96rem; color: #3d465c; }

/* ---------- impact (dark) ---------- */
.section-dark { max-width: none; background: linear-gradient(135deg, var(--blue-ink), var(--blue-deep)); color: #e8ecf7; }
.section-dark > * { max-width: 1100px; margin-left: auto; margin-right: auto; }
.section-dark h2 { color: #fff; }
.impact-flex { display: grid; grid-template-columns: 1.05fr 1fr; gap: 2.4rem; align-items: center; }
.impact-copy p { margin-bottom: 1rem; }
.impact-copy .btn { margin-top: 0.4rem; }
.impact-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.impact-gallery img {
  border-radius: 10px; aspect-ratio: 4/3; object-fit: cover; width: 100%;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

/* ---------- feed ---------- */
.feed { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; align-items: start; }
.post-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 2px 8px rgba(10, 31, 77, 0.04);
  display: flex; flex-direction: column;
}
.post-card iframe { width: 100%; border: 0; min-height: 380px; }
.post-body { padding: 1.1rem 1.2rem; }
.post-meta { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: var(--muted); margin-bottom: 0.55rem; }
.post-badge {
  font-weight: 700; padding: 0.1rem 0.55rem; border-radius: 999px; font-size: 0.72rem;
  background: #e7f0ff; color: var(--blue);
}
.post-badge.instagram { background: #fdeef5; color: #c13584; }
.post-body p { font-size: 0.93rem; color: #3d465c; }
.post-body a.post-link { display: inline-block; margin-top: 0.7rem; font-size: 0.88rem; font-weight: 600; }
.post-card img.post-img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }

/* ---------- team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.1rem; }
.team-grid figure { text-align: center; }
.team-grid img {
  width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 50%;
  border: 3px solid #fff; box-shadow: var(--shadow); margin-bottom: 0.6rem;
}
.team-grid figcaption strong { display: block; font-size: 0.9rem; color: var(--blue-ink); }
.team-grid figcaption span { font-size: 0.78rem; color: var(--muted); }

/* ---------- contact / footer ---------- */
.section-contact { border-top: 1px solid var(--line); }
.contact-flex { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.contact-flex h2 { font-size: 1.4rem; margin-bottom: 0.8rem; }
.contact-flex p { margin-bottom: 0.8rem; font-size: 0.97rem; }

.footer { background: var(--blue-ink); color: #c8d2ea; padding: 2.5rem clamp(1.2rem, 4vw, 3rem); text-align: center; }
.footer p { max-width: 760px; margin: 0 auto 0.7rem; font-size: 0.92rem; }
.footer .fineprint { color: #8fa0c6; margin-top: 0.4rem; }
.footer a { color: #ffd98a; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .grid-3, .impact-flex, .contact-flex { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: 1fr; }
  .feed { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .stats-band div:last-child { grid-column: span 2; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 1rem clamp(1rem, 4vw, 3rem) 1.4rem; gap: 0.9rem;
  }
  .nav.open .nav-links { display: flex; }
}
