:root {
  --navy: #063f73;
  --navy-deep: #032f57;
  --teal: #0ba7ad;
  --aqua: #63d7d8;
  --mint: #dff7f7;
  --sky: #eef9fb;
  --ink: #173247;
  --muted: #5f7485;
  --white: #ffffff;
  --line: #dce9ef;
  --shadow: 0 18px 48px rgba(5, 60, 100, 0.12);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: 92px 0; }
.section-sm { padding: 64px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--navy);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 8px; height: 8px; background: var(--teal); border-radius: 50%; }
h1, h2, h3, h4 { margin: 0 0 18px; color: var(--navy-deep); line-height: 1.13; letter-spacing: -.025em; }
h1 { font-size: clamp(2.65rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.3rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 18px; }
.lead { font-size: clamp(1.06rem, 1.8vw, 1.28rem); color: var(--muted); max-width: 740px; }
.muted { color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(220,233,239,.9);
}
.nav-wrap { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 220px; }
.brand img { width: 196px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { padding: 12px 13px; border-radius: 10px; font-size: .94rem; font-weight: 700; color: #39556a; }
.nav-links a:hover, .nav-links a.active { color: var(--navy); background: var(--sky); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle { display: none; border: 0; background: var(--sky); color: var(--navy); width: 44px; height: 44px; border-radius: 12px; cursor: pointer; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: .2s ease;
}
.btn-primary { color: var(--white); background: linear-gradient(135deg, var(--navy), #09638c 52%, var(--teal)); box-shadow: 0 12px 30px rgba(4,79,122,.22); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(4,79,122,.28); }
.btn-secondary { color: var(--navy); background: rgba(255,255,255,.88); border-color: #c6dfe7; }
.btn-secondary:hover { background: var(--sky); }
.btn-light { color: var(--navy); background: white; }
.btn-sm { min-height: 42px; padding: 9px 15px; font-size: .9rem; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  display: grid;
  align-items: center;
  background: linear-gradient(105deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.95) 42%, rgba(238,249,251,.68) 100%), url('assets/hero-wave.png') right center/cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -260px;
  top: -200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,215,216,.25), transparent 68%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.12fr .88fr; align-items: center; gap: 62px; padding: 100px 0 110px; }
.hero-copy h1 span { display: block; color: var(--teal); }
.hero-copy .lead { margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { margin-top: 25px; display: flex; align-items: center; gap: 10px; color: var(--muted); font-weight: 700; font-size: .93rem; }
.hero-note .dot { width: 10px; height: 10px; background: var(--teal); border-radius: 50%; box-shadow: 0 0 0 7px rgba(11,167,173,.12); }
.hero-panel {
  position: relative;
  padding: 34px;
  border-radius: 30px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.hero-panel::after { content: ""; position: absolute; inset: 12px -12px -12px 12px; border: 1px solid rgba(11,167,173,.22); border-radius: 30px; z-index: -1; }
.hero-panel h3 { font-size: 1.45rem; }
.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 24px; }
.stat { padding: 20px; border-radius: 18px; background: var(--sky); border: 1px solid #d8edf2; }
.stat strong { display: block; color: var(--navy); font-size: 2rem; line-height: 1; margin-bottom: 7px; }
.stat span { color: var(--muted); font-size: .88rem; font-weight: 700; }

.logo-strip { border-block: 1px solid var(--line); background: #fbfeff; }
.logo-strip-inner { display: grid; grid-template-columns: auto 1fr; gap: 26px; align-items: center; min-height: 104px; }
.logo-strip strong { color: var(--navy); }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; }
.tag { padding: 9px 13px; border-radius: 999px; background: white; border: 1px solid var(--line); color: #496578; font-size: .9rem; font-weight: 700; }

.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 28px; margin-bottom: 44px; }
.section-heading p { max-width: 620px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.card {
  position: relative;
  padding: 30px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(5,60,100,.06);
  transition: .22s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #b9dfe4; }
.icon-box { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 15px; background: linear-gradient(135deg, var(--mint), #c8f0f0); color: var(--navy); margin-bottom: 22px; }
.icon-box svg { width: 25px; height: 25px; }
.card p { color: var(--muted); }
.card-link { color: var(--teal); font-weight: 800; display: inline-flex; align-items: center; gap: 7px; margin-top: 4px; }

.split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 68px; align-items: center; }
.visual-panel { min-height: 480px; border-radius: 32px; overflow: hidden; position: relative; background: linear-gradient(150deg, var(--navy-deep), #075c86 55%, var(--teal)); box-shadow: var(--shadow); }
.visual-panel::before { content: ""; position: absolute; inset: 0; background: url('assets/hero-wave.png') center/cover no-repeat; mix-blend-mode: screen; opacity: .32; }
.visual-panel-content { position: absolute; inset: 0; padding: 42px; display: flex; flex-direction: column; justify-content: end; color: white; background: linear-gradient(transparent 20%, rgba(3,47,87,.82)); }
.visual-panel-content h3 { color: white; font-size: 2.1rem; max-width: 430px; }
.visual-panel-content p { max-width: 480px; color: rgba(255,255,255,.82); }
.check-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: #3a566b; }
.check-list li::before { content: "✓"; flex: 0 0 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; background: var(--mint); color: var(--teal); font-weight: 900; }

.impact { background: linear-gradient(140deg, var(--navy-deep), #07577e 62%, #0a8b99); color: white; overflow: hidden; position: relative; }
.impact::after { content: ""; position: absolute; width: 600px; height: 600px; right: -270px; top: -280px; border-radius: 50%; border: 100px solid rgba(255,255,255,.06); }
.impact h2, .impact h3 { color: white; }
.impact .eyebrow { background: rgba(255,255,255,.12); color: white; }
.impact .eyebrow::before { background: var(--aqua); }
.impact-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1.15fr; gap: 60px; align-items: center; }
.impact-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.impact-stat { padding: 26px; border-radius: 20px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(10px); }
.impact-stat strong { display: block; font-size: 2.35rem; color: white; }
.impact-stat span { color: rgba(255,255,255,.75); font-weight: 700; }

.provinces { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.province { padding: 22px 18px; text-align: center; border-radius: 18px; background: white; border: 1px solid var(--line); font-weight: 800; color: var(--navy); }
.province small { display: block; margin-top: 5px; font-weight: 600; color: var(--muted); }

.cta { padding: 72px 0; }
.cta-card { position: relative; overflow: hidden; border-radius: 32px; background: linear-gradient(120deg, var(--navy-deep), #065d84 58%, var(--teal)); color: white; padding: 54px; display: flex; align-items: center; justify-content: space-between; gap: 30px; box-shadow: var(--shadow); }
.cta-card::after { content: ""; position: absolute; right: -50px; bottom: -130px; width: 340px; height: 340px; border: 70px solid rgba(255,255,255,.08); border-radius: 50%; }
.cta-card h2 { color: white; max-width: 760px; }
.cta-card p { color: rgba(255,255,255,.8); max-width: 670px; }
.cta-actions { position: relative; z-index: 1; flex: 0 0 auto; display: flex; gap: 10px; flex-wrap: wrap; }

.page-hero { padding: 96px 0 78px; background: linear-gradient(100deg, rgba(255,255,255,.98), rgba(238,249,251,.8)), url('assets/hero-wave.png') right center/cover no-repeat; border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); max-width: 900px; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 22px; color: var(--muted); font-weight: 700; font-size: .9rem; }
.breadcrumb a { color: var(--teal); }

.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.value-card { padding: 24px; border-radius: 20px; background: var(--sky); border: 1px solid #d9edf2; }
.value-card strong { display: block; margin-bottom: 8px; color: var(--navy); }

.timeline { position: relative; display: grid; gap: 0; }
.timeline::before { content: ""; position: absolute; left: 23px; top: 20px; bottom: 20px; width: 2px; background: #cbe4e8; }
.timeline-item { position: relative; padding: 0 0 32px 68px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-number { position: absolute; left: 0; top: 0; width: 48px; height: 48px; display: grid; place-items: center; color: white; background: linear-gradient(135deg, var(--navy), var(--teal)); border-radius: 15px; font-weight: 900; box-shadow: 0 8px 20px rgba(4,79,122,.18); }

.programme-card { display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: start; }
.programme-card .icon-box { margin: 0; }
.programme-card ul { margin: 12px 0 0; padding-left: 19px; color: var(--muted); }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.team-card { padding: 30px; text-align: center; border: 1px solid var(--line); border-radius: 24px; background: white; box-shadow: 0 12px 30px rgba(5,60,100,.06); }
.avatar { width: 84px; height: 84px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center; color: white; font-size: 1.55rem; font-weight: 900; background: linear-gradient(135deg, var(--navy), var(--teal)); }
.team-card p { color: var(--teal); font-weight: 800; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 36px; align-items: start; }
.contact-card { padding: 30px; border-radius: 24px; background: var(--navy-deep); color: white; }
.contact-card h2, .contact-card h3 { color: white; }
.contact-item { display: grid; grid-template-columns: 42px 1fr; gap: 13px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.contact-item:last-child { border-bottom: 0; }
.contact-item .ci { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: rgba(255,255,255,.1); color: var(--aqua); }
.contact-item small { display: block; color: rgba(255,255,255,.65); font-weight: 700; margin-bottom: 3px; }
.contact-item a, .contact-item span { color: white; font-weight: 700; }
.form-card { padding: 34px; border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 12px 30px rgba(5,60,100,.06); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1/-1; }
.field label { color: var(--navy); font-weight: 800; font-size: .9rem; }
.field input, .field textarea, .field select { width: 100%; padding: 13px 14px; border: 1px solid #cadde5; border-radius: 12px; background: #fbfdfe; color: var(--ink); outline: none; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(11,167,173,.1); }
.field textarea { min-height: 150px; resize: vertical; }
.form-status { margin-top: 14px; color: var(--teal); font-weight: 800; }
.map-card { margin-top: 24px; border-radius: 24px; overflow: hidden; min-height: 250px; position: relative; background: linear-gradient(135deg, var(--mint), #edf9fb); border: 1px solid var(--line); display: grid; place-items: center; text-align: center; padding: 30px; }
.map-card::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(#0ba7ad 1px, transparent 1px); background-size: 20px 20px; opacity: .12; }
.map-card > div { position: relative; }

.downloads { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.download-card { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 27px; border-radius: 20px; background: var(--sky); border: 1px solid #d6ebef; }
.download-card h3 { margin-bottom: 5px; }
.download-card p { margin: 0; color: var(--muted); }

.site-footer { padding: 70px 0 26px; color: rgba(255,255,255,.76); background: var(--navy-deep); }
.footer-grid { display: grid; grid-template-columns: 1.45fr .8fr .8fr 1fr; gap: 40px; padding-bottom: 42px; }
.footer-brand img { width: 220px; filter: brightness(0) invert(1); opacity: .96; margin-bottom: 18px; }
.footer-brand p { max-width: 420px; }
.site-footer h4 { color: white; font-size: 1rem; margin-bottom: 18px; }
.footer-links { display: grid; gap: 10px; }
.footer-links a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.11); padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; font-size: .9rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1030px) {
  .nav-actions .btn { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .nav-links { position: fixed; top: 84px; left: 20px; right: 20px; display: none; padding: 15px; border: 1px solid var(--line); border-radius: 18px; background: white; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; }
  .hero-grid, .split, .impact-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-grid { padding: 78px 0 92px; }
  .hero-panel { max-width: 680px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .provinces { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 1/-1; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 70px 0; }
  .brand { min-width: 0; }
  .brand img { width: 165px; }
  .nav-wrap { min-height: 74px; }
  .nav-links { top: 74px; left: 14px; right: 14px; }
  .hero-grid { padding: 62px 0 76px; gap: 36px; }
  h1 { font-size: 2.7rem; }
  .hero-panel { padding: 24px; }
  .stat-grid, .grid-3, .grid-2, .impact-stats, .team-grid, .downloads, .form-grid, .photo-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .section-heading { display: block; }
  .section-heading .btn { margin-top: 16px; }
  .logo-strip-inner { grid-template-columns: 1fr; padding: 24px 0; gap: 12px; }
  .provinces { grid-template-columns: repeat(2, 1fr); }
  .cta-card { padding: 34px 26px; display: block; }
  .cta-actions { margin-top: 25px; }
  .value-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :last-child { grid-column: auto; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-bottom: 8px; }
}


.photo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.photo-card { overflow: hidden; padding: 0; }
.photo-frame { aspect-ratio: 16/10; overflow: hidden; background: var(--sky); }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-content { padding: 24px; }
.photo-content h3 { margin-bottom: 10px; }
.photo-content p { margin-bottom: 0; }
.photo-caption { color: var(--teal); font-weight: 800; font-size: .88rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 10px; }
