:root {
  --ink: #10272e;
  --muted: #5d7178;
  --teal: #16586a;
  --teal-dark: #0c3945;
  --logo-teal: #0798ad;
  --logo-coral: #ef6d4a;
  --logo-gold: #f7b85b;
  --teal-soft: #e7f5f7;
  --sky: #6ec1e4;
  --pink: #ef6d4a;
  --pink-dark: #d95434;
  --gold: #d99b3d;
  --line: #dce8eb;
  --paper: #ffffff;
  --wash: #f7fbfc;
  --shadow: 0 24px 70px rgba(16, 39, 46, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
}

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

.topbar {
  background: var(--teal-dark);
  color: #d9f7ff;
  font-size: 0.86rem;
}

.topbar__inner,
.nav__inner,
.section__inner,
.footer__inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
}

.topbar a {
  text-decoration: none;
}

.topbar__links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 57, 69, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 82px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  width: 234px;
  min-height: 64px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  text-decoration: none;
}

.logo {
  width: 100%;
  padding: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav__links a {
  color: #f4fbfc;
  text-decoration: none;
}

.nav__links a[aria-current="page"] {
  color: var(--logo-gold);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
}

.button,
.button-secondary,
.button-quiet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 5px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button {
  color: #fff;
  background: linear-gradient(135deg, var(--logo-coral), var(--logo-gold));
  box-shadow: 0 14px 28px rgba(239, 109, 74, 0.22);
}

.button:hover,
.button:focus-visible {
  background: linear-gradient(135deg, var(--pink-dark), var(--logo-coral));
  transform: translateY(-1px);
}

.button-secondary {
  color: var(--logo-teal);
  background: #fff;
  border-color: rgba(7, 152, 173, 0.32);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--logo-teal);
  color: var(--teal-dark);
  transform: translateY(-1px);
}

.button-quiet {
  color: var(--teal);
  background: transparent;
  padding-left: 0;
  padding-right: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(231, 245, 247, 0.92), rgba(255, 255, 255, 0.86)),
    radial-gradient(circle at 90% 10%, rgba(110, 193, 228, 0.28), transparent 34%);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 1.02fr);
  align-items: center;
  gap: 54px;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 56px;
}

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.04;
}

h1 {
  max-width: 800px;
  font-size: clamp(2.65rem, 6.2vw, 4.7rem);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 4.8vw, 3.6rem);
}

h3 {
  font-size: clamp(1.22rem, 2.3vw, 1.62rem);
}

.lead {
  max-width: 690px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

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

.hero__media {
  position: relative;
}

.hero__image-wrap {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background:
    linear-gradient(160deg, rgba(12, 57, 69, 0.96), rgba(22, 88, 106, 0.84)),
    var(--teal-dark);
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: contain;
  object-position: bottom center;
  padding: 112px 26px 0;
}

.hero__media-kicker {
  position: absolute;
  top: 26px;
  left: 26px;
  right: 26px;
  z-index: 2;
  max-width: 390px;
  color: #fff;
}

.hero__media-kicker span {
  display: block;
  margin-bottom: 9px;
  color: #bdebf6;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__media-kicker strong {
  display: block;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.1;
}

.hero__note {
  position: static;
  max-width: none;
  margin-top: 14px;
  padding: 18px;
  background: #fff;
  border-left: 5px solid var(--logo-coral);
  border-radius: 6px;
  box-shadow: 0 14px 38px rgba(16, 39, 46, 0.1);
}

.hero__note strong {
  display: block;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.05rem;
}

.hero__note span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.proof-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.proof-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.proof {
  padding: 24px 18px;
  border-left: 1px solid var(--line);
}

.proof:last-child {
  border-right: 1px solid var(--line);
}

.proof strong {
  display: block;
  color: var(--teal);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1;
}

.proof span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: 84px 0;
}

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

.section--dark {
  color: #e8f8fb;
  background: linear-gradient(135deg, var(--teal-dark), #124d5b);
}

.section--dark h2,
.section--dark h3,
.section--dark .eyebrow {
  color: #fff;
}

.section--dark p,
.section--dark .muted {
  color: #c9e7ed;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.section-header p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

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

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

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

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

.panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.panel--photo {
  min-height: 360px;
  padding: 0;
}

.panel--photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.panel h3 {
  margin-bottom: 12px;
}

.panel p {
  margin: 0;
  color: var(--muted);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--teal);
  background: var(--teal-soft);
  border-radius: 7px;
  font-size: 1.1rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 54px;
}

.split--reverse {
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr);
}

