@font-face {
  font-family: "Placard Next Wide";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/PlacardNextWideRg.woff") format("woff");
}

@font-face {
  font-family: "Placard Next Wide";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/PlacardNextWideBd.woff") format("woff");
}

:root {
  --accent: #4e8fc0;
  --accent-dark: #284a66;
  --wet: #1f4858;
  --wet-deep: #142c38;
  --wet-black: #111a20;
  --accent-soft: #c9def0;
  --accent-pale: #edf5fb;
  --black: #2a2f36;
  --charcoal: #284a66;
  --paper: #f5f8fb;
  --white: #fbfdff;
  --sand: #ebe3d6;
  --brown: #655348;
  --muted: #5e6972;
  --line: #d8e3ec;
  --shadow: 0 18px 44px rgba(31, 72, 88, 0.15);
  --display: "Placard Next Wide", Impact, "Arial Black", Haettenschweiler, "Franklin Gothic Heavy", sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--black);
  background: var(--paper);
  font-family: var(--body);
  line-height: 1.45;
}

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

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

button {
  font: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--accent-soft);
  outline-offset: 4px;
}

.wrap {
  width: min(1210px, calc(100% - 48px));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

main section[id],
.recent[id] {
  scroll-margin-top: 164px;
}

.button {
  display: inline-flex;
  min-height: 74px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 0 34px;
  color: var(--white);
  background: var(--accent);
  font-family: var(--body);
  font-size: 1.52rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

.button--ghost {
  border: 3px solid var(--accent);
  color: var(--white);
  background: transparent;
}

.button--ghost:hover {
  background: rgba(78, 143, 192, 0.16);
}

.button--solid {
  box-shadow: 0 16px 32px rgba(40, 74, 102, 0.22);
}

.top-strip {
  position: sticky;
  top: 0;
  z-index: 60;
  color: var(--white);
  background: var(--accent-dark);
}

.top-strip__inner {
  width: min(1180px, calc(100% - 48px));
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
}

.top-strip__items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 42px;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.top-strip__items > span,
.top-strip__items > a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 9px;
}

.top-strip__label--short {
  display: none;
}

.top-strip svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
}

.top-strip__social svg {
  width: 21px;
  height: 21px;
}

.top-strip__social {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  width: 44px;
  justify-content: center;
}

.main-nav {
  position: sticky;
  top: 48px;
  z-index: 55;
}

.main-nav__inner {
  width: 100%;
  min-height: 88px;
  display: grid;
  grid-template-columns: 198px 1fr 318px;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0 88px;
  border-radius: 0 0 28px 28px;
  color: var(--black);
  background: rgba(251, 253, 255, 0.96);
  box-shadow: 0 14px 34px rgba(31, 72, 88, 0.12);
}

.brand img {
  width: 160px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1.02rem;
  font-weight: 600;
}

.nav-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--black);
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--accent);
}

.nav-cta {
  justify-self: end;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  padding: 0 20px;
  background: var(--wet);
  color: var(--white);
  font-family: var(--body);
  font-size: 1.18rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 12px 30px rgba(78, 143, 192, 0.26);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 754px;
  display: grid;
  align-items: start;
  margin-top: -88px;
  padding-top: 88px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.1) 36%, rgba(0, 0, 0, 0.42) 70%, rgba(0, 0, 0, 0.9) 92%, #000 100%),
    linear-gradient(90deg, rgba(20, 44, 56, 0.32), rgba(78, 143, 192, 0.1)),
    url("assets/arco-hero-window-cleaning.jpg") center top / 100% auto no-repeat;
  background-color: #000;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.02) 42%, rgba(0, 0, 0, 0.32) 77%, #000 100%);
}

.hero::after {
  content: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(1380px, calc(100% - 40px));
  max-width: 1380px;
  min-width: 0;
  padding-top: 58px;
}

.hero__kicker {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.35rem, 2.23vw, 2rem);
  font-weight: 900;
  line-height: 1;
}

.hero-proof {
  width: max-content;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 22px;
  color: var(--accent-dark);
  font-size: 0.88rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-proof a,
.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 28px rgba(40, 74, 102, 0.16);
  max-width: 100%;
}

.google-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  margin-right: 7px;
}

.google-icon--inline {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

.google-icon--small {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

.hero h1 {
  max-width: 1360px;
  margin: 0 auto;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(4.1rem, 5.35vw, 4.8125rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0;
  text-shadow: 0 8px 26px rgba(17, 26, 32, 0.34);
  text-transform: none;
}

.hero h1 b {
  color: var(--white);
  font-weight: 700;
}

.hero h1 span {
  font-weight: 400;
}

.hero__content > p:not(.hero__kicker) {
  max-width: 1080px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.5rem;
  line-height: 1.45;
  font-weight: 500;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 34px;
}

.proof-stage {
  position: relative;
  min-height: 0;
  margin-top: -1px;
  overflow: hidden;
  color: var(--black);
  background:
    linear-gradient(180deg, #000 0, #000 34px, rgba(0, 0, 0, 0.82) 58px, rgba(0, 0, 0, 0.36) 92px, rgba(17, 26, 32, 0.2) 124px, rgba(31, 72, 88, 0.46) 100%),
    url("assets/surface-roof-shingle.png") center top / 100% 313px repeat-y;
  background-color: #111a20;
}

.proof-stage::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 0;
  height: 92px;
  background: var(--white);
  pointer-events: none;
}

.proof-stage__blur,
.proof-stage__wood {
  display: none;
}

.proof-stage__blur {
  top: 0;
  height: 285px;
  background:
    linear-gradient(180deg, rgba(245, 248, 251, 0), rgba(245, 248, 251, 0.96)),
    url("assets/surface-window-glass.jpg") center 44% / cover no-repeat;
  filter: blur(4px) saturate(0.86) brightness(1.08);
}

.proof-stage__wood {
  top: 175px;
  bottom: 0;
  opacity: 0.58;
  background:
    linear-gradient(180deg, rgba(251, 253, 255, 0.88), rgba(251, 253, 255, 0.64) 42%, rgba(235, 227, 214, 0.64)),
    url("assets/surface-asphalt-clean-wall.jpg") center top / cover no-repeat;
}

.proof-stage__wood::before,
.question-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), transparent 18%, transparent 76%, rgba(255, 255, 255, 0.72));
  mix-blend-mode: screen;
  opacity: 0.35;
}

.proof-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
  padding-top: 62px;
  padding-bottom: 66px;
}

.proof-card {
  min-height: 364px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(245, 248, 251, 0.32);
  border-radius: 28px;
  padding: 24px 24px 24px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 8%, rgba(78, 143, 192, 0.18), transparent 38%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018) 44%, rgba(255, 255, 255, 0.06)),
    rgba(10, 15, 18, 0.74);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(6px) saturate(1.1);
}

.proof-card--two,
.proof-card--three,
.proof-card--four {
  margin-top: 0;
}

