:root {
  --navy: #060f1e;
  --navy-2: #0b1c33;
  --ink: #101b2c;
  --muted: #5c6a7c;
  --paper: #f4f7fb;
  --white: #fff;
  --line: #e2e9f2;
  --blue: #0879bd;
  --cyan: #1cb4d3;
  --gold: #f6b52a;
  --pink: #ff4b76;
  --grad: linear-gradient(120deg, var(--gold), var(--pink));
  --radius: 20px;
  --shadow: 0 28px 80px rgba(6, 15, 30, .16);
  --font-display: "Sora", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; }
a { color: inherit; }
::selection { color: var(--navy); background: var(--gold); }

/* ---------- scroll progress ---------- */
.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 60;
  width: var(--progress, 0%);
  height: 3px;
  background: var(--grad);
}

/* ---------- header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(20px, 5vw, 64px);
  color: var(--white);
  transition: background .3s ease, padding .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled,
body:not(.home) .site-header,
body.nav-open .site-header {
  padding-block: 10px;
  background: rgba(6, 15, 30, .86);
  box-shadow: 0 10px 40px rgba(3, 9, 18, .35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  padding: 5px;
  background: rgba(255, 255, 255, .94);
  border-radius: 12px;
}
.brand span { display: grid; line-height: 1.1; }
.brand strong { font-family: var(--font-display); font-weight: 800; font-size: 15px; letter-spacing: .04em; text-transform: uppercase; }
.brand small { color: rgba(255,255,255,.66); font-size: 11.5px; letter-spacing: .02em; }
.header-cta { display: inline-flex; }
.header-cta .btn { min-height: 42px; padding: 9px 18px; font-size: 12.5px; }

.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 28px);
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.main-nav a { position: relative; padding-block: 6px; text-decoration: none; color: rgba(255,255,255,.86); transition: color .2s ease; }
.main-nav a:hover { color: var(--white); }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--grad);
  transition: transform .25s ease;
}
.main-nav a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  position: relative;
  z-index: 60;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transform: translate(-50%, -50%);
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle span::before { transform: translate(-50%, calc(-50% - 6px)); }
.nav-toggle span::after { transform: translate(-50%, calc(-50% + 6px)); }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translate(-50%, -50%) rotate(45deg); }
body.nav-open .nav-toggle span::after { transform: translate(-50%, -50%) rotate(-45deg); }

/* ---------- typography ---------- */
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
h1 {
  max-width: 950px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7.2vw, 92px);
  line-height: .98;
}
h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.6vw, 58px);
  line-height: 1.02;
}
h3 { margin-bottom: 10px; font-family: var(--font-display); font-size: 21px; font-weight: 700; line-height: 1.2; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--pink);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.kicker::before { content: ""; width: 26px; height: 2px; border-radius: 2px; background: var(--grad); }
.grad-text {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.lead {
  max-width: 660px;
  color: rgba(255,255,255,.84);
  font-size: clamp(17px, 1.8vw, 21px);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #171003;
  background: var(--gold);
  box-shadow: 0 14px 36px rgba(246,181,42,.35);
}
.btn-primary:hover { box-shadow: 0 20px 46px rgba(246,181,42,.45); }
.btn-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,.14); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: var(--blue);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.text-link::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 150px clamp(20px, 6vw, 80px) clamp(40px, 7vw, 76px);
  color: var(--white);
  background:
    linear-gradient(100deg, rgba(4,12,24,.94) 8%, rgba(4,12,24,.6) 52%, rgba(4,12,24,.2)),
    image-set(url("../img/hero.webp") type("image/webp")) center / cover no-repeat;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 42%;
  background: linear-gradient(0deg, rgba(6,15,30,.97), rgba(6,15,30,0));
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -180px;
  right: -160px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,75,118,.28), transparent 65%);
  filter: blur(10px);
  pointer-events: none;
}
.hero-content { max-width: 980px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  padding: 9px 18px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(246,181,42,.25);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 56px);
  margin: clamp(36px, 6vh, 64px) 0 0;
  padding: 26px 0 0;
  border-top: 1px solid rgba(255,255,255,.18);
  list-style: none;
}
.hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 800;
  line-height: 1;
}
.hero-stats span { color: rgba(255,255,255,.62); font-size: 13.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }

