:root {
  --red: #d02e3f;
  --red-deep: #9a172b;
  --navy: #11122f;
  --ink: #171421;
  --muted: #746b7a;
  --cream: #f8f1e8;
  --paper: #fffaf3;
  --rose: #f7dce0;
  --line: rgba(23, 20, 33, 0.12);
  --shadow: 0 26px 80px rgba(32, 18, 36, 0.16);
  --display: "Fraunces", Georgia, serif;
  --sans: "Instrument Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
  width: min(1160px, calc(100% - 32px));
  min-height: 72px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 22px;
  background: rgba(255, 250, 243, 0.82);
  box-shadow: 0 18px 60px rgba(17, 18, 47, 0.12);
  backdrop-filter: blur(22px) saturate(140%);
  transform: translateX(-50%);
}
.brand { display: inline-flex; align-items: center; min-width: 0; }
.brand img { width: 176px; height: 52px; object-fit: contain; object-position: left center; mix-blend-mode: multiply; }
.desktop-nav { display: flex; justify-content: center; gap: 6px; }
.desktop-nav a,
.header-action {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 15px;
  border-radius: 999px;
  color: var(--navy);
  font-weight: 850;
  font-size: .9rem;
}
.desktop-nav a:hover { background: rgba(208,46,63,.1); color: var(--red-deep); }
.header-action { color: white; background: var(--navy); }

.menu-button {
  display: none;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: var(--navy);
  box-shadow: 0 14px 34px rgba(17,18,47,.2);
}
.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: white;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: 92px;
  left: 14px;
  right: 14px;
  z-index: 45;
  display: grid;
  padding: 10px;
  border-radius: 22px;
  background: rgba(255,250,243,.98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: .2s ease;
}
.mobile-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mobile-nav a { padding: 15px; border-radius: 14px; color: var(--navy); font-weight: 900; }
.mobile-nav a:hover { background: var(--rose); }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 150px 24px 56px;
  color: white;
  overflow: hidden;
}
.hero-media,
.hero-overlay { position: absolute; inset: 0; }
.hero-media { z-index: -2; }
.hero-media img { width: 100%; height: 112%; object-fit: cover; filter: saturate(.95) contrast(1.05); }
.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(17,18,47,.93), rgba(17,18,47,.62) 44%, rgba(154,23,43,.26)),
    linear-gradient(0deg, rgba(17,18,47,.9), transparent 48%);
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: clamp(28px, 6vw, 82px);
  align-items: end;
  width: min(1180px, 100%);
  margin: 0 auto;
}
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--red);
  font-weight: 900;
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow { color: #ffd8dd; }
.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}
h1,
h2 { font-family: var(--display); letter-spacing: 0; line-height: .98; text-wrap: balance; }
h1 { max-width: 880px; margin: 0; font-size: clamp(4rem, 8vw, 8.4rem); }
.hero-copy p { max-width: 680px; color: rgba(255,255,255,.84); font-size: 1.18rem; line-height: 1.75; }
.hero-actions,
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  text-align: center;
  transition: transform .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { color: white; background: var(--red); box-shadow: 0 18px 42px rgba(208,46,63,.32); }
