:root {
  --navy-950: #0c2239;
  --navy-900: #102a46;
  --navy-800: #17375e;
  --navy-700: #214a78;
  --blue-gray: #5e7186;
  --slate-900: #26394b;
  --slate-700: #526579;
  --slate-500: #7e8da0;
  --mist: #f3f6f8;
  --mist-2: #eef3f6;
  --white: #ffffff;
  --amber: #f39a2d;
  --amber-dark: #d97912;
  --teal: #2a7781;
  --line: #dbe3ea;
  --shadow: 0 18px 50px rgba(16, 42, 70, 0.12);
  --shadow-soft: 0 8px 26px rgba(16, 42, 70, 0.09);
  --radius: 18px;
  --radius-small: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--slate-900);
  background: var(--white);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 820px;
}

.centered {
  text-align: center;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 999;
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy-900);
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(16, 42, 70, 0.1);
  backdrop-filter: blur(14px);
}

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

.brand {
  flex: 0 0 auto;
  width: 302px;
}

.brand img {
  width: 100%;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.desktop-nav a,
.footer-nav a {
  color: var(--navy-900);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 2px solid transparent;
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button:focus-visible,
.menu-toggle:focus-visible,
.desktop-nav a:focus-visible,
.mobile-nav a:focus-visible,
.text-link:focus-visible {
  outline: 3px solid rgba(243, 154, 45, 0.42);
  outline-offset: 3px;
}

.button-primary {
  color: var(--white);
  background: var(--amber);
  box-shadow: 0 10px 22px rgba(243, 154, 45, 0.25);
}

.button-primary:hover {
  background: var(--amber-dark);
  box-shadow: 0 14px 30px rgba(217, 121, 18, 0.26);
}

.button-secondary {
  color: var(--navy-900);
  background: var(--white);
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}

.button-secondary:hover {
  border-color: #bcc9d5;
}

.button-compact {
  min-height: 48px;
  padding-inline: 21px;
  font-size: 0.76rem;
}

.menu-toggle {
  width: 48px;
  height: 44px;
  display: none;
  border: 2px solid var(--navy-800);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  width: 21px;
  height: 2px;
  display: block;
  margin: 5px auto;
  background: var(--navy-800);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  padding: 8px 20px 22px;
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 20px 30px rgba(16, 42, 70, 0.12);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  display: block;
  padding: 14px 6px;
  color: var(--navy-900);
  border-bottom: 1px solid var(--line);
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.mobile-nav .mobile-call {
  color: var(--amber-dark);
  border-bottom: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 84px;
  background:
    radial-gradient(circle at 88% 15%, rgba(42, 119, 129, 0.11), transparent 24rem),
    linear-gradient(135deg, #f7f9fb 0%, #eef3f6 100%);
  border-bottom: 1px solid var(--line);
}

.hero::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -190px;
  width: 390px;
  height: 390px;
  border: 52px solid rgba(23, 55, 94, 0.035);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--amber-dark);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--navy-800);
  font-size: clamp(2.85rem, 5.3vw, 5.1rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 750px;
  margin: 30px 0 0;
  color: var(--slate-700);
  font-size: 1.16rem;
  line-height: 1.75;
}

.hero-location {
  margin: 14px 0 0;
  color: var(--navy-700);
  font-size: 0.95rem;
  font-weight: 700;
}

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

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 28px;
  color: var(--slate-700);
  font-size: 0.86rem;
}

.trust-line span {
  position: relative;
  padding-left: 18px;
}

.trust-line span::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--amber);
  font-size: 1.1rem;
}

.trust-line strong {
  color: var(--navy-800);
}

.hero-visual {
  position: relative;
  max-width: 520px;
  margin-left: auto;
}

.inspection-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  background: var(--white);
  border: 1px solid rgba(16, 42, 70, 0.12);
  border-top: 7px solid var(--teal);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.inspection-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.mini-mark {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--mist);
}

.mini-mark img {
  width: 38px;
}

.card-kicker {
  margin: 0 0 4px;
  color: var(--amber-dark);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.inspection-card h2 {
  margin: 0;
  color: var(--navy-800);
  font-size: 1.05rem;
  line-height: 1.35;
  text-transform: uppercase;
}

.card-copy {
  margin: 22px 0 18px;
  color: var(--slate-700);
  font-size: 0.92rem;
}

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

.check-list li {
  position: relative;
  padding-left: 27px;
  color: var(--navy-900);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--amber);
  border-radius: 50%;
  font-size: 0.68rem;
}