/* ---------- ticker ---------- */
.impact-strip {
  overflow: hidden;
  padding: 16px 0;
  color: var(--navy);
  background: var(--gold);
  transform: rotate(-1deg) scale(1.02);
  border-block: 3px solid var(--navy);
}
.ticker { display: flex; width: max-content; gap: 36px; animation: ticker 30s linear infinite; }
.ticker span { font-family: var(--font-display); font-size: clamp(26px, 4vw, 44px); font-weight: 800; line-height: 1; text-transform: uppercase; white-space: nowrap; }
.ticker span::after { content: "★"; margin-left: 36px; font-size: .6em; vertical-align: middle; color: rgba(6,15,30,.4); }

/* ---------- sections ---------- */
.section { padding: clamp(64px, 9vw, 120px) clamp(20px, 6vw, 80px); }
.section-heading { max-width: 860px; }
.section-heading .section-sub, .section-copy p:not(.kicker) { color: var(--muted); font-size: 17.5px; }
.dark-section { color: var(--white); background: var(--navy); }
.dark-section .section-heading .section-sub, .dark-section .section-copy p:not(.kicker) { color: rgba(255,255,255,.72); }
.dark-section .kicker { color: var(--gold); }

/* ---------- mission ---------- */
.mission {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(300px, 1fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
}
.stat-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.stat-grid article {
  position: relative;
  min-height: 160px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 48px rgba(10,31,54,.07);
  transition: transform .25s ease, box-shadow .25s ease;
}
.stat-grid article:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(10,31,54,.12); }
.stat-grid article::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 4px; background: var(--grad); }
.stat-grid strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-display);
  color: var(--navy);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1;
}
.stat-grid span { color: var(--muted); font-size: 14px; font-weight: 600; }

/* ---------- programs ---------- */
.programs { position: relative; overflow: hidden; }
.programs::before {
  content: "";
  position: absolute;
  top: -220px;
  left: -180px;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28,180,211,.16), transparent 65%);
  pointer-events: none;
}
.program-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 40px; }
.program-card {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  border-radius: var(--radius);
  background: var(--navy-2);
  box-shadow: 0 28px 70px rgba(0,0,0,.3);
}
.program-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .8; transition: transform .5s ease, opacity .5s ease; }
.program-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,12,24,.96), rgba(4,12,24,.3) 55%, rgba(4,12,24,.05)); }
.program-card:hover img { transform: scale(1.06); opacity: .95; }
.program-card > div { position: relative; z-index: 1; padding: 28px; }
.program-card span {
  display: inline-flex;
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .14em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.program-card p { margin-bottom: 0; color: rgba(255,255,255,.76); font-size: 15.5px; }

/* ---------- groups ---------- */
.groups { background: var(--white); }
.group-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 14px; margin-top: 40px; }
.group-card {
  position: relative;
  padding: 26px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.group-card:hover { transform: translateY(-5px); border-color: transparent; box-shadow: 0 24px 56px rgba(10,31,54,.14); }
.group-card em {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,75,118,.1);
  color: var(--pink);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.group-card h3 { font-size: 19px; }
.group-card p { margin-bottom: 0; color: var(--muted); font-size: 14.5px; }
.groups-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
  padding: 22px 26px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(110deg, var(--navy), var(--navy-2));
}
.groups-note p { margin: 0; font-size: 16px; }
.groups-note strong { color: var(--gold); }