.button.secondary { color: white; border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.12); backdrop-filter: blur(14px); }
.campaign-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 28px;
  background: rgba(255,255,255,.12);
  box-shadow: 0 28px 90px rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
}
.campaign-card img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: top; }
.campaign-card div { padding: 18px; }
.campaign-card span {
  display: block;
  color: #ffd8dd;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.campaign-card strong { display: block; margin-top: 8px; font-family: var(--display); font-size: 1.8rem; line-height: 1.05; }

.section { padding: clamp(80px, 11vw, 146px) clamp(20px, 5vw, 72px); scroll-margin-top: 112px; }
.section-head,
.section-grid,
.mission-grid,
.program-grid,
.project-board,
.reports-hero,
.report-stats,
.timeline-grid,
.event-grid,
.next-plan,
.team-grid,
.gallery-grid,
.contact-shell,
.footer {
  width: min(1180px, 100%);
  margin: 0 auto;
}
.section-head { margin-bottom: 42px; }
.section h2,
.contact h2 { margin: 0; color: var(--navy); font-size: clamp(2.5rem, 5vw, 5.7rem); }
.section p,
.contact p { color: var(--muted); font-size: 1.05rem; line-height: 1.8; }
.about { background: linear-gradient(180deg, var(--paper), var(--cream)); }
.section-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(300px,.72fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
}
.principle-panel {
  padding: clamp(28px,4vw,48px);
  border-radius: 28px;
  color: white;
  background: linear-gradient(135deg, var(--navy), #321b3a);
  box-shadow: var(--shadow);
}
blockquote { margin: 0; font-family: var(--display); font-size: clamp(2rem, 3.5vw, 4rem); line-height: 1.05; }
.principle-panel span { display: block; margin-top: 18px; color: #ffd8dd; font-weight: 900; }
.mission-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; margin-top: 46px; }
.mission-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: 0 16px 44px rgba(17,18,47,.06);
}
.mission-card span { color: var(--red); font-size: .78rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.mission-card p { margin-bottom: 0; color: var(--ink); font-weight: 700; }
.core-values-image {
  width: 100%;
  max-height: 220px;
  margin-top: 22px;
  border-radius: 22px;
  object-fit: contain;
  background: white;
  box-shadow: 0 18px 48px rgba(17,18,47,.12);
}

.programs { background: white; }
.program-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.program-card {
  min-height: 290px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  transition: .2s ease;
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.program-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: white;
  background: var(--navy);
  font-weight: 900;
}
.program-card h3 { margin: 30px 0 12px; color: var(--navy); font-size: 1.22rem; }
.program-card p { margin: 0; font-size: .98rem; }

.projects { background: linear-gradient(180deg, var(--cream), white); }
.project-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  grid-auto-rows: 292px;
  gap: 16px;
}
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: var(--navy);
  color: white;
  box-shadow: 0 18px 60px rgba(17,18,47,.13);
}
.project-card.large { grid-column: span 2; grid-row: span 2; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.project-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(17,18,47,.9), rgba(17,18,47,.08)); }
.project-card div { position: absolute; left: 22px; right: 22px; bottom: 22px; z-index: 1; }
.project-card span { color: #ffd8dd; font-size: .74rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.project-card h3 { margin: 8px 0; font-family: var(--display); font-size: clamp(1.55rem, 2.3vw, 3rem); line-height: 1.05; }
.project-card p { margin: 0; color: rgba(255,255,255,.8); font-size: .96rem; line-height: 1.55; }
.project-card:hover img { transform: scale(1.06); }

.reports-section { background: var(--navy); color: white; }
.reports-hero {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(280px, .55fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  margin-bottom: 34px;
}
.reports-section h2 { color: white; }
.reports-hero p,
.next-plan p { color: rgba(255,255,255,.76); }
.reports-section .section-kicker { color: #ffd8dd; }
.report-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  background: rgba(255,255,255,.14);
}
.report-stats div { padding: 24px; background: rgba(255,255,255,.08); }
.report-stats strong { display: block; color: #ffd8dd; font-family: var(--display); font-size: clamp(2.1rem, 4vw, 3.8rem); line-height: 1; }
.report-stats span { display: block; margin-top: 8px; color: rgba(255,255,255,.78); font-weight: 800; line-height: 1.35; }
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
  margin-top: 28px;
}
.timeline-card {
  padding: 26px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  background: rgba(255,255,255,.08);
}
.timeline-card span,
.event-card span,
.next-plan span {
  color: #ffd8dd;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.timeline-card h3 { margin: 18px 0 10px; font-size: 1.15rem; }
.timeline-card p { margin: 0; color: rgba(255,255,255,.72); font-size: .95rem; line-height: 1.65; }
.event-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
  margin-top: 38px;
}
.event-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 26px;
  background: #17183a;
  box-shadow: 0 24px 70px rgba(0,0,0,.18);
}
.event-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center; background: #10112d; }
.event-card img.photo-contain { object-fit: contain; }
.event-card div { padding: 22px; }
.event-card h3 { margin: 10px 0 8px; font-family: var(--display); font-size: clamp(1.45rem, 1.8vw, 2rem); line-height: 1.05; }
.event-card p { margin: 0; color: rgba(255,255,255,.74); font-size: .94rem; line-height: 1.55; }
.next-plan {
  margin-top: 38px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(208,46,63,.22), rgba(255,255,255,.08));
}
.next-plan p { max-width: 960px; margin: 12px 0 0; font-family: var(--display); font-size: clamp(1.55rem, 3vw, 3.1rem); line-height: 1.08; }

