:root {
  --navy: #0a2342;
  --teal: #2ca6a4;
  --teal-dark: #157c7a;
  --gold: #f5b700;
  --white: #ffffff;
  --light: #f4f7fa;
  --ink: #1d2b3a;
  --muted: #5d6f83;
  --line: #dbe5ee;
  --shadow: 0 18px 50px rgba(10, 35, 66, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(219, 229, 238, 0.85);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1160px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 10px 25px rgba(10, 35, 66, 0.18);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-text {
  display: grid;
  line-height: 1.15;
}

.brand-text small {
  font-size: 0.72rem;
  color: var(--teal-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.nav-links a {
  text-decoration: none;
  color: #314457;
  font-weight: 700;
  font-size: 0.94rem;
  padding: 10px 12px;
  border-radius: 8px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  background: #eaf5f5;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  color: var(--navy);
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 2px solid transparent;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
}

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

.button.secondary {
  background: var(--teal);
  color: var(--white);
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.button.light {
  background: var(--white);
  color: var(--navy);
  border-color: var(--line);
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(112deg, rgba(10, 35, 66, 0.97) 0%, rgba(10, 35, 66, 0.88) 45%, rgba(44, 166, 164, 0.75) 100%),
    url("assets/community-health.svg?_ship=zp56ppt") center right / min(780px, 82vw) no-repeat,
    var(--navy);
}

.hero-inner,
.section-inner,
.page-hero-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-content {
  width: min(680px, 100%);
  padding: 82px 0 104px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 3px;
  background: currentColor;
  border-radius: 999px;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1,
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.7rem, 7vw, 5.9rem);
  max-width: 820px;
}

.hero .tagline {
  margin: 18px 0 0;
  font-size: clamp(1.1rem, 2vw, 1.38rem);
  color: #cfeeee;
  font-weight: 800;
}

.hero p {
  margin: 22px 0 0;
  max-width: 640px;
  font-size: 1.08rem;
  color: #eff8fb;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.section {
  padding: 86px 0;
}

.section.light {
  background: var(--light);
}

.section.teal-band {
  background: var(--teal);
  color: var(--white);
}

.section.teal-band h2,
.section.teal-band h3 {
  color: var(--white);
}

.section-header {
  display: grid;
  gap: 14px;
  width: min(760px, 100%);
  margin-bottom: 34px;
}

.section-header.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-header p,
.lead {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0;
}

.teal-band .section-header p,
.teal-band .lead {
  color: #eefafa;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
}

.statement {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.statement + .statement {
  margin-top: 18px;
}

.statement h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 14px;
}

.statement p,
.card p,
.feature p,
.value-item p,
.goal-item p,
.contact-item p {
  margin: 0;
  color: var(--muted);
}

.visual-panel {
  position: relative;
  min-height: 430px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--navy);
}

.visual-panel img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  display: block;
}

.metrics-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.metric {
  background: rgba(255, 255, 255, 0.1);
  padding: 18px;
}

.metric strong {
  display: block;
  color: var(--gold);
  font-size: 1.75rem;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 6px;
  color: #effafa;
  font-size: 0.92rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.grid.four {
  grid-template-columns: repeat(4, 1fr);
}

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

.card,
.feature,
.value-item,
.goal-item,
.contact-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 10px 30px rgba(10, 35, 66, 0.06);
}

.card h3,
.feature h3,
.value-item h3,
.goal-item h3,
.contact-item h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--navy);
  background: #e9f6f6;
}

.icon svg {
  width: 24px;
  height: 24px;
}

.card-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration: none;
}

.page-hero {
  background:
    linear-gradient(112deg, rgba(10, 35, 66, 0.96), rgba(10, 35, 66, 0.78)),
    url("assets/community-health.svg?_ship=zp56ppt") center right / min(680px, 84vw) no-repeat,
    var(--navy);
  color: var(--white);
}

.page-hero-inner {
  padding: 88px 0 100px;
}

.page-hero p {
  margin: 20px 0 0;
  color: #e8f6f7;
  max-width: 760px;
  font-size: 1.12rem;
}

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

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 750;
}

.check-list li::before {
  content: "";
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: inset 0 0 0 6px #dff4f4;
}

.goal-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.goal-number {
  flex: 0 0 72px;
  color: var(--navy);
  font-size: 1.7rem;
  font-weight: 900;
}

.cta-band {
  padding: 72px 0;
  background: var(--navy);
  color: var(--white);
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.cta-band p {
  margin: 14px 0 0;
  color: #dceff2;
  max-width: 680px;
}

.cta-band .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer {
  background: #06182e;
  color: #d8e6f3;
  padding: 34px 0;
}

.footer-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.footer-inner p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: #d8e6f3;
  text-decoration: none;
}

.contact-item a {
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 980px) {
  .grid,
  .grid.four {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero {
    background:
      linear-gradient(112deg, rgba(10, 35, 66, 0.98), rgba(10, 35, 66, 0.82)),
      url("assets/community-health.svg?_ship=zp56ppt") bottom right / 620px no-repeat,
      var(--navy);
  }
}

@media (max-width: 780px) {
  .nav {
    min-height: 68px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 66px 0 92px;
  }

  .section,
  .page-hero-inner {
    padding: 64px 0;
  }

  .metrics-strip {
    grid-template-columns: 1fr;
  }

  .cta-band .section-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand-text span {
    font-size: 0.92rem;
  }

  .brand-text small {
    font-size: 0.64rem;
  }

  .grid,
  .grid.four,
  .grid.three {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .cta-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .goal-item {
    align-items: flex-start;
  }
}