/* ---------- story ---------- */
.story {
  min-height: 68vh;
  display: grid;
  align-items: center;
  padding: clamp(56px, 9vw, 120px) clamp(20px, 6vw, 80px);
  background:
    linear-gradient(90deg, rgba(6,15,30,.88), rgba(6,15,30,.28)),
    image-set(url("../img/hero-light.webp") type("image/webp")) center / cover fixed;
}
.story-card {
  max-width: 640px;
  padding: clamp(28px, 5vw, 48px);
  color: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(6,15,30,.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.story-card p:not(.kicker) { margin-bottom: 0; color: rgba(255,255,255,.8); font-size: 17px; }

/* ---------- team ---------- */
.team { background: var(--paper); }
.team-layout {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: stretch;
  margin-top: 40px;
}
.team-photo { position: relative; min-height: 380px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.team-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.team-cards { display: grid; gap: 14px; align-content: center; }
.team-card {
  padding: 26px 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 48px rgba(10,31,54,.07);
  transition: transform .25s ease, box-shadow .25s ease;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(10,31,54,.12); }
.team-card em {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--pink);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.team-card p { margin-bottom: 0; color: var(--muted); font-size: 15px; }

/* ---------- video ---------- */
.video-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(300px, 1fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  background: radial-gradient(circle at 86% 16%, rgba(28,180,211,.14), transparent 30%), var(--paper);
}
.video-frame {
  position: relative;
  padding: 10px;
  border-radius: calc(var(--radius) + 4px);
  background: var(--white);
  box-shadow: var(--shadow);
}
.video-frame::before {
  content: "";
  position: absolute;
  left: -18px;
  bottom: -18px;
  width: 46%;
  height: 46%;
  border-radius: var(--radius);
  background: var(--grad);
  z-index: -1;
}
video { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius); background: #000; }

/* ---------- gallery ---------- */
.gallery-section { background: var(--white); }
.gallery-mosaic { display: grid; grid-template-columns: 1.25fr .75fr 1fr; grid-auto-rows: 220px; gap: 12px; margin-top: 40px; }
.gallery-mosaic figure { position: relative; margin: 0; overflow: hidden; border-radius: 16px; }
.gallery-mosaic img { width: 100%; height: 100%; display: block; object-fit: cover; filter: saturate(1.05); transition: transform .5s ease; }
.gallery-mosaic figure:hover img { transform: scale(1.06); }
.gallery-mosaic figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6,15,30,.35), transparent 45%);
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery-mosaic figure:hover::after { opacity: 1; }
.gallery-mosaic figure:nth-child(1) { grid-row: span 2; }
.gallery-mosaic figure:nth-child(4) { grid-column: span 2; }

/* ---------- project ---------- */
.project-section { background: radial-gradient(circle at 12% 8%, rgba(28,180,211,.1), transparent 34%), var(--paper); border-top: 1px solid var(--line); }
.project-videos { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 40px; }
.project-video {
  margin: 0;
  padding: 10px 10px 4px;
  border-radius: calc(var(--radius) + 4px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 48px rgba(10,31,54,.08);
}
.project-video video { border-radius: var(--radius); }
.project-video figcaption {
  padding: 12px 10px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.project-partners {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 32px;
  margin-top: 26px;
  padding: 22px 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}
.project-partners p { margin: 0; color: var(--muted); font-size: 14px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.project-partner-logos { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(20px, 4vw, 48px); }
.project-partner-logos img { height: 56px; width: auto; object-fit: contain; }

/* ---------- partners ---------- */
.partners { padding-block: clamp(48px, 7vw, 80px); background: var(--white); border-top: 1px solid var(--line); }
.partner-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vw, 64px);
  margin-top: 34px;
}
.partner-row img {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(.55);
  transition: filter .3s ease, transform .3s ease;
}
.partner-row img:hover { filter: none; transform: scale(1.06); }

/* ---------- help ---------- */
.help-section { position: relative; overflow: hidden; }
.help-section::after {
  content: "";
  position: absolute;
  bottom: -260px;
  right: -200px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,75,118,.16), transparent 65%);
  pointer-events: none;
}
.help-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; margin-top: 40px; }
.help-card {
  position: relative;
  z-index: 1;
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.help-card:hover { transform: translateY(-5px); background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.22); }
.help-card span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--grad);
  color: var(--navy);
  font-size: 21px;
}
.help-card p { margin-bottom: 0; color: rgba(255,255,255,.72); font-size: 14.5px; }