.inspection-illustration {
  margin: 22px -10px -16px;
}

.service-chip {
  position: absolute;
  right: -30px;
  bottom: -24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  color: var(--navy-800);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.chip-icon {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
}

.credibility-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

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

.credibility-grid article {
  min-height: 180px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 38px 34px;
  border-right: 1px solid var(--line);
}

.credibility-grid article:first-child {
  border-left: 1px solid var(--line);
}

.credibility-grid .number {
  color: var(--amber);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.credibility-grid h2 {
  margin: 0 0 9px;
  color: var(--navy-800);
  font-size: 1rem;
  line-height: 1.35;
  text-transform: uppercase;
}

.credibility-grid p {
  margin: 0;
  color: var(--slate-700);
  font-size: 0.96rem;
  line-height: 1.7;
}

.intro-section {
  padding: 64px 0;
}

.section {
  padding: 96px 0;
}

.section-soft {
  background: var(--mist);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 46px;
}

.section-title {
  margin: 0;
  color: var(--navy-800);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.section-title.left {
  font-size: clamp(1.85rem, 3vw, 2.7rem);
}

.section-intro {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--slate-700);
  font-size: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 262px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  box-shadow: 0 8px 24px rgba(16, 42, 70, 0.055);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #bfcbd6;
  box-shadow: 0 16px 34px rgba(16, 42, 70, 0.1);
}

.service-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 900;
}

.service-card:nth-child(even) .service-icon {
  background: var(--amber);
}

.service-card h3 {
  margin: 22px 0 12px;
  color: var(--navy-800);
  font-size: 1rem;
  line-height: 1.35;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
  color: #445a70;
  font-size: 0.96rem;
  line-height: 1.7;
}

.process-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  color: var(--white);
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    var(--navy-800);
  background-size: 40px 40px;
}

.process-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -220px;
  width: 520px;
  height: 520px;
  transform: translateX(-50%);
  border: 70px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
}

.light .section-title,
.light .section-intro {
  color: var(--white);
}

.eyebrow-light {
  color: #ffd19b;
}

.process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.process-step {
  position: relative;
  padding-top: 74px;
}

.process-step::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 52px;
  right: -28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.process-step:last-child::before {
  display: none;
}

.process-step > span {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  font-weight: 900;
}

.process-step h3 {
  margin: 0 0 12px;
  font-size: 0.98rem;
  text-transform: uppercase;
}

.process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.94rem;
  line-height: 1.7;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.feature-panel {
  padding: 46px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.feature-panel-accent {
  background:
    linear-gradient(135deg, rgba(42, 119, 129, 0.085), transparent 48%),
    var(--white);
  border-top: 6px solid var(--teal);
}

.feature-panel p {
  color: #445a70;
  font-size: 0.98rem;
  line-height: 1.72;
}

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

.detail-list li {
  position: relative;
  padding-left: 28px;
  color: var(--navy-900);
  font-size: 0.91rem;
  font-weight: 700;
}

.detail-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--amber-dark);
  font-weight: 900;
}

.client-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 26px 0;
}

.client-grid span {
  padding: 12px 14px;
  color: var(--navy-900);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 9px;
  font-size: 0.82rem;
  font-weight: 800;
}

.closing-note {
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  color: var(--amber-dark);
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

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

.county-grid article {
  min-height: 170px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 24px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  box-shadow: 0 7px 20px rgba(16, 42, 70, 0.05);
}

.county-grid span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: var(--white);
  background: var(--navy-800);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 900;
}

.county-grid article:nth-child(even) span {
  background: var(--teal);
}

.county-grid h3 {
  margin: 0;
  color: var(--navy-800);
  font-size: 0.9rem;
  line-height: 1.35;
  text-transform: uppercase;
}

.availability-note {
  max-width: 800px;
  margin: 28px auto 0;
  color: #445a70;
  font-size: 0.95rem;
  text-align: center;
}

.limitations-section {
  padding: 84px 0;
}