.proof-card__poster {
  display: grid;
  gap: 5px;
  margin-bottom: 15px;
  font-family: var(--display);
  line-height: 0.86;
  text-transform: uppercase;
}

.proof-card--one .proof-card__poster {
  grid-template-columns: 0.62fr 1fr;
  align-items: center;
  column-gap: 14px;
}

.proof-card__poster--logos {
  gap: 10px;
}

.proof-card__poster--clients {
  width: 100%;
  margin: 0 0 20px;
}

.client-logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.client-logo-row span {
  width: auto;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(251, 253, 255, 0.24);
  border-radius: 999px;
  padding: 0 11px;
  color: var(--white);
  background: rgba(251, 253, 255, 0.08);
  font-family: var(--body);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.poster-xl {
  color: var(--accent-soft);
  font-size: 4.25rem;
}

.proof-card__poster span {
  width: 100%;
  min-width: 0;
  overflow-wrap: break-word;
}

.proof-card__poster .client-logo-row span {
  width: auto;
}

.poster-light {
  color: var(--white);
  font-size: clamp(2.65rem, 3.3vw, 3.75rem);
}

.poster-accent {
  color: var(--white);
  font-size: clamp(2.65rem, 3.3vw, 3.75rem);
}

.poster-amp {
  color: #4fb5e6;
  font-size: clamp(2.5rem, 3.1vw, 3.55rem);
}

.poster-number {
  grid-row: span 3;
  align-self: center;
  color: var(--accent);
  font-size: clamp(5.8rem, 7.2vw, 8.25rem);
  line-height: 0.76;
}

.poster-rating {
  display: grid;
  align-self: end;
  color: var(--accent);
  font-size: clamp(2.55rem, 3vw, 3.45rem);
  line-height: 0.86;
}

.poster-rating em {
  color: var(--white);
  font-style: normal;
  font-size: clamp(1.55rem, 1.9vw, 2.15rem);
}

.poster-star-row {
  color: var(--accent);
  font-family: var(--body);
  font-size: clamp(1.15rem, 1.42vw, 1.65rem);
  font-weight: 950;
  letter-spacing: 0.04em;
}

.proof-card p {
  min-height: 50px;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.12rem, 1.22vw, 1.28rem);
  font-weight: 350;
  line-height: 1.42;
}

.proof-card h3 {
  margin: 0 0 12px;
  color: var(--accent);
  font-family: var(--display);
  font-size: clamp(1.86rem, 2.12vw, 2.42rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.proof-card--four h3 {
  max-width: 9.8ch;
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 2.55vw, 3rem);
  line-height: 0.88;
}

.proof-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 2px solid var(--accent);
  border-radius: 10px;
  padding: 0 24px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--body);
  font-size: 1.04rem;
  font-weight: 850;
  text-transform: uppercase;
}

.recent {
  position: relative;
  z-index: 2;
  width: 100vw;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: 36px;
  align-items: start;
  margin-top: 0;
  margin-left: calc(50% - 50vw);
  padding: 82px max(24px, calc((100vw - 980px) / 2)) 118px;
  border-radius: 0 0 58px 58px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.9) 42px, #000 90px, #000 100%);
  overflow: hidden;
  text-align: center;
}

.recent::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0, rgba(78, 143, 192, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(78, 143, 192, 0.05), transparent 18%);
  pointer-events: none;
}

.recent__copy,
.recent__image,
.recent__button {
  position: relative;
  z-index: 1;
}

.recent__copy {
  width: min(860px, 100%);
}

.recent__copy h2 {
  margin: 0;
  color: var(--accent);
  font-family: var(--display);
  font-size: clamp(5.8rem, 10vw, 9.25rem);
  line-height: 0.84;
  text-transform: uppercase;
}

.recent__copy h2 span {
  display: block;
}

.recent__copy h3 {
  margin: 28px 0 24px;
  color: var(--white);
  font-size: clamp(2rem, 3.05vw, 3rem);
  line-height: 1;
  font-weight: 850;
  text-transform: uppercase;
}

.recent__copy p {
  max-width: 710px;
  margin: 0 auto;
  color: rgba(251, 253, 255, 0.84);
  font-size: clamp(1.25rem, 1.75vw, 1.65rem);
  line-height: 1.45;
}

.recent__image {
  position: relative;
  width: min(860px, 100%);
  overflow: hidden;
  border: 14px solid var(--accent);
  border-radius: 34px;
  background: var(--accent);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.34);
}

.recent__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.image-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  border-radius: 7px;
  padding: 12px 14px;
  color: var(--wet);
  background: rgba(251, 253, 255, 0.92);
  font-size: 0.86rem;
  font-weight: 850;
  text-align: center;
}

.recent__button {
  min-width: min(430px, 100%);
  background: var(--accent);
  box-shadow: none;
}

.reviews {
  position: relative;
  z-index: 2;
  margin-top: 0;
  border-radius: 0;
  padding: 72px 0 96px;
  color: var(--black);
  background: var(--white);
}

.section-title {
  margin: 0 0 56px;
  text-align: center;
  font-family: var(--display);
  font-size: clamp(4.35rem, 5.65vw, 5.0625rem);
  line-height: 1;
  text-transform: uppercase;
}

.reviews .section-title {
  color: #000;
  text-shadow: none;
}

.section-title span,
.question-band h2 span,
.footer-cta h2 span,
.footer-cta h2 em {
  display: block;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.story-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 0;
  border-radius: 8px;
  background: var(--wet);
  color: var(--white);
  text-align: center;
}

.story-card--drop {
  margin-top: 0;
  background: var(--accent);
}

.story-card--lower {
  margin-top: 0;
  background: #3f6d89;
}

.review-beforeafter {
  position: relative;
  min-height: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: ew-resize;
  touch-action: none;
  background: #d9e6ef;
}

.review-beforeafter::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(180deg, rgba(42, 47, 54, 0.02), rgba(42, 47, 54, 0.18));
  pointer-events: none;
}

.review-beforeafter__layer {
  position: absolute;
  inset: 0;
  background-image: var(--ba-before-image);
  background-repeat: no-repeat;
  background-position: var(--ba-before-position, center);
  background-size: cover;
}

.review-beforeafter__after {
  z-index: 2;
  background-image: var(--ba-after-image);
  background-position: var(--ba-after-position, center);
  clip-path: inset(0 0 0 var(--ba-pos));
}

.review-beforeafter--windows {
  --ba-before-image: url("assets/review-window-before.jpg");
  --ba-after-image: url("assets/review-window-after.jpg");
  --ba-before-position: center 42%;
  --ba-after-position: center 48%;
}

.review-beforeafter--driveway {
  --ba-before-image: url("assets/review-driveway-before.jpg");
  --ba-after-image: url("assets/review-driveway-after.jpg");
  --ba-before-position: center 62%;
  --ba-after-position: center 62%;
}

.review-beforeafter--gutter {
  --ba-before-image: url("assets/review-roof-before.jpg");
  --ba-after-image: url("assets/review-roof-after.jpg");
  --ba-before-position: center 42%;
  --ba-after-position: center 42%;
}

