:root {
  --ink: #0a1f2f;
  --navy: #0f344f;
  --blue: #255f7b;
  --teal: #2c7b85;
  --sage: #8ca690;
  --clay: #b76d4d;
  --ivory: #f5f1e8;
  --paper: #fbfaf7;
  --white: #ffffff;
  --muted: #5f7180;
  --line: rgba(15, 52, 79, .14);
  --shadow: 0 24px 70px rgba(10, 31, 47, .14);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: min(1180px, calc(100% - 40px));
  --font-sans: "IBM Plex Sans", "Segoe UI", Arial, sans-serif;
  --font-display: "Source Serif 4", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
::selection { background: rgba(44, 123, 133, .22); }

.container { width: var(--container); margin-inline: auto; }
.section { padding: 110px 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 999;
  padding: 10px 14px; border-radius: 10px; background: var(--white);
  transform: translateY(-150%); transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50;
  transition: background .25s, box-shadow .25s, backdrop-filter .25s;
}
.site-header.scrolled {
  background: rgba(245, 241, 232, .9);
  box-shadow: 0 1px 0 rgba(15, 52, 79, .1);
  backdrop-filter: blur(14px);
}
.header-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: flex; align-items: center; gap: 12px; z-index: 2; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--teal)); color: var(--white);
  font-weight: 800; letter-spacing: -.04em; box-shadow: 0 10px 25px rgba(15, 52, 79, .22);
}
.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong { font-size: 1.05rem; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: .74rem; letter-spacing: .02em; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { font-size: .92rem; font-weight: 600; color: #294557; transition: color .2s; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--teal); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle span:not(.sr-only) { display: block; width: 26px; height: 2px; background: var(--navy); margin: 5px 0; transition: .2s; }

.hero {
  position: relative; overflow: hidden; min-height: 660px;
  padding: 125px 0 90px;
  background:
    radial-gradient(circle at 12% 18%, rgba(140, 166, 144, .22), transparent 31%),
    radial-gradient(circle at 84% 16%, rgba(183, 109, 77, .12), transparent 24%),
    linear-gradient(135deg, #f8f6ef 0%, #e9f0ef 100%);
}
.hero-pattern {
  position: absolute; right: -180px; top: -100px; width: 650px; height: 650px; border-radius: 50%;
  border: 1px solid rgba(37, 95, 123, .12);
  box-shadow: inset 0 0 0 80px rgba(255,255,255,.12), inset 0 0 0 160px rgba(44,123,133,.04);
}
.hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; color: var(--teal);
  font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .14em;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: currentColor; }
.eyebrow-dark { color: var(--blue); }
.hero h1, .section-heading h2, .story-copy h2, .resilience-copy h2, .family-card h2, .final-cta h2 {
  font-family: var(--font-display); font-weight: 700; letter-spacing: -.035em; line-height: 1.04;
}
.hero h1 { max-width: 660px; margin: 22px 0; font-size: clamp(3.3rem, 6vw, 6.1rem); color: var(--navy); }
.hero-lead { max-width: 680px; margin: 0; color: #3f5665; font-size: clamp(1.08rem, 1.8vw, 1.35rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 22px; border-radius: 999px; font-weight: 700; transition: transform .2s, box-shadow .2s, background .2s;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 20px; fill: currentColor; }
.button-primary { background: var(--navy); color: var(--white); box-shadow: 0 14px 30px rgba(15, 52, 79, .22); }
.button-primary:hover { background: #0a2a40; }
.button-secondary { border: 1px solid rgba(15, 52, 79, .22); color: var(--navy); background: rgba(255,255,255,.5); }
.button-secondary:hover { box-shadow: 0 12px 24px rgba(15, 52, 79, .12); background: var(--white); }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 44px; }
.hero-proof div { padding: 16px 12px 0 0; border-top: 1px solid rgba(15, 52, 79, .18); }
.hero-proof strong { display: block; color: var(--clay); font-family: var(--font-display); font-size: 1.65rem; }
.hero-proof span { display: block; margin-top: 4px; color: var(--muted); font-size: .78rem; line-height: 1.35; }
.hero-visual { position: relative; width: 100%; max-width: 380px; margin-left: auto; }
.portrait-frame {
  position: relative; overflow: hidden; border-radius: 32px 32px 90px 32px;
  background: var(--white); box-shadow: var(--shadow); border: 8px solid rgba(255,255,255,.75);
}
.portrait-frame::after {
  content: ""; position: absolute; inset: auto 0 0; height: 36%;
  background: linear-gradient(transparent, rgba(10,31,47,.78)); pointer-events: none;
}
.portrait-frame img { width: 100%; height: 380px; object-fit: cover; object-position: center 22%; }
.portrait-caption { position: absolute; left: 28px; right: 28px; bottom: 26px; z-index: 1; color: var(--white); }
.portrait-caption span { display: block; opacity: .78; font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; }
.portrait-caption strong { display: block; margin-top: 4px; font-family: var(--font-display); font-size: 1.5rem; }
.hope-card {
  position: absolute; left: -48px; bottom: 58px; z-index: 2; width: 210px;
  padding: 20px; border-radius: 20px; background: rgba(245,241,232,.94); border: 1px solid rgba(15,52,79,.1);
  box-shadow: 0 18px 45px rgba(10,31,47,.15); backdrop-filter: blur(10px);
}
.hope-card span { color: var(--clay); font-size: 1.25rem; }
.hope-card p { margin: 7px 0 0; color: var(--navy); font-weight: 700; line-height: 1.35; font-size: .9rem; }
.hero-wave { position: absolute; left: 0; right: 0; bottom: -1px; height: 70px; background: var(--paper); clip-path: polygon(0 55%, 100% 0, 100% 100%, 0 100%); }

.two-column { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: start; }
.section-heading h2, .story-copy h2, .resilience-copy h2, .family-card h2, .final-cta h2 { margin: 18px 0 20px; font-size: clamp(2.4rem, 4.5vw, 4.3rem); color: var(--navy); }
.section-heading p { max-width: 660px; margin: 0; color: var(--muted); font-size: 1.08rem; }
.section-heading.centered { max-width: 800px; margin: 0 auto 50px; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.prose { color: #3f5665; font-size: 1.08rem; }
.prose p { margin: 0 0 20px; }
.prose strong { color: var(--navy); }

.credentials { padding-top: 40px; }
.credential-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.credential-card {
  position: relative; min-height: 285px; padding: 34px; border-radius: var(--radius-lg);
  background: var(--white); border: 1px solid var(--line); box-shadow: 0 18px 50px rgba(10,31,47,.07);
  overflow: hidden;
}
.credential-card::after { content: ""; position: absolute; inset: auto -60px -80px auto; width: 160px; height: 160px; border-radius: 50%; background: rgba(44,123,133,.08); }
.card-number { color: var(--clay); font-weight: 800; letter-spacing: .12em; }
.credential-card h3 { margin: 56px 0 12px; color: var(--navy); font-family: var(--font-display); font-size: 1.6rem; }
.credential-card p { margin: 0; color: var(--muted); }

.photo-story { background: var(--ivory); }
.photo-story-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 60px; align-items: center; }
.story-photo { margin: 0; }
.story-photo-main { position: relative; width: min(560px, 100%); margin-inline: auto; }
.story-photo-main img {
  width: 100%; height: 360px; object-fit: cover; object-position: center 54%;
  border-radius: 38px 38px 120px 38px; box-shadow: var(--shadow);
}
.story-photo-main figcaption {
  position: absolute; left: 22px; bottom: 22px; max-width: 280px; padding: 14px 16px;
  border-radius: 14px; color: var(--white); background: rgba(10,31,47,.82); backdrop-filter: blur(10px); font-size: .88rem;
}
.story-copy { padding-right: 30px; }
.story-copy p { color: var(--muted); font-size: 1.08rem; }
.story-copy blockquote {
  margin: 34px 0; padding: 0 0 0 24px; border-left: 4px solid var(--clay);
  color: var(--navy); font-family: var(--font-display); font-size: 1.55rem; line-height: 1.3;
}
.story-photo-small { max-width: 250px; margin-left: auto; }
.story-photo-small img {
  width: 100%; height: 160px; object-fit: cover; object-position: center 38%;
  border-radius: 22px; box-shadow: 0 16px 40px rgba(10,31,47,.16);
}

.public-service { color: var(--white); background: var(--navy); }
.public-service .section-heading h2 { color: var(--white); }
.public-service .section-heading p { color: rgba(255,255,255,.7); }
.timeline { margin-top: 60px; border-top: 1px solid rgba(255,255,255,.16); }
.timeline-item { display: grid; grid-template-columns: 180px 1fr; gap: 40px; padding: 34px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.timeline-year { color: #aac8c3; font-family: var(--font-display); font-size: 2.3rem; font-weight: 700; }
.timeline-item h3 { margin: 0 0 8px; font-family: var(--font-display); font-size: 1.45rem; }
.timeline-item p { max-width: 760px; margin: 0; color: rgba(255,255,255,.7); }

.resilience { position: relative; overflow: hidden; background: #e8efed; }
.resilience-bg { position: absolute; inset: 0; background: radial-gradient(circle at 7% 80%, rgba(140,166,144,.28), transparent 30%), radial-gradient(circle at 90% 20%, rgba(183,109,77,.12), transparent 26%); }
.resilience-grid { position: relative; display: grid; grid-template-columns: .88fr 1.12fr; gap: 80px; align-items: center; }
.resilience-copy p { color: #48606f; font-size: 1.06rem; }
.resilience-note { display: flex; gap: 14px; margin-top: 34px; padding: 20px; border-radius: 18px; background: rgba(255,255,255,.7); border: 1px solid var(--line); }
.resilience-note span { color: var(--clay); font-size: 1.4rem; }
.resilience-note strong { color: var(--navy); line-height: 1.35; }
.resilience-gallery { min-height: 690px; position: relative; }
.gallery-card { position: absolute; margin: 0; overflow: hidden; border-radius: 26px; border: 6px solid rgba(255,255,255,.9); box-shadow: 0 24px 60px rgba(10,31,47,.16); }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; }
.gallery-card-a { left: 0; top: 25px; width: 48%; height: 500px; transform: rotate(-2deg); }
.gallery-card-b { right: 0; top: 0; width: 45%; height: 360px; transform: rotate(2deg); }
.gallery-card-c { right: 4%; bottom: 5px; width: 46%; height: 300px; transform: rotate(-1deg); }

.values { background: var(--paper); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.value-card { min-height: 230px; padding: 28px; border-radius: 22px; background: var(--white); border: 1px solid var(--line); }
.value-card:nth-child(2), .value-card:nth-child(4) { transform: translateY(26px); }
.value-card span { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(44,123,133,.1); color: var(--teal); font-size: .8rem; font-weight: 800; }
.value-card h3 { margin: 34px 0 8px; color: var(--navy); font-family: var(--font-display); font-size: 1.45rem; }
.value-card p { margin: 0; color: var(--muted); }

.family { padding-top: 65px; }
.family-card { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; padding: 48px; border-radius: var(--radius-xl); background: var(--ivory); border: 1px solid rgba(15,52,79,.1); }
.family-card h2 { margin-bottom: 0; font-size: clamp(2.1rem, 3.6vw, 3.4rem); }
.family-card p { margin: 0; color: var(--muted); font-size: 1.08rem; }

.final-cta { padding-top: 60px; }
.final-cta-card { display: grid; grid-template-columns: 1fr .85fr; gap: 70px; padding: 60px; border-radius: 40px; color: var(--white); background: linear-gradient(135deg, var(--navy), #184b5d 62%, var(--teal)); box-shadow: var(--shadow); }
.final-cta h2 { color: var(--white); font-size: clamp(2.4rem, 4.3vw, 4.2rem); }
.final-cta p { margin: 0; color: rgba(255,255,255,.72); font-size: 1.05rem; }
.cta-list { display: grid; gap: 12px; align-content: center; }
.cta-link { display: grid; grid-template-columns: 105px 1fr 24px; align-items: center; gap: 12px; padding: 17px 18px; border-radius: 16px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); transition: transform .2s, background .2s; }
.cta-link:hover { transform: translateX(4px); background: rgba(255,255,255,.16); }
.cta-link span { color: #b8d7d4; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.cta-link strong { font-size: .98rem; }
.cta-link b { font-size: 1.2rem; font-weight: 400; }

.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 40; width: 58px; height: 58px; display: grid; place-items: center;
  border-radius: 50%; background: var(--teal); color: var(--white); box-shadow: 0 14px 34px rgba(10,31,47,.25); transition: transform .2s;
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.02); }
.whatsapp-float svg { width: 30px; fill: currentColor; }
.site-footer { padding: 34px 0; background: #071923; color: rgba(255,255,255,.7); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 24px; font-size: .82rem; }
.footer-grid > p:last-child { text-align: right; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand .brand-mark { width: 38px; height: 38px; box-shadow: none; }
.footer-brand div { display: grid; }
.footer-brand strong { color: var(--white); }
.footer-brand small { opacity: .7; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

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

@media (max-width: 980px) {
  .section { padding: 88px 0; }
  .menu-toggle { display: block; z-index: 2; }
  .main-nav {
    position: fixed; inset: 0; display: grid; place-content: center; gap: 22px; text-align: center;
    background: rgba(245,241,232,.98); transform: translateY(-105%); transition: transform .3s ease;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { font-size: 1.3rem; }
  .menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-grid, .two-column, .photo-story-grid, .resilience-grid, .family-card, .final-cta-card { grid-template-columns: 1fr; }
  .hero { padding-top: 112px; }
  .hero-grid { gap: 42px; }
  .hero-copy { order: 1; }
  .hero-visual { order: 0; width: min(360px, 100%); margin: 0 auto; }
  .portrait-frame { border-radius: 28px 28px 72px 28px; }
  .portrait-frame img { height: 340px; }
  .hope-card { left: 18px; bottom: 38px; }
  .two-column, .photo-story-grid, .resilience-grid { gap: 52px; }
  .credential-grid { grid-template-columns: 1fr; }
  .credential-card { min-height: auto; }
  .credential-card h3 { margin-top: 30px; }
  .story-copy { padding-right: 0; }
  .story-photo-main { max-width: 560px; }
  .story-photo-main img { height: 340px; }
  .story-photo-small { max-width: 300px; margin-inline: auto; }
  .story-photo-small img { height: 190px; }
  .resilience-gallery { min-height: 650px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .family-card, .final-cta-card { gap: 34px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-grid > p:last-child { text-align: center; }
}

@media (max-width: 680px) {
  :root { --container: min(100% - 28px, 1180px); }
  .section { padding: 72px 0; }
  .header-inner { min-height: 76px; }
  .brand-copy small { display: none; }
  .hero { padding: 100px 0 72px; min-height: auto; }
  .hero-grid { gap: 32px; }
  .hero-visual { width: min(310px, 100%); }
  .portrait-frame img { height: 270px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.2rem); }
  .hero-lead { font-size: 1.02rem; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-proof { grid-template-columns: 1fr; gap: 18px; }
  .hero-proof div { display: grid; grid-template-columns: 84px 1fr; align-items: center; }
  .hope-card { position: relative; left: auto; bottom: auto; width: auto; margin: -26px 18px 0; }
  .portrait-caption { left: 20px; right: 20px; bottom: 20px; }
  .section-heading h2, .story-copy h2, .resilience-copy h2, .family-card h2, .final-cta h2 { font-size: clamp(2.35rem, 11vw, 3.4rem); }
  .credential-card { padding: 28px; }
  .story-photo-main img { height: 240px; border-radius: 28px 28px 70px 28px; }
  .story-photo-small { width: 100%; max-width: 340px; }
  .story-photo-small img { height: 210px; }
  .timeline-item { grid-template-columns: 1fr; gap: 8px; }
  .timeline-year { font-size: 1.8rem; }
  .resilience-gallery { min-height: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .gallery-card { position: relative; inset: auto; width: auto; height: auto; transform: none; border-width: 4px; }
  .gallery-card img { aspect-ratio: 4/5; }
  .gallery-card-a { grid-row: span 2; }
  .gallery-card-c img { aspect-ratio: 1 / 1; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card:nth-child(2), .value-card:nth-child(4) { transform: none; }
  .family-card, .final-cta-card { padding: 30px; border-radius: 28px; }
  .cta-link { grid-template-columns: 86px 1fr 20px; padding: 15px; }
  .whatsapp-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
}