/* ---------- posts ---------- */
.latest-posts { background: var(--paper); }
.post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 36px; }
.post-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 48px rgba(10,31,54,.07);
  transition: transform .25s ease, box-shadow .25s ease;
}
.post-card:hover { transform: translateY(-5px); box-shadow: 0 26px 64px rgba(10,31,54,.13); }
.post-card a { display: grid; height: 100%; text-decoration: none; }
.post-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.post-card span, .post-card h3, .post-card p { margin-inline: 22px; }
.post-card span { margin-top: 18px; color: var(--pink); font-size: 12.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.post-card h3 { margin-top: 8px; font-size: 19px; }
.post-card p { margin-bottom: 24px; color: var(--muted); font-size: 14.5px; }

/* ---------- contact ---------- */
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(300px, 1fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  padding: clamp(64px, 9vw, 120px) clamp(20px, 6vw, 80px);
  color: var(--white);
  background:
    linear-gradient(95deg, rgba(6,15,30,.96), rgba(6,15,30,.74)),
    image-set(url("../img/contact.webp") type("image/webp")) center / cover no-repeat;
}
.contact-copy p:not(.kicker) { max-width: 640px; color: rgba(255,255,255,.78); font-size: 17.5px; }
.contact-card {
  display: grid;
  gap: 18px;
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}
.contact-card a:not(.btn), .contact-card div > span {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  transition: color .2s ease;
}
.contact-card a:not(.btn):hover { color: var(--gold); }
.contact-card small { display: block; margin-bottom: 4px; color: rgba(255,255,255,.55); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.contact-card .btn { justify-self: start; margin-top: 6px; }

/* ---------- inner pages ---------- */
.page-main { padding-top: 84px; background: var(--paper); }
.content-shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; padding: clamp(48px, 8vw, 96px) 0; }
.page-hero { max-width: 860px; margin-bottom: 36px; }
.page-hero p { color: var(--muted); font-size: 17.5px; }
.entry-content { max-width: 860px; color: #26354a; font-size: 17.5px; }
.entry-content h2 { margin-top: 44px; color: var(--ink); font-size: clamp(28px, 4vw, 42px); }
.entry-content a { color: var(--blue); font-weight: 700; }
.entry-content ul { padding-left: 1.2em; }
.entry-content li + li { margin-top: 8px; }
.featured-image { margin: 0 0 32px; }
.featured-image img { width: 100%; max-height: 560px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.pagination { margin-top: 40px; }
.pagination .nav-links { display: flex; flex-wrap: wrap; gap: 8px; }
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}
.pagination .page-numbers.current { color: var(--navy); background: var(--gold); border-color: var(--gold); }

/* ---------- footer ---------- */
.site-footer { color: rgba(255,255,255,.72); background: var(--navy); }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(2, minmax(180px, 1fr));
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(48px, 7vw, 72px) clamp(20px, 6vw, 80px) 40px;
}
.footer-brand strong { display: block; margin-bottom: 12px; color: var(--white); font-family: var(--font-display); font-size: 19px; font-weight: 800; text-transform: uppercase; }
.footer-brand p { margin: 0; max-width: 340px; font-size: 14.5px; }
.footer-col h4 { margin: 4px 0 16px; color: var(--white); font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.footer-col ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; font-size: 14.5px; }
.footer-col a { text-decoration: none; transition: color .2s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding: 20px clamp(20px, 6vw, 80px);
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 13px;
  color: rgba(255,255,255,.5);
}

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; transition-delay: calc(var(--stagger, 0) * 90ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .program-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 55;
    display: grid;
    place-items: center;
    padding: 90px 24px 40px;
    background: rgba(6,15,30,.97);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
  }
  body.nav-open .main-nav { opacity: 1; visibility: visible; }
  body.nav-open { overflow: hidden; }
  .main-nav ul { flex-direction: column; align-items: center; gap: 22px; font-size: 18px; letter-spacing: .12em; }
  .hero, .mission, .video-section, .contact-section { grid-template-columns: 1fr; }
  .team-layout { grid-template-columns: 1fr; }
  .team-photo { min-height: 300px; }
  .gallery-mosaic { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 210px; }
  .gallery-mosaic figure:nth-child(1), .gallery-mosaic figure:nth-child(4) { grid-column: auto; grid-row: auto; }
}
@media (max-width: 620px) {
  .brand small { display: none; }
  .hero { min-height: 100svh; padding-top: 150px; }
  h1 { font-size: clamp(38px, 11vw, 52px); }
  h2 { font-size: clamp(28px, 8vw, 38px); }
  .hero-actions .btn { width: 100%; }
  .hero-stats { gap: 18px 28px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .stat-grid article { min-height: 130px; padding: 18px; }
  .program-grid, .post-grid { grid-template-columns: 1fr; }
  .program-card { min-height: 400px; }
  .gallery-mosaic { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-card .btn { justify-self: stretch; }
}
