:root {
  color-scheme: light;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-14: 3.5rem;
  --radius: 8px;
  --radius-lg: 8px;
  --border: #d9e1ea;
  --text: #172033;
  --muted: #526072;
  --surface: #ffffff;
  --surface-muted: #f5f7fa;
  --navy: #061f31;
  --navy-2: #0d3e63;
  --blue: #0978d8;
  --blue-dark: #075fa8;
  --green: #09a51a;
  --gold: #f4cf42;
  --success: #207044;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.55;
  background: var(--surface);
}

a {
  color: var(--blue-dark);
}

a:focus,
button:focus,
input:focus,
textarea:focus,
summary:focus {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 30;
  padding: var(--space-2) var(--space-3);
  background: var(--blue);
  color: #fff;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 10;
  background: var(--navy);
  color: #fff;
}

.service-strip {
  min-height: 70px;
}

.strip-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: 0;
}

.service-strip span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.top-cta {
  display: inline-flex;
  align-items: center;
  min-height: 56px;
  padding: 0 var(--space-6);
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.nav-shell {
  transform: translateY(38px);
}

.header-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: var(--space-8);
  min-height: 112px;
  padding: var(--space-5) var(--space-6);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--text);
  font-size: 1.18rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 3.2rem;
  aspect-ratio: 1;
  border-radius: 10px;
  background: #5578ff;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  border: 3px solid #fff;
}

.brand-mark::before {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
}

.brand-mark::after {
  width: 1.75rem;
  height: 0.65rem;
  right: 0.35rem;
  bottom: 0.35rem;
  border-radius: 999px;
  background: #5578ff;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-8);
}

.nav a {
  color: #0d1930;
  font-size: 1.02rem;
  font-weight: 800;
  text-decoration: none;
}

.nav a:hover {
  color: var(--blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.search-button,
.menu-button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  aspect-ratio: 1;
  text-decoration: none;
}

.search-button span {
  position: relative;
  width: 18px;
  aspect-ratio: 1;
  border: 4px solid var(--navy);
  border-radius: 999px;
}

.search-button span::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 4px;
  right: -8px;
  bottom: -5px;
  border-radius: 999px;
  background: var(--navy);
  transform: rotate(45deg);
}

.menu-button {
  gap: 4px;
  border-radius: 999px;
  background: var(--gold);
}

.menu-button span {
  width: 17px;
  height: 3px;
  border-radius: 999px;
  background: var(--navy);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 720px;
  margin-top: -1px;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 54, 87, 0.88) 0%, rgba(8, 54, 87, 0.74) 36%, rgba(8, 54, 87, 0.28) 70%, rgba(8, 54, 87, 0.06) 100%),
    linear-gradient(180deg, rgba(6, 31, 49, 0.28) 0%, rgba(6, 31, 49, 0.05) 38%, rgba(6, 31, 49, 0.38) 100%);
}

.hero-center {
  display: grid;
  place-items: center;
  min-height: 720px;
  padding: 160px 0 80px;
  text-align: center;
}

.hero-center > * {
  max-width: 980px;
}

.hero .breadcrumbs {
  justify-content: center;
  margin-bottom: var(--space-4);
}

.hero .breadcrumbs a {
  color: rgba(255, 255, 255, 0.86);
}

.eyebrow {
  margin: 0 0 var(--space-3);
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: 2.8rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 {
  color: #fff;
  font-size: 5.4rem;
  font-weight: 900;
  text-shadow: 0 5px 30px rgba(0, 0, 0, 0.38);
}

h2 {
  margin: 0 0 var(--space-5);
  font-size: 2rem;
  line-height: 1.15;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 var(--space-2);
  font-size: 1.16rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-subtitle {
  margin: var(--space-4) auto 0;
  color: #fff;
  font-size: 2.25rem;
  font-style: italic;
  font-weight: 850;
  line-height: 1.18;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.42);
}

.lede {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 68ch;
}

.hero-call-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  min-height: 72px;
  margin-top: var(--space-8);
  padding: 0 var(--space-10);
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.hero-call-button:hover {
  background: #068914;
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.3);
}

.hero-call-button span {
  position: relative;
  width: 24px;
  height: 24px;
  border: 7px solid #fff;
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 7px;
  transform: rotate(-45deg);
}

.section {
  padding: var(--space-14) 0;
}

.section-muted {
  background: var(--surface-muted);
}

.service-band {
  background: #fff;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

.panel,
.card,
.lead-form,
.cta-card,
.sponsored-listing {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  color: var(--text);
  padding: var(--space-6);
  box-shadow: 0 18px 45px rgba(20, 33, 61, 0.08);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  background: var(--blue);
  color: #fff;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.button:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.button-secondary {
  border-color: var(--border);
  background: var(--surface);
  color: var(--text) !important;
}

.button-wide {
  width: 100%;
}

.service-directory,
.card-grid,
.city-link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-5);
}