.limitations-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.limitations-copy {
  padding: 34px;
  background: var(--mist);
  border-left: 5px solid var(--amber);
  border-radius: 0 var(--radius-small) var(--radius-small) 0;
}

.scope-block + .scope-block {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.scope-block h3 {
  margin: 0 0 8px;
  color: var(--navy-800);
  font-size: 0.88rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.limitations-copy p {
  margin: 0;
  color: #445a70;
  font-size: 0.98rem;
  line-height: 1.72;
}

.contact-section {
  padding: 0 0 96px;
  background: var(--white);
}

.contact-card {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 52px;
  padding: 58px;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 0%, rgba(42, 119, 129, 0.55), transparent 22rem),
    var(--navy-800);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.contact-copy h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.contact-copy p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.8);
}

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

.button-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.button-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--white);
}

.contact-details {
  align-self: stretch;
  padding: 30px;
  color: var(--navy-900);
  background: var(--white);
  border-radius: 16px;
}

.contact-mark {
  width: 54px;
  margin-bottom: 18px;
}

.contact-details h3 {
  margin: 0 0 8px;
  color: var(--navy-800);
  text-transform: uppercase;
}

.contact-details p {
  margin: 4px 0;
  color: var(--slate-700);
}

.service-area-small {
  padding: 12px 0 18px;
  border-bottom: 1px solid var(--line);
  font-size: 0.86rem;
}

.contact-details a {
  display: block;
  margin-top: 13px;
  color: var(--teal);
  font-size: 0.98rem;
  font-weight: 800;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.site-footer {
  padding: 58px 0 26px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy-950);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.65fr 0.95fr;
  gap: 54px;
  padding-bottom: 38px;
}

