:root {
  --navy: #0a1f2f;
  --navy-2: #102f45;
  --blue: #1187b8;
  --sky: #dff4fb;
  --white: #fff;
  --mist: #f3f7f8;
  --line: #cad8dd;
  --ink: #17272f;
  --muted: #5b6c74;
  --warm: #e9a23b;
  --warm-dark: #bd6d0d;
  --error: #a62b22;
  --radius: 0.35rem;
  --shadow: 0 18px 45px rgba(4, 29, 43, 0.12);
  --container: 1180px;
  --header: 76px;
  --transition: 180ms ease;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: "Arial Narrow", Impact, ui-sans-serif, sans-serif;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--navy);
}
h1 {
  font-size: clamp(2.8rem, 6.5vw, 5.7rem);
  max-width: 12ch;
  margin-bottom: 1.4rem;
}
h2 {
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  margin-bottom: 1rem;
}
h3 {
  font-size: 1.4rem;
}
a {
  color: inherit;
}
.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}
.section {
  padding: clamp(4.5rem, 8vw, 8rem) 0;
}
.skip-link {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  transform: translateY(-150%);
  z-index: 999;
  background: var(--white);
  padding: 0.8rem;
}
.skip-link:focus {
  transform: none;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
:focus-visible {
  outline: 3px solid var(--warm);
  outline-offset: 3px;
}
.utility {
  background: #061723;
  color: #dce9ed;
  font-size: 0.78rem;
}
.utility__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.utility__inner a:last-child {
  margin-left: auto;
  color: var(--white);
  font-weight: 800;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--navy);
  line-height: 1;
}
.brand__mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 3px solid currentColor;
  font-weight: 900;
  font-size: 1.5rem;
  position: relative;
}
.brand__mark:after {
  content: "";
  position: absolute;
  inset: 5px;
  border-left: 1px solid currentColor;
  border-right: 1px solid currentColor;
}
.brand strong {
  font-size: 1.25rem;
  letter-spacing: 0.16em;
}
.brand small {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  margin-top: 0.3rem;
}
nav {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}
nav > a {
  font-size: 0.84rem;
  text-decoration: none;
  font-weight: 700;
}
nav > a:hover {
  color: var(--blue);
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.7rem;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px;
  background: var(--navy);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.78rem 1.3rem;
  border: 2px solid var(--navy);
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  border-radius: 2px;
  transition:
    background var(--transition),
    transform var(--transition);
}
.button:hover {
  background: var(--navy-2);
  transform: translateY(-1px);
}
.button--small {
  min-height: 42px;
  padding: 0.55rem 0.9rem;
}
.button--outline {
  background: transparent;
  color: var(--navy);
}
.button--warm {
  background: var(--warm);
  border-color: var(--warm);
  color: #241707;
}
.button--warm:hover {
  background: #f0b150;
}
.button--light {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.button--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 900;
  color: var(--blue);
  margin-bottom: 1rem;
}
.hero {
  background: linear-gradient(108deg, #f7fbfc 0 61%, var(--sky) 61%);
  padding: clamp(3.5rem, 6vw, 6rem) 0;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: 5rem;
}
.hero__lead {
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  max-width: 57ch;
  color: var(--muted);
}
.actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  padding: 1.2rem 0 0;
  margin: 0;
  border-top: 1px solid var(--line);
  list-style: none;
  font-size: 0.8rem;
  font-weight: 750;
}
.trust-strip li:before {
  content: "✓";
  color: var(--blue);
  margin-right: 0.4rem;
}
.hero__visual {
  min-height: 520px;
  position: relative;
}
.hero__photo {
  background:
    linear-gradient(180deg, transparent 65%, rgba(3, 29, 44, 0.18)),
    url("/assets/images/titan-exterior-cleaning.png") center / cover no-repeat;
  box-shadow: var(--shadow);
}
.window-scene {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  padding: 12px;
  background: var(--navy);
  box-shadow: var(--shadow);
  transform: perspective(900px) rotateY(-4deg);
}
.window-scene span {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.7), transparent 28%),
    linear-gradient(165deg, #83cfe8, #e9f8fc 48%, #7ca4b4);
  position: relative;
  overflow: hidden;
}
.window-scene span:after {
  content: "";
  position: absolute;
  left: -30%;
  right: -30%;
  bottom: -22%;
  height: 45%;
  background: #618a79;
  clip-path: polygon(
    0 70%,
    25% 20%,
    45% 68%,
    65% 10%,
    100% 60%,
    100% 100%,
    0 100%
  );
}
.hero__badge {
  position: absolute;
  left: -2rem;
  bottom: 2rem;
  background: var(--white);
  padding: 1rem 1.3rem;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--warm);
}
.hero__badge span,
.hero__badge strong {
  display: block;
}
.hero__badge span {
  font-size: 0.78rem;
  color: var(--muted);
}
.section-heading {
  max-width: 750px;
  margin-bottom: 3rem;
}
.section-heading > p:last-child {
  font-size: 1.1rem;
  color: var(--muted);
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.value-grid article {
  padding: 2rem;
  border-right: 1px solid var(--line);
}
.value-grid article:last-child {
  border: 0;
}
.index {
  font-size: 0.75rem;
  color: var(--blue);
  font-weight: 900;
}
.services {
  background: var(--mist);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.service-card {
  background: var(--white);
  border-top: 4px solid var(--blue);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  min-height: 260px;
}
.service-card > span {
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 900;
}
.service-card p {
  color: var(--muted);
}
.service-card .text-link {
  margin-top: auto;
}
.exterior-feature {
  background: var(--white);
}
.exterior-feature__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.exterior-feature__photo {
  min-height: 540px;
  background: url("/assets/images/titan-clean-home.png") center / cover
    no-repeat;
  box-shadow: var(--shadow);
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.service-panel {
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--white);
  border-top: 6px solid var(--blue);
}
.service-panel--business {
  background: var(--navy);
  border-color: var(--warm);
  color: #dce8ed;
}
.service-panel--business h2,
.service-panel--business h3 {
  color: var(--white);
}
.check-list {
  padding: 0;
  list-style: none;
  margin: 2rem 0;
}
.check-list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(100, 130, 140, 0.25);
}
.check-list li:before {
  content: "—";
  color: var(--blue);
  margin-right: 0.7rem;
}
.note {
  font-size: 0.85rem;
  color: var(--muted);
}
.service-panel--business .note {
  color: #afc4cc;
}
.text-link {
  font-weight: 900;
  color: var(--navy);
  text-decoration: none;
}
.service-panel--business .text-link {
  color: var(--warm);
}
.text-link span {
  font-size: 1.4rem;
  margin-left: 0.4rem;
}
.tabs [role="tablist"] {
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid var(--line);
}
.tabs [role="tab"] {
  border: 0;
  background: none;
  padding: 1rem 1.5rem;
  font: inherit;
  font-weight: 900;
  color: var(--muted);
  cursor: pointer;
}
.tabs [aria-selected="true"] {
  color: var(--navy);
  border-bottom: 4px solid var(--blue);
}
.tab-panels {
  background: var(--mist);
  padding: 2rem;
}
.tab-panels dl {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 0;
}
.tab-panels dt {
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.tab-panels dd {
  margin: 0;
  color: var(--muted);
}
.tab-panels [hidden] {
  display: none;
}
.showcase {
  background: #ecf4f6;
}
.showcase__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
.before-after {
  height: 480px;
  position: relative;
  overflow: hidden;
  background: #b8d9e5;
  box-shadow: var(--shadow);
}
.ba__after,
.ba__before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(155deg, transparent 45%, rgba(3, 29, 44, 0.2)),
    linear-gradient(110deg, #a6dceb 0 48%, #ecf9fc 49% 51%, #8fc4d4 52%);
}
.ba__before {
  width: 52%;
  filter: sepia(0.35) saturate(0.45) brightness(0.75);
  overflow: hidden;
  border-right: 3px solid white;
}
.ba__after span,
.ba__before span {
  position: absolute;
  top: 1rem;
  padding: 0.35rem 0.7rem;
  background: var(--navy);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
}
.ba__after span {
  right: 1rem;
}
.ba__before span {
  left: 1rem;
}
.before-after input {
  position: absolute;
  inset: auto 1rem 1rem;
  width: calc(100% - 2rem);
  z-index: 3;
}
.ba__handle {
  position: absolute;
  left: 52%;
  top: 50%;
  translate: -50% -50%;
  z-index: 2;
  background: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}
.project-thumbs {
  display: grid;
  gap: 0.5rem;
  margin-top: 2rem;
}
.project-thumbs div {
  padding: 0.8rem;
  border-top: 1px solid var(--line);
}
.project-thumbs span {
  color: var(--blue);
  font-weight: 900;
  margin-right: 1rem;
}
.count-section {
  background: var(--navy);
  color: #dce8ed;
}
.count-guide {
  display: grid;
  gap: 1.25rem;
}
.count-group {
  background: var(--white);
  color: var(--ink);
  display: grid;
  grid-template-columns: 240px 1fr;
}
.count-group > header {
  background: var(--navy-2);
  color: var(--white);
  padding: 2rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.count-group > header > span {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--warm);
  color: var(--navy);
  font-size: 1.8rem;
  font-weight: 900;
}
.count-group header p {
  margin: 0;
  color: #a9c5cf;
  font-size: 0.72rem;
  text-transform: uppercase;
}
.count-group header h3 {
  color: var(--white);
  margin: 0.15rem 0 0;
}
.count-group__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 1rem;
}
.count-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
}
.count-item h4 {
  margin: 0 0 0.25rem;
  color: var(--navy);
}
.count-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}
.mini-window {
  height: 62px;
  display: flex;
  gap: 3px;
}
.mini-window i {
  flex: 1;
  border: 3px solid #337f99;
  position: relative;
  background: #e4f5fa;
}
.mini-window i:after {
  content: "";
  position: absolute;
  inset: 48% 0 auto;
  border-top: 1px solid #7eb4c5;
}
.mini-window--1 i:nth-child(n + 2),
.mini-window--2 i:nth-child(3) {
  display: none;
}
.mini-window--s i {
  transform: skewY(-7deg);
}
.special-note .button {
  margin-top: 1rem;
}
.section-heading--light h2 {
  color: #fff;
}
.section-heading--light p:last-child {
  color: #bed0d6;
}
.count-rules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.count-rules article {
  padding: 2rem;
  background: var(--navy-2);
  border-top: 3px solid var(--blue);
}
.count-rules h3 {
  color: #fff;
}
.window-icon {
  height: 90px;
  display: flex;
  gap: 4px;
  margin-bottom: 1.3rem;
}
.window-icon i {
  display: block;
  flex: 1;
  border: 2px solid #a5dff0;
  position: relative;
}
.window-icon i:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  border-left: 1px solid #7db5c6;
}
.estimator {
  margin-top: 2rem;
  background: var(--white);
  color: var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.estimator__builder,
.estimator__summary {
  padding: clamp(1.5rem, 4vw, 3rem);
}
.estimator__summary {
  background: #dff3f8;
}
.estimator label,
.quote label {
  display: block;
  font-weight: 750;
  font-size: 0.9rem;
  margin: 0.9rem 0;
}
.estimator select,
.estimator input,
.quote input,
.quote select,
.quote textarea,
.area input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #9fb2b9;
  border-radius: 2px;
  padding: 0.7rem;
  font: inherit;
  background: #fff;
  color: var(--ink);
}
.add-row,
.zip-row {
  display: flex;
  gap: 0.5rem;
}
.add-row .button,
.zip-row .button {
  white-space: nowrap;
}
.estimator fieldset,
.quote fieldset {
  border: 0;
  padding: 0;
  margin: 2rem 0;
}
.estimator legend,
.quote legend {
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: 1.4rem;
  color: var(--navy);
  font-weight: 800;
}
.check {
  display: flex !important;
  gap: 0.6rem;
  align-items: flex-start;
  font-weight: 500 !important;
}
.check input {
  width: 20px !important;
  min-height: 20px !important;
  flex: 0 0 auto;
}
.total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #9ec2ce;
  padding-bottom: 1rem;
}
.total strong {
  font-size: 3.4rem;
  color: var(--navy);
}
.estimator__summary ul {
  padding: 0;
  list-style: none;
}
.estimator__summary li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid #b8d6df;
  padding: 0.75rem 0;
}
.entry-actions button {
  border: 0;
  background: none;
  text-decoration: underline;
  cursor: pointer;
}
.fine-print {
  font-size: 0.76rem;
  color: var(--muted);
  margin-top: 1rem;
}
.special-note {
  padding: 2rem 0;
  border-top: 1px solid #355467;
  margin-top: 2rem;
}
.special-note h3 {
  color: #fff;
}
.process ol {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.process li > span {
  display: block;
  color: var(--blue);
  font-weight: 900;
  border-bottom: 3px solid var(--navy);
  padding-bottom: 0.8rem;
  margin-bottom: 1.3rem;
}
.promise {
  padding: 3rem 0;
  background: var(--sky);
}
.promise__inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 4rem;
}
.promise h2 {
  margin: 0;
}
.commercial-band,
.final-cta {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--navy);
  color: #dce8ed;
}
.commercial-band .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}
.commercial-band h2,
.final-cta h2 {
  color: #fff;
}
.commercial-band p {
  max-width: 700px;
}
.area {
  background: var(--mist);
}
.area__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  list-style: none;
}
.service-map {
  min-height: 680px;
  background: var(--white);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.service-map__canvas {
  position: relative;
  min-height: 630px;
  flex: 1;
  overflow: hidden;
}
.service-map iframe {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 630px;
  display: block;
}
.service-radius {
  position: absolute;
  left: 56%;
  top: 49%;
  width: min(68%, 520px);
  aspect-ratio: 1;
  translate: -50% -50%;
  border: 3px solid rgba(5, 104, 139, 0.88);
  border-radius: 50%;
  background: rgba(20, 146, 183, 0.2);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.75) inset;
  pointer-events: none;
  display: grid;
  place-items: end center;
}
.service-radius span {
  translate: 0 50%;
  background: var(--navy);
  color: var(--white);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: var(--shadow);
}
.service-map p {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
  padding: 0.7rem 1rem;
  color: var(--muted);
  font-size: 0.72rem;
}
.service-map a {
  font-weight: 800;
}
.area-list li {
  padding: 0.35rem 0.7rem;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.82rem;
}
.map-motif {
  height: 480px;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  border: 12px solid #fff;
  box-shadow: var(--shadow);
}
.ring {
  position: absolute;
  border: 1px solid #447589;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
}
.ring--1 {
  width: 150px;
  height: 150px;
}
.ring--2 {
  width: 300px;
  height: 300px;
}
.ring--3 {
  width: 480px;
  height: 480px;
}
.map-label {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  color: #fff;
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.dot {
  position: absolute;
  width: 9px;
  height: 9px;
  background: var(--warm);
  border-radius: 50%;
}
.dot b {
  position: absolute;
  color: #b9d1da;
  font-size: 0.65rem;
  white-space: nowrap;
  left: 14px;
  top: -6px;
  font-style: normal;
}
.dot--1 {
  left: 17%;
  top: 48%;
}
.dot--2 {
  left: 33%;
  top: 24%;
}
.dot--3 {
  left: 52%;
  top: 15%;
}
.dot--4 {
  left: 54%;
  top: 52%;
}
.dot--5 {
  left: 30%;
  top: 70%;
}
.dot--6 {
  left: 59%;
  top: 76%;
}
.dot--7 {
  left: 72%;
  top: 86%;
}
.faq__grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 5rem;
}
.accordion details {
  border-top: 1px solid var(--line);
}
.accordion details:last-child {
  border-bottom: 1px solid var(--line);
}
.accordion summary {
  padding: 1.2rem 0;
  font-weight: 850;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.accordion summary span {
  font-size: 1.5rem;
}
.accordion details[open] summary span {
  rotate: 45deg;
}
.accordion details p {
  color: var(--muted);
  padding-right: 2rem;
}
.quote {
  background: #eaf2f4;
}
.quote__grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 5rem;
  align-items: start;
}
.quote__intro {
  position: sticky;
  top: 130px;
}
.quote form {
  background: #fff;
  padding: clamp(1.5rem, 4vw, 3rem);
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1rem;
}
.form-wide {
  grid-column: 1 / -1;
}
.service-choices {
  margin: 1rem 0 !important;
  padding: 1.25rem !important;
  border: 1px solid var(--line) !important;
  background: #f7fbfc;
}
.service-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 1rem;
}
.service-choice-grid .check {
  margin: 0;
  padding: 0.65rem 0;
}
.quote-points {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}
.quote-points li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
}
.quote-points li:before {
  content: "✓";
  color: var(--blue);
  margin-right: 0.6rem;
  font-weight: 900;
}
.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.quote em {
  font-style: normal;
  color: var(--error);
  font-size: 0.68rem;
  text-transform: uppercase;
}
.error {
  display: block;
  color: var(--error);
  font-size: 0.8rem;
}
.form-alert {
  background: #fff0ef;
  border-left: 5px solid var(--error);
  padding: 1rem;
  color: #7b1f1a;
}
.honeypot {
  position: absolute;
  left: -9999px;
}
.button--submit {
  width: 100%;
  margin-top: 1rem;
}
.quote__contact {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
.quote__contact a,
.quote__contact span,
.quote__contact small {
  display: block;
}
.quote__contact a {
  font-size: 1.3rem;
  font-weight: 900;
}
.final-cta {
  text-align: center;
}
.final-cta p {
  margin-inline: auto;
}
.final-cta .actions {
  justify-content: center;
}
.footer {
  background: #061722;
  color: #a9c0c9;
  padding: 4rem 0 1rem;
}
.footer__grid .footer__brand {
  display: inline-flex;
  background: var(--white);
  color: var(--navy);
  padding: 0.8rem 1rem;
  margin: 0;
  border-radius: 2px;
  box-shadow: var(--shadow);
}
.footer__grid .footer__brand .brand__mark {
  display: grid;
  margin: 0;
}
.footer__grid .footer__brand > span:last-child {
  display: block;
  margin: 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 3rem;
}
.footer h2 {
  color: #fff;
  font-size: 1rem;
}
.footer__grid a,
.footer__grid span {
  display: block;
  margin: 0.5rem 0;
  text-decoration: none;
}
.footer__bottom {
  border-top: 1px solid #274451;
  padding-top: 1rem;
  margin-top: 3rem;
  font-size: 0.78rem;
}
.legal,
.status-page {
  max-width: 820px;
  padding-top: 5rem;
  padding-bottom: 6rem;
}
.legal h1,
.status-page h1 {
  font-size: clamp(2.7rem, 6vw, 4.7rem);
}
.mobile-actions {
  display: none;
}
@media (max-width: 980px) {
  .utility__hours {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    padding: 1rem;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  nav.is-open {
    display: flex;
  }
  .hero__grid,
  .exterior-feature__grid,
  .showcase__grid,
  .area__grid,
  .faq__grid,
  .quote__grid {
    grid-template-columns: 1fr;
  }
  .hero__visual {
    min-height: 380px;
  }
  .value-grid {
    grid-template-columns: 1fr 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .count-group {
    grid-template-columns: 1fr;
  }
  .value-grid article:nth-child(2) {
    border-right: 0;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .tab-panels dl,
  .process ol {
    grid-template-columns: 1fr 1fr;
  }
  .quote__intro {
    position: static;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 650px) {
  body {
    padding-bottom: 65px;
  }
  .utility__inner {
    gap: 0.7rem;
    justify-content: space-between;
  }
  .utility__inner a:last-child {
    margin: 0;
  }
  .utility__inner > span:first-child {
    white-space: nowrap;
  }
  .hero {
    background: linear-gradient(#f7fbfc 0 68%, var(--sky) 68%);
  }
  .hero__grid {
    gap: 2.5rem;
  }
  .hero__visual {
    min-height: 300px;
  }
  .hero__badge {
    left: 0.7rem;
    bottom: 0.7rem;
  }
  .value-grid,
  .services-grid,
  .count-rules,
  .estimator,
  .promise__inner,
  .form-grid,
  .choice-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .count-group__items {
    grid-template-columns: 1fr;
  }
  .service-choice-grid {
    grid-template-columns: 1fr;
  }
  .count-item {
    grid-template-columns: 64px 1fr;
    padding: 0.9rem 0.5rem;
  }
  .exterior-feature__photo {
    min-height: 330px;
  }
  .service-map {
    min-height: 500px;
  }
  .service-map__canvas,
  .service-map iframe {
    min-height: 450px;
  }
  .service-radius {
    left: 55%;
    width: min(76%, 380px);
  }
  .service-map p {
    flex-direction: column;
    gap: 0.2rem;
  }
  .value-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .tab-panels dl,
  .process ol {
    grid-template-columns: 1fr;
  }
  .tab-panels {
    padding: 1rem;
  }
  .showcase__grid,
  .area__grid,
  .faq__grid,
  .quote__grid {
    gap: 2rem;
  }
  .before-after {
    height: 350px;
  }
  .commercial-band .container {
    display: block;
  }
  .commercial-band .button {
    margin-top: 1rem;
  }
  .map-motif {
    height: 360px;
  }
  .quote form {
    padding: 1rem;
  }
  .mobile-actions {
    position: fixed;
    display: flex;
    left: 0.5rem;
    right: 0.5rem;
    bottom: max(0.5rem, env(safe-area-inset-bottom));
    z-index: 60;
    background: #fff;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
    min-height: 56px;
  }
  .mobile-actions > a {
    flex: 1;
    display: grid;
    place-items: center;
    text-decoration: none;
    font-weight: 900;
    border-left: 1px solid var(--line);
  }
  .mobile-actions > a:last-child {
    background: var(--warm);
    color: #241707;
  }
  .mobile-actions button {
    width: 38px;
    border: 0;
    background: #fff;
    font-size: 1.2rem;
  }
  .mobile-actions.is-hidden {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
  }
}
