@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/inter-latin-var.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/inter-latin-italic.woff2") format("woff2");
}

@font-face {
  font-family: "Noto Serif";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/noto-serif-latin-400.woff2") format("woff2");
}

@font-face {
  font-family: "Noto Serif";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/noto-serif-latin-400-italic.woff2") format("woff2");
}

:root {
  --navy: #0b2443;
  --navy-deep: #06182f;
  --blue: #1f5ca8;
  --blue-dark: #16447f;
  --red: #c83b43;
  --red-dark: #a72b36;
  --red-soft: #ef8b83;
  --gold: #f2ba4a;
  --white: #ffffff;
  --paper: #f4f6f8;
  --paper-warm: #fbfaf7;
  --ink: #122238;
  --ink-soft: #536176;
  --line: #d8e0e9;
  --line-dark: rgba(255, 255, 255, 0.19);
  --display: "Noto Serif", serif;
  --body: "Inter", sans-serif;
  --utility: var(--body);
  --type-section-title: clamp(2.5rem, 3.6vw, 4.25rem);
  --type-card-title: clamp(1.9rem, 2.3vw, 2.5rem);
  --shell: min(calc(100% - 96px), 1240px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper-warm);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.4;
  text-rendering: optimizeLegibility;
}

body,
button,
input {
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 16px;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 0.75rem;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

/* Header */

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 5px 24px rgba(6, 24, 47, 0.06);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: grid;
  min-height: 78px;
  grid-template-columns: 208px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.brand-logo-frame {
  display: inline-grid;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  place-items: center;
}

.brand-logo-frame img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand-name {
  display: grid;
  gap: 2px;
  color: var(--navy);
  font-family: var(--body);
  line-height: 1;
  white-space: nowrap;
}

.brand-name strong {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-name > span {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 1.2vw, 18px);
}

.main-nav > a {
  position: relative;
  padding-block: 8px;
  color: var(--navy);
  font-size: clamp(0.82rem, 0.85vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.main-nav > a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-dropdown {
  position: relative;
  flex: 0 0 auto;
}

.main-nav .nav-dropdown-toggle {
  position: relative;
  border: 0;
  padding: 8px 0;
  background: transparent;
  color: var(--navy);
  font-family: var(--body);
  font-size: clamp(0.82rem, 0.85vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.main-nav .nav-dropdown-toggle::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav .nav-dropdown-toggle:hover::after,
.main-nav .nav-dropdown-toggle:focus-visible::after,
.nav-dropdown.is-open .nav-dropdown-toggle::after {
  transform: scaleX(1);
  transform-origin: left;
}

@media (min-width: 1181px) {
  .main-nav .nav-dropdown::before {
    position: absolute;
    z-index: 59;
    top: 100%;
    left: 50%;
    width: min(390px, calc(100vw - 48px));
    height: 13px;
    content: "";
    transform: translateX(-50%);
  }
}

.nav-dropdown-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  position: absolute;
  z-index: 60;
  top: calc(100% + 13px);
  left: 50%;
  width: min(390px, calc(100vw - 48px));
  gap: 0;
  transform: translateX(-50%);
  border: 1px solid var(--line);
  padding: 8px;
  background: var(--white);
  box-shadow: 0 18px 38px rgba(6, 24, 47, 0.16);
}

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

.nav-dropdown-menu a {
  display: block;
  border-bottom: 1px solid var(--line);
  padding: 11px 12px;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
}

.nav-dropdown-menu a:first-child {
  grid-column: 1 / -1;
  border-bottom-color: var(--navy);
}

.nav-dropdown-menu a:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: var(--paper-warm);
  color: var(--red-dark);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  grid-template-rows: repeat(3, 1.5px);
  place-content: center;
  gap: 4px;
  border: 1px solid var(--navy);
  padding: 0;
  background: transparent;
  color: var(--navy);
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: var(--navy);
  color: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), opacity 140ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(5.5px) rotate(45deg);
}

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

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-5.5px) rotate(-45deg);
}

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