.review-beforeafter__range {
  position: absolute;
  inset: 0;
  z-index: 18;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.review-beforeafter__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ba-pos);
  z-index: 8;
  width: 3px;
  background: var(--white);
  transform: translateX(-50%);
  box-shadow: 0 0 15px rgba(42, 47, 54, 0.42);
  pointer-events: none;
}

.review-beforeafter__handle {
  position: absolute;
  top: 50%;
  left: var(--ba-pos);
  z-index: 9;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: rgba(42, 47, 54, 0.16);
  box-shadow: 0 0 15px rgba(42, 47, 54, 0.44);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.review-beforeafter__handle::before,
.review-beforeafter__handle::after {
  content: "";
  position: absolute;
  top: 50%;
  border: 7px solid transparent;
  transform: translateY(-50%);
}

.review-beforeafter__handle::before {
  left: 7px;
  border-right-color: var(--white);
}

.review-beforeafter__handle::after {
  right: 7px;
  border-left-color: var(--white);
}

.review-beforeafter__labels {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.review-beforeafter__labels span,
.review-beforeafter__google {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  color: var(--accent-dark);
  background: rgba(251, 253, 255, 0.9);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(40, 74, 102, 0.18);
}

.review-beforeafter__google {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  min-height: 38px;
  padding-right: 14px;
  letter-spacing: 0.02em;
  text-transform: none;
}

.story-card__body {
  flex: 1;
  min-height: 184px;
  padding: 28px 28px 30px;
}

.story-card h3 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: 2.6rem;
  line-height: 1;
}

.story-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
}

.reviews__button {
  display: flex;
  width: max-content;
  margin: 38px auto 0;
  background: var(--accent);
}

.services {
  position: relative;
  overflow: hidden;
  border-radius: 64px 64px 0 0;
  padding: 78px 0 96px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 0, rgba(78, 143, 192, 0.16), transparent 34%),
    linear-gradient(180deg, #111314 0%, #090c0e 52%, #0d1519 100%);
}

.services__intro {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 14px;
  align-items: center;
  margin-bottom: 50px;
  text-align: center;
}

.fleet-visual {
  width: 100%;
  min-height: 188px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.truck-panel {
  position: relative;
  width: min(620px, 86vw);
  aspect-ratio: 16 / 8.15;
  overflow: visible;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  padding: 2px 0 0;
  background: transparent;
  box-shadow: none;
}

.truck-panel::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 9%;
  bottom: 7%;
  height: 18%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.34);
  filter: blur(15px);
}

.truck-panel__image {
  position: relative;
  z-index: 1;
  width: 106%;
  max-width: none;
  height: auto;
  transform: translate(0, 5%);
  filter: drop-shadow(0 26px 28px rgba(0, 0, 0, 0.34));
}

.services__heading {
  display: grid;
  justify-items: center;
  text-align: center;
}

.services__heading h2 {
  margin: 0 0 24px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(4.9rem, 7vw, 6.25rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.services__heading h2 b {
  color: var(--white);
  font-weight: inherit;
}

.services__heading .button {
  min-width: min(500px, 100%);
  min-height: 72px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.service-card {
  overflow: hidden;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid rgba(251, 253, 255, 0.16);
  border-radius: 14px;
  background: rgba(18, 25, 29, 0.96);
  color: var(--white);
  text-align: center;
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.34);
}

.service-card--drop {
  margin-top: 0;
}

.service-card--lower {
  margin-top: 0;
}

.service-card--center {
  grid-column: span 1;
  transform: translateX(50%);
}

.service-card__visual {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  flex: 0 0 auto;
  background-repeat: no-repeat;
  background-size: cover;
}

.service-card__visual--window {
  background-image: url("assets/service-window-cleaning.jpg");
  background-position: center 48%;
}

.service-card__visual--pressure {
  background-image: url("assets/service-photo-sheet.jpg");
  background-size: 332% 224%;
  background-position: 50% 2%;
}

.service-card__visual--gutter {
  background-image: url("assets/service-gutter-cleaning.jpg");
  background-position: center 50%;
}

.service-card__visual--moss {
  background-image: url("assets/service-roof-moss-removal.jpg");
  background-position: center 48%;
}

.service-card__visual--house {
  background-image: url("assets/service-photo-sheet.jpg");
  background-size: 332% 224%;
  background-position: 50% 98%;
}

.service-card__visual--driveway {
  background-image: url("assets/service-driveway-cleaning.jpg");
  background-position: center 54%;
}

.service-card__copy {
  flex: 1;
  min-height: 136px;
  display: grid;
  align-content: start;
  border-bottom: 30px solid var(--accent);
  padding: 20px 22px 22px;
}

.service-card h3 {
  margin: 0 0 12px;
  color: var(--accent);
  font-family: var(--display);
  font-size: clamp(1.82rem, 2.32vw, 2.32rem);
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.service-card p {
  margin: 0;
  color: rgba(251, 253, 255, 0.82);
  font-size: 1rem;
  line-height: 1.42;
}

.question-band {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(20, 44, 56, 0.9), rgba(78, 143, 192, 0.38)),
    url("assets/surface-window-glass.jpg") center / cover no-repeat;
}

.question-band__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  align-items: center;
}

.question-band h2,
.question-band a {
  min-height: 170px;
  display: flex;
  align-items: center;
  font-family: var(--display);
  font-size: clamp(3rem, 4.05vw, 3.625rem);
  line-height: 1;
  text-transform: uppercase;
}

.question-band h2 {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin: 0;
  border-radius: 22px 0 0 22px;
  padding-left: 64px;
  color: var(--white);
  background: rgba(78, 143, 192, 0.94);
}

.question-band a {
  gap: 26px;
  border-radius: 0 22px 22px 0;
  padding-left: 48px;
  color: var(--wet);
  background: rgba(251, 253, 255, 0.9);
}

.question-band svg {
  width: 54px;
  height: 54px;
  fill: currentColor;
}

.service-area {
  padding: 82px 0 78px;
  background: var(--white);
}

.service-area__title {
  margin: 0;
  color: var(--wet);
  text-align: center;
  font-family: var(--display);
  font-size: clamp(4rem, 6.5vw, 5.875rem);
  line-height: 1;
  text-transform: uppercase;
}

.service-area h3 {
  margin: 14px 0 48px;
  color: #141414;
  text-align: center;
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.service-area__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 56px;
  align-items: center;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.map-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1299 / 1211;
  border: 10px solid rgba(245, 248, 251, 0.98);
  border-radius: 8px;
  background: url("assets/arco-service-area-map.jpg") center / cover no-repeat;
  box-shadow: 0 22px 54px rgba(31, 72, 88, 0.16);
}

.serving-list {
  display: grid;
  gap: 28px;
  text-align: center;
}

.serving-list p {
  margin: 0 0 8px;
  color: #6a5148;
  font-family: var(--display);
  font-size: 3rem;
  line-height: 1;
  text-transform: uppercase;
}

.serving-list span,
.serving-list strong {
  display: flex;
  min-height: 98px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  padding: 0 22px;
  color: var(--white);
  background: var(--wet);
  font-family: var(--display);
  font-size: 2.125rem;
  line-height: 1;
  text-transform: uppercase;
}

.serving-list span:nth-of-type(2) {
  background: var(--accent);
}

.serving-list span:nth-of-type(3) {
  background: #6f9fbd;
}

.serving-list span:nth-of-type(4) {
  color: var(--accent-dark);
  background: var(--accent-soft);
}

.serving-list span:nth-of-type(5) {
  background: var(--sand);
  color: var(--black);
}

.serving-list strong {
  min-height: 62px;
  color: #202020;
  background: transparent;
  font-size: 1.55rem;
}

.serving-list .button {
  width: max-content;
  min-height: 64px;
  margin: 0 auto;
  background: var(--brown);
}

.google-reviews {
  overflow: hidden;
  padding: 0 0 76px;
  background: var(--paper);
}

.rv-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.rv-header p {
  display: inline-flex;
  align-items: center;
  margin: 0 0 4px;
  color: #555;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.rv-score {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rv-score strong {
  color: var(--accent-dark);
  font-size: 2.15rem;
  line-height: 1;
}

.rv-score span {
  color: var(--accent-dark);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}

.rv-score small {
  color: #777;
}

.rv-review {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  padding: 0 22px;
  background: var(--brown);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
}

.rv-review .google-icon {
  margin-right: 8px;
}

.rv-viewport {
  max-width: 100%;
  overflow: hidden;
  contain: layout paint;
}

.rv-track {
  display: flex;
  gap: 14px;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.rv-card {
  flex: 0 0 auto;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  border-radius: 10px;
  padding: 24px 22px;
  color: var(--white);
  background: var(--accent-dark);
}

.rv-card h3 {
  margin: 0;
  font-size: 1rem;
}

.rv-card .stars {
  letter-spacing: 0.08em;
}

.rv-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.96rem;
  line-height: 1.58;
}

.rv-card small {
  margin-top: auto;
  color: rgba(255, 255, 255, 0.48);
  font-weight: 800;
}

.rv-card small {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.rv-card small img {
  width: 16px;
  height: 16px;
}

.rv-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 21px;
}

.rv-dots {
  display: flex;
  gap: 0;
}

.rv-dots button {
  position: relative;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.rv-dots button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cfcfcf;
  transform: translate(-50%, -50%);
}

.rv-dots button.active::after {
  background: var(--accent-dark);
  transform: translate(-50%, -50%) scale(1.24);
}

.rv-arrows {
  display: flex;
  gap: 10px;
}

.rv-arrows button {
  width: 46px;
  height: 46px;
  border: 1px solid #d7d7d7;
  border-radius: 50%;
  color: var(--accent-dark);
  background: transparent;
  cursor: pointer;
}

.rv-arrows button:disabled {
  opacity: 0.35;
  cursor: default;
}

.footer-cta {
  position: relative;
  overflow: hidden;
  padding: 92px 0 80px;
  color: var(--white);
  text-align: center;
  background: #070c10;
}

.footer-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 12, 16, 0.9) 0%, rgba(7, 12, 16, 0.68) 36%, rgba(7, 12, 16, 0.96) 100%),
    url("assets/surface-roof-shingle.png") center / cover no-repeat;
  opacity: 0.74;
}