.split__image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, rgba(231, 245, 247, 0.9), rgba(255, 255, 255, 0.98));
}

.split__image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
}

.split__image--contain img {
  object-fit: contain;
  object-position: center bottom;
  padding: 18px 18px 0;
}

.split__image--portrait img {
  height: 560px;
  object-fit: contain;
  object-position: center bottom;
  padding: 18px 18px 0;
}

.split__image--map img {
  object-fit: contain;
  padding: 18px;
  background: #fff;
}

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

.check-list li {
  display: flex;
  gap: 11px;
  color: var(--ink);
  font-weight: 700;
}

.check-list i {
  margin-top: 5px;
  color: var(--pink);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.18);
}

.trust-item {
  min-height: 142px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.trust-item i {
  color: var(--sky);
  font-size: 1.3rem;
}

.trust-item strong {
  display: block;
  margin-top: 14px;
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.1rem;
  line-height: 1.2;
}

.trust-item span {
  display: block;
  margin-top: 8px;
  color: #c9e7ed;
  font-size: 0.95rem;
}

.process {
  counter-reset: steps;
}

.process .panel {
  padding-top: 74px;
}

.process .panel::before {
  counter-increment: steps;
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  left: 26px;
  top: 22px;
  color: rgba(22, 88, 106, 0.24);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 900;
}

.video-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 24px;
  align-items: stretch;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 20px 55px rgba(16, 39, 46, 0.08);
}

.video-feature__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 10px 8px;
}

.video-feature__copy p {
  color: var(--muted);
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--teal-dark);
  border-radius: 8px;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-testimonials {
  display: grid;
  grid-template-columns: 0.48fr 1fr;
  gap: 28px;
  margin-top: 28px;
  align-items: start;
}

.video-testimonials article {
  position: sticky;
  top: 118px;
  padding: 26px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  border-radius: var(--radius);
}

.video-testimonials h3 {
  color: #fff;
}

.video-testimonials p {
  color: #c9e7ed;
}

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

.service-hero {
  padding: 62px 0 46px;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: #e8f8fb;
}

.service-hero h1,
.service-hero .eyebrow {
  color: #fff;
}

.service-hero .lead {
  color: #c9e7ed;
}

.breadcrumb {
  margin-bottom: 18px;
  color: #c9e7ed;
  font-size: 0.92rem;
  font-weight: 700;
}

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

.mini-band {
  padding: 18px 0;
  background: var(--teal-soft);
  color: var(--teal-dark);
}

.mini-band__inner {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  font-weight: 800;
}

.state-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.state-list span {
  padding: 8px 10px;
  color: var(--teal-dark);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-box {
  padding: 28px;
  color: #fff;
  background: var(--teal-dark);
  border-radius: var(--radius);
}

.contact-box h3,
.contact-box a {
  color: #fff;
}

.contact-box p {
  color: #c9e7ed;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-list a,
.contact-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.footer {
  padding: 46px 0 26px;
  color: #c9e7ed;
  background: #0a2f39;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr 0.9fr;
  gap: 28px;
}

.footer img {
  width: 210px;
  margin-bottom: 18px;
}

.footer h3 {
  color: #fff;
  font-size: 1rem;
}

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

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

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

.placeholder {
  padding: 42px;
  text-align: center;
  border: 1px dashed var(--line);
  background: var(--wash);
  border-radius: var(--radius);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .nav__links,
  .nav__actions {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-header.is-open .nav__links,
  .site-header.is-open .nav__actions {
    display: flex;
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
  }

  .site-header.is-open .nav__links {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 0;
  }

  .site-header.is-open .nav__actions {
    align-items: stretch;
    flex-direction: column;
    padding-bottom: 18px;
  }

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

  .split--reverse .split__image {
    order: 2;
  }
}

@media (max-width: 820px) {
  .brand-link {
    width: 190px;
    min-height: 58px;
    padding: 8px 12px;
  }

  .topbar__inner,
  .section-header,
  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero__inner {
    padding: 48px 0 38px;
  }

  .hero__image-wrap,
  .hero__image-wrap img {
    min-height: 360px;
  }

  .hero__note {
    position: relative;
    left: auto;
    bottom: auto;
    max-width: none;
    margin-top: -18px;
  }

  .proof-strip__inner,
  .grid--2,
  .grid--3,
  .grid--4,
  .trust-grid,
  .video-feature,
  .video-testimonials,
  .video-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .video-testimonials article {
    position: static;
  }

  .proof,
  .proof:last-child {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 58px 0;
  }

  .split__image img {
    height: 360px;
  }

  .split__image--portrait img {
    height: 420px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
