:root {
  --ink: #173345;
  --ink-soft: #3e5969;
  --teal: #087f9a;
  --teal-dark: #075a70;
  --sky: #72cce1;
  --sun: #ffd84d;
  --mist: #eef8fa;
  --white: #ffffff;
  --line: #c8e5eb;
  --shadow: 0 24px 70px rgba(14, 66, 82, 0.16);
  --shell: min(1160px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(8, 127, 154, 0.14);
  background: rgba(255, 255, 255, 0.94);
}

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

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: 218px;
  height: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  color: var(--teal);
}

nav a[aria-current="page"] {
  color: var(--teal);
}

nav .nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--teal);
}

nav .nav-cta:hover,
nav .nav-cta:focus-visible {
  color: var(--white);
  background: var(--teal-dark);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 112px;
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 216, 77, 0.95) 0 44px, transparent 45px),
    linear-gradient(135deg, #effafd 0%, #ffffff 52%, #f7fcfd 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(310px, 0.65fr);
  align-items: center;
  gap: clamp(48px, 8vw, 100px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(3.8rem, 7.5vw, 6.8rem);
  font-weight: 700;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  letter-spacing: -0.025em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.8rem;
}

.hero-lede {
  max-width: 680px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.15rem, 1.7vw, 1.38rem);
  line-height: 1.55;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 2px solid var(--teal);
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

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

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

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

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--white);
}

.button-sun {
  color: var(--ink);
  background: var(--sun);
  border-color: var(--sun);
}