.footer-cta__inner {
  position: relative;
  z-index: 1;
  min-height: 0;
  display: grid;
  justify-items: center;
  gap: 26px;
}

.footer-cta h2 {
  margin: 0;
  max-width: 920px;
  display: grid;
  justify-items: center;
  gap: 4px;
  text-align: center;
  line-height: 1;
}

.footer-cta h2 span {
  color: var(--accent);
  font-family: var(--display);
  font-size: clamp(3.8rem, 7vw, 7.05rem);
  font-style: normal;
  text-transform: uppercase;
}

.footer-cta h2 em {
  color: var(--white);
  font-size: clamp(1.9rem, 3.6vw, 3.15rem);
  font-style: normal;
  font-weight: 900;
}

.footer-cta .button {
  width: min(560px, 100%);
  min-height: 78px;
}

.site-footer {
  padding: 82px 0 56px;
  color: rgba(251, 253, 255, 0.84);
  background:
    radial-gradient(circle at 50% 0%, rgba(78, 143, 192, 0.22), transparent 32%),
    linear-gradient(180deg, #0a1014 0%, #132d39 100%);
  text-align: center;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px 30px;
  align-items: start;
  justify-items: center;
}

.site-footer__grid > div:first-child {
  grid-column: 1 / -1;
  display: grid;
  justify-items: center;
}

.site-footer__grid > div:not(:first-child) {
  width: 100%;
  max-width: 360px;
  display: grid;
  justify-items: center;
  border-top: 1px solid rgba(201, 222, 240, 0.18);
  padding-top: 28px;
}

.site-footer img {
  width: min(340px, 72vw);
  margin: 0 auto;
  filter: brightness(0) invert(1);
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 34px;
}

.footer-socials a {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 222, 240, 0.18);
  border-radius: 50%;
  color: var(--white);
  background: var(--accent-dark);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.26);
}

.footer-socials svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.footer-google-icon {
  width: 27px;
  height: 27px;
}

.site-footer h3 {
  margin: 0 0 22px;
  color: var(--accent-soft);
  font-family: var(--display);
  font-size: clamp(1.9rem, 2.5vw, 2.65rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-footer a,
.site-footer span {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 10px;
  color: rgba(251, 253, 255, 0.84);
  font-size: 1.02rem;
  line-height: 1.35;
}

.site-footer a {
  min-height: 44px;
  min-width: 44px;
  display: grid;
  align-items: center;
}

.site-footer .footer-socials a {
  width: 68px;
  height: 68px;
  min-height: 68px;
  display: grid;
}

.footer-contact {
  margin-top: 18px;
  border-radius: 10px;
  padding: 0 18px;
  color: var(--white);
  background: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
}

.footer-legal {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  color: rgba(201, 222, 240, 0.68);
  font-size: 0.92rem;
  line-height: 1.45;
}

.quote-page {
  background: #0a1014;
}

.quote-hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: grid;
  align-items: end;
  margin-top: -88px;
  padding-top: 88px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(9, 13, 16, 0.18) 0%, rgba(9, 13, 16, 0.46) 42%, #070c10 100%),
    linear-gradient(90deg, rgba(20, 44, 56, 0.74), rgba(78, 143, 192, 0.22)),
    url("assets/surface-window-glass.jpg") center / cover no-repeat;
}

.quote-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(180deg, rgba(7, 12, 16, 0), #070c10 82%);
}

.quote-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 174px 0 86px;
}

