@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Roboto+Condensed:wght@600;700&display=swap');

:root {
  --navy-950: #020824;
  --navy-900: #06133a;
  --navy-800: #0b2454;
  --navy-700: #11366f;
  --red: #e31b23;
  --red-dark: #b30f18;
  --orange: #e9702e;
  --cyan: #238fca;
  --cyan-dark: #0875a8;
  --cyan-soft: #eaf7fd;
  --gold: #d19a32;
  --silver: #b9bec8;
  --ink: #142535;
  --muted: #617180;
  --line: #dfe5ec;
  --surface: #ffffff;
  --soft: #f4f7fa;
  --cream: #fff8e9;
  --success: #159455;
  --radius: 22px;
  --radius-lg: 32px;
  --shadow: 0 22px 64px rgba(2, 8, 36, 0.14);
  --shadow-sm: 0 10px 32px rgba(2, 8, 36, 0.08);
  --container: min(1200px, calc(100% - 40px));
  --site-header-height: 118px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: calc(var(--site-header-height) + 18px); }

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
body {
  margin: 0;
  padding-top: var(--site-header-height);
  color: var(--ink);
  background: #fff;
  font-family: Manrope, Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: var(--container); margin-inline: auto; }
.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 9999;
  padding: 10px 14px;
  background: #fff;
  color: var(--navy-950);
  border-radius: 8px;
}
.skip-link:focus { top: 12px; }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { color: var(--navy-950); line-height: 1.14; }
h1 { font-size: clamp(2.65rem, 5.4vw, 5.55rem); letter-spacing: -0.055em; }
h2 { font-size: clamp(2rem, 3.7vw, 3.5rem); letter-spacing: -0.04em; }
h3 { font-size: 1.25rem; }
p { color: var(--muted); }
.lead { font-size: 1.08rem; max-width: 780px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.75rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 10px;
  background: var(--gold);
}