.service-row-card,
.service-card,
.city-link {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 16px 40px rgba(20, 33, 61, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-row-card:hover,
.service-card:hover,
.city-link:hover {
  border-color: rgba(9, 120, 216, 0.45);
  box-shadow: 0 22px 55px rgba(20, 33, 61, 0.14);
  transform: translateY(-6px);
}

.service-row-card,
.service-card {
  display: grid;
  align-content: start;
  gap: var(--space-4);
  padding: var(--space-4);
}

.service-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
}

.city-link {
  display: grid;
  gap: var(--space-1);
  min-height: 6rem;
  padding: var(--space-5);
  color: var(--text);
  text-decoration: none;
}

.city-link::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--blue), var(--green));
}

.city-link span {
  color: var(--muted);
  font-size: 0.95rem;
}

.service-list,
.steps,
.checklist,
.tag-list {
  display: grid;
  gap: var(--space-2);
  margin: 0;
  padding-left: 1.2rem;
}

.tag-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
}

.tag-list li {
  padding: var(--space-2) var(--space-3);
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  font-size: 0.92rem;
}

.breadcrumbs a {
  text-decoration: none;
}

.breadcrumbs a::after {
  content: "/";
  margin-left: var(--space-2);
  color: currentColor;
  opacity: 0.6;
}

.lead-form {
  display: grid;
  gap: var(--space-3);
  align-self: start;
}

.lead-form h2 {
  margin-bottom: 0;
}

.lead-form label {
  display: grid;
  gap: var(--space-1);
  font-weight: 750;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.78rem;
  font: inherit;
}

.lead-form [disabled] {
  cursor: wait;
  opacity: 0.72;
}

.lead-form .check {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  font-weight: 400;
}

.lead-form .check input {
  width: auto;
  margin-top: 0.3rem;
}

.honeypot {
  position: absolute;
  left: -100vw;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: #b42318;
}

.fine-print {
  color: var(--muted);
  font-size: 0.9rem;
}

.faq-stack {
  display: grid;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: var(--space-5) 0;
  background: transparent;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  color: #29374f;
  font-size: 1.08rem;
  font-weight: 850;
  cursor: pointer;
}

.faq-item summary::after {
  content: "+";
  color: #29374f;
  font-size: 1.55rem;
  font-weight: 900;
}

.faq-item[open] summary::after {
  content: "-";
}

.trust-panel,
.cta-card {
  margin-top: var(--space-6);
}

.cta-card {
  display: grid;
  gap: var(--space-3);
}

.sponsored-listing {
  display: grid;
  gap: var(--space-3);
  align-items: center;
  margin-top: var(--space-4);
}

.sponsored-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: var(--space-2);
  padding: 0.1rem 0.45rem;
  border-radius: var(--radius);
  background: #fff4cc;
  color: #93610c;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ad-slot {
  display: grid;
  min-height: 5rem;
  place-items: center;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--surface-muted);
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
}

th,
td {
  border: 1px solid var(--border);
  padding: var(--space-3);
  text-align: left;
}

th {
  background: var(--surface-muted);
}

.article {
  max-width: 760px;
}

.article-card + .article-card {
  margin-top: var(--space-4);
}

.site-footer {
  border-top: 1px solid var(--border);
  color: var(--muted);
  background: #f8fafc;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-6) 0;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(28px);
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms ease;
}

.has-js .service-row-card.reveal,
.has-js .service-card.reveal,
.has-js .city-link.reveal,
.has-js .faq-item.reveal {
  transition-delay: var(--reveal-delay, 0ms);
}

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

  .has-js .reveal,
  .has-js .reveal.is-visible,
  .service-row-card,
  .service-card,
  .city-link,
  .hero-call-button {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (min-width: 780px) {
  .two-column {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  }

  .two-column > .lead-form {
    grid-row: span 2;
  }

  .sponsored-listing {
    grid-template-columns: 1fr auto auto;
  }
}

@media (max-width: 900px) {
  .service-strip {
    min-height: auto;
  }

  .strip-grid {
    padding: var(--space-3) 0;
  }

  .top-cta {
    min-height: 44px;
    padding: 0 var(--space-4);
    border-radius: var(--radius);
  }

  .nav-shell {
    transform: none;
    padding-bottom: var(--space-4);
  }

  .header-grid {
    grid-template-columns: 1fr auto;
    min-height: auto;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: var(--space-4);
  }

  .hero,
  .hero-center {
    min-height: 620px;
  }

  .hero-center {
    padding-top: 90px;
  }

  .hero h1 {
    font-size: 4.2rem;
  }

  .hero-subtitle {
    font-size: 1.75rem;
  }

  .hero-call-button {
    font-size: 1.35rem;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 1.25rem, 1180px);
  }

  .header-grid {
    padding: var(--space-4);
  }

  .brand {
    font-size: 0.96rem;
  }

  .brand-mark {
    width: 2.6rem;
  }

  .nav-actions {
    gap: var(--space-2);
  }

  .nav a {
    font-size: 0.94rem;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .hero-call-button {
    width: 100%;
    min-height: 62px;
    padding: 0 var(--space-5);
  }
}

@media print {
  .site-header,
  .site-footer,
  .lead-form,
  .button,
  .hero-call-button {
    display: none;
  }

  a {
    color: inherit;
  }
}