.footer-brand img {
  width: 250px;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.footer-brand p {
  max-width: 520px;
  margin: 20px 0 0;
  font-size: 0.88rem;
}

.footer-nav {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
  font-size: 0.88rem;
}

.footer-contact strong {
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  line-height: 1.65;
}

.footer-bottom p {
  margin: 0;
}

.footer-disclaimer {
  text-align: right;
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a {
    font-size: 0.7rem;
  }

  .brand {
    width: 260px;
  }

  .hero-grid {
    gap: 40px;
  }

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

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

  .county-grid article:last-child {
    grid-column: 2;
  }
}

@media (max-width: 880px) {
  .header-inner {
    min-height: 76px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .button-compact {
    display: none;
  }

  .brand {
    width: 255px;
  }

  .hero {
    padding: 68px 0 76px;
  }

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

  .hero-visual {
    width: 100%;
    max-width: 620px;
    margin: 12px auto 0;
  }

  .service-chip {
    right: 18px;
  }

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

  .credibility-grid article,
  .credibility-grid article:first-child {
    min-height: 0;
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

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

  .process-step:nth-child(2)::before {
    display: none;
  }

  .split-grid,
  .limitations-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 46px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  html {
    scroll-padding-top: 74px;
  }

  .header-inner {
    min-height: 72px;
    gap: 12px;
  }

  .brand {
    width: 215px;
  }

  .menu-toggle {
    width: 46px;
    height: 42px;
  }

  .hero {
    padding: 52px 0 62px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.6rem);
    line-height: 1.01;
  }

  .hero-lead {
    font-size: 1.02rem;
    line-height: 1.68;
  }

  .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    min-height: 58px;
  }

  .trust-line {
    display: grid;
    gap: 10px;
  }

  .inspection-card {
    padding: 22px;
  }

  .inspection-card-top {
    align-items: flex-start;
  }

  .service-chip {
    position: static;
    width: fit-content;
    margin: 16px auto 0;
  }

  .credibility-grid article {
    padding: 28px 22px;
  }

  .intro-section,
  .section,
  .process-section,
  .limitations-section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 2.05rem;
  }

  .services-grid,
  .process-grid,
  .client-grid,
  .county-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .process-step::before {
    display: none;
  }

  .county-grid article:last-child {
    grid-column: auto;
  }

  .feature-panel {
    padding: 28px;
  }

  .limitations-grid {
    gap: 30px;
  }

  .limitations-copy {
    padding: 26px;
  }

  .contact-section {
    padding-bottom: 70px;
  }

  .contact-card {
    padding: 32px 24px;
    border-radius: 18px;
  }

  .contact-copy h2 {
    font-size: 2.2rem;
  }

  .contact-details {
    padding: 24px;
  }

  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-disclaimer {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .brand {
    width: 190px;
  }

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

  .eyebrow {
    font-size: 0.67rem;
  }

  .inspection-card h2 {
    font-size: 0.92rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.header-inner {
  min-height: 88px;
  gap: 26px;
}

.brand {
  width: 292px;
  display: flex;
  align-items: center;
  padding-block: 7px;
  overflow: visible;
}

.brand img {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.desktop-nav {
  gap: 27px;
}

.button-compact {
  min-height: 46px;
  padding-inline: 20px;
}

.card-copy,
.credibility-grid p {
  color: #445a70;
  font-size: 0.96rem;
  line-height: 1.7;
}

.section-intro {
  color: #445a70;
  font-size: 1.04rem;
  line-height: 1.72;
}

.service-card p {
  color: #3f566d;
  font-size: 1rem;
  line-height: 1.72;
}

.process-step p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  line-height: 1.72;
}

.detail-list li {
  font-size: 0.95rem;
  line-height: 1.6;
}

.client-grid span {
  font-size: 0.86rem;
  line-height: 1.45;
}

.availability-note,
.service-area-small {
  color: #445a70;
  font-size: 0.97rem;
  line-height: 1.65;
}

.contact-links {
  display: grid;
  gap: 11px;
  margin-top: 20px;
}

.contact-details .contact-link {
  display: block;
  margin-top: 0;
  padding: 13px 14px;
  color: var(--navy-900);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 10px;
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.contact-details .contact-link:hover {
  transform: translateY(-1px);
  background: #f8fafb;
  border-color: #b9c8d4;
}

.contact-link span {
  display: block;
  color: var(--slate-700);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-link strong {
  display: block;
  margin-top: 3px;
  color: var(--teal);
  font-size: 0.99rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.site-footer {
  color: rgba(255, 255, 255, 0.84);
}

.footer-brand img {
  width: 268px;
  filter: none;
  opacity: 1;
}

.footer-brand p {
  font-size: 0.94rem;
  line-height: 1.72;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
}

.footer-contact {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.93rem;
  line-height: 1.6;
}

.footer-contact a {
  color: #ffffff;
  font-weight: 700;
}

.footer-bottom {
  font-size: 0.83rem;
  line-height: 1.68;
}

.footer-disclaimer {
  max-width: 920px;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 1080px) {
  .brand {
    width: 254px;
  }

  .desktop-nav {
    gap: 16px;
  }

  .desktop-nav a {
    font-size: 0.73rem;
  }
}

@media (max-width: 880px) {
  .header-inner {
    min-height: 78px;
  }

  .brand {
    width: 246px;
    padding-block: 5px;
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 74px;
  }

  .brand {
    width: 210px;
  }

  .service-card p,
  .process-step p,
  .section-intro {
    font-size: 0.99rem;
  }

  .footer-brand p,
  .footer-contact {
    font-size: 0.91rem;
  }

  .footer-bottom {
    font-size: 0.8rem;
  }
}

@media (max-width: 420px) {
  .brand {
    width: 188px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  html {
    scroll-padding-top: 78px;
  }

  body {
    font-size: 16px;
  }

  .hero {
    padding: 44px 0 50px;
  }

  .hero-lead {
    font-size: 1rem;
    line-height: 1.68;
  }

  .hero-location {
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .button-row {
    margin-top: 24px;
    gap: 11px;
  }

  .button {
    min-height: 54px;
    padding-inline: 18px;
  }

  .trust-line {
    margin-top: 22px;
    gap: 8px;
  }

  .inspection-card {
    padding: 20px;
  }

  .inspection-card-top {
    padding-bottom: 17px;
  }

  .card-copy {
    margin: 18px 0 15px;
    font-size: 0.97rem;
    line-height: 1.68;
  }

  .check-list {
    gap: 9px;
  }

  .check-list li {
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .inspection-illustration {
    margin-top: 18px;
  }

  .credibility-grid article {
    padding: 23px 19px;
    gap: 15px;
  }

  .credibility-grid h2 {
    margin-bottom: 6px;
  }

  .intro-section {
    padding: 52px 0;
  }

  .section,
  .process-section,
  .limitations-section {
    padding: 58px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-intro {
    margin-top: 14px;
    font-size: 1rem;
    line-height: 1.68;
  }

  .services-grid {
    gap: 13px;
  }

  .service-card {
    padding: 22px;
  }

  .service-card h3 {
    margin: 17px 0 9px;
  }

  .service-card p {
    font-size: 1rem;
    line-height: 1.68;
  }

  .process-grid {
    gap: 25px;
  }

  .process-step {
    padding-top: 59px;
  }

  .process-step p {
    font-size: 1rem;
    line-height: 1.68;
  }

  .split-grid {
    gap: 22px;
  }

  .feature-panel {
    padding: 24px;
  }

  .feature-panel p {
    font-size: 1rem;
    line-height: 1.68;
  }

  .detail-list {
    gap: 10px;
    margin-top: 23px;
  }

  .detail-list li {
    font-size: 0.96rem;
  }

  .client-grid {
    gap: 9px;
  }

  .client-grid span {
    padding: 10px 12px;
    font-size: 0.86rem;
  }

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

  .county-grid article {
    min-height: 138px;
    padding: 17px 10px;
  }

  .county-grid article:last-child {
    grid-column: 1 / -1;
    min-height: 122px;
  }

  .county-grid span {
    width: 46px;
    height: 46px;
    margin-bottom: 12px;
  }

  .county-grid h3 {
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .availability-note {
    margin-top: 22px;
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .limitations-grid {
    gap: 24px;
  }

  .limitations-copy {
    padding: 22px;
  }

  .scope-block + .scope-block {
    margin-top: 19px;
    padding-top: 18px;
  }

  .limitations-copy p {
    font-size: 1rem;
    line-height: 1.68;
  }

  .contact-section {
    padding-bottom: 58px;
  }

  .contact-card {
    gap: 28px;
    padding: 28px 20px;
  }

  .contact-copy p {
    line-height: 1.68;
  }

  .contact-details {
    padding: 21px;
  }

  .contact-details .contact-link {
    padding: 12px;
  }

  .contact-link strong {
    font-size: 0.96rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .site-footer {
    padding: 46px 0 22px;
  }

  .footer-top {
    gap: 30px;
    padding-bottom: 30px;
  }

  .footer-brand p,
  .footer-contact {
    font-size: 0.94rem;
    line-height: 1.68;
  }

  .footer-bottom {
    gap: 16px;
    padding-top: 20px;
    font-size: 0.94rem;
    line-height: 1.65;
  }
}

@media (max-width: 360px) {
  .brand {
    width: 176px;
  }

  .menu-toggle {
    width: 44px;
  }

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

  .contact-link strong {
    font-size: 0.94rem;
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 88px;
    gap: 16px;
  }

  .brand {
    width: 240px;
    max-width: calc(100% - 62px);
    height: 76px;
    padding: 0;
    overflow: hidden;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
  }

  .brand img {
    width: 163%;
    max-width: none;
    height: auto;
    flex: 0 0 auto;
    margin: 0;
    transform: none;
    clip-path: none;
  }
}

@media (max-width: 420px) {
  .brand {
    width: 230px;
    height: 74px;
  }
}

@media (max-width: 360px) {
  .header-inner {
    gap: 12px;
  }

  .brand {
    width: 210px;
    max-width: calc(100% - 56px);
    height: 70px;
  }
}

/* Full-width coverage map */
.coverage-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.coverage-map-container {
  max-width: 1180px;
}

.coverage-map-link {
  display: block;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.coverage-map-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.coverage-map-link:focus-visible {
  outline: 3px solid rgba(243, 154, 45, 0.42);
  outline-offset: 4px;
}

.coverage-map-image {
  display: block;
  width: 100%;
  height: auto;
}

.coverage-map-mobile {
  display: none;
}

@media (max-width: 640px) {
  .coverage-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .coverage-section .container {
    width: min(calc(100% - 16px), var(--container));
  }

  .coverage-map-container {
    max-width: 520px;
  }

  .coverage-map-desktop {
    display: none;
  }

  .coverage-map-mobile {
    display: block;
  }

  .coverage-map-link {
    border-radius: 12px;
  }
}
