:root {
  --navy: #17324d;
  --navy-deep: #0c2236;
  --cream: #fffaf1;
  --sand: #efe4d2;
  --coral: #c95f42;
  --coral-dark: #9d3f2a;
  --sage: #627c68;
  --ink: #1c2730;
  --muted: #65717a;
  --white: #ffffff;
  --line: rgba(23, 50, 77, 0.14);
  --radius-lg: 30px;
  --radius-md: 18px;
  --shadow: 0 18px 48px rgba(23, 50, 77, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--coral-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  background: currentColor;
  content: "";
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  color: var(--navy-deep);
  line-height: 1.12;
}

h1 {
  margin: 0;
  font-size: clamp(2.35rem, 6vw, 5.6rem);
  letter-spacing: -0.055em;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(1.8rem, 4vw, 3.45rem);
  letter-spacing: -0.035em;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
}

p {
  margin: 0 0 18px;
}

.top-strip {
  padding: 9px 0;
  color: var(--white);
  background: var(--navy-deep);
  font-size: 0.85rem;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.96);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 28px;
}

.c194665a234 {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 13px;
}

.c194665a234 img {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: contain;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(23, 50, 77, 0.12);
}

.brand-name {
  max-width: 370px;
  color: var(--navy-deep);
  font-size: clamp(1rem, 2vw, 1.32rem);
  font-weight: 900;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy-deep);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  content: "";
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--white);
  background: var(--coral);
}

.cf54089429e {
  position: relative;
  padding: 70px 0 84px;
  overflow: hidden;
}

.cf54089429e::before {
  position: absolute;
  top: -170px;
  right: -130px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: var(--sand);
  content: "";
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-name {
  display: block;
  color: var(--coral-dark);
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.7);
}

.hero-lead {
  max-width: 700px;
  margin: 24px 0 30px;
  color: var(--navy);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 2px solid var(--coral);
  border-radius: 999px;
  color: var(--white);
  background: var(--coral);
  font-weight: 800;
}

.button:hover {
  border-color: var(--coral-dark);
  background: var(--coral-dark);
}

.button.secondary {
  color: var(--navy-deep);
  background: transparent;
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-visual img {
  min-height: 480px;
  border-radius: 48% 48% 22px 22px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-badge {
  position: absolute;
  right: -24px;
  bottom: 28px;
  width: 170px;
  padding: 22px;
  border-radius: 50%;
  color: var(--white);
  background: var(--sage);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}

.section {
  padding: 80px 0;
}

.section.alt {
  background: var(--white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.program-card {
  grid-column: span 4;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(23, 50, 77, 0.08);
}

.program-card.wide {
  grid-column: span 8;
}

.program-card img {
  height: 220px;
  object-fit: cover;
}

.program-card.wide img {
  height: 300px;
}

.program-card-body {
  padding: 25px;
}

.program-number {
  color: var(--coral);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 60px;
}

.split.reverse {
  grid-template-columns: 1.08fr 0.92fr;
}

.split-media img {
  min-height: 470px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 15px 18px 15px 48px;
  border-radius: 14px;
  background: var(--cream);
}

.check-list li::before {
  position: absolute;
  top: 14px;
  left: 16px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--sage);
  content: "✓";
  font-size: 0.78rem;
  font-weight: 900;
}

.impact-band {
  color: var(--white);
  background: var(--navy-deep);
}

.impact-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  align-items: center;
  gap: 26px;
}

.impact-grid h2,
.impact-grid h3 {
  color: var(--white);
}

.impact-item {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.impact-item strong {
  display: block;
  color: #f4c7b8;
  font-size: 2.4rem;
  line-height: 1;
}

.page-hero {
  position: relative;
  padding: 76px 0;
  color: var(--white);
  background: var(--navy-deep);
  overflow: hidden;
}

.page-hero::after {
  position: absolute;
  right: -120px;
  bottom: -210px;
  width: 460px;
  height: 460px;
  border: 80px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  content: "";
}

.page-hero h1 {
  position: relative;
  z-index: 1;
  max-width: 900px;
  color: var(--white);
}

.page-hero .highlight-name {
  display: block;
  color: #f4c7b8;
}

.page-hero p {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.info-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.info-card.accent {
  color: var(--white);
  background: var(--sage);
}

.info-card.accent h3 {
  color: var(--white);
}

.governance-list {
  display: grid;
  gap: 20px;
}

.governance-item {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 22px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.governance-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--coral);
  font-size: 1.15rem;
  font-weight: 900;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 44px;
}

.contact-panel {
  padding: 32px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--navy-deep);
}

.contact-panel h2,
.contact-panel h3 {
  color: var(--white);
}

.contact-detail {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  overflow-wrap: anywhere;
}

.contact-detail:last-child {
  border-bottom: 0;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--navy-deep);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: var(--cream);
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.map-frame {
  width: 100%;
  min-height: 420px;
  margin-top: 30px;
  border: 0;
  border-radius: var(--radius-lg);
}

.site-footer {
  padding: 52px 0 24px;
  color: rgba(255, 255, 255, 0.8);
  background: var(--navy-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 38px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-brand img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--white);
}

.footer-name {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.footer-title {
  margin-bottom: 14px;
  color: #f4c7b8;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid p {
  overflow-wrap: anywhere;
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.86rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .split.reverse,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 720px;
  }

  .program-card,
  .program-card.wide {
    grid-column: span 6;
  }

  .impact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .info-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .top-strip {
    font-size: 0.76rem;
  }

  .header-inner {
    min-height: 74px;
  }

  .c194665a234 img {
    width: 48px;
    height: 48px;
  }

  .brand-name {
    max-width: calc(100vw - 135px);
    font-size: 1rem;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    width: 100%;
    padding: 12px 14px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--cream);
    box-shadow: 0 18px 30px rgba(23, 50, 77, 0.12);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    width: 100%;
    padding: 13px 16px;
    text-align: center;
  }

  .cf54089429e,
  .page-hero {
    padding: 54px 0 62px;
  }

  .hero-grid {
    gap: 38px;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 4.2rem);
  }

  .hero-lead {
    font-size: 1.04rem;
  }

  .button-row {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-visual img {
    min-height: 360px;
    border-radius: 34% 34% 20px 20px;
  }

  .hero-badge {
    right: 12px;
    bottom: -25px;
    width: 125px;
    padding: 15px;
    font-size: 0.75rem;
  }

  .section {
    padding: 60px 0;
  }

  .program-grid,
  .impact-grid,
  .info-grid,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .program-card,
  .program-card.wide {
    grid-column: 1 / -1;
  }

  .program-card img,
  .program-card.wide img,
  .split-media img {
    min-height: 0;
    height: 260px;
  }

  .impact-item {
    padding: 20px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    border-left: 0;
  }

  .governance-item {
    grid-template-columns: 1fr;
  }

  .contact-form,
  .contact-panel {
    padding: 24px;
  }

  .map-frame {
    min-height: 320px;
  }
}
