:root {
  --navy: #071C3E;
  --navy-deep: #04122a;
  --blue: #0D4D8B;
  --blue-soft: #9db4e8;
  --red: #C3232A;
  --red-dark: #9e1c22;
  --bg: #ffffff;
  --bg-soft: #f4f7fc;
  --text: #1c2440;
  --muted: #5a6480;
  --radius: 4px;
  --shadow: none;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
section[id] { scroll-margin-top: 92px; }

body {
  font-family: 'Source Sans 3', -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: #cbd8f3; color: var(--navy-deep); }

a, button, input, select { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
.hero :focus-visible,
.topbar :focus-visible,
.section-navy :focus-visible,
.service-call-card :focus-visible,
.band :focus-visible { outline-color: #fff; }

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 12px;
  padding: 9px 12px;
  background: var(--navy-deep);
  color: #fff;
  font: 700 13px 'Archivo', sans-serif;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.15s ease;
}
.skip-link:focus-visible { transform: translateY(0); outline-color: #fff; }

h1, h2, h3, h4, .btn, .logo-text, .state-abbr {
  font-family: 'Archivo', sans-serif;
}

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn:hover { transform: none; }
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: #1d47a5; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-deep); }
.btn-outline { border-color: rgba(255,255,255,0.5); color: #fff; }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* Top bar */
.topbar {
  background: var(--navy-deep);
  color: #cdd7f3;
  font-size: 13px;
  padding: 8px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-area strong { color: #fff; }
.topbar-phone {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.topbar-phone:hover { color: var(--blue-soft); }

/* Header */
.header {
  background: #fff;
  border-bottom: 1px solid #e6ebf5;
  position: sticky;
  top: 0;
  z-index: 50;
  transition: box-shadow 0.2s ease;
}
.header.is-scrolled { box-shadow: 0 6px 18px rgba(15, 26, 66, 0.08); }
.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-mark { width: 46px; height: 46px; }
.logo-img { height: 44px; width: auto; display: block; }
@media (max-width: 600px) { .logo-img { height: 34px; } }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-line1 {
  font-weight: 800;
  font-size: 19px;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.logo-line2 {
  font-weight: 700;
  font-size: 13px;
  color: var(--blue);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
}
.nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}
.nav a:hover { color: var(--blue); }
.nav a.is-current {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}
.menu-toggle { display: none; }

/* Hero */
.hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  padding: clamp(56px, 6vw, 80px) 0 0;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  top: -150px;
  right: -120px;
  width: 660px;
  height: 660px;
  border-radius: 50%;
  background: radial-gradient(circle at 42% 42%, rgba(46,124,196,0.30), rgba(13,77,139,0.12) 52%, rgba(7,28,62,0) 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; }
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  grid-template-areas:
    "head head"
    "copy photo";
  column-gap: clamp(32px, 4vw, 56px);
  align-items: start;
}
.hero-head { grid-area: head; margin-bottom: 20px; }
.hero-copy { grid-area: copy; align-self: start; }
.hero-panel { grid-area: photo; align-self: center; }
.hero-copy {
  position: relative;
  z-index: 1;
  padding-bottom: 42px;
}
.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.hero .eyebrow { color: #ff8f94; }
.eyebrow.center { text-align: left; }
.eyebrow.light { color: var(--blue-soft); }
.hero h1 {
  font-size: clamp(36px, 3.2vw, 46px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  text-wrap: balance;
}
.hero-sub {
  font-size: clamp(16px, 1.25vw, 18px);
  color: #d4ddf5;
  max-width: 900px;
  margin-bottom: 4px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-reassurance {
  max-width: 540px;
  margin: -18px 0 24px;
  color: #e6ecfb;
  font-size: 13px;
  line-height: 1.5;
}
.hero-chips {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.hero-chips li {
  padding: 3px 18px 3px 0;
  border-right: 1px solid rgba(255,255,255,0.24);
}
.hero-chips li:last-child { border-right: 0; }
.chip-title { display: block; font-weight: 700; font-size: 14px; margin-bottom: 3px; }
.chip-sub { display: block; font-size: 12.5px; color: #c3cfef; line-height: 1.45; }

.hero-panel {
  position: relative;
  display: flex;
  align-self: center;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  min-height: 0;
  isolation: isolate;
}
.hero-panel::before { content: none; }
.hero-team {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  max-width: 580px;
  margin: 0 0 0 auto;
}
.hero-team img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 30px 64px rgba(0, 0, 0, 0.5);
}
.hero-team-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  font: 800 12px 'Archivo', sans-serif;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
}
.hero-team-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #29b365;
  box-shadow: 0 0 0 3px rgba(41, 179, 101, 0.24);
}
.hero-team-cap {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(7, 28, 62, 0.72);
  backdrop-filter: blur(4px);
  color: #fff;
  font: 700 12px 'Archivo', sans-serif;
  letter-spacing: 0.02em;
}
/* Trust bar */
.trustbar {
  display: grid;
  grid-template-columns: auto repeat(4, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.trust-score {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 28px;
  border-right: 1px solid rgba(255,255,255,0.14);
}
.trust-number {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 44px;
  line-height: 1;
  color: #fff;
}
.trust-caption {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c3cfef;
  line-height: 1.5;
}
.trust-item { text-align: center; }
.trust-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 6px;
}
.trust-icon { width: 20px; height: 20px; }
.trust-wordmark { height: 24px; width: auto; display: block; }
.trust-name {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}
.trust-stars {
  display: block;
  color: #f5b301;
  font-size: 15px;
  letter-spacing: 3px;
  margin-bottom: 4px;
}
.trust-sub {
  font-size: 12px;
  color: #aab8e0;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 2px;
}

/* Sections */
.section { padding: 90px 0; }
.section-light { background: var(--bg-soft); }
.section-title {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 18px;
  text-wrap: balance;
}
.section-title.center { text-align: left; margin-bottom: 40px; }
.section-title.light, .section-navy h3 { color: #fff; }
.center { text-align: left; }

/* Service cards */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 48px;
}
.card {
  display: grid;
  grid-template-columns: 46px 1fr;
  column-gap: 18px;
  padding: 25px 0;
  border: 0;
  border-top: 1px solid #dbe2ef;
  background: transparent;
  transition: none;
}
.card:hover { box-shadow: none; transform: none; }
.card-icon {
  grid-row: 1 / span 2;
  width: 42px; height: 42px;
  border: 1px solid #b9c7e2;
  border-radius: 2px;
  background: transparent;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.card p { font-size: 14.5px; color: var(--muted); }

/* Diagnostic service call */
.service-call {
  position: relative;
  margin-top: 0;
  padding: 0 0 90px;
  background: var(--bg);
}
.service-call-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 44px;
  overflow: visible;
  padding: 46px 48px;
  border-radius: 3px;
  color: #fff;
  background: var(--navy-deep);
  box-shadow: none;
}
.service-call-card::before { content: none; }
.service-call-copy { position: relative; z-index: 1; }
.service-call-copy h2 {
  max-width: 620px;
  margin-bottom: 14px;
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.service-call-copy > p:not(.eyebrow):not(.service-call-fine) {
  max-width: 620px;
  color: #cbd6f2;
  font-size: 16px;
}
.service-call-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.service-call-phone {
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-underline-offset: 4px;
}
.service-call-fine {
  max-width: 650px;
  margin-top: 17px;
  color: #9eadd5;
  font-size: 12px;
}
.service-call-steps {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  list-style: none;
}
.service-call-steps li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  align-items: center;
  padding: 18px 0;
  border: 0;
  border-top: 1px solid rgba(255,255,255,0.22);
  border-radius: 0;
  background: transparent;
}
.service-call-steps li:last-child { border-bottom: 1px solid rgba(255,255,255,0.22); }
.service-call-steps li > span {
  display: block;
  width: auto;
  height: auto;
  color: #ff6b70;
  background: transparent;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 22px;
}
.service-call-steps strong { display: block; font-size: 14px; }
.service-call-steps small { display: block; color: #aebce0; font-size: 12px; line-height: 1.4; }

/* Maintenance plans */
.maintenance {
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
}
.maintenance-intro {
  max-width: 680px;
  margin: -26px 0 44px;
  color: var(--muted);
  text-align: left;
  font-size: 16px;
}
.maintenance-plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}
.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 32px 28px 28px;
  border: 1px solid #dfe6f4;
  border-radius: 3px;
  background: #fff;
  box-shadow: none;
}
.plan-card-featured {
  transform: none;
  border: 1px solid #cdd7e9;
  border-top: 4px solid var(--red);
  box-shadow: none;
}
.plan-badge {
  position: static;
  order: -1;
  align-self: flex-start;
  margin: -8px 0 14px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--red);
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.plan-kicker {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.plan-card h3 {
  color: var(--navy);
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 7px;
}
.plan-for {
  min-height: 46px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
}
.plan-price {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 22px 0 20px;
  padding-top: 17px;
  color: var(--muted);
  font-size: 13px;
}
.plan-price .plan-from {
  position: absolute;
  top: 0;
  left: 0;
  color: #6c7691;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.plan-price strong {
  color: var(--navy);
  font-family: 'Archivo', sans-serif;
  font-size: 46px;
  line-height: 1;
  letter-spacing: -0.04em;
}
.plan-price sup {
  position: relative;
  top: -0.45em;
  margin-right: 2px;
  font-size: 20px;
}
.plan-list {
  flex: 1;
  list-style: none;
  margin-bottom: 26px;
}
.plan-list li {
  position: relative;
  padding: 9px 0 9px 27px;
  border-bottom: 1px solid #edf1f8;
  color: var(--text);
  font-size: 13.5px;
  line-height: 1.42;
}
.plan-list li::before {
  content: "✓";
  position: absolute;
  left: 2px;
  top: 9px;
  color: var(--red);
  font-weight: 800;
}
.plan-card .btn { width: 100%; text-align: center; }
.maintenance-note {
  max-width: 900px;
  margin: 28px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 12px;
  line-height: 1.55;
}

/* Why us — navy section */
.section-navy {
  background: var(--navy-deep);
  color: #d4ddf5;
}
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 64px;
}
.pillar {
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(255,255,255,0.22);
  border-radius: 0;
  padding: 6px 28px;
  text-align: left;
}
.pillar:first-child { border-left: 0; padding-left: 0; }
.pillar-icon {
  width: 32px; height: 32px;
  margin: 0 0 15px;
  border-radius: 0;
  background: transparent;
  color: #ff6b70;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pillar-icon svg { width: 26px; height: 26px; }
.pillar h3 { font-size: 18px; margin-bottom: 8px; }
.pillar p { font-size: 14.5px; color: #b9c6e8; }

.story {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: start;
}
.story-text h3 { font-size: 26px; margin-bottom: 14px; }
.story-text p { margin-bottom: 12px; font-size: 15.5px; }
.story-sign {
  font-style: italic;
  color: #fff;
  font-size: 16px;
  padding-left: 0;
  margin-top: 18px;
}
.story-steps {
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(255,255,255,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.25);
  border-radius: 0;
  padding: 24px 0;
}
.story-steps h4 { color: #fff; font-size: 17px; margin-bottom: 14px; }
.story-steps ol { padding-left: 20px; }
.story-steps li { margin-bottom: 10px; font-size: 14.5px; }
.story-steps strong { color: #fff; }

/* Water heaters band */
.band {
  background: var(--red);
  color: #fff;
  padding: 56px 0;
}
.band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.band-flag {
  font-weight: 800;
  font-family: 'Archivo', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 13px;
  margin-bottom: 8px;
  color: #fff;
}
.band h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.band-list { list-style: none; display: flex; gap: 22px; flex-wrap: wrap; }
.band-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
}
.band-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 800;
}

/* Service area map */
.area-sub { color: var(--muted); margin: -30px 0 42px; }
.service-area-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(330px, 0.8fr);
  gap: 54px;
  align-items: center;
}
.service-map-column { min-width: 0; }
.service-map {
  display: grid;
  place-items: center;
  min-height: 490px;
  overflow: hidden;
  border: 1px solid #ccd7e9;
  border-radius: 3px;
  background:
    linear-gradient(rgba(255,255,255,0.38) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.38) 1px, transparent 1px),
    #e9eff8;
  background-size: 44px 44px;
}
.service-map svg { display: block; width: 100%; height: auto; }
.service-map-loading,
.service-map.has-error {
  padding: 36px;
  color: var(--muted);
  text-align: center;
}
.service-map-state {
  stroke: #fff;
  stroke-width: 2.5;
  vector-effect: non-scaling-stroke;
  transition: opacity 0.15s ease, stroke 0.15s ease;
}
.service-map-state:hover,
.service-map-state.is-active {
  opacity: 0.78;
  stroke: #0f1a42;
  stroke-width: 4;
}
.service-map-label {
  pointer-events: none;
  fill: #fff;
  font: 800 18px 'Archivo', sans-serif;
  letter-spacing: 0.04em;
  paint-order: stroke;
  stroke: rgba(15,26,66,0.45);
  stroke-width: 3px;
}
.service-map-caption {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
}
.service-map-caption span {
  flex: 0 0 18px;
  height: 10px;
  margin-top: 4px;
  background: var(--blue);
}
.service-area-label {
  margin-bottom: 14px;
  color: var(--blue);
  font: 700 12px 'Archivo', sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.states {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0;
  border-top: 1px solid #cfd9ea;
}
.state {
  display: flex;
  align-items: baseline;
  gap: 10px;
  background: #fff;
  border: 0;
  border-bottom: 1px solid #cfd9ea;
  border-radius: 0;
  padding: 16px 12px 16px 0;
  text-align: left;
  box-shadow: none;
  transition: color 0.15s ease, background 0.15s ease;
}
.state:nth-child(even) { padding-left: 18px; border-left: 1px solid #cfd9ea; }
.state.is-active { background: #f3f6fc; }
.state-abbr {
  display: inline-block;
  min-width: 35px;
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.state-name { color: var(--muted); font-size: 14px; }
.area-details {
  margin: 26px 0 0;
  padding: 24px 0 0;
  border: 0;
  border-top: 1px solid #cfd9ea;
  border-radius: 0;
  background: transparent;
}
.area-details h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 19px;
}
.area-details p { color: var(--muted); font-size: 14.5px; }
.area-details p + p { margin-top: 8px; }
.area-details a { color: var(--blue); font-weight: 700; }
.area-actions { display: flex; align-items: center; gap: 18px; margin-top: 24px; }
.area-phone { color: var(--navy); font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.faq-item {
  padding: 25px 26px;
  border: 0;
  border-top: 1px solid #d5deed;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.faq-item h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.35;
}
.faq-item p { color: var(--muted); font-size: 14.5px; }
.faq-item:last-child { grid-column: 1 / -1; }

/* Contact */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-copy p { color: var(--muted); margin-bottom: 20px; max-width: 420px; }
.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: var(--navy);
  text-decoration: none;
  margin-bottom: 10px;
}
.contact-phone svg { width: 28px; height: 28px; color: var(--red); }
.contact-phone span {
  display: block;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--muted);
}
.contact-site { font-weight: 600; color: var(--blue); }
.contact-form {
  background: #fff;
  border: 1px solid #e6ebf5;
  border-radius: 3px;
  padding: 30px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
}
.contact-form label {
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--navy);
}
.contact-form input,
.contact-form select {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid #d5ddef;
  border-radius: 2px;
  margin-bottom: 18px;
  background: #fbfcff;
}
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1.5 7 7.5 13 1.5' stroke='%2316265c' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}
.contact-form input:focus,
.contact-form select:focus {
  outline: 2px solid var(--blue);
  border-color: var(--blue);
  background-color: #fff;
}
.contact-form input:user-invalid {
  border-color: var(--red);
  background-color: #fff8f8;
}
.form-note {
  font-size: 12.5px;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
}
.form-note a { color: var(--blue); font-weight: 700; }

/* Footer */
.footer {
  position: relative;
  overflow: hidden;
  padding: 0 0 30px;
  color: #aebce0;
  background: var(--navy-deep);
}
.footer::before { content: none; }
.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) auto;
  gap: 36px;
  align-items: center;
  margin-bottom: 54px;
  padding: 38px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-cta-kicker {
  margin-bottom: 7px;
  color: #ff9ca1;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.footer-cta h2 {
  margin-bottom: 7px;
  color: #fff;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.footer-cta > div > p:last-child { max-width: 680px; font-size: 14px; }
.footer-cta-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.footer-btn-outline { border-color: rgba(255,255,255,0.42); color: #fff; }
.footer-btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.82fr 0.82fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 17px;
  color: #fff;
}
.footer-brand-lockup svg { width: 52px; height: 52px; }
.footer-brand-lockup a { display: flex; flex-direction: column; color: #fff; line-height: 1.05; text-decoration: none; }
.footer-brand-lockup strong { font-family: 'Archivo', sans-serif; font-size: 21px; }
.footer-brand-lockup small {
  color: var(--blue-soft);
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.footer-brand > p { max-width: 310px; font-size: 13.5px; line-height: 1.6; }
.footer-badges { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 18px; list-style: none; }
.footer-badges li {
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #dce5fa;
  background: transparent;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-badges li + li::before { content: "·"; margin-right: 7px; color: #6f80aa; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-column h3 {
  margin-bottom: 7px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.footer-column a {
  color: #b8c5e6;
  font-size: 13.5px;
  text-decoration: none;
  transition: color 0.15s ease, transform 0.15s ease;
}
.footer-column a:hover { color: #fff; transform: translateX(2px); }
.footer-contact > span { font-size: 13px; }
.footer-column .footer-phone {
  margin-bottom: -5px;
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-size: 20px;
  font-weight: 800;
}
.footer-area {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 12px;
}
.footer-area strong { color: #fff; font-size: 12px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #7f8eb7;
  font-size: 11.5px;
}
.footer-bottom p:last-child { max-width: 600px; text-align: right; }
.footer a:focus-visible { outline: 2px solid #fff; outline-offset: 4px; border-radius: 4px; }

.mobile-action-bar { display: none; }

@media (hover: hover) {
  .card { transition: border-color 0.15s ease, background 0.15s ease; }
  .card:hover { border-color: #9db4e8; background: #f9fbff; }
  .card:hover .card-icon { border-color: var(--blue); background: #f2f6ff; }
  .plan-card { transition: border-color 0.15s ease, background 0.15s ease; }
  .plan-card:hover { border-color: #aebfe1; background: #fbfcff; }
  .faq-item { transition: border-color 0.15s ease; }
  .faq-item:hover { border-color: #9db4e8; }
}

@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; }
}

/* Responsive */
@media (max-width: 960px) {
  .hero-inner, .contact-inner, .story { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 0; }
  .hero-copy { padding-bottom: 32px; }
  .trustbar { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; margin-top: 32px; padding-top: 22px; }
  .trust-score { grid-column: 1 / -1; justify-content: center; border-right: none; padding-right: 0; }
  .hero-panel { align-self: auto; min-height: 0; margin-top: 0; }
  .hero-team { width: 100%; max-width: 620px; margin: 0 auto -32px; }
  .cards, .pillars { grid-template-columns: 1fr 1fr; }
  .maintenance-plans { grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; }
  .plan-card-featured { transform: none; }
  .service-area-layout { grid-template-columns: 1fr; gap: 34px; }
  .service-map { min-height: 430px; }
  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    width: 44px;
    min-height: 44px;
    border: 1px solid #cfd9ea;
    border-radius: 3px;
    background: #fff;
    color: var(--navy);
    cursor: pointer;
  }
  .menu-toggle > span:not(.menu-toggle-label) { width: 15px; height: 2px; background: currentColor; }
  .menu-toggle-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .nav {
    position: absolute;
    z-index: 55;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 22px;
    margin: 0;
    padding: 10px 24px 16px;
    border: 1px solid #e0e6f1;
    border-top: 0;
    background: #fff;
    box-shadow: 0 22px 34px rgba(15, 26, 66, 0.14);
  }
  .header.is-menu-open .nav { display: grid; animation: nav-reveal 0.18s ease; }
  @keyframes nav-reveal {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
  }
  body.menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 45;
    background: rgba(15, 26, 66, 0.4);
  }
  .nav a { padding: 12px 0; border-bottom: 1px solid #e8edf6; font-size: 14px; font-weight: 600; }
  .nav a.is-current { text-decoration: none; }
  .header-cta { margin-left: auto; }
  .hero h1 { font-size: 38px; }
  .service-call-card { grid-template-columns: 1fr; }
  .footer-cta { grid-template-columns: 1fr; }
  .footer-cta-actions { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-contact { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
  section[id] { scroll-margin-top: 74px; }
  .container { padding-left: 18px; padding-right: 18px; }
  .cards, .pillars, .hero-chips, .faq-grid { grid-template-columns: 1fr; }
  .topbar { padding: 6px 0; font-size: 11px; }
  .topbar-inner, .topbar-right { justify-content: center; width: 100%; }
  .topbar-right { gap: 0; }
  .topbar-phone { display: none; }
  .header-inner { gap: 7px; padding-top: 9px; padding-bottom: 9px; }
  .logo { gap: 7px; }
  .logo-mark { width: 38px; height: 38px; }
  .logo-line1 { font-size: 16px; }
  .logo-line2 { font-size: 10px; letter-spacing: 0.2em; }
  .header-cta { order: 2; margin-left: auto; padding: 10px 10px; border-radius: 3px; font-size: 11px; white-space: nowrap; }
  .menu-toggle { order: 3; width: 40px; min-height: 40px; }
  .nav { grid-template-columns: 1fr; padding: 8px 18px 14px; }
  .nav a { padding: 10px 0; }
  .hero-inner { display: flex; flex-direction: column; align-items: stretch; gap: 0; }
  .hero-copy { display: contents; }
  .hero-copy .eyebrow { order: 1; }
  .hero-copy h1 { order: 2; }
  .hero-sub { order: 3; }
  .hero-actions { order: 4; }
  .hero-reassurance { order: 5; }
  .hero-panel { order: 6; }
  .hero-chips { order: 7; }
  .hero { padding: 40px 0 28px; }
  .hero-copy { padding-bottom: 0; }
  .hero .eyebrow { margin-bottom: 10px; font-size: 11px; }
  .hero h1 { margin-bottom: 15px; font-size: 30px; line-height: 1.06; }
  .hero-sub { margin-bottom: 22px; font-size: 14.5px; line-height: 1.55; }
  .hero-actions { display: grid; gap: 10px; margin-bottom: 18px; }
  .hero-actions .btn { width: 100%; min-height: 52px; padding: 13px 16px; text-align: center; }
  .hero-reassurance { margin: 0 0 18px; font-size: 12px; }
  .hero-panel { min-height: 0; margin: 4px 0 18px; }
  .hero-team { width: 100%; max-width: 100%; margin: 0; }
  .hero-team img { border-radius: 0; }
  .hero-chips { gap: 10px; }
  .hero-chips li {
    padding: 2px 0 2px 15px;
    border-right: 0;
    border-left: 2px solid var(--red);
  }
  .chip-title { font-size: 13px; }
  .chip-sub { font-size: 11.5px; }
  .trustbar {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 18px;
    padding-top: 14px;
  }
  .trust-score { grid-column: 1 / -1; justify-content: center; padding: 0 0 12px; }
  .trust-number { font-size: 34px; }
  .trust-caption { font-size: 10px; }
  .trust-item {
    min-width: 0;
    padding: 11px 6px 9px;
    border: 0;
    border-top: 1px solid rgba(255,255,255,0.16);
    border-radius: 0;
    background: transparent;
  }
  .trust-item:nth-child(odd) { border-left: 1px solid rgba(255,255,255,0.16); }
  .trust-icon { width: 16px; height: 16px; }
  .trust-wordmark { height: 20px; }
  .trust-name { font-size: 12.5px; }
  .trust-head { gap: 6px; margin-bottom: 3px; }
  .trust-stars { font-size: 11px; letter-spacing: 2px; margin-bottom: 0; }
  .trust-sub { display: none; }
  .section-title { font-size: 28px; line-height: 1.12; }
  .section-title.center { margin-bottom: 34px; }
  .card { padding: 22px 20px; }
  .service-call { margin-top: -14px; padding-bottom: 64px; }
  .service-call-card { gap: 28px; padding: 30px 22px; border-radius: 3px; }
  .service-call-copy h2 { font-size: 28px; }
  .service-call-copy > p:not(.eyebrow):not(.service-call-fine) { font-size: 14.5px; }
  .service-call-actions { display: grid; gap: 13px; margin-top: 22px; }
  .service-call-actions .btn { width: 100%; text-align: center; }
  .service-call-phone { text-align: center; }
  .service-call-fine { font-size: 11px; }
  .service-call-steps { gap: 0; }
  .service-call-steps li { grid-template-columns: 34px 1fr; padding: 14px 0; }
  .maintenance-intro { margin-bottom: 38px; }
  .plan-card { padding: 28px 22px 24px; }
  .plan-for { min-height: auto; }
  .plan-price strong { font-size: 42px; }
  .band { padding: 46px 0; }
  .band h2 { font-size: 25px; line-height: 1.15; }
  .band-inner .btn { width: 100%; text-align: center; }
  .area-sub { margin-bottom: 30px; }
  .service-map { min-height: 310px; }
  .service-map-label { font-size: 20px; }
  .state { padding: 14px 8px 14px 0; }
  .state:nth-child(even) { padding-left: 12px; }
  .state-abbr { min-width: 32px; font-size: 19px; }
  .state-name { font-size: 12.5px; }
  .area-details { padding-top: 22px; }
  .area-actions { align-items: stretch; flex-direction: column; gap: 14px; }
  .area-actions .btn { width: 100%; min-height: 50px; text-align: center; }
  .area-phone { text-align: center; }
  .faq-item:last-child { grid-column: auto; }
  .faq-item { padding: 21px 20px; }
  .contact-inner { gap: 30px; }
  .contact-phone { align-items: flex-start; font-size: 22px; }
  .contact-form { padding: 22px 18px; }
  .contact-form input, .contact-form select { min-height: 48px; font-size: 16px; }
  .contact-form .btn { min-height: 52px; }
  .section { padding: 60px 0; }
  .topbar-note { display: none; }
  .footer { padding-bottom: 26px; }
  .footer-cta { gap: 22px; margin-bottom: 38px; padding: 32px 0; }
  .footer-cta h2 { font-size: 25px; }
  .footer-cta-actions { display: grid; width: 100%; }
  .footer-cta-actions .btn { width: 100%; min-height: 50px; text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 24px; padding-bottom: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand > p { max-width: none; }
  .footer-contact { grid-column: 1 / -1; }
  .footer-column { gap: 8px; }
  .footer-column a { font-size: 13px; }
  .footer-bottom { flex-direction: column; gap: 8px; padding-top: 18px; }
  .footer-bottom p:last-child { max-width: none; text-align: left; }
  .mobile-action-bar {
    position: fixed;
    z-index: 80;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
    border-top: 1px solid #d9e0ef;
    background: rgba(255,255,255,0.97);
    box-shadow: none;
    backdrop-filter: none;
  }
  .mobile-action-bar a {
    min-height: 52px;
    border-radius: 3px;
    text-decoration: none;
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
  }
  .mobile-call {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--navy);
    color: var(--navy);
    line-height: 1.1;
  }
  .mobile-call span { font-size: 11px; text-transform: uppercase; letter-spacing: 0.07em; }
  .mobile-call strong { font-size: 13px; }
  .mobile-book { display: grid; place-items: center; background: var(--red); color: #fff; font-size: 14px; }
}
@media (max-width: 374px) {
  .logo-mark { width: 32px; height: 32px; }
  .logo-line1 { font-size: 14px; white-space: nowrap; }
  .logo-line2 { font-size: 9px; letter-spacing: 0.18em; }
  .header-cta { padding: 9px 8px; font-size: 10px; }
  .menu-toggle { width: 38px; min-height: 38px; }
}
