:root {
  --navy: #061b3d;
  --navy-2: #082552;
  --teal: #14b8b8;
  --teal-dark: #009a9c;
  --ink: #071c3f;
  --muted: #5d6b7d;
  --line: #d9e0e7;
  --paper: #ffffff;
  --mist: #f4f8fa;
  --shadow: 0 28px 70px rgba(6, 27, 61, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 58px);
  color: white;
  background: linear-gradient(180deg, rgba(6, 27, 61, 0.5), rgba(6, 27, 61, 0));
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.has-scrolled,
.site-header.is-solid {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 12px 36px rgba(6, 27, 61, 0.08);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 1.04;
  font-size: 13px;
}

.brand-mark img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: 14px;
  font-weight: 750;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  white-space: nowrap;
}

.nav-cta,
.button {
  border: 1px solid rgba(20, 184, 184, 0.75);
  border-radius: 999px;
  padding: 12px 18px;
}

.menu-toggle {
  display: none;
}

.hero-section,
.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(390px, 41vw) 1fr;
  overflow: hidden;
}

.hero-section {
  background: var(--navy);
}

.hero-section {
  height: 90vh;
  min-height: 620px;
  max-height: 820px;
}

.curve-panel {
  position: relative;
  z-index: 2;
  min-height: inherit;
  padding: 112px clamp(26px, 5vw, 62px) 58px;
  color: white;
  background:
    radial-gradient(circle at 30% 20%, rgba(20, 184, 184, 0.13), transparent 32%),
    linear-gradient(140deg, var(--navy), #02142e);
  border-right: 9px solid var(--teal);
  border-radius: 0 55% 55% 0 / 0 100% 100% 0;
}

.hero-logo-lockup {
  display: block;
  margin: 0 0 32px;
}

.hero-logo-lockup img {
  width: 228px;
  height: auto;
  object-fit: contain;
  background: transparent;
}

.eyebrow,
.section-number,
.blog-meta {
  display: inline-block;
  color: var(--teal);
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy h1,
.section-copy h2,
.programs-copy h2,
.contact-copy h2,
.trust-section h2,
.blog-hero h1 {
  margin: 16px 0 18px;
  font-size: clamp(48px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy h1 {
  font-size: clamp(42px, 4.65vw, 60px);
  line-height: 1.02;
  margin-top: 32px;
  margin-bottom: 14px;
}

.hero-copy h1 span,
.section-copy h2 span,
.programs-copy h2 span,
.contact-copy h2 span {
  display: block;
  color: var(--teal);
}

.hero-copy p,
.contact-copy p {
  max-width: 520px;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  font-weight: 850;
}

.button-primary {
  background: var(--teal);
  color: var(--navy);
}

.button-secondary {
  color: white;
}

.hero-image,
.contact-image {
  position: absolute;
  inset: 0 0 0 35vw;
}

.hero-image {
  position: absolute;
}

.hero-image img,
.contact-image img,
.section-image img,
.programs-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.pillar-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  padding: 30px clamp(18px, 4vw, 70px);
  background: white;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 3;
}

.pillar-strip div {
  min-height: 86px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 7px;
  text-align: center;
  border-right: 1px solid var(--line);
  padding: 0 18px;
}

.pillar-strip div:last-child {
  border-right: 0;
}

.pillar-strip strong {
  color: var(--teal-dark);
  font-size: 20px;
}

.pillar-strip span {
  color: var(--ink);
  line-height: 1.25;
}

.split-section,
.programs-section {
  display: grid;
  grid-template-columns: minmax(390px, 42vw) 1fr;
  min-height: 760px;
  overflow: hidden;
}

.split-section {
  height: 90vh;
  min-height: 620px;
  max-height: 820px;
}

.section-copy,
.programs-copy {
  padding: 74px clamp(28px, 5vw, 68px);
  background: white;
  border-right: 8px solid var(--teal);
  border-radius: 0 58% 58% 0 / 0 100% 100% 0;
  position: relative;
  z-index: 2;
}

.split-section.no-curve .section-copy {
  border-right: 0;
  border-radius: 0;
}

.reverse-split {
  grid-template-columns: 1fr minmax(390px, 42vw);
}

.reverse-split .section-copy {
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  order: 2;
}

.reverse-split .section-image {
  order: 1;
}

.section-number::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  background: var(--teal);
  margin-top: 13px;
}

.section-copy h2,
.programs-copy h2,
.trust-section h2 {
  color: var(--ink);
}

.section-lede {
  max-width: 520px;
  font-size: clamp(21px, 2.5vw, 29px);
  line-height: 1.22;
  color: var(--ink);
}

.advocacy-list,
.program-list,
.statement-grid,
.trust-grid {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.advocacy-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 18px;
}

.advocacy-list span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--teal);
  font-weight: 900;
}