.section { padding: 92px 0; }
.section-sm { padding: 56px 0; }
.section-soft { background: var(--soft); }
.section-dark {
  background: linear-gradient(140deg, var(--navy-950), var(--navy-800));
  color: #fff;
}
.section-dark h2, .section-dark h3, .section-dark strong { color: #fff; }
.section-dark p { color: #c7d1df; }
.section-header { margin-bottom: 40px; max-width: 870px; }
.section-header.center { text-align: center; margin-inline: auto; }
.section-header.center .lead { margin-inline: auto; }
.grid-2, .grid-3, .grid-4 { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 49px;
  padding: 0 21px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), #f14347);
  box-shadow: 0 10px 24px rgba(227, 27, 35, 0.25);
}
.btn-dark { color: #fff; background: var(--navy-950); }
.btn-light { color: var(--navy-950); background: #fff; }
.btn-outline { color: var(--navy-950); border-color: #bcc6d2; background: #fff; }
.btn-outline-light { color: #fff; border-color: rgba(255,255,255,.45); background: transparent; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--red); font-weight: 800; }
.text-link::after { content: "→"; }
.badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--cyan-soft);
  color: var(--navy-700);
  font-size: 0.73rem;
  font-weight: 800;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px rgba(2,8,36,.06);
}
.npo-bar { background: var(--navy-950); color: #fff; }
.npo-bar-inner {
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.72rem;
}
.npo-bar strong { color: #ffc641; }
.npo-bar .bar-social { display: flex; align-items: center; gap: 8px; }
.social-icon {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.24);
  color: #fff;
  transition: 0.2s;
}
.social-icon:hover { background: var(--red); border-color: var(--red); }
.social-icon svg { width: 14px; height: 14px; fill: currentColor; }
.navbar { min-height: calc(3cm + 16px); display: flex; align-items: center; gap: 24px; }
.brand { display: flex; align-items: center; justify-content: flex-start; gap: 12px; min-width: 318px; height: 3cm; }
.brand img { flex: 0 0 3cm; display: block; width: 3cm; height: 3cm; object-fit: contain; object-position: center; }
.brand-copy { display: block; min-width: 0; }
.brand-copy strong { display: block; color: var(--navy-950); font-size: 1.05rem; line-height: 1.15; letter-spacing: -.01em; }
.brand-copy span { display: block; margin-top: 5px; color: var(--cyan); font-size: .68rem; line-height: 1.2; font-weight: 800; letter-spacing: .055em; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 4px; margin-left: auto; }
.main-nav a {
  padding: 10px 10px;
  border-radius: 10px;
  color: #34485b;
  font-size: 0.81rem;
  font-weight: 800;
}
.main-nav a:hover, .main-nav a.active { color: var(--red); background: #fff1f1; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle {
  display: none;
  width: 45px;
  height: 45px;
  border: 0;
  border-radius: 13px;
  background: var(--soft);
  position: relative;
}
.menu-toggle::before, .menu-toggle::after, .menu-toggle span {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--navy-950);
  transition: 0.2s;
}
.menu-toggle::before { top: 14px; }
.menu-toggle span { top: 21px; }
.menu-toggle::after { top: 28px; }

/* Main and page heroes */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800) 68%, #103e77);
  color: #fff;
}
.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  right: -190px;
  top: -210px;
  background: radial-gradient(circle, rgba(35,143,202,.36), transparent 66%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 640px;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: 60px;
  padding: 72px 0;
}
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 span { color: #45b6e5; }
.hero p { color: #d5deeb; font-size: 1.08rem; max-width: 690px; }
.hero-kicker { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.hero-kicker span {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.17);
  font-size: 0.72rem;
  font-weight: 800;
}
.hero-media { position: relative; min-height: 495px; }
.hero-image-main {
  position: absolute;
  inset: 0 0 45px 70px;
  border-radius: 34px;
  overflow: hidden;
  border: 8px solid rgba(255,255,255,.14);
  box-shadow: 0 30px 70px rgba(0,0,0,.36);
}
.hero-image-main img, .hero-image-small img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-small {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 235px;
  height: 185px;
  overflow: hidden;
  border-radius: 24px;
  border: 7px solid var(--navy-900);
  box-shadow: var(--shadow);
}
.hero-seal {
  position: absolute;
  right: -12px;
  bottom: 5px;
  width: 142px;
  height: 142px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  background: #fff;
  color: var(--navy-950);
  font-weight: 900;
  line-height: 1.1;
  box-shadow: var(--shadow);
  border: 7px solid var(--gold);
}
.hero-seal strong { font-size: 1.25rem; }
.hero-seal span { font-size: .7rem; color: var(--red); text-transform: uppercase; letter-spacing: .08em; }
.page-hero {
  padding: 84px 0 74px;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -150px;
  width: 420px;
  height: 420px;
  border: 70px solid rgba(255,255,255,.035);
  border-radius: 50%;
}
.page-hero h1 { max-width: 920px; color: #fff; font-size: clamp(2.5rem, 4.7vw, 4.7rem); margin-bottom: 18px; }
.page-hero p { color: #d2dcea; max-width: 820px; }
.page-hero-split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 58px;
  position: relative;
  z-index: 2;
}
.page-hero-visual {
  min-height: 395px;
  border-radius: 30px;
  overflow: hidden;
  border: 7px solid rgba(255,255,255,.12);
  box-shadow: 0 28px 65px rgba(0,0,0,.3);
}
.page-hero-visual img { width: 100%; height: 100%; min-height: 395px; object-fit: cover; }
.breadcrumbs { display: flex; gap: 9px; align-items: center; margin-bottom: 18px; color: #aebed3; font-size: .78rem; }
.breadcrumbs a { color: #fff; font-weight: 800; }

/* Shared content components */
.identity-strip { margin-top: -38px; position: relative; z-index: 5; }
.identity-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 1px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--line);
  box-shadow: var(--shadow);
}
.identity-cell { padding: 24px; background: #fff; }
.identity-cell:first-child { background: var(--red); color: #fff; }
.identity-cell:first-child strong { color: #fff; }
.identity-cell span { display: block; color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
.identity-cell strong { display: block; margin-top: 5px; color: var(--navy-950); }
.identity-cell:first-child span { color: #ffd8d9; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.card-body { padding: 28px; }
.card-icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 15px; background: var(--cyan-soft); color: var(--cyan); margin-bottom: 20px; }
.card-icon svg { width: 24px; height: 24px; }
.programme-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  display: flex;
  align-items: flex-end;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  background: var(--navy-950);
}
.programme-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .76; transition: .35s; }
.programme-card:hover img { transform: scale(1.04); opacity: .64; }
.programme-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 22%, rgba(2,8,36,.96) 94%); }
.programme-card-copy { position: relative; z-index: 2; padding: 28px; color: #fff; }
.programme-card h3 { color: #fff; font-size: 1.45rem; }
.programme-card p { color: #d5deeb; }
.programme-card .text-link { color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.stat-card { padding: 30px 18px; text-align: center; border-radius: 20px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.stat-card strong { display: block; color: var(--navy-950); font-size: 2.35rem; line-height: 1; }
.stat-card span { display: block; margin-top: 9px; color: var(--muted); font-size: .8rem; }
.section-dark .stat-card { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12); box-shadow: none; }
.section-dark .stat-card strong { color: #fff; }
.section-dark .stat-card span { color: #ced7e3; }
.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.feature-image { border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 3; }
.feature-image img { width: 100%; height: 100%; object-fit: cover; }
.check-list { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 13px; }
.check-list li { position: relative; padding-left: 31px; color: #405264; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 21px; height: 21px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--success); font-size: .72rem; font-weight: 900; }
.value-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 15px; }
.value-card { padding: 24px; border-radius: 19px; background: #fff; border: 1px solid var(--line); }
.value-card strong { color: var(--red); }
.programme-index { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.programme-index a { padding: 18px; border-radius: 17px; border: 1px solid var(--line); background: #fff; font-weight: 800; color: var(--navy-800); transition: .2s; }
.programme-index a:hover { border-color: var(--cyan); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.programme-index small { display: block; margin-top: 4px; color: var(--muted); font-weight: 600; }
.programme-section { scroll-margin-top: 130px; padding: 88px 0; border-bottom: 1px solid var(--line); }
.programme-section:nth-child(even) { background: var(--soft); }
.programme-section-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: start; }
.programme-visual { position: sticky; top: 145px; border-radius: 27px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 3; }
.programme-visual img { width: 100%; height: 100%; object-fit: cover; }
.programme-content h2 { margin-bottom: 16px; }
.programme-content .lead { margin-bottom: 24px; }
.detail-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.detail-card { padding: 20px; border-radius: 17px; background: #fff; border: 1px solid var(--line); }
.detail-card h3 { font-size: 1rem; margin-bottom: 8px; }
.detail-card p { font-size: .88rem; margin-bottom: 0; }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; counter-reset: steps; }
.process-card { counter-increment: steps; padding: 28px; border-radius: 20px; background: #fff; border: 1px solid var(--line); }
.process-card::before { content: "0" counter(steps); display: block; color: var(--red); font-weight: 900; font-size: .78rem; margin-bottom: 18px; }
.course-group { padding: 30px; border-radius: 22px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.course-group h3 { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.course-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px 22px; padding: 0; margin: 18px 0 0; list-style: none; }
.course-list li { padding: 9px 0; border-bottom: 1px solid #edf0f4; color: #435569; }
.vendor-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.vendor-card { padding: 25px; border-radius: 20px; background: #fff; border: 1px solid var(--line); }
.vendor-card strong { display: block; color: var(--navy-950); font-size: 1.1rem; margin-bottom: 8px; }
.vendor-card span { font-size: .82rem; color: var(--muted); }
.quote { padding: 35px; border-radius: 24px; background: var(--cream); border-left: 7px solid var(--gold); }
.quote blockquote { margin: 0; color: var(--navy-950); font-size: 1.22rem; font-weight: 800; line-height: 1.55; }
.quote cite { display: block; margin-top: 14px; color: var(--muted); font-style: normal; }
.photo-story { display: grid; grid-template-columns: 1.1fr .9fr; border-radius: 28px; overflow: hidden; background: var(--navy-950); box-shadow: var(--shadow); }
.photo-story img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; }
.photo-story-copy { padding: 48px; color: #fff; }
.photo-story-copy h2, .photo-story-copy h3 { color: #fff; }
.photo-story-copy p { color: #d3dbe7; }

/* Certification and partner logos */
.logo-strip { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 14px; }
.logo-tile {
  min-height: 120px;
  display: grid;
  place-items: center;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 7px 22px rgba(2,8,36,.055);
}
.logo-tile img { width: 100%; height: 78px; object-fit: contain; }
.certification-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; }
.cert-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}
.cert-logo { height: 138px; display: grid; place-items: center; padding: 18px 26px; background: #fff; border-bottom: 1px solid var(--line); }
.cert-logo img { width: 100%; height: 96px; object-fit: contain; }
.cert-content { padding: 25px; }
.cert-content h3 { margin-bottom: 6px; }
.cert-content p { font-size: .86rem; margin-bottom: 14px; }
.cert-list { margin: 0; padding-left: 18px; color: #45576a; display: grid; gap: 7px; font-size: .88rem; }
.partner-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.partner-card { padding: 25px; border-radius: 18px; background: #fff; border: 1px solid var(--line); text-align: center; }
.partner-card strong { display: block; color: var(--navy-950); }
.partner-card span { color: var(--muted); font-size: .78rem; }
.partner-logo-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.partner-logo-card { min-height: 180px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 22px; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-sm); }
.partner-logo-card img { width: 100%; height: 102px; object-fit: contain; margin-bottom: 12px; }
.partner-logo-card strong { color: var(--navy-950); }
.partner-logo-card span { color: var(--muted); font-size: .76rem; }

/* Youth page */
.youth-intro { margin-top: -42px; position: relative; z-index: 4; }
.youth-stat-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 1px; overflow: hidden; border-radius: 22px; background: var(--line); box-shadow: var(--shadow); }
.youth-stat { padding: 25px; background: #fff; text-align: center; }
.youth-stat strong { display: block; font-size: 2rem; color: var(--navy-950); }
.youth-stat span { font-size: .78rem; color: var(--muted); }
.pathway-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 22px; }
.pathway-card { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 26px; box-shadow: var(--shadow-sm); }
.pathway-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.pathway-card-body { padding: 28px; }
.pathway-card h3 { font-size: 1.45rem; margin-bottom: 10px; }
.pathway-card p { margin-bottom: 18px; }
.outcome-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; }
.outcome-card { padding: 25px; border-radius: 20px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); }
.outcome-card h3 { color: #fff; font-size: 1rem; }
.outcome-card p { color: #c9d4e3; font-size: .85rem; margin-bottom: 0; }

/* Gallery: equal image frames per page */
.gallery-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; }
.gallery-item { margin: 0; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 21px; box-shadow: var(--shadow-sm); }
.gallery-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.gallery-caption { padding: 17px 19px; }
.gallery-caption strong { display: block; color: var(--navy-950); }
.gallery-caption span { font-size: .77rem; color: var(--muted); }

/* Contact page */
.contact-channels { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, border-color .2s;
}
.contact-channel:hover { transform: translateY(-3px); border-color: var(--cyan); }
.contact-channel-icon { width: 52px; height: 52px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 16px; background: var(--cyan-soft); color: var(--cyan-dark); }
.contact-channel-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-channel strong { display: block; color: var(--navy-950); }
.contact-channel span { display: block; color: var(--muted); font-size: .8rem; }
.office-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.office-card { position: relative; padding: 30px; border-radius: 24px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); overflow: hidden; }
.office-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 5px; background: linear-gradient(var(--red), var(--orange)); }
.office-card h3 { display: flex; align-items: center; gap: 10px; font-size: 1.4rem; }
.office-card > p { color: var(--red); font-weight: 800; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.office-card ul { padding: 0; margin: 18px 0 0; list-style: none; display: grid; gap: 10px; }
.office-card a { color: var(--navy-800); font-weight: 800; }
.office-card a:hover { color: var(--red); }
.contact-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 36px; align-items: stretch; }
.contact-aside { padding: 34px; border-radius: 26px; background: linear-gradient(145deg,var(--navy-950),var(--navy-800)); color: #fff; box-shadow: var(--shadow); }
.contact-aside h2, .contact-aside h3 { color: #fff; }
.contact-aside p { color: #c8d4e2; }
.contact-note { padding: 18px; border-radius: 17px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); margin-top: 20px; }
.contact-form-card { padding: 34px; background: #fff; border: 1px solid var(--line); border-radius: 26px; box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1/-1; }
.field label { font-size: .78rem; font-weight: 800; color: var(--navy-800); }
.field input, .field select, .field textarea { width: 100%; padding: 13px 14px; border: 1px solid #cfd8e2; border-radius: 12px; background: #fff; color: var(--ink); outline: none; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(35,143,202,.12); }
.field textarea { min-height: 145px; resize: vertical; }
.form-status { color: #0b7950; font-weight: 800; margin: 14px 0 0; }

/* Donation */
.donation-card { position: relative; padding: 30px; border-radius: 22px; background: #fff; border: 1px solid var(--line); overflow: hidden; }
.donation-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 6px; background: var(--red); }
.donation-card strong { display: block; color: var(--navy-950); font-size: 1.2rem; }
.donation-card p { margin-bottom: 0; }
.cta-band { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; padding: 42px; border-radius: 28px; background: linear-gradient(135deg,var(--red),var(--red-dark)); color: #fff; box-shadow: 0 20px 45px rgba(179,15,24,.22); }
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { color: #ffe0e1; margin-bottom: 0; }

/* Footer */
.site-footer { padding-top: 72px; background: var(--navy-950); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.45fr repeat(3,1fr); gap: 44px; }
.footer-logo { width: 120px; margin-bottom: 19px; }
.site-footer p, .site-footer a { color: #b9c5d5; }
.site-footer h4 { color: #fff; margin-bottom: 18px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-links a:hover { color: #fff; }
.footer-registration { display: flex; flex-wrap: wrap; gap: 7px; margin: 16px 0; }
.footer-registration span { padding: 6px 9px; border-radius: 999px; background: rgba(255,255,255,.08); color: #dce5f0; font-size: .68rem; font-weight: 800; }
.footer-social { display: flex; gap: 8px; margin-top: 18px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 24px 0; margin-top: 55px; border-top: 1px solid rgba(255,255,255,.12); color: #8594a8; font-size: .73rem; }

/* Bottom-right collapsible quick links */
.utility-shell {
  position: fixed;
  right: max(22px, env(safe-area-inset-right));
  bottom: max(22px, env(safe-area-inset-bottom));
  z-index: 260;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.quick-launch {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 5px solid #fff;
  border-radius: 50%;
  background: linear-gradient(135deg,var(--orange),#d9632d);
  color: #fff;
  box-shadow: 0 16px 45px rgba(2,8,36,.24);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.quick-launch:hover { transform: translateY(-2px); box-shadow: 0 20px 50px rgba(2,8,36,.28); }
.quick-launch:focus-visible { outline: 3px solid rgba(35,143,202,.45); outline-offset: 4px; }
.quick-launch svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; display: block; }
.quick-launch-close { display: none; line-height: 0; }
.quick-launch-open { display: grid; place-items: center; line-height: 0; }
.utility-shell.expanded .quick-launch { background: var(--navy-950); }
.utility-shell.expanded .quick-launch-open { display: none; }
.utility-shell.expanded .quick-launch-close { display: grid; place-items: center; }
.utility-dock {
  width: 250px;
  display: grid;
  gap: 8px;
  padding: 10px;
  border-radius: 22px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 20px 58px rgba(2,8,36,.26);
  border: 1px solid var(--line);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px) scale(.96);
  transform-origin: right bottom;
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.utility-shell.expanded .utility-dock {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
.dock-action {
  min-height: 58px;
  width: 100%;
  display: grid;
  grid-template-columns: 42px minmax(0,1fr);
  align-items: center;
  gap: 12px;
  padding: 8px 12px 8px 8px;
  border: 0;
  border-radius: 16px;
  background: #f5f8fc;
  color: var(--navy-900);
  text-align: left;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.dock-action:hover { transform: translateX(-2px); background: var(--cyan-soft); color: var(--navy-950); }
.dock-action:focus-visible { outline: 3px solid rgba(35,143,202,.28); outline-offset: 2px; }
.dock-action.training { background: linear-gradient(135deg,var(--orange),#d8662d); color: #fff; }
.dock-action.training:hover { background: linear-gradient(135deg,#d8662d,var(--orange)); color:#fff; }
.dock-action.donate:hover .dock-action-icon { background: var(--red); color:#fff; }
.dock-action-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #e8eef7;
  color: #073f55;
  line-height: 0;
  flex: 0 0 auto;
}
.dock-action.training .dock-action-icon { background: rgba(255,255,255,.18); color:#fff; }
.dock-action-icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; display:block; }
.dock-action-label { min-width: 0; display: grid; gap: 2px; line-height: 1.15; }
.dock-action-label strong { font-size: .84rem; color: inherit; }
.dock-action-label small { font-size: .64rem; color: #718095; white-space: normal; }
.dock-action.training .dock-action-label small { color: rgba(255,255,255,.82); }
.contact-popover {
  position: fixed;
  right: max(292px, calc(env(safe-area-inset-right) + 292px));
  bottom: max(84px, calc(env(safe-area-inset-bottom) + 84px));
  z-index: 265;
  width: min(320px, calc(100% - 30px));
  padding: 13px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 20px 55px rgba(2,8,36,.25);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(12px) scale(.98);
  transform-origin: right bottom;
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.contact-popover.open { opacity: 1; visibility: visible; pointer-events:auto; transform: none; }
.quick-link { display: grid; grid-template-columns: 30px minmax(0,1fr); align-items: center; gap: 12px; min-height: 52px; padding: 11px 13px; border-radius: 14px; color: #213743; font-weight: 800; }
.quick-link:hover { background: var(--soft); }
.quick-link svg { width: 23px; height: 23px; fill: none; stroke: var(--red); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; display:block; justify-self:center; }
.quick-link.whatsapp svg { stroke: #18bf64; }

/* Consistent icon geometry throughout the site */
.social-icon, .card-icon, .contact-channel-icon { line-height: 0; }
.social-icon { display: grid; place-items: center; }
.social-icon svg, .card-icon svg, .contact-channel-icon svg { display: block; }
.card-icon, .contact-channel-icon { flex: 0 0 auto; }
@media (max-width: 1100px) {
  .main-nav { position: fixed; left: 20px; right: 20px; top: calc(var(--site-header-height) + 8px); display: none; flex-direction: column; align-items: stretch; padding: 18px; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); max-height: calc(100vh - var(--site-header-height) - 24px); overflow-y: auto; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 14px; }
  .menu-toggle { display: block; }
  .nav-actions .btn { display: none; }
  .hero-grid, .page-hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-grid { padding: 70px 0 90px; }
  .hero-media { min-height: 470px; max-width: 700px; width: 100%; margin: auto; }
  .page-hero-visual { min-height: 340px; }
  .page-hero-visual img { min-height: 340px; }
  .identity-grid { grid-template-columns: repeat(2,1fr); }
  .grid-4, .value-grid, .process-grid, .partner-grid, .outcome-grid { grid-template-columns: repeat(2,1fr); }
  .grid-3, .vendor-grid, .certification-grid, .logo-strip { grid-template-columns: repeat(2,1fr); }
  .programme-section-grid, .feature-split, .photo-story, .contact-layout { grid-template-columns: 1fr; }
  .programme-visual { position: relative; top: auto; aspect-ratio: 16 / 9; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .office-grid { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; }
  .npo-bar-inner > span:nth-child(2) { display: none; }
  .partner-logo-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 720px) {
  :root { --container: min(100% - 28px, 1180px); --site-header-height: 114px; }
  .section { padding: 68px 0; }
  .npo-bar-inner { min-height: 40px; font-size: .63rem; }
  .bar-social { display: none !important; }
  .navbar { min-height: 74px; }
  .brand { flex: 1 1 auto; min-width: 0; height: 3cm; gap: 7px; }
  .brand img { flex: 0 0 3cm; width: 3cm; height: 3cm; object-fit: contain; object-position: center; }
  .brand-copy { max-width: 112px; }
  .brand-copy strong { font-size: .82rem; line-height: 1.02; }
  .brand-copy span { margin-top: 4px; font-size: .52rem; line-height: 1.15; letter-spacing: .025em; }
  .hero-grid { padding: 55px 0 80px; }
  .hero-media { min-height: 365px; }
  .hero-image-main { inset: 0 0 35px 34px; }
  .hero-image-small { width: 150px; height: 125px; }
  .hero-seal { width: 105px; height: 105px; border-width: 5px; right: -2px; }
  .hero-seal strong { font-size: .9rem; }
  .hero-seal span { font-size: .55rem; }
  .identity-grid { grid-template-columns: 1fr; }
  .identity-cell { padding: 20px; }
  .grid-2, .grid-3, .grid-4, .stats-grid, .value-grid, .programme-index, .process-grid, .vendor-grid, .detail-grid, .course-list, .form-grid, .footer-grid, .certification-grid, .logo-strip, .pathway-grid, .outcome-grid, .contact-channels, .partner-logo-grid, .youth-stat-grid { grid-template-columns: 1fr; }
  .programme-section-grid { gap: 28px; }
  .photo-story-copy { padding: 30px; }
  .footer-bottom { flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 64px 0 58px; }
  .page-hero-visual, .page-hero-visual img { min-height: 260px; }
  .cta-band { padding: 30px; }
  .npo-bar .bar-contact { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .utility-shell { left: auto; right: max(12px, env(safe-area-inset-right)); bottom: max(12px, env(safe-area-inset-bottom)); }
  .utility-dock { width: min(250px, calc(100vw - 24px)); }
  .contact-popover { right: 12px; left: 12px; bottom: 326px; width: auto; max-height: calc(100vh - 346px); overflow: auto; }
  .quick-launch { width: 56px; height: 56px; }
  .contact-form-card, .contact-aside { padding: 26px; }
}

@media (max-width: 380px) {
  .navbar { gap: 8px; }
  .brand { gap: 5px; }
  .brand-copy { max-width: 88px; }
  .brand-copy strong { font-size: .74rem; }
  .brand-copy span { font-size: .46rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}

.bot-feature { display: grid; grid-template-columns: 320px 1fr; gap: 42px; align-items: center; }
.bot-feature-media { display: flex; justify-content: center; align-items: center; }
.bot-feature-media img { width: min(100%, 280px); height: auto; display: block; filter: drop-shadow(0 24px 35px rgba(2,8,36,.14)); }
.bot-feature-copy { max-width: 760px; }
.bot-feature .check-list { margin-bottom: 24px; }
@media (max-width: 900px) { .bot-feature { grid-template-columns: 1fr; gap: 24px; text-align: center; } .bot-feature-copy .check-list { text-align: left; display: inline-block; } }