.team-section { background: white; }
.team-grid { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 16px; }
.team-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 18px 54px rgba(17,18,47,.08);
}
.team-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.team-card div { padding: 18px; }
.team-card h3 { margin: 0 0 6px; color: var(--navy); font-size: 1rem; }
.team-card p { margin: 0; color: var(--red-deep); font-size: .86rem; font-weight: 900; line-height: 1.35; }

.gallery-section { background: var(--cream); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); grid-auto-rows: 240px; gap: 16px; }
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 18px 54px rgba(17,18,47,.1);
}
.gallery-grid .tall { grid-row: span 2; }
.gallery-grid .wide { grid-column: span 2; }

.contact {
  padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 72px) 28px;
  background: var(--paper);
  scroll-margin-top: 112px;
}
.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .58fr);
  gap: 34px;
  align-items: center;
  padding: clamp(28px,4vw,48px);
  border-radius: 32px;
  color: white;
  background: var(--navy);
  box-shadow: var(--shadow);
}
.contact h2,
.contact p,
.contact .section-kicker { color: white; }
.office-stack {
  display: grid;
  gap: 14px;
}
.office-card {
  padding: 22px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  background: rgba(255,255,255,.08);
}
.branch-office {
  background: linear-gradient(135deg, rgba(208,46,63,.2), rgba(255,255,255,.09));
}
.office-card span {
  display: block;
  margin-bottom: 10px;
  color: #ffd8dd;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.office-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.4vw, 2.55rem);
  line-height: 1;
}
.office-card p {
  margin: 10px 0 18px;
  color: rgba(255,255,255,.78);
  font-size: .98rem;
  line-height: 1.55;
}
.office-links,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.office-links a,
.social-links a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: white;
  font-weight: 900;
  font-size: .9rem;
  overflow-wrap: anywhere;
}
.office-links a:hover,
.social-links a:hover { background: var(--red); }
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 26px;
  color: var(--muted);
  font-weight: 800;
}
.footer img { width: 150px; mix-blend-mode: multiply; }
.footer p { margin: 0; }
.contact .footer p { color: var(--muted); }
.footer a { color: var(--red-deep); }

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

@media (max-width: 1080px) {
  .team-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-action { display: none; }
  .site-header { display: flex; justify-content: space-between; min-height: 66px; }
  .menu-button { display: block; }
  .hero-inner,
  .section-grid,
  .contact-shell { grid-template-columns: 1fr; }
  .campaign-card { max-width: 430px; }
  .mission-grid,
  .program-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .project-board { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .reports-hero { grid-template-columns: 1fr; }
  .report-stats,
  .timeline-grid,
  .event-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
    width: auto;
    padding: 9px 10px 9px 12px;
    border-radius: 18px;
    transform: none;
  }
  .brand img { width: 148px; height: 44px; }
  .mobile-nav { top: 84px; }
  .hero { padding: 118px 18px 42px; }
  .hero-media img { object-position: center top; }
  h1 { max-width: 10ch; font-size: clamp(3rem, 14.5vw, 4.4rem); }
  .hero-copy p { font-size: 1.05rem; line-height: 1.65; }
  .button { width: 100%; }
  .campaign-card { display: none; }
  .section { padding: 72px 18px; }
  .mission-grid,
  .program-grid,
  .project-board,
  .report-stats,
  .timeline-grid,
  .event-grid,
  .team-grid,
  .gallery-grid { grid-template-columns: 1fr; }
  .project-board { grid-auto-rows: 320px; }
  .project-card.large { grid-column: span 1; grid-row: span 1; }
  .event-card img { aspect-ratio: 1.18 / 1; }
  .gallery-grid { grid-auto-rows: 260px; }
  .gallery-grid .tall,
  .gallery-grid .wide { grid-row: auto; grid-column: auto; }
  .contact { padding: 72px 18px 24px; }
  .contact-shell { border-radius: 24px; }
  .office-links a,
  .social-links a { border-radius: 18px; }
  .footer { flex-direction: column; text-align: center; }
}

@media (max-width: 380px) {
  .brand img { width: 132px; }
  .site-header { min-height: 62px; }
  .menu-button { width: 42px; height: 42px; }
  h1 { font-size: clamp(2.75rem, 14vw, 3.7rem); }
  .section h2,
  .contact h2 { font-size: clamp(2.15rem, 13vw, 3.35rem); }
}