.button-sun:hover,
.button-sun:focus-visible {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.hero-card {
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(145deg, var(--teal) 0%, var(--teal-dark) 100%);
  box-shadow: var(--shadow);
}

.card-kicker {
  display: block;
  margin-bottom: 20px;
  color: var(--sun);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-card p {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.08;
}

.county-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.county-list span {
  padding: 5px 11px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.bridge-lines {
  position: absolute;
  right: -3%;
  bottom: 0;
  left: 38%;
  height: 46%;
  opacity: 0.16;
  transform-origin: bottom right;
}

.bridge-lines span {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 72%;
  height: 2px;
  background: var(--teal);
  transform-origin: right center;
}

.bridge-lines span:nth-child(1) { transform: rotate(13deg); }
.bridge-lines span:nth-child(2) { transform: rotate(20deg); }
.bridge-lines span:nth-child(3) { transform: rotate(27deg); }
.bridge-lines span:nth-child(4) { transform: rotate(34deg); }
.bridge-lines span:nth-child(5) { transform: rotate(41deg); }

.intro {
  padding: 110px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.82fr);
  gap: clamp(48px, 9vw, 120px);
}

.intro h2 {
  max-width: 660px;
  margin-bottom: 0;
}

.intro-copy {
  padding-top: 35px;
  color: var(--ink-soft);
  font-size: 1.15rem;
}

.intro-copy p:first-child {
  margin-top: 0;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.benefits {
  padding: 100px 0 110px;
  background: var(--mist);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 54px;
}

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

.benefit-grid article {
  min-height: 300px;
  padding: 34px;
  border-top: 5px solid var(--teal);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(23, 51, 69, 0.08);
}

.benefit-grid article:nth-child(2) {
  border-top-color: var(--sky);
}

.benefit-grid article:nth-child(3) {
  border-top-color: var(--sun);
}

.number {
  display: block;
  margin-bottom: 44px;
  color: var(--teal);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.benefit-grid p {
  margin: 0;
  color: var(--ink-soft);
}

.connect {
  padding: 110px 0;
  color: var(--white);
  background: var(--ink);
}

.connect-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 9vw, 120px);
  align-items: start;
}

.eyebrow.light {
  color: var(--sky);
}

.connect h2 {
  max-width: 460px;
}

.connect-copy > p:last-child {
  max-width: 460px;
  color: #c8d7df;
  font-size: 1.12rem;
}

.connect-links {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.connect-links a {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  text-decoration: none;
}

.connect-links a:hover,
.connect-links a:focus-visible {
  color: var(--sun);
}

.connect-links strong,
.connect-links small {
  display: block;
}

.connect-links strong {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.72rem;
  line-height: 1.1;
}

.connect-links small {
  margin-top: 6px;
  color: #a9bec9;
  font-size: 0.95rem;
}

.connect-links a > span:last-child {
  font-size: 1.6rem;
}

.final-cta {
  padding: 90px 0;
  background: var(--sun);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.final-cta h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.final-cta .eyebrow {
  color: var(--teal-dark);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 98px;
  background:
    radial-gradient(circle at 88% 22%, rgba(255, 216, 77, 0.95) 0 48px, transparent 49px),
    linear-gradient(135deg, #effafd 0%, #ffffff 72%);
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -140px;
  width: 620px;
  height: 260px;
  border: 2px solid rgba(8, 127, 154, 0.18);
  border-radius: 50%;
  transform: rotate(-9deg);
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.7fr;
  align-items: end;
  gap: clamp(48px, 9vw, 120px);
}

.page-hero h1 {
  max-width: 700px;
  margin-bottom: 0;
}

.page-hero-grid > p {
  max-width: 520px;
  margin: 0 0 10px;
  color: var(--ink-soft);
  font-size: 1.2rem;
}

.board-section {
  padding: 105px 0 115px;
}

.board-heading {
  margin-bottom: 46px;
}

.board-member {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  padding: 46px;
  border-left: 6px solid var(--sun);
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  box-shadow: var(--shadow);
}

.member-mark {
  width: 150px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  color: var(--sun);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1;
}

.member-role {
  margin: 0 0 10px;
  color: var(--sun);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.member-copy h3 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
}

.member-copy > p:last-child {
  max-width: 760px;
  margin: 0;
  color: #e2f0f4;
  font-size: 1.08rem;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.board-card {
  min-height: 370px;
  padding: 34px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--sky);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(23, 51, 69, 0.08);
}

.board-card:nth-child(2),
.board-card:nth-child(5) {
  border-top-color: var(--sun);
}

.board-card h3 {
  max-width: 520px;
  margin-bottom: 18px;
  font-size: clamp(1.85rem, 3vw, 2.65rem);
  line-height: 1.02;
}

.board-card > p:last-child {
  margin: 0;
  color: var(--ink-soft);
}

.board-card .member-role {
  color: var(--teal);
}

.card-initials {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
}

.board-card-wide {
  grid-column: 1 / -1;
  min-height: auto;
}

.board-card-wide h3 {
  max-width: none;
}

.board-cta {
  padding: 90px 0;
  color: var(--white);
  background: var(--ink);
}

.board-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
}

.board-cta h2 {
  max-width: 740px;
  margin-bottom: 0;
}

footer {
  padding: 30px 0;
  color: #b9cbd3;
  background: #102b3a;
  font-size: 0.92rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  margin: 0;
}

footer strong {
  color: var(--white);
}

footer a {
  color: var(--white);
  text-underline-offset: 3px;
}

:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .intro-grid,
  .connect-grid,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 54px;
  }

  .hero-card {
    max-width: 560px;
  }

  .intro-copy {
    padding-top: 0;
  }

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

  .benefit-grid article {
    min-height: auto;
  }

  .number {
    margin-bottom: 24px;
  }

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

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

  .board-card-wide {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: min(100% - 28px, 1160px);
  }

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

  .brand img {
    width: 165px;
  }

  nav {
    gap: 12px;
  }

  nav > .nav-secondary {
    display: none;
  }

  nav .nav-cta {
    padding: 9px 14px;
    font-size: 0.9rem;
  }

  .hero {
    padding: 72px 0 82px;
    background:
      radial-gradient(circle at 90% 12%, rgba(255, 216, 77, 0.95) 0 30px, transparent 31px),
      linear-gradient(135deg, #effafd 0%, #ffffff 70%);
  }

  h1 {
    font-size: clamp(3.2rem, 16vw, 4.7rem);
  }

  .button-row,
  .button-row .button {
    width: 100%;
  }

  .hero-card {
    padding: 28px;
  }

  .intro,
  .benefits,
  .connect {
    padding: 78px 0;
  }

  .benefit-grid article {
    padding: 28px;
  }

  .connect-links a {
    min-height: 118px;
  }

  .final-cta {
    padding: 72px 0;
  }

  .final-cta .button {
    width: 100%;
  }

  .page-hero {
    padding: 70px 0 74px;
  }

  .page-hero-grid > p {
    font-size: 1.08rem;
  }

  .board-section {
    padding: 76px 0 82px;
  }

  .board-member {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 30px;
  }

  .member-mark {
    width: 112px;
    font-size: 3.2rem;
  }

  .board-card {
    min-height: auto;
    padding: 30px;
  }

  .board-cta {
    padding: 72px 0;
  }

  .board-cta .button {
    width: 100%;
  }
}