.quote-hero p {
  margin: 0;
  color: var(--accent-soft);
  font-size: clamp(1.25rem, 2.1vw, 1.9rem);
  font-weight: 900;
  line-height: 1;
}

.quote-hero h1 {
  margin: 0;
  color: var(--accent);
  font-family: var(--display);
  font-size: clamp(5.5rem, 11vw, 10rem);
  line-height: 0.82;
  text-transform: uppercase;
}

.quote-hero span {
  max-width: 760px;
  color: rgba(251, 253, 255, 0.9);
  font-size: clamp(1.1rem, 1.9vw, 1.48rem);
  font-weight: 800;
  line-height: 1.35;
}

.quote-form-stage {
  padding: 86px 0 104px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 0%, rgba(78, 143, 192, 0.2), transparent 34%),
    linear-gradient(180deg, #070c10 0%, #0b1419 58%, #0a1014 100%);
}

.quote-form-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
  align-items: start;
}

.quote-card,
.quote-form {
  border: 1px solid rgba(201, 222, 240, 0.2);
  border-radius: 30px;
  background: rgba(16, 26, 32, 0.96);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.quote-card--intro {
  position: sticky;
  top: 158px;
  overflow: hidden;
  padding: 34px;
}

.quote-card--intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(78, 143, 192, 0.15), rgba(78, 143, 192, 0)),
    url("assets/surface-roof-shingle.png") center / cover no-repeat;
  opacity: 0.22;
}

.quote-card--intro > * {
  position: relative;
  z-index: 1;
}