.advocacy-list p,
.program-list p,
.statement-grid p,
.trust-grid p {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.4;
}

.section-image,
.programs-image {
  margin: 0;
  min-height: 100%;
}

.statement-grid article,
.program-list article,
.trust-grid article,
.blog-card,
.empty-state,
.article-view {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(6, 27, 61, 0.08);
}

.statement-grid article,
.program-list article,
.trust-grid article {
  padding: 24px;
}

h3 {
  margin: 0 0 10px;
  color: var(--teal-dark);
  font-size: 19px;
}

.mission-section .section-image img {
  object-position: right center;
}

.programs-section {
  grid-template-columns: minmax(390px, 42vw) 1fr;
  height: auto;
  min-height: 90vh;
  max-height: none;
  align-items: stretch;
}

.programs-image img {
  object-position: 59% center;
}

.trust-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  padding: 96px clamp(24px, 6vw, 92px);
  background: var(--mist);
}

.trust-section h2 {
  font-size: clamp(42px, 5vw, 70px);
}

.trust-grid {
  grid-template-columns: repeat(3, 1fr);
}

.contact-section {
  grid-template-columns: minmax(390px, 42vw) 1fr;
  height: 60vh;
  min-height: 480px;
  max-height: 620px;
  background: white;
}

.contact-section .contact-image {
  position: static;
  inset: auto;
  min-height: 100%;
}

.contact-copy {
  color: white;
  background:
    radial-gradient(circle at 26% 18%, rgba(20, 184, 184, 0.12), transparent 34%),
    linear-gradient(140deg, var(--navy), #02142e);
}

.contact-copy h2 {
  color: white;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.9);
}

.contact-list {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

.contact-list a {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  align-items: center;
  min-height: 48px;
  font-size: 18px;
  color: white;
}

.contact-list strong {
  color: var(--teal);
}

.contact-list span {
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  padding-bottom: 10px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 28px;
  color: white;
  background: var(--navy);
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.site-footer p {
  margin: 0;
  font-weight: 850;
}

.blog-hero {
  padding: 170px clamp(24px, 7vw, 96px) 86px;
  color: white;
  background:
    linear-gradient(90deg, rgba(6, 27, 61, 0.96), rgba(6, 27, 61, 0.72)),
    url("/assets/hero-photo.jpg") center / cover;
}

.blog-hero div {
  max-width: 850px;
}

.blog-hero h1 {
  max-width: 860px;
  margin-top: 18px;
}

.blog-hero p {
  max-width: 660px;
  font-size: 22px;
  line-height: 1.45;
}

.blog-shell {
  padding: 72px clamp(20px, 6vw, 90px) 96px;
  background: var(--mist);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.blog-card {
  overflow: hidden;
}

.blog-card-image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--navy);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  transition: transform 220ms ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.04);
}

.blog-card-body {
  padding: 24px;
}

.blog-card h2 {
  margin: 10px 0;
  font-size: 28px;
  line-height: 1.05;
}