.mobile-nav:not([hidden]) {
  display: grid;
  gap: 0;
  padding-block: 6px 12px;
  border-top: 1px solid var(--line);
  animation: mobile-nav-in 180ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.mobile-nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

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

.mobile-nav .nav-dropdown {
  display: grid;
}

.mobile-nav .nav-dropdown-toggle {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  background: transparent;
  color: var(--navy);
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: left;
}

.mobile-nav .nav-dropdown-toggle:hover,
.mobile-nav .nav-dropdown-toggle:focus-visible,
.mobile-nav .nav-dropdown.is-open .nav-dropdown-toggle {
  color: var(--red);
}

.mobile-nav .nav-dropdown-menu {
  display: grid;
  position: static;
  grid-template-columns: 1fr;
  width: auto;
  transform: none;
  border: 0;
  padding: 0 0 6px 14px;
  background: transparent;
  box-shadow: none;
}

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

.mobile-nav .nav-dropdown-menu a,
.mobile-nav .nav-dropdown-menu a:first-child,
.mobile-nav .nav-dropdown-menu a:nth-last-child(-n + 2) {
  border-bottom: 1px solid var(--line);
  padding: 11px 0;
  font-size: 0.82rem;
  font-weight: 600;
}

.mobile-nav .nav-dropdown-menu a:last-child {
  border-bottom: 0;
}

@keyframes mobile-nav-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-actions {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.header-actions > * {
  flex-shrink: 0;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  border: 1px solid var(--navy);
  padding: 10px 13px;
  color: var(--navy);
  font-family: var(--body);
  font-size: 0.88rem;
  letter-spacing: 0;
  white-space: nowrap;
}

.header-phone svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.header-phone strong {
  font-weight: 700;
}

.header-phone:hover,
.header-phone:focus-visible {
  background: var(--navy);
  color: var(--white);
}

.hero-phone {
  border-color: #dbe7f4;
  color: var(--white);
}

.hero-phone:hover,
.hero-phone:focus-visible {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 13px 18px 12px;
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  text-transform: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-red {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

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

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

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

.button-outline {
  border-color: var(--white);
  color: var(--white);
}

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

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

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

/* Hero */

.hero {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 11% 15%, rgba(31, 92, 168, 0.34), transparent 29%);
  content: "";
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.78fr);
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: clamp(48px, 5vw, 78px);
  row-gap: clamp(34px, 6vh, 52px);
  min-height: calc(100svh - 80px);
  padding-block: clamp(34px, 6vh, 52px) 0;
}

.hero-copy {
  max-width: 660px;
  align-self: center;
}

.hero-eyebrow {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
}

.hero-eyebrow .review-stars {
  font-size: 1.12rem;
}

.hero-eyebrow-count {
  color: inherit;
}

.hero-eyebrow:hover,
.hero-eyebrow:focus-visible {
  color: var(--gold);
}

.hero-eyebrow-logo {
  width: 98px;
  height: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  max-width: 640px;
  margin-bottom: 28px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(3.1rem, 4vw, 4.6rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.92;
}

h1 em,
h2 em {
  color: var(--red-soft);
  font-style: normal;
}

h1 em {
  color: var(--white);
}

h1 > span,
h1 > em {
  display: block;
}

.hero-lede {
  max-width: 560px;
  margin-bottom: 32px;
  color: #c5d4e6;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
  margin-bottom: 41px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
  font-family: var(--body);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.text-link-light {
  color: #dbe7f4;
}

.text-link-ink {
  color: var(--navy);
}

.hero-coverage {
  max-width: 530px;
  margin: 0;
  padding: 2px 0;
  color: #aebfd3;
  font-size: 0.82rem;
  line-height: 1.7;
}

/* Inspection form */

.hero-form-wrap {
  position: relative;
  width: 100%;
  max-width: 500px;
  align-self: center;
  justify-self: end;
  scroll-margin-top: 116px;
}

.inspection-form-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(6, 24, 47, 0.22);
  color: var(--ink);
}

.inspection-form {
  display: grid;
  gap: 8px;
  padding: 20px 28px 16px;
}

.form-heading {
  margin-bottom: 0;
}

.form-heading h2 {
  max-width: 350px;
  margin-bottom: 7px;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(2rem, 2.4vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.94;
}

.form-heading > p:last-child {
  max-width: 390px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
  line-height: 1.45;
}

.inspection-form label {
  display: grid;
  gap: 4px;
  color: var(--navy);
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.inspection-form input {
  width: 100%;
  min-height: 44px;
  border: 1px solid #c6d0dc;
  border-radius: 2px;
  outline: 0;
  padding: 10px 12px;
  background: var(--paper-warm);
  color: var(--ink);
  font-family: var(--body);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.inspection-form input::placeholder {
  color: #8a96a5;
  opacity: 1;
}

.inspection-form input:hover {
  border-color: #8c9db1;
}

.inspection-form input:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(31, 92, 168, 0.13);
}

.form-submit {
  width: 100%;
  min-height: 44px;
  margin-top: 2px;
  padding: 11px 14px 10px;
  font-size: 0.84rem;
}

.form-note {
  max-width: 390px;
  margin: 0;
  color: #778394;
  font-size: 0.65rem;
  line-height: 1.35;
}

/* Proof strip */

.proof-strip {
  grid-column: 1 / -1;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  border-top: 1px solid var(--line-dark);
}

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

.proof-card {
  position: relative;
  display: flex;
  min-height: 104px;
  align-items: center;
  gap: 12px;
  border-right: 1px solid var(--line-dark);
  padding: 16px 22px;
}

.proof-card:first-child {
  border-left: 1px solid var(--line-dark);
}

a.proof-card:hover,
a.proof-card:focus-visible {
  background: rgba(255, 255, 255, 0.06);
}

.proof-icon {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--red-soft);
  color: var(--red-soft);
}

.proof-star {
  border-radius: 50%;
}

.proof-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.proof-badge {
  border-radius: 50%;
  font-family: var(--display);
  font-size: 1.05rem;
  font-style: italic;
}

.proof-pin {
  border: 1px solid var(--red-soft);
  border-radius: 50%;
  color: var(--gold);
}

.proof-pin svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.proof-copy {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.proof-kicker {
  color: var(--red-soft);
  font-family: var(--body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-copy strong {
  color: var(--white);
  font-family: var(--body);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.proof-copy > span:last-child {
  color: #b9c9dc;
  font-size: 0.68rem;
  line-height: 1.35;
}

/* Shared sections */

.section {
  padding-block: clamp(92px, 10vw, 150px);
}

.services {
  background-color: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.52fr);
  align-items: end;
  gap: 56px;
  margin-bottom: 57px;
}

.section-heading h2,
.area-copy h2,
.contact-copy h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-family: var(--display);
  font-size: var(--type-section-title);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.88;
}

.section-heading h2 em,
.area-copy h2 em,
.contact-copy h2 em {
  color: var(--red);
}

.section-intro {
  max-width: 380px;
  margin: 0 0 4px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.75;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--navy);
  border-bottom: 1px solid var(--navy);
}

.service-card {
  position: relative;
  min-height: 375px;
  overflow: hidden;
  border-right: 1px solid var(--navy);
  padding: 28px 28px 31px;
}

.service-card:last-child {
  border-right: 0;
}

.service-card-red {
  background: var(--red);
  color: var(--white);
}

.service-card-red .card-topline span:last-child,
.service-card-red.service-card p {
  opacity: 1;
}

.service-card-blue {
  background: var(--navy);
  color: var(--white);
}

.service-card-white {
  background: var(--white);
  color: var(--navy);
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 74px;
  font-family: var(--utility);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.card-topline span:first-child {
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0;
}

.card-topline span:last-child {
  opacity: 0.7;
}

.service-card h3 {
  max-width: 260px;
  margin-bottom: 16px;
  font-family: var(--display);
  font-size: var(--type-card-title);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.91;
}

.service-card p {
  max-width: 330px;
  margin-bottom: 22px;
  font-size: 0.86rem;
  line-height: 1.7;
  opacity: 0.78;
}

.card-link {
  position: absolute;
  bottom: 30px;
  left: 28px;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.scope-row {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 28px;
  padding-top: 28px;
}

.scope-label {
  margin: 0;
  color: var(--red-dark);
  font-family: var(--utility);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.scope-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.scope-list span {
  border: 1px solid var(--line);
  padding: 8px 12px 7px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 600;
}

.service-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 54px;
}

.service-photo-grid-balanced {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.service-photo-grid-balanced .service-photo {
  grid-column: span 2;
}

.service-photo-grid-balanced .service-photo:nth-last-child(2) {
  grid-column: 2 / span 2;
}

.service-photo-grid-balanced .service-photo:last-child {
  grid-column: 4 / span 2;
}

.service-photo {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
}

.service-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.55;
  object-fit: cover;
}

.service-photo figcaption {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 6px 8px 5px;
  background: rgba(6, 24, 47, 0.88);
  color: var(--white);
  font-family: var(--utility);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
}

/* Process */

.process-section {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.process-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(420px, 1fr);
  gap: clamp(70px, 10vw, 160px);
  padding-block: clamp(96px, 11vw, 150px);
}

.process-aside h2 {
  max-width: 570px;
  margin-bottom: 25px;
  font-family: var(--display);
  font-size: var(--type-section-title);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.88;
}

.process-aside h2 em {
  color: var(--red-soft);
}

.process-aside > p {
  max-width: 390px;
  margin-bottom: 32px;
  color: #bdccdd;
  font-size: 0.91rem;
  line-height: 1.75;
}

.process-photo {
  max-width: 430px;
  margin: 48px 0 0;
}

.process-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.5;
  object-fit: cover;
}

.process-photo figcaption {
  margin-top: 10px;
  color: #a8b9cd;
  font-size: 0.68rem;
  line-height: 1.4;
}

.process-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-steps li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 22px;
  padding: 31px 0 35px;
  border-top: 1px solid var(--line-dark);
}

.process-steps li:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.step-number {
  color: var(--gold);
  font-family: var(--display);
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 0.9;
}

.process-steps h3 {
  margin-bottom: 9px;
  font-family: var(--utility);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1;
  text-transform: none;
}

.process-steps p {
  max-width: 370px;
  margin: 0;
  color: #a8b9cd;
  font-size: 0.85rem;
  line-height: 1.65;
}

/* Reviews */

.reviews-section {
  overflow: hidden;
  background: var(--paper-warm);
  padding-block: clamp(92px, 10vw, 150px);
}

.reviews-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 48px;
  margin-bottom: 50px;
}

.reviews-heading-copy {
  max-width: 700px;
}

.reviews-heading h2 {
  max-width: 680px;
  margin: 0 0 23px;
  color: var(--navy);
  font-family: var(--display);
  font-size: var(--type-section-title);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.88;
}

.reviews-heading-copy > p:last-child {
  max-width: 560px;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.reviews-heading-side {
  display: grid;
  grid-template-columns: auto auto;
  align-items: end;
  gap: 28px;
  padding-bottom: 2px;
}

.reviews-summary {
  display: grid;
  min-width: 248px;
  align-content: end;
}

.reviews-summary-brand {
  display: flex;
  min-height: 18px;
  align-items: center;
}

.reviews-summary-brand img {
  width: 98px;
  height: 18px;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

.reviews-summary-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
}

.reviews-summary-rating .review-stars {
  font-size: 1.13rem;
}

.reviews-summary-rating strong {
  color: var(--navy);
  font-family: var(--body);
  font-size: 1.13rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.reviews-summary-count {
  margin-top: 11px;
  color: var(--ink-soft);
  font-family: var(--body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.reviews-source {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin-top: 15px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
}

.reviews-source:hover,
.reviews-source:focus-visible {
  color: var(--red-dark);
}

.reviews-controls {
  display: flex;
  gap: 10px;
}

.review-control {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--navy);
  padding: 0;
  background: var(--white);
  color: var(--navy);
  transition: background-color 180ms ease, color 180ms ease, opacity 180ms ease;
}

.review-control svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.review-control:hover:not(:disabled),
.review-control:focus-visible:not(:disabled) {
  background: var(--navy);
  color: var(--white);
}

.review-control:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.review-control:focus-visible,
.reviews-rail:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 5px;
}

.reviews-rail {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 5px 2px 19px;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--navy) var(--line);
  scrollbar-width: thin;
}

.review-card {
  display: flex;
  min-height: 360px;
  flex: 0 0 calc((100% - 32px) / 3);
  flex-direction: column;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  padding: 25px 25px 28px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(6, 24, 47, 0.08);
}

.review-card-top {
  display: grid;
  grid-template-columns: 45px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  display: inline-grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--utility);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.review-card-author {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.review-card-author strong {
  overflow-wrap: anywhere;
  color: var(--navy);
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.2;
}

.review-card-author span {
  color: var(--ink-soft);
  font-size: 0.68rem;
  line-height: 1.3;
}

.review-google-mark {
  display: block;
  width: 98px;
  height: 18px;
  max-width: 100%;
  object-fit: contain;
  object-position: right center;
}

.review-card-rating {
  margin-top: 30px;
}

.review-stars {
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  line-height: 1;
}

.review-card blockquote {
  flex: 1;
  margin: 20px 0 0;
  color: var(--ink);
  font-size: 0.91rem;
  line-height: 1.7;
}

.reviews-note {
  margin: 25px 0 0;
  color: var(--ink-soft);
  font-size: 0.7rem;
  line-height: 1.5;
  text-align: center;
}

/* Frequently asked questions */

.faq-section {
  background: var(--paper-warm);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: clamp(50px, 10vw, 150px);
}

.faq-intro h2 {
  max-width: 510px;
  margin-bottom: 25px;
  color: var(--navy);
  font-family: var(--display);
  font-size: var(--type-section-title);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.88;
}

.faq-intro > p {
  max-width: 380px;
  margin-bottom: 28px;
  color: var(--ink-soft);
  line-height: 1.75;
}

.faq-list {
  border-top: 1px solid var(--navy);
}

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

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px 0;
  color: var(--navy);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  background:
    linear-gradient(var(--red), var(--red)) center / 100% 1px no-repeat,
    linear-gradient(var(--red), var(--red)) center / 1px 100% no-repeat;
  content: "";
}

.faq-item[open] summary::after {
  background-size: 100% 1px, 0 0;
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 5px;
}

.faq-item p {
  max-width: 68ch;
  margin: 0;
  padding: 0 44px 24px 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Service area */

.area-section {
  background: var(--white);
}

.area-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: clamp(50px, 10vw, 150px);
}

.area-copy h2 {
  margin-bottom: 26px;
}

.area-copy > p {
  max-width: 390px;
  margin-bottom: 28px;
  color: var(--ink-soft);
  line-height: 1.75;
}

.area-map {
  position: relative;
  height: clamp(370px, 32vw, 460px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}

.area-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.area-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 50px auto 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
}

.area-cities li {
  list-style: none;
  border: 1px solid var(--line);
  padding: 8px 13px 7px;
  color: var(--ink-soft);
  font-family: var(--utility);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.area-cities a:hover,
.area-cities a:focus-visible {
  color: var(--red-dark);
}

/* About */

.about-section {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.about-layout {
  position: relative;
  display: grid;
  grid-template-columns: 180px minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(32px, 3.5vw, 56px);
  padding-block: clamp(90px, 11vw, 150px);
}

.about-stamp {
  display: grid;
  width: 180px;
  height: 180px;
  place-items: center;
  align-content: center;
  gap: 10px;
  border: 1px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  transform: rotate(-11deg);
}

.about-stamp::before {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(200, 59, 67, 0.6);
  border-radius: inherit;
  content: "";
}

.about-stamp-wordmark {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.about-stamp-wordmark text {
  fill: var(--red);
  font-family: var(--utility);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
}

.about-stamp img {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.about-stamp small {
  font-family: var(--utility);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.about-photo {
  min-width: 0;
  margin: 0;
}

.about-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 42%;
}

.about-photo figcaption {
  margin-top: 11px;
  color: var(--ink-soft);
  font-family: var(--utility);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.about-copy h2 {
  max-width: 740px;
  margin-bottom: 28px;
  color: var(--navy);
  font-family: var(--display);
  font-size: var(--type-section-title);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.88;
}

.about-copy h2 em {
  color: var(--red);
}

.about-copy > p {
  max-width: 620px;
  margin-bottom: 42px;
  color: var(--ink-soft);
  line-height: 1.8;
}

.about-facts {
  display: grid;
  max-width: 100%;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.about-facts div {
  display: grid;
  min-width: 0;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 12px;
  padding-top: 16px;
}

.about-facts strong {
  white-space: nowrap;
  color: var(--red);
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 400;
}

.about-facts span {
  min-width: 0;
  color: var(--ink-soft);
  font-family: var(--utility);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

/* Contact */

.contact-section {
  background: var(--paper-warm);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.75fr);
  align-items: center;
  gap: clamp(50px, 12vw, 190px);
  padding-block: clamp(90px, 12vw, 160px);
}

.contact-copy h2 {
  margin-bottom: 26px;
}

.contact-copy > p {
  max-width: 390px;
  margin-bottom: 27px;
  color: var(--ink-soft);
  line-height: 1.75;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
}

.contact-card {
  position: relative;
  border: 1px solid var(--navy);
  border-right: 0;
  border-bottom: 0;
  padding: 10px 28px 22px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(6, 24, 47, 0.13);
}

.contact-card-row {
  display: grid;
  gap: 6px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.contact-card-row:last-child {
  border-bottom: 0;
}

.contact-label {
  color: var(--red-dark);
  font-family: var(--utility);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-card-row a,
.contact-card-row strong {
  color: var(--navy);
  font-family: var(--body);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.contact-card-row a {
  display: inline-flex;
  align-items: center;
}

.contact-card-row a:hover,
.contact-card-row a:focus-visible {
  color: var(--red-dark);
}

.contact-card-row > span:last-child {
  color: var(--ink-soft);
  font-size: 0.76rem;
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--navy-deep);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(118px, 0.68fr) minmax(190px, 0.95fr) minmax(230px, 1.1fr);
  gap: clamp(28px, 4vw, 68px);
  padding-block: 58px 54px;
}

.footer-main > * {
  min-width: 0;
}

.footer-service-areas {
  display: grid;
  grid-template-columns: minmax(210px, 0.72fr) minmax(0, 2fr);
  align-items: start;
  gap: clamp(28px, 5vw, 72px);
  border-top: 1px solid var(--line-dark);
  padding-block: 32px 36px;
}

.footer-service-areas-intro {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 10px;
}

.footer-service-areas-intro h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.2vw, 2.3rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.footer-service-areas-intro p {
  max-width: 260px;
  margin: 0;
  color: #b9c9dc;
  font-size: 0.78rem;
  line-height: 1.55;
}

.footer-service-areas-all {
  margin-top: 2px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
}

.footer-service-areas-all:hover,
.footer-service-areas-all:focus-visible {
  color: var(--white);
}

.footer-service-area-links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-service-area-links a {
  display: block;
  color: #d6e0eb;
  font-size: 0.78rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.footer-service-area-links a:hover,
.footer-service-area-links a:focus-visible {
  color: var(--gold);
}

.footer-brand {
  display: grid;
  align-content: start;
  justify-items: start;
}

.brand-footer .brand-name {
  color: var(--white);
}

.brand-footer .brand-name > span {
  color: var(--red-soft);
}

.footer-brand > p,
.footer-connect > p {
  max-width: 320px;
  margin: 0;
  color: #b9c9dc;
  font-size: 0.81rem;
  line-height: 1.6;
}

.footer-brand > p {
  margin-top: 20px;
}

.footer-call {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: 100%;
  margin-top: 20px;
  color: var(--gold);
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.35;
}

.footer-call svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.footer-call span {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 5px;
}

.footer-call strong {
  font-weight: 700;
}

.footer-heading {
  margin: 0;
  color: var(--red-soft);
  font-family: var(--utility);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-group {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 10px;
}

.footer-group > a {
  max-width: 100%;
  color: #e1e8f0;
  font-size: 0.81rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.footer-group > a:hover,
.footer-group > a:focus-visible,
.footer-call:hover,
.footer-call:focus-visible,
.footer-profile:hover,
.footer-profile:focus-visible {
  color: var(--gold);
}

.footer-connect {
  display: grid;
  align-content: start;
  justify-items: start;
  row-gap: 12px;
}

.footer-connect > p {
  margin: 0;
}

.footer-profile {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  color: #e1e8f0;
}

.footer-profile-icon {
  display: inline-grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  background: var(--white);
}

.footer-profile-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.footer-profile > span:last-child {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.footer-profile strong {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.footer-profile small {
  color: #9fb2c8;
  font-size: 0.68rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.footer-note {
  max-width: 100%;
  color: #b9c9dc;
  font-size: 0.78rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  min-height: 58px;
  border-top: 1px solid var(--line-dark);
  color: #8294aa;
  font-family: var(--utility);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-bottom a {
  color: #d6e0eb;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--gold);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Legal pages */

.legal-body {
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  background: var(--paper-warm);
}

.legal-page {
  flex: 1;
  background: var(--paper-warm);
}

.legal-hero {
  background: var(--navy);
  color: var(--white);
}

.legal-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 42px;
  padding-block: clamp(64px, 8vw, 108px) clamp(58px, 7vw, 88px);
}

.legal-hero h1 {
  max-width: none;
  margin: 0 0 18px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(3.25rem, 7vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.94;
}

.legal-hero p {
  max-width: 54ch;
  margin: 0;
  color: #d7e2ef;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.65;
}

.legal-meta {
  min-width: 190px;
  border-top: 1px solid var(--red-soft);
  padding-top: 12px;
}

.legal-meta span {
  display: block;
  color: var(--red-soft);
  font-family: var(--utility);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.legal-meta strong {
  display: block;
  margin-top: 7px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(190px, 0.42fr) minmax(0, 1fr);
  gap: clamp(44px, 8vw, 120px);
  padding-block: clamp(64px, 8vw, 110px) clamp(80px, 10vw, 140px);
}

.legal-sidebar {
  display: grid;
  align-content: start;
  gap: 52px;
  position: sticky;
  top: 28px;
  align-self: start;
}

.legal-toc {
  display: grid;
  align-content: start;
  gap: 0;
}

.legal-toc h2,
.legal-help h2 {
  margin: 0 0 15px;
  color: var(--navy);
  font-family: var(--utility);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.legal-toc a {
  display: block;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.35;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  color: var(--red-dark);
}

.legal-help {
  border: 1px solid var(--navy);
  padding: 23px;
  background: var(--white);
}

.legal-help h2 {
  margin-bottom: 13px;
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  text-transform: none;
}

.legal-help p {
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.6;
}

.legal-help .button {
  width: 100%;
}

.legal-content {
  max-width: 760px;
}

.legal-content section {
  padding-bottom: 42px;
}

.legal-content section + section {
  border-top: 1px solid var(--line);
  padding-top: 42px;
}

.legal-content h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.5vw, 2.15rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.legal-content p {
  max-width: 70ch;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.75;
}

.legal-content a {
  color: var(--red-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-content a:hover,
.legal-content a:focus-visible {
  color: var(--navy);
}

/* Service area pages */

.service-area-page {
  background: var(--paper-warm);
}

.service-area-hero {
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.service-area-hero-inner {
  padding-block: clamp(36px, 5vw, 68px) clamp(58px, 8vw, 104px);
}

.service-area-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
  color: #b9c9dc;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.service-area-breadcrumbs a:hover,
.service-area-breadcrumbs a:focus-visible {
  color: var(--white);
}

.service-area-hero h1 {
  max-width: 1050px;
  margin: 0 0 20px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(3.1rem, 4vw, 4.6rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.92;
}

.service-area-hero-lede {
  max-width: 740px;
  margin: 0;
  color: #d7e2ee;
  font-size: clamp(1.02rem, 1.4vw, 1.22rem);
  line-height: 1.65;
}

.service-area-hero-actions,
.service-area-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.service-area-hero-actions > .button,
.service-area-hero-actions > .hero-phone {
  min-width: 198px;
}

.service-area-hero .hero-phone {
  border-color: rgba(255, 255, 255, 0.68);
}

.service-area-layout {
  display: grid;
  grid-template-columns: minmax(210px, 0.42fr) minmax(0, 1fr);
  gap: clamp(44px, 8vw, 120px);
  padding-block: clamp(58px, 8vw, 104px) clamp(80px, 10vw, 140px);
}

.service-area-sidebar {
  display: grid;
  align-content: start;
  gap: 20px;
  position: sticky;
  top: 104px;
  align-self: start;
}

.service-area-quick-card,
.service-area-map-card,
.service-area-city-card {
  border: 1px solid var(--line);
  background: var(--white);
}

.service-area-quick-card,
.service-area-map-card {
  padding: 24px;
}

.service-area-quick-card h2,
.service-area-map-card h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.service-area-quick-card p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.65;
}

.service-area-quick-card .button {
  width: 100%;
}

.service-area-sidebar-link {
  display: inline-block;
  margin-top: 16px;
  border-bottom: 1px solid var(--red);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
}

.service-area-sidebar-link:hover,
.service-area-sidebar-link:focus-visible {
  color: var(--red-dark);
}

.service-area-map {
  height: 220px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}

.service-area-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.service-area-map-card > p:last-child {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.5;
}

.service-area-content {
  max-width: 820px;
}

.service-area-content > section {
  padding-bottom: 52px;
}

.service-area-content > section + section {
  border-top: 1px solid var(--line);
  padding-top: 52px;
}

.service-area-content h2,
.service-area-hub-content h2 {
  margin: 0 0 22px;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.service-area-content p,
.service-area-hub-content p {
  color: var(--ink-soft);
  line-height: 1.75;
}

.service-area-intro p {
  max-width: 70ch;
  margin: 0 0 16px;
  font-size: 1rem;
}

.service-area-intro p:last-child,
.service-area-hub-intro p:last-child {
  margin-bottom: 0;
}

.service-area-service-grid,
.service-area-detail-grid,
.service-area-city-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-area-service-card,
.service-area-detail {
  border: 1px solid var(--line);
  padding: 22px;
  background: var(--white);
}

.service-area-service-card h3,
.service-area-detail h3,
.service-area-concern h3 {
  margin: 0 0 9px;
  color: var(--navy);
  font-family: var(--body);
  font-size: 0.91rem;
  font-weight: 800;
  line-height: 1.3;
}

.service-area-service-card p,
.service-area-detail p,
.service-area-concern p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.65;
}

.service-area-detail {
  border-top: 2px solid var(--red);
}

.service-area-concerns {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.service-area-concern {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.service-area-review {
  padding: 30px;
  background: var(--navy);
}

.service-area-review-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.service-area-review-heading h3 {
  margin: 0 0 7px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.service-area-review-heading p {
  margin: 0;
  color: #b9c9dc;
  font-size: 0.78rem;
  line-height: 1.6;
}

.service-area-review-heading > a {
  flex: 0 0 auto;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
}

.service-area-review-heading > a:hover,
.service-area-review-heading > a:focus-visible {
  color: var(--white);
}

.service-area-review-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}

.service-area-review-card {
  min-height: 0;
  flex: initial;
  border: 0;
  padding: 20px;
  box-shadow: none;
}

.service-area-review-card .review-card-top {
  grid-template-columns: 40px minmax(0, 1fr) auto;
  gap: 10px;
}

.service-area-review-card .review-avatar {
  width: 40px;
  height: 40px;
}

.service-area-review-card .review-card-author strong {
  font-size: 0.82rem;
}

.service-area-review-card .review-card-author span {
  font-size: 0.62rem;
}

.service-area-review-card .review-google-mark {
  width: 76px;
  height: auto;
}

.service-area-review-card .review-card-rating {
  margin-top: 22px;
}

.service-area-review-card blockquote {
  min-height: 0;
  margin: 15px 0 0;
  color: var(--ink);
  font-size: 0.79rem;
  line-height: 1.6;
}

.service-area-review a {
  color: var(--gold);
  font-weight: 700;
}

.service-area-faq {
  display: grid;
  border-top: 1px solid var(--line);
}

.service-area-faq details {
  border-bottom: 1px solid var(--line);
}

.service-area-faq summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 18px 36px 18px 0;
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.22rem;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.service-area-faq summary::-webkit-details-marker {
  display: none;
}

.service-area-faq summary::after {
  position: absolute;
  top: 18px;
  right: 4px;
  color: var(--red);
  content: "+";
  font-family: var(--body);
  font-size: 1.3rem;
  font-weight: 400;
}

.service-area-faq details[open] summary::after {
  content: "–";
}

.service-area-faq details p {
  max-width: 70ch;
  margin: 0;
  padding: 0 0 20px;
  font-size: 0.9rem;
}

.service-area-travel-note {
  padding-inline: 24px;
  background: rgba(242, 186, 74, 0.1);
}

.service-area-travel-note p:last-child {
  margin: 0;
}

.service-area-cta {
  border: 1px solid var(--line);
  padding: 32px;
  background: var(--paper);
}

.service-area-cta h2 {
  margin-bottom: 10px;
}

.service-area-cta p {
  max-width: 62ch;
  margin: 0;
  font-size: 0.92rem;
}

.service-area-cta-actions {
  margin-top: 22px;
}

.service-area-cta-actions .header-phone {
  min-height: 46px;
  font-size: 0.82rem;
}

.service-area-nearby-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-area-nearby-links a {
  border: 1px solid var(--line);
  padding: 10px 13px;
  background: var(--white);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
}

.service-area-nearby-links a:hover,
.service-area-nearby-links a:focus-visible {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

/* Service area hub */

.service-area-hub-content {
  padding-block: clamp(58px, 8vw, 104px) clamp(80px, 10vw, 140px);
}

.service-area-hub-intro {
  max-width: 780px;
  margin-bottom: 66px;
}

.service-area-hub-intro p {
  max-width: 70ch;
  margin: 0;
}

.service-area-hub-map {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(300px, 1.3fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  margin-bottom: 82px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 30px;
}

.service-area-hub-map > div:first-child p:last-child {
  margin: 0;
  font-size: 0.9rem;
}

.service-area-map-large {
  height: 300px;
  margin-top: 0;
}

.service-area-city-section > h2 {
  margin-bottom: 28px;
}

.service-area-city-grid {
  gap: 18px;
}

.service-area-city-card {
  display: flex;
  flex-direction: column;
  min-height: 228px;
  padding: 25px;
}

.service-area-city-card h2 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.05;
}

.service-area-city-card h2 a:hover,
.service-area-city-card h2 a:focus-visible {
  color: var(--red-dark);
}

.service-area-city-card > p {
  margin: 0;
  font-size: 0.83rem;
  line-height: 1.6;
}

.service-area-card-link {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin-top: auto;
  padding-top: 20px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
}

.service-area-card-link:hover,
.service-area-card-link:focus-visible {
  color: var(--red-dark);
}

.service-area-city-section {
  margin-bottom: 78px;
}

/* Cards stay open on top and left edges. */

.inspection-form-card,
.proof-card,
.service-card,
.review-card,
.contact-card,
.legal-help,
.service-area-quick-card,
.service-area-map-card,
.service-area-service-card,
.service-area-detail,
.service-area-cta,
.service-area-city-card {
  border-top: 0;
  border-left: 0;
}

.proof-card:first-child {
  border-left: 0;
}

.service-grid {
  border-top: 0;
}

/* Responsive */

@media (max-width: 1180px) {
  :root {
    --shell: min(calc(100% - 64px), 1100px);
  }

  .header-inner {
    grid-template-columns: 205px minmax(0, 1fr) auto;
    gap: 16px;
  }

  .main-nav {
    display: none;
  }

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

  .nav-toggle {
    display: grid;
  }

  .brand-logo-frame {
    width: 54px;
    height: 54px;
  }

  .brand-logo-frame img {
    width: 54px;
    height: 54px;
  }

  .main-nav {
    gap: 16px;
  }

  .main-nav a {
    font-size: 0.84rem;
  }

  .header-phone {
    padding-inline: 10px;
    font-size: 0.8rem;
  }

  .header-schedule {
    padding-inline: 13px;
    font-size: 0.8rem;
  }

  .hero-layout {
    column-gap: 55px;
    row-gap: clamp(34px, 6vh, 52px);
  }

  .proof-card {
    padding-inline: 20px;
  }
}

@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }

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

  .nav-toggle {
    display: grid;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.78fr);
    column-gap: 42px;
    row-gap: clamp(34px, 6vh, 52px);
  }

  h1 {
    font-size: clamp(3.7rem, 7vw, 5.8rem);
  }

  .service-area-hero h1 {
    font-size: clamp(3.7rem, 7vw, 5.8rem);
  }

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

  .proof-card-wide {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line-dark);
    border-right: 0;
  }

  .section-heading,
  .process-layout,
  .faq-layout,
  .area-layout,
  .about-layout,
  .contact-layout {
    gap: 52px;
  }

  .section-heading {
    grid-template-columns: 1fr 0.72fr;
  }

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

  .area-layout {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .about-layout {
    grid-template-columns: 150px 1fr;
  }

  .about-copy {
    grid-column: 1 / -1;
  }

  .about-photo img {
    aspect-ratio: 1.5;
  }

  .about-stamp {
    width: 140px;
    height: 140px;
  }

  .about-stamp img {
    width: 58px;
    height: 58px;
  }

  .contact-layout {
    grid-template-columns: 1fr 0.82fr;
  }

  .footer-main {
    grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
  }

  .footer-connect {
    grid-column: 2 / -1;
  }

  .footer-service-areas {
    grid-template-columns: minmax(150px, 0.8fr) minmax(0, 1.6fr);
    gap: 28px;
  }

  .footer-service-area-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px 18px;
  }

  .reviews-heading {
    gap: 38px;
  }

  .reviews-heading-side {
    grid-template-columns: 1fr;
    justify-items: end;
    gap: 20px;
  }

  .review-card {
    flex-basis: calc((100% - 16px) / 2);
  }

}

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 36px);
    --type-section-title: clamp(2.2rem, 9.6vw, 3.35rem);
    --type-card-title: clamp(2rem, 6.5vw, 2.35rem);
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    min-height: 76px;
    gap: 8px;
  }

  .brand-logo-frame {
    width: 48px;
    height: 48px;
  }

  .brand-logo-frame img {
    width: 48px;
    height: 48px;
  }

  .brand-name {
    display: none;
  }

  .header-actions {
    gap: 6px;
  }

  .header-phone {
    min-height: 42px;
    border: 0;
    padding: 8px 0;
    gap: 5px;
    font-size: 0.72rem;
  }

  .header-phone svg {
    width: 16px;
    height: 16px;
  }

  .header-phone-label {
    display: none;
  }

  .header-phone:hover,
  .header-phone:focus-visible {
    background: transparent;
    color: var(--red);
  }

  .hero-phone {
    width: 100%;
    min-height: 42px;
    border: 1px solid #dbe7f4;
    padding: 8px 12px;
    color: var(--white);
    font-size: 0.72rem;
    justify-content: center;
  }

  .service-area-hero-actions > .button {
    width: 100%;
    min-height: 42px;
  }

  .hero-phone:hover,
  .hero-phone:focus-visible {
    border-color: var(--white);
    background: var(--white);
    color: var(--navy);
  }

  .header-schedule {
    min-height: 42px;
    padding: 11px 12px 10px;
    font-size: 0.68rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    display: block;
    padding-block: 56px 28px;
  }

  .hero-copy {
    max-width: none;
    margin-bottom: 52px;
  }

  h1 {
    margin-bottom: 24px;
    font-size: clamp(2.9rem, 12vw, 4.2rem);
    line-height: 0.96;
  }

  .hero-lede {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 19px;
    margin-bottom: 34px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-coverage {
    font-size: 0.78rem;
  }

  .hero-form-wrap {
    max-width: none;
  }

  .inspection-form-card {
    box-shadow: 0 14px 30px rgba(6, 24, 47, 0.2);
  }

  .inspection-form {
    gap: 10px;
    padding: 26px 22px 21px;
  }

  .form-heading h2 {
    font-size: clamp(2.15rem, 9vw, 2.8rem);
  }

  .form-heading > p:last-child {
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .inspection-form label {
    gap: 5px;
    font-size: 0.7rem;
  }

  .inspection-form input {
    min-height: 48px;
    font-size: 1rem;
  }

  .form-submit {
    min-height: 48px;
  }

  .form-note {
    font-size: 0.68rem;
  }

  .proof-grid {
    display: block;
  }

  .proof-card,
  .proof-card:first-child,
  .proof-card-wide {
    min-height: 126px;
    border: 0;
    border-bottom: 1px solid var(--line-dark);
    padding-inline: 18px;
  }

  .proof-card:last-child {
    border-bottom: 0;
  }

  .section {
    padding-block: 78px;
  }

  .section-heading,
  .process-layout,
  .faq-layout,
  .area-layout,
  .about-layout,
  .contact-layout {
    display: block;
  }

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

  .section-heading h2,
  .reviews-heading h2,
  .faq-intro h2,
  .area-copy h2,
  .contact-copy h2,
  .process-aside h2,
  .about-copy h2 {
    font-size: var(--type-section-title);
  }

  .section-intro {
    margin-top: 26px;
  }

  .reviews-heading {
    display: block;
    margin-bottom: 38px;
  }

  .reviews-heading-side {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 32px;
  }

  .reviews-summary {
    min-width: 0;
    flex: 1;
    max-width: 248px;
  }

  .review-control {
    width: 44px;
    height: 44px;
  }

  .reviews-rail {
    gap: 12px;
    padding-inline: 1px 18px;
    scroll-padding-inline: 1px;
  }

  .review-card {
    min-height: 0;
    flex-basis: min(88vw, 360px);
    padding: 22px 21px 25px;
  }

  .review-card-rating {
    margin-top: 25px;
  }

  .reviews-note {
    text-align: left;
  }

  .service-grid {
    display: block;
  }

  .service-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 42px;
  }

  .service-photo-grid-balanced .service-photo,
  .service-photo-grid-balanced .service-photo:nth-last-child(2),
  .service-photo-grid-balanced .service-photo:last-child {
    grid-column: auto;
  }

  .service-photo-feature {
    grid-column: 1 / -1;
  }

  .service-card {
    min-height: 330px;
    border-right: 0;
    border-bottom: 1px solid var(--navy);
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .scope-row {
    display: block;
  }

  .scope-label {
    margin-bottom: 18px;
  }

  .process-layout {
    padding-block: 78px;
  }

  .process-aside {
    margin-bottom: 52px;
  }

  .faq-intro {
    margin-bottom: 42px;
  }

  .faq-item summary {
    padding-block: 19px;
    font-size: 0.94rem;
  }

  .faq-item p {
    padding-bottom: 21px;
    font-size: 0.84rem;
  }

  .process-photo {
    max-width: none;
    margin-top: 40px;
  }

  .process-steps li {
    grid-template-columns: 58px 1fr;
    gap: 13px;
  }

  .step-number {
    font-size: 1.9rem;
  }

  .process-steps h3 {
    font-size: 1.55rem;
  }

  .area-layout {
    padding-bottom: 55px;
  }

  .area-copy {
    margin-bottom: 45px;
  }

  .area-map {
    height: 370px;
  }

  .area-cities {
    margin-top: 0;
  }

  .about-layout {
    padding-block: 78px;
  }

  .about-stamp {
    margin-bottom: 52px;
  }

  .about-photo {
    max-width: 430px;
    margin: 0 auto 52px;
  }

  .about-stamp img {
    width: 58px;
    height: 58px;
  }

  .about-stamp small {
    font-size: 0.58rem;
  }

  .about-facts {
    gap: 15px;
  }

  .about-facts div {
    display: block;
  }

  .about-facts strong {
    display: block;
    margin-bottom: 8px;
  }

  .about-facts span {
    font-size: 0.58rem;
  }

  .contact-layout {
    padding-block: 78px;
  }

  .contact-copy {
    margin-bottom: 50px;
  }

  .contact-card {
    box-shadow: 0 14px 28px rgba(6, 24, 47, 0.13);
  }

  .footer-main {
    display: block;
    padding-block: 46px 40px;
  }

  .footer-group,
  .footer-connect {
    margin-top: 36px;
  }

  .footer-heading {
    margin-bottom: 0;
  }

  .footer-brand .brand-name {
    display: grid;
  }

  .footer-call {
    margin-top: 22px;
  }

  .footer-service-areas {
    display: block;
    padding-block: 32px 36px;
  }

  .footer-service-area-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 20px;
    margin-top: 26px;
  }

  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    padding-block: 16px;
    font-size: 0.58rem;
  }

  .footer-bottom > :last-child {
    grid-column: 1 / -1;
  }

  .footer-legal {
    gap: 14px;
  }

  .legal-hero-inner {
    display: block;
    padding-block: 58px 54px;
  }

  .legal-hero h1 {
    margin-bottom: 17px;
    font-size: clamp(2.9rem, 12vw, 4.2rem);
  }

  .legal-hero p {
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .legal-meta {
    min-width: 0;
    margin-top: 32px;
  }

  .legal-layout {
    display: block;
    padding-block: 58px 82px;
  }

  .legal-sidebar {
    display: block;
    position: static;
  }

  .legal-toc {
    position: static;
    margin-bottom: 52px;
  }

  .legal-help {
    max-width: 430px;
  }

  .legal-content {
    margin-top: 56px;
  }

  .legal-content section {
    padding-bottom: 32px;
  }

  .legal-content section + section {
    padding-top: 32px;
  }

  .legal-content h2 {
    font-size: 1.75rem;
  }

  .legal-content p {
    font-size: 0.94rem;
    line-height: 1.7;
  }

  .service-area-hero-inner {
    padding-block: 30px 62px;
  }

  .service-area-breadcrumbs {
    margin-bottom: 28px;
  }

  .service-area-hero h1 {
    font-size: clamp(2.9rem, 12vw, 4.2rem);
    line-height: 0.96;
  }

  .service-area-layout {
    display: block;
    padding-block: 56px 84px;
  }

  .service-area-sidebar {
    position: static;
    margin-bottom: 56px;
  }

  .service-area-service-grid,
  .service-area-detail-grid,
  .service-area-city-grid,
  .service-area-hub-map {
    grid-template-columns: 1fr;
  }

  .service-area-content > section + section {
    padding-top: 42px;
  }

  .service-area-content > section {
    padding-bottom: 42px;
  }

  .service-area-review,
  .service-area-cta {
    padding: 24px;
  }

  .service-area-review-heading {
    display: block;
  }

  .service-area-review-heading > a {
    display: inline-block;
    margin-top: 14px;
  }

  .service-area-hub-content {
    padding-block: 56px 84px;
  }

  .service-area-hub-intro {
    margin-bottom: 54px;
  }

  .service-area-hub-map {
    gap: 24px;
    margin-bottom: 58px;
  }

  .service-area-city-section {
    margin-bottom: 58px;
  }
}

@media (max-width: 420px) {
  .header-schedule {
    padding-inline: 8px;
    font-size: 0.62rem;
    white-space: nowrap;
  }

  .hero-layout {
    padding-block: 48px 24px;
  }

  .hero-copy {
    margin-bottom: 44px;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.6rem);
  }

  .service-area-hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.6rem);
  }
}

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

  .header-actions {
    gap: 4px;
  }

  .header-actions > .header-phone {
    gap: 4px;
    padding-inline: 4px;
    font-size: 0.66rem;
  }

  .header-actions > .header-phone strong {
    display: none;
  }

  .header-actions > .header-phone .header-phone-label {
    display: inline;
  }

  .header-actions > .header-phone svg {
    width: 14px;
    height: 14px;
  }

  .header-schedule {
    padding-inline: 5px;
    font-size: 0.56rem;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }
}

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

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