.quote-eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-weight: 950;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.quote-card h2 {
  margin: 0;
  color: var(--accent-soft);
  font-family: var(--display);
  font-size: clamp(3.2rem, 4.8vw, 5.5rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.quote-card p:not(.quote-eyebrow) {
  margin: 24px 0 0;
  color: rgba(251, 253, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.55;
}

.quote-phone {
  min-height: 116px;
  display: grid;
  align-content: center;
  gap: 6px;
  margin-top: 28px;
  border-radius: 18px;
  padding: 22px;
  color: var(--white);
  background: var(--accent);
}

.quote-phone span {
  font-weight: 950;
  text-transform: uppercase;
}

.quote-phone strong {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.quote-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.quote-proof-list span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(201, 222, 240, 0.24);
  border-radius: 999px;
  padding: 0 15px;
  color: var(--accent-soft);
  font-size: 0.86rem;
  font-weight: 950;
  text-transform: uppercase;
}

.quote-form {
  display: grid;
  gap: 24px;
  padding: 34px;
}

.quote-form fieldset {
  min-width: 0;
  display: grid;
  gap: 20px;
  margin: 0;
  border: 1px solid rgba(201, 222, 240, 0.17);
  border-radius: 24px;
  padding: 28px;
}

.quote-form legend {
  padding: 0 12px;
  color: var(--accent);
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.9rem);
  line-height: 1;
  text-transform: uppercase;
}

.form-grid {
  min-width: 0;
  display: grid;
  gap: 18px;
}

.form-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid--three {
  grid-template-columns: 1.2fr 0.7fr 1fr;
}

.quote-form label {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.quote-form label > span,
.field-wide > span {
  color: rgba(251, 253, 255, 0.84);
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-form input,
.quote-form textarea,
.quote-form select {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(201, 222, 240, 0.22);
  border-radius: 13px;
  padding: 0 16px;
  color: var(--white);
  background: rgba(251, 253, 255, 0.08);
  font: inherit;
}

.quote-form textarea {
  min-height: 150px;
  padding-top: 15px;
  resize: vertical;
}

.quote-form select {
  appearance: none;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(251, 253, 255, 0.46);
}

.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(78, 143, 192, 0.3);
  outline-offset: 0;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.choice-grid--compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.choice-grid label {
  position: relative;
  display: block;
  min-height: 64px;
  cursor: pointer;
}

.choice-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-grid span {
  min-height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 222, 240, 0.2);
  border-radius: 14px;
  padding: 10px 12px;
  color: rgba(251, 253, 255, 0.84);
  background: rgba(251, 253, 255, 0.07);
  font-size: 0.92rem;
  font-weight: 950;
  line-height: 1.08;
  text-align: center;
  text-transform: uppercase;
}

.choice-grid input:checked + span {
  border-color: var(--accent);
  color: var(--white);
  background: var(--accent);
}

.choice-grid input:focus-visible + span {
  outline: 3px solid rgba(78, 143, 192, 0.35);
  outline-offset: 3px;
}

.field-wide {
  margin-top: 4px;
}

.quote-form input[type="file"] {
  min-height: 66px;
  padding: 18px;
}

.form-submit-row {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.form-submit-row .button {
  width: min(560px, 100%);
  border: 0;
  cursor: pointer;
}

.form-submit-row p {
  margin: 0;
  color: rgba(251, 253, 255, 0.78);
}

.form-submit-row a {
  color: var(--accent-soft);
  font-weight: 900;
}

@media (max-width: 1180px) {
  .main-nav__inner {
    grid-template-columns: 190px 1fr 318px;
    padding: 0 38px;
  }

  .nav-links {
    gap: 22px;
    font-size: 1rem;
  }

  .nav-cta {
    font-size: 1.05rem;
    padding: 0 18px;
  }

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

  .proof-card--three,
  .proof-card--four {
    margin-top: 38px;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 134px;
  }

  main section[id],
  .recent[id] {
    scroll-margin-top: 134px;
  }

  .wrap {
    width: min(720px, calc(100% - 32px));
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .top-strip__inner {
    width: auto;
    max-width: 720px;
    margin-left: 10px;
    margin-right: 10px;
    justify-content: center;
  }

  .top-strip__items {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: stretch;
    gap: 0;
    font-size: 0.7rem;
  }

  .top-strip a.top-strip__social {
    display: none;
  }

  .top-strip__items > span,
  .top-strip__items > a {
    min-width: 0;
    justify-content: center;
    gap: 6px;
    padding: 0 4px;
    white-space: nowrap;
  }

  .top-strip svg {
    width: 14px;
    height: 14px;
  }

  .main-nav__inner {
    width: 100%;
    min-height: 70px;
    grid-template-columns: 1fr auto;
    padding: 0 28px;
    border-radius: 0 0 18px 18px;
  }

  .brand img {
    width: 132px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 0;
    border-radius: 6px;
    padding: 9px;
    color: var(--white);
    background: var(--accent-dark);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 22px;
    height: 2px;
    display: block;
    background: currentColor;
  }

  .mobile-menu {
    display: grid;
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    color: var(--white);
    background: var(--accent-dark);
    transition: max-height 0.28s ease, padding 0.28s ease;
  }

  .main-nav.is-open .mobile-menu {
    max-height: 330px;
    padding: 12px 30px 28px;
  }

  .mobile-menu a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 800;
  }

  .hero {
    min-height: 735px;
    margin-top: -70px;
    padding-top: 70px;
    background-size: auto, auto, 150% auto;
    background-position: center, center, center top;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.08) 29%, rgba(0, 0, 0, 0.78) 43%, #000 52%, #000 100%);
  }

  .hero__content {
    width: min(720px, calc(100% - 30px));
    padding-top: 252px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.9rem, 6.8vw, 2.85rem);
    line-height: 1;
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  .hero h1 span,
  .hero h1 b {
    display: block;
  }

  .hero-proof {
    width: 100%;
    display: grid;
    justify-items: center;
    font-size: 0.72rem;
  }

  .hero-proof a,
  .hero-proof span {
    display: inline-flex;
    width: 100%;
    max-width: 360px;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    padding: 8px 14px;
    line-height: 1.2;
    overflow-wrap: anywhere;
    white-space: normal;
    text-align: center;
  }

  .hero__content > p:not(.hero__kicker) {
    max-width: 32ch;
    font-size: 1rem;
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  .hero__actions {
    gap: 12px;
  }

  .button {
    min-height: 58px;
    border-radius: 10px;
    padding: 0 24px;
    font-size: 1.08rem;
  }

  .proof-stage {
    min-height: 0;
  }

  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 50px;
    padding-bottom: 64px;
  }

  .proof-card {
    min-height: 308px;
    border-radius: 24px;
  }

  .proof-card,
  .proof-card--two,
  .proof-card--three,
  .proof-card--four {
    margin-top: 0;
  }

  .poster-xl {
    font-size: 3.6rem;
  }

  .poster-light,
  .poster-accent {
    font-size: clamp(2.4rem, 5vw, 3.35rem);
  }

  .poster-amp {
    font-size: clamp(2.2rem, 4.6vw, 3rem);
  }

  .poster-number {
    font-size: clamp(5.4rem, 12vw, 7.4rem);
  }

  .poster-rating {
    font-size: clamp(2.45rem, 5.4vw, 3.2rem);
  }

  .poster-rating em {
    font-size: clamp(1.48rem, 3.8vw, 2rem);
  }

  .proof-card h3 {
    font-size: clamp(1.72rem, 4vw, 2.15rem);
  }

  .proof-card--four h3 {
    font-size: clamp(2.1rem, 5.5vw, 2.75rem);
  }

  .proof-card p {
    font-size: 1.08rem;
  }

  .client-logo-row span {
    min-height: 28px;
    padding: 0 8px;
    font-size: 0.64rem;
  }

  .recent {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 0;
    padding: 68px max(20px, calc((100vw - 720px) / 2)) 96px;
    border-radius: 0 0 44px 44px;
  }

  .recent__copy h2 {
    font-size: clamp(4.6rem, 15vw, 6.4rem);
    line-height: 0.84;
  }

  .recent__copy h3 {
    margin-top: 24px;
    font-size: clamp(1.58rem, 5vw, 2.15rem);
    line-height: 1;
  }

  .recent__copy p {
    max-width: 31ch;
    font-size: 1.18rem;
  }

  .recent__image img {
    height: auto;
  }

  .reviews {
    margin-top: 0;
    border-radius: 0;
    padding: 58px 0 74px;
  }

  .section-title {
    margin-bottom: 40px;
    margin-inline: auto;
    font-size: clamp(4.5rem, 13vw, 6.2rem);
    line-height: 0.82;
    overflow-wrap: break-word;
  }

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

  .story-card,
  .story-card--drop,
  .story-card--lower {
    margin-top: 0;
  }

  .reviews__button {
    margin-top: 28px;
  }

  .services {
    border-radius: 46px 46px 0 0;
    padding: 66px 0 76px;
  }

  .services__intro,
  .question-band__inner,
  .service-area__grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .services__intro,
  .fleet-visual,
  .truck-panel,
  .services__heading,
  .question-band__inner,
  .question-band h2,
  .question-band a,
  .rv-controls,
  .rv-arrows {
    min-width: 0;
    max-width: 100%;
  }

  .services__heading {
    text-align: center;
  }

  .services__heading h2 {
    font-size: clamp(3.8rem, 12.8vw, 5rem);
    line-height: 0.88;
  }

  .fleet-visual {
    min-height: 156px;
  }

  .truck-panel {
    width: min(620px, 100%);
    margin: 0 auto;
  }

  .truck-panel__image {
    width: 104%;
    transform: translate(0, 4%);
  }

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

  .service-card,
  .service-card--drop,
  .service-card--lower,
  .service-card--center {
    margin-top: 0;
    transform: none;
  }

  .service-card__visual {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .service-card__copy {
    min-height: 142px;
    border-bottom-width: 30px;
    padding: 20px 20px 22px;
  }

  .service-card h3 {
    font-size: clamp(1.52rem, 4.55vw, 2rem);
    white-space: nowrap;
  }

  .question-band {
    min-height: 360px;
    padding: 70px 0;
  }

  .question-band h2,
  .question-band a {
    min-height: 132px;
    width: 100%;
    padding: 0 26px;
    font-size: clamp(2.45rem, 8.8vw, 3.3rem);
    line-height: 1;
  }

  .question-band a {
    justify-content: center;
  }

  .service-area {
    padding-top: 78px;
  }

  .service-area__title {
    font-size: clamp(3.6rem, 13vw, 5rem);
    line-height: 1;
  }

  .service-area h3 {
    font-size: 1.45rem;
  }

  .service-area__grid {
    gap: 38px;
    padding: 22px;
  }

  .serving-list p {
    font-size: 2.4rem;
  }

  .serving-list span {
    min-height: 78px;
    font-size: 1.9rem;
  }

  .rv-header,
  .footer-cta__inner {
    align-items: stretch;
    flex-direction: column;
  }

  .rv-controls {
    flex-wrap: wrap;
  }

  .rv-review {
    width: max-content;
  }

  .footer-cta {
    padding: 74px 0 68px;
  }

  .site-footer__grid {
    gap: 42px;
  }

  .footer-cta__inner {
    align-items: center;
  }

  .quote-hero {
    min-height: 520px;
    margin-top: -70px;
    padding-top: 70px;
  }

  .quote-hero__inner {
    padding: 150px 0 74px;
  }

  .quote-form-layout {
    grid-template-columns: 1fr;
  }

  .quote-card--intro {
    position: relative;
    top: auto;
  }
}

@media (max-width: 520px) {
  html {
    scroll-padding-top: 126px;
  }

  main section[id],
  .recent[id] {
    scroll-margin-top: 126px;
  }

  .main-nav {
    top: 44px;
  }

  .top-strip__label--full {
    display: none;
  }

  .top-strip__label--short {
    display: inline;
  }

  .top-strip__inner {
    min-height: 44px;
    margin-left: 6px;
    margin-right: 6px;
  }

  .top-strip__items > span,
  .top-strip__items > a {
    min-height: 44px;
  }

  .top-strip__items {
    font-size: 0.53rem;
    letter-spacing: 0;
  }

  .hero {
    min-height: 720px;
  }

  .hero__kicker {
    font-size: 1rem;
  }

  .hero h1 {
    max-width: 20ch;
    font-size: clamp(1.85rem, 8vw, 2.22rem);
    line-height: 0.92;
  }

  .hero-proof a,
  .hero-proof span {
    max-width: 280px;
  }

  .hero__content > p:not(.hero__kicker) {
    max-width: 28ch;
    font-size: 0.95rem;
  }

  .button {
    width: 100%;
  }

  .hero__actions {
    width: min(100%, 280px);
    margin-left: auto;
    margin-right: auto;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    padding-top: 42px;
  }

  .proof-card {
    min-height: 322px;
    padding: 24px 24px 24px;
  }

  .proof-card--one .proof-card__poster {
    grid-template-columns: 0.68fr 1fr;
    column-gap: 10px;
  }

  .poster-light,
  .poster-accent {
    font-size: 3rem;
  }

  .poster-amp {
    font-size: 2.75rem;
  }

  .poster-number {
    font-size: 6.5rem;
  }

  .poster-rating {
    font-size: 2.72rem;
  }

  .poster-rating em {
    font-size: 1.6rem;
  }

  .poster-star-row {
    font-size: 1.42rem;
  }

  .proof-card h3 {
    margin-bottom: 14px;
    font-size: 1.9rem;
  }

  .proof-card--four h3 {
    margin-bottom: 18px;
    font-size: 2.42rem;
  }

  .proof-card p {
    min-height: 0;
    margin-bottom: 18px;
    font-size: 1.02rem;
  }

  .proof-card a {
    min-height: 52px;
    font-size: 1rem;
  }

  .proof-card__poster--logos {
    gap: 8px;
  }

  .recent__image {
    border-width: 10px;
    border-radius: 22px;
  }

  .story-card__body {
    min-height: 230px;
    padding: 24px 24px 30px;
  }

  .review-grid,
  .service-grid,
  .question-band__inner {
    grid-template-columns: 1fr;
  }

  .section-title {
    max-width: 100%;
    font-size: clamp(2.6rem, 10.5vw, 3.2rem);
    line-height: 1;
    overflow-wrap: normal;
    word-break: normal;
  }

  .section-title span {
    white-space: nowrap;
  }

  .reviews .section-title {
    font-size: 1.75rem;
    line-height: 1;
  }

  .reviews {
    padding: 46px 0 58px;
  }

  .review-grid {
    gap: 18px;
  }

  .review-beforeafter {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .story-card__body {
    min-height: 0;
    padding: 18px 20px 22px;
  }

  .story-card h3 {
    margin-bottom: 10px;
    font-size: 2rem;
  }

  .story-card p {
    font-size: 0.92rem;
    line-height: 1.42;
  }

  .question-band {
    min-height: 330px;
    padding: 54px 0;
  }

  .question-band h2,
  .question-band a {
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    padding: 0 18px;
    text-align: center;
    font-size: clamp(2.1rem, 8.6vw, 2.7rem);
    line-height: 1;
  }

  .question-band h2 span {
    white-space: nowrap;
  }

  .services__heading h2 {
    font-size: clamp(3.15rem, 13.2vw, 3.9rem);
  }

  .truck-panel__image {
    width: 100%;
    transform: translate(0, 4%);
  }

  .service-card__copy {
    min-height: 0;
    border-bottom-width: 30px;
    padding: 20px 18px 22px;
  }

  .service-card h3 {
    font-size: clamp(1.34rem, 7.1vw, 1.72rem);
    white-space: nowrap;
  }

  .service-area__title {
    font-size: 2.6875rem;
    line-height: 1;
  }

  .service-area h3 {
    margin: 10px 0 26px;
    font-size: 1.0625rem;
    line-height: 1;
  }

  .service-area {
    padding: 48px 0 44px;
  }

  .service-area__grid {
    gap: 22px;
    padding: 0;
  }

  .map-visual {
    height: 285px;
    aspect-ratio: auto;
    border-width: 6px;
  }

  .serving-list {
    gap: 10px;
  }

  .serving-list p {
    font-size: 2.375rem;
    line-height: 1;
  }

  .serving-list span {
    min-height: 54px;
    font-size: 1.5rem;
    line-height: 1;
  }

  .serving-list strong {
    min-height: 44px;
    font-size: 1.16rem;
    line-height: 1;
  }

  .serving-list .button {
    min-height: 52px;
    font-size: 0.95rem;
  }

  .footer-cta {
    padding: 62px 0 56px;
  }

  .footer-cta__inner {
    min-height: 0;
  }

  .footer-cta h2 {
    gap: 8px;
  }

  .footer-cta h2 span {
    font-size: clamp(3.05rem, 14vw, 4.15rem);
    line-height: 0.9;
  }

  .footer-cta h2 em {
    font-size: clamp(1.78rem, 8vw, 2.35rem);
  }

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

  .site-footer__grid {
    gap: 34px;
  }

  .site-footer a,
  .site-footer span {
    margin-bottom: 6px;
  }

  .quote-hero {
    min-height: 500px;
  }

  .quote-hero__inner {
    gap: 14px;
    padding: 134px 0 58px;
  }

  .quote-hero h1 {
    font-size: clamp(3.4rem, 18vw, 5rem);
    line-height: 0.84;
  }

  .quote-hero p {
    font-size: 1.05rem;
  }

  .quote-hero span {
    max-width: 28ch;
    font-size: 1rem;
  }

  .quote-form-stage {
    padding: 46px 0 68px;
  }

  .quote-card--intro,
  .quote-form {
    border-radius: 24px;
    padding: 22px;
  }

  .quote-card h2 {
    font-size: clamp(2.65rem, 14vw, 3.75rem);
  }

  .quote-phone {
    min-height: 96px;
    padding: 18px;
  }

  .quote-proof-list {
    justify-content: center;
  }

  .quote-form fieldset {
    gap: 16px;
    border-radius: 18px;
    padding: 22px 16px 18px;
  }

  .quote-form legend {
    font-size: 1.75rem;
  }

  .form-grid--two,
  .form-grid--three,
  .choice-grid,
  .choice-grid--compact {
    grid-template-columns: 1fr;
  }

  .choice-grid label,
  .choice-grid span {
    min-height: 56px;
  }

  .service-area__grid {
    padding: 12px;
    border-radius: 16px;
  }

  .map-visual {
    border-width: 7px;
    border-radius: 12px;
  }

  .rv-score {
    flex-wrap: wrap;
  }
}

/* Contact page: Caribou-style quote form pattern adapted for Arco. */
.quote-page .quote-hero {
  min-height: 690px;
  align-items: start;
  margin-top: -88px;
  padding-top: 88px;
  background:
    linear-gradient(180deg, rgba(7, 12, 16, 0.22) 0%, rgba(7, 12, 16, 0.18) 32%, rgba(7, 12, 16, 0.58) 74%, #070c10 100%),
    url("assets/surface-roof-shingle.png") center top / cover no-repeat;
}

.quote-page .quote-hero::after {
  height: 210px;
  background:
    linear-gradient(180deg, rgba(7, 12, 16, 0), #070c10 74%),
    linear-gradient(90deg, transparent, rgba(78, 143, 192, 0.2), transparent);
}

.quote-page .quote-hero__inner {
  padding: 150px 0 0;
}

.quote-page .quote-hero h1 {
  color: var(--white);
  font-size: clamp(5.8rem, 12vw, 10.8rem);
  line-height: 0.86;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.36);
}

.quote-page .quote-form-stage {
  margin-top: -1px;
  padding: 90px 0 112px;
  background:
    radial-gradient(circle at 50% 0%, rgba(78, 143, 192, 0.14), transparent 34%),
    #070c10;
}

.quote-page .quote-form-layout {
  width: min(920px, calc(100% - 48px));
  display: block;
}

.quote-page .quote-form {
  width: 100%;
  gap: 26px;
  border: 0;
  border-radius: 28px;
  padding: 48px 58px 56px;
  color: #151719;
  background: var(--white);
  box-shadow: 0 30px 86px rgba(0, 0, 0, 0.34);
}

.quote-form__intro {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-bottom: 4px;
  text-align: center;
}

.quote-form__intro h2 {
  margin: 0;
  color: #101113;
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.quote-form__intro p {
  max-width: 540px;
  margin: 0;
  color: #24282d;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 500;
  line-height: 1.18;
}

.quote-page .quote-form fieldset {
  display: grid;
  gap: 18px;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.quote-page .quote-form legend {
  margin: 0 0 10px;
  padding: 0;
  color: #101113;
  font-family: var(--display);
  font-size: clamp(1.9rem, 3vw, 2.65rem);
  line-height: 1;
  text-transform: none;
}

.quote-page .form-grid {
  gap: 16px;
}

.quote-page .form-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quote-page .form-grid--three {
  grid-template-columns: 1fr 0.82fr 1fr;
}

.quote-page .quote-form label {
  gap: 10px;
}

.quote-page .quote-form label > span,
.quote-page .field-wide > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.quote-page .quote-form input,
.quote-page .quote-form textarea,
.quote-page .quote-form select {
  min-height: 58px;
  border: 1px solid #c7ccd1;
  border-radius: 6px;
  padding: 0 18px;
  color: #151719;
  background: #fbfbfb;
}

.quote-page .quote-form textarea {
  min-height: 132px;
  padding-top: 16px;
}

.quote-page .quote-form input::placeholder,
.quote-page .quote-form textarea::placeholder {
  color: #777f86;
}

.quote-page .quote-form input:focus,
.quote-page .quote-form textarea:focus,
.quote-page .quote-form select:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(78, 143, 192, 0.22);
}

.quote-page .choice-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 4px;
}

.quote-page .choice-grid--find {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quote-page .choice-grid label,
.quote-page .choice-grid span {
  min-height: 48px;
}

.quote-page .quote-form .choice-grid label > span {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
  border-color: #c7ccd1;
  border-radius: 6px;
  color: #20252a;
  background: #fbfbfb;
  font-size: 0.84rem;
}

.quote-page .choice-grid input:checked + span {
  border-color: var(--accent);
  color: var(--white);
  background: var(--accent);
}

.quote-page .quote-form input[type="file"] {
  min-height: 64px;
  padding: 18px;
  background: #fbfbfb;
}

.quote-page .form-submit-row {
  margin-top: 4px;
}

.quote-page .form-submit-row .button {
  min-height: 68px;
  border: 0;
  border-radius: 10px;
  background: var(--accent);
  color: var(--white);
  cursor: pointer;
}

.quote-page .form-submit-row p {
  color: #4a535b;
}

.quote-page .form-submit-row a {
  color: var(--accent-dark);
}

.quote-page .quote-form__status {
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--white);
  background: var(--accent-dark);
}

.quote-page .quote-form__status--error {
  background: #8b2f2f;
}

.quote-page .js-date-field {
  cursor: pointer;
}

.quote-page .js-assessment-date {
  width: 100%;
  cursor: pointer;
  position: relative;
  color-scheme: light;
}

.quote-page .js-assessment-date::-webkit-calendar-picker-indicator {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: pointer;
}

.quote-page .choice-grid input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 900px) {
  .quote-page .quote-hero {
    min-height: 610px;
    margin-top: -70px;
    padding-top: 70px;
  }

  .quote-page .quote-hero__inner {
    padding-top: 110px;
  }

  .quote-page .quote-form-stage {
    padding: 74px 0 90px;
  }

  .quote-page .quote-form-layout {
    width: min(720px, calc(100% - 32px));
  }

  .quote-page .quote-form {
    padding: 40px 36px 44px;
  }
}

@media (max-width: 520px) {
  .quote-page .quote-hero {
    min-height: 690px;
  }

  .quote-page .quote-hero__inner {
    padding-top: 112px;
  }

  .quote-page .quote-hero h1 {
    font-size: clamp(3.9rem, 17vw, 5.2rem);
  }

  .quote-page .quote-form-stage {
    padding: 72px 0 74px;
  }

  .quote-page .quote-form-layout {
    width: min(100% - 20px, 520px);
  }

  .quote-page .quote-form {
    border-radius: 16px;
    padding: 30px 30px 34px;
  }

  .quote-form__intro h2 {
    font-size: clamp(2.15rem, 9vw, 2.95rem);
  }

  .quote-form__intro p {
    font-size: 1.12rem;
  }

  .quote-page .quote-form legend {
    font-size: clamp(1.55rem, 7.4vw, 2.15rem);
  }

  .quote-page .form-grid--two,
  .quote-page .form-grid--three,
  .quote-page .choice-grid,
  .quote-page .choice-grid--compact,
  .quote-page .choice-grid--find {
    grid-template-columns: 1fr;
  }
}

.quote-page .quote-hero h1 span {
  max-width: none;
  color: inherit;
  font: inherit;
  line-height: inherit;
}

.quote-page .quote-form__intro p,
.quote-page .form-submit-row p {
  max-width: 100%;
  overflow-wrap: anywhere;
}

@media (max-width: 520px) {
  .quote-page .quote-hero h1 {
    width: 100%;
    font-size: clamp(3.25rem, 14.5vw, 3.95rem);
    line-height: 0.86;
    text-align: center;
  }

  .quote-page .quote-hero h1 span {
    display: block;
  }

  .quote-page .quote-form-layout {
    width: calc(100% - 24px);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .quote-page .quote-form {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 28px 22px 34px;
  }

  .quote-form__intro h2 {
    max-width: 8.6ch;
    margin-inline: auto;
    font-size: clamp(2.25rem, 10.6vw, 2.95rem);
    line-height: 0.9;
    text-align: center;
    text-wrap: balance;
    white-space: normal;
  }

  .quote-form__intro p {
    max-width: 20ch;
    margin-inline: auto;
    line-height: 1.24;
    text-align: center;
  }
}