.blog-card p {
  color: var(--muted);
  line-height: 1.5;
}

.blog-notice,
.loading-state {
  margin-bottom: 22px;
  padding: 16px 18px;
  border-left: 4px solid var(--teal);
  background: white;
  color: var(--ink);
}

.empty-state,
.article-view {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
}

.empty-state h2,
.article-view h1 {
  margin: 0 0 16px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1;
}

.article-image {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 8px;
  margin: 30px 0;
}

.article-excerpt {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.35;
}

.article-body {
  color: #24364e;
  font-size: 19px;
  line-height: 1.72;
}

.article-body h2 {
  margin-top: 42px;
  font-size: 34px;
  color: var(--ink);
}

.article-body h3 {
  margin-top: 30px;
}

.article-list-item::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--teal);
}

.back-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--teal-dark);
  font-weight: 850;
}

code {
  padding: 2px 6px;
  border-radius: 4px;
  background: #e8eef4;
}

@media (max-width: 1100px) {
  .hero-section,
  .contact-section,
  .split-section,
  .programs-section,
  .trust-section {
    grid-template-columns: 1fr;
  }

  .hero-section {
    height: auto;
    min-height: auto;
    max-height: none;
  }

  .curve-panel,
  .section-copy,
  .programs-copy {
    border-radius: 0;
    border-right: 0;
    border-bottom: 7px solid var(--teal);
  }

  .hero-image,
  .contact-section:not(.split-section) .contact-image {
    position: relative;
    inset: auto;
    min-height: 420px;
  }

  .contact-section {
    height: auto;
    min-height: auto;
    max-height: none;
    grid-template-columns: 1fr;
  }

  .section-image,
  .programs-image {
    min-height: 460px;
  }

  .split-section {
    height: auto;
    min-height: auto;
    max-height: none;
  }

  .programs-section {
    height: auto;
    min-height: auto;
    max-height: none;
  }

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

  .reverse-split .section-copy,
  .reverse-split .section-image {
    order: initial;
  }

  .pillar-strip,
  .trust-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand-mark span {
    display: none;
  }

  .menu-toggle {
    display: grid;
    gap: 6px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid rgba(20, 184, 184, 0.65);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 18px;
    left: 18px;
    display: none;
    padding: 18px;
    border-radius: 8px;
    background: white;
    color: var(--ink);
    box-shadow: var(--shadow);
  }

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

  .hero-section,
  .contact-section {
    min-height: auto;
  }

  .hero-section {
    display: flex;
    flex-direction: column;
  }

  .curve-panel,
  .section-copy,
  .programs-copy {
    min-height: auto;
    padding: 104px 24px 52px;
  }

  .hero-logo-lockup {
    margin-bottom: 26px;
  }

  .hero-logo-lockup img {
    width: 188px;
    height: auto;
  }

  .hero-copy h1,
  .section-copy h2,
  .programs-copy h2,
  .contact-copy h2,
  .blog-hero h1 {
    font-size: clamp(42px, 14vw, 58px);
  }

  .hero-copy h1 {
    font-size: clamp(38px, 12vw, 50px);
    margin-top: 26px;
  }

  .hero-section .hero-copy {
    padding-bottom: 15px;
  }

  .hero-section .hero-actions {
    margin-bottom: 0;
  }

  .hero-section .hero-image {
    order: 2;
  }

  .hero-section .hero-image + * {
    order: 3;
  }

  .pillar-strip,
  .trust-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .pillar-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-image,
  .programs-image,
  .hero-image,
  .contact-image {
    min-height: 330px;
  }

  .advocacy-list article {
    grid-template-columns: 44px 1fr;
  }

  .advocacy-list span {
    width: 44px;
    height: 44px;
    font-size: 13px;
  }

  .contact-list a {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .blog-hero {
    padding: 130px 24px 62px;
  }

  .blog-shell {
    padding: 40px 18px 70px;
  }
}
