:root {
  --ink: #14171a;
  --ink-soft: #3e4650;
  --muted: #68717d;
  --line: #dfe6eb;
  --paper: #ffffff;
  --wash: #f5f8f9;
  --blue: #37a8ca;
  --blue-dark: #16708c;
  --gold: #f4b942;
  --green: #2f6f4e;
  --shadow: 0 18px 50px rgba(18, 26, 33, 0.14);
  --radius: 8px;
  --max: 1180px;
  --header-h: 76px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 1000;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 4px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-h);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(20, 23, 26, 0.1);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: min(100% - 32px, var(--max));
  min-height: var(--header-h);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 18px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

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

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

.brand-name {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-loc {
  font-size: 0.76rem;
  color: var(--muted);
  white-space: nowrap;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  align-items: center;
  font-size: 0.93rem;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
  color: var(--ink-soft);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--blue-dark);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  content: "";
}

.menu-lines::before {
  transform: translateY(-7px);
}

.menu-lines::after {
  transform: translateY(5px);
}

.call-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  background: var(--blue-dark);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(22, 112, 140, 0.22);
}

.call-link:hover,
.call-link:focus-visible {
  background: #115b72;
}

.call-link.secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.call-link.light {
  background: #fff;
  color: var(--blue-dark);
  border: 1px solid var(--line);
  box-shadow: none;
}

.hero {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: end;
  position: relative;
  isolation: isolate;
  background-image:
    linear-gradient(90deg, rgba(12, 18, 22, 0.9), rgba(12, 18, 22, 0.68) 50%, rgba(12, 18, 22, 0.2)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: clamp(70px, 11vh, 120px) 0 42px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  background: rgba(255, 255, 255, 0.09);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 12ch;
  margin: 18px 0 18px;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3.15rem);
  line-height: 1.05;
  letter-spacing: 0;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.16rem;
  line-height: 1.25;
  letter-spacing: 0;
  margin-bottom: 8px;
}

.hero-lede {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.hero-trust li {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.92rem;
  font-weight: 700;
}

.next-strip {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  transform: translateY(50%);
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(20, 23, 26, 0.08);
}

.next-item {
  padding: 18px 20px;
  border-right: 1px solid var(--line);
}

.next-item:last-child {
  border-right: 0;
}

.next-kicker {
  display: block;
  color: var(--blue-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.next-item strong {
  display: block;
  margin-top: 3px;
}

main {
  overflow: clip;
}

.section {
  padding: clamp(72px, 9vw, 118px) 0;
}

.section.first-after-hero {
  padding-top: clamp(104px, 13vw, 148px);
}

.band {
  background: var(--wash);
}

.dark-band {
  background: var(--ink);
  color: #fff;
}

.inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.wide {
  max-width: 950px;
}

.lead {
  font-size: 1.08rem;
  color: var(--ink-soft);
}

.dark-band .lead,
.dark-band p {
  color: rgba(255, 255, 255, 0.78);
}

.grid {
  display: grid;
  gap: 18px;
}

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

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.card-body {
  padding: 22px;
}

.card p {
  color: var(--ink-soft);
}

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

.card-link:hover {
  text-decoration: underline;
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #dde5e9;
}

.list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.list-grid li,
.pill-list a,
.pill-list span {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 10px 13px;
  font-weight: 700;
  color: var(--ink-soft);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pill-list a {
  display: inline-flex;
  text-decoration: none;
}

.pill-list a:hover {
  color: var(--blue-dark);
  border-color: rgba(55, 168, 202, 0.45);
}

.zip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.zip-list li {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-weight: 800;
}

.resource-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.resource-link {
  display: grid;
  gap: 4px;
  min-height: 96px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  text-decoration: none;
}

.resource-link strong {
  color: var(--ink);
}

.resource-link span {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.resource-link:hover {
  border-color: rgba(55, 168, 202, 0.55);
  box-shadow: 0 12px 28px rgba(18, 26, 33, 0.08);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.media-stack {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 12px;
  align-items: end;
}

.media-stack img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
}

.media-stack img:first-child {
  min-height: 420px;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.check-list li::after {
  position: absolute;
  left: 6px;
  top: 0.32rem;
  width: 5px;
  height: 9px;
  border: solid #4b3200;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  content: "";
}

.gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  background: #e9eef1;
}

.hub-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hub-link {
  display: grid;
  grid-template-columns: 96px 1fr;
  min-height: 118px;
  gap: 16px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
}

.hub-link img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 6px;
}

.hub-link strong {
  display: block;
  margin-bottom: 4px;
}

.hub-link span {
  color: var(--ink-soft);
}

.hub-link:hover {
  border-color: rgba(55, 168, 202, 0.55);
  box-shadow: 0 12px 28px rgba(18, 26, 33, 0.08);
}

.page-hero {
  padding: clamp(60px, 8vw, 96px) 0;
  background-image:
    linear-gradient(90deg, rgba(12, 18, 22, 0.88), rgba(12, 18, 22, 0.58)),
    var(--hero-image);
  background-position: center;
  background-size: cover;
  color: #fff;
}

.page-hero h1 {
  max-width: 14ch;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  background: #fff;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.faq p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.cta-band {
  background: var(--blue-dark);
  color: #fff;
  padding: 44px 0;
}

.cta-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cta-inner h2 {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  margin-bottom: 6px;
}

.cta-inner p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  background: #101315;
  color: #fff;
  padding: 54px 0 92px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 28px;
}

.footer-logo {
  width: 78px;
  height: 78px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  padding: 6px;
  margin-bottom: 16px;
}

.footer-title {
  font-weight: 900;
  margin-bottom: 8px;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.76);
}

.footer-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-list a {
  text-decoration: none;
}

.footer-list a:hover {
  color: #fff;
}

.mobile-call {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 80;
  min-height: 54px;
  border-radius: 8px;
  background: var(--gold);
  color: #1a1200;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(20, 23, 26, 0.28);
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .menu-button {
    display: inline-flex;
    justify-self: end;
  }

  .nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(var(--header-h) + 8px);
    padding: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }

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

  .nav a {
    min-height: 42px;
    display: flex;
    align-items: center;
  }

  .header-call {
    display: none;
  }

  .grid.three,
  .grid.two,
  .split,
  .split.reverse,
  .footer-grid,
  .hub-list,
  .resource-list {
    grid-template-columns: 1fr;
  }

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

  .list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-call {
    display: flex;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 68px;
  }

  .header-inner {
    width: min(100% - 24px, var(--max));
    gap: 10px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand-loc {
    white-space: normal;
  }

  .hero {
    min-height: auto;
    background-position: center;
  }

  .hero-inner {
    padding-top: 72px;
  }

  .next-strip {
    transform: translateY(28px);
    grid-template-columns: 1fr;
  }

  .next-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .next-item:last-child {
    border-bottom: 0;
  }

  .section.first-after-hero {
    padding-top: 78px;
  }

  .media-stack {
    grid-template-columns: 1fr 1fr;
  }

  .media-stack img,
  .media-stack img:first-child {
    min-height: 220px;
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hub-link {
    grid-template-columns: 82px 1fr;
  }

  .hub-link img {
    width: 82px;
    height: 82px;
  }
}
