:root {
  --red: #e71922;
  --red-dark: #a90009;
  --ink: #060b10;
  --ink-soft: #141a21;
  --muted: #69717c;
  --line: #e6e8eb;
  --paper: #ffffff;
  --soft: #f6f7f9;
  --gold: #ffb400;
  --shadow: 0 28px 80px rgba(8, 14, 22, 0.18);
}

.about-hero {
  align-items: center;
  background: #05080c;
  color: #fff;
  display: grid;
  justify-items: center;
  min-height: clamp(520px, 64vw, 720px);
  overflow: hidden;
  padding: clamp(72px, 8vw, 116px) clamp(24px, 5vw, 72px);
  position: relative;
}

.about-hero-bg {
  background:
    linear-gradient(90deg, rgba(3,5,8,.82) 0%, rgba(3,5,8,.76) 28%, rgba(3,5,8,.64) 50%, rgba(3,5,8,.76) 72%, rgba(3,5,8,.82) 100%),
    linear-gradient(180deg, rgba(3,5,8,.04), rgba(3,5,8,.62)),
    url("assets/mesa-hero-van.png") center center / cover no-repeat;
  inset: 0;
  position: absolute;
}

.about-hero-bg::after {
  background:
    radial-gradient(circle at 14% 22%, rgba(231,25,34,.24), transparent 24%),
    linear-gradient(135deg, transparent 0 46%, rgba(255,255,255,.14) 47% 49%, transparent 50%);
  content: "";
  inset: 0;
  opacity: .8;
  position: absolute;
}

.about-hero-copy {
  max-width: 900px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.about-hero h1 {
  color: #fff;
  font-size: clamp(44px, 5.7vw, 82px);
  letter-spacing: -.07em;
  line-height: .95;
  margin: 0 0 20px;
}

.about-hero h1 span { color: var(--red); display: block; }

.about-hero-rule {
  background: #fff;
  display: block;
  height: 4px;
  margin: 0 auto 24px;
  width: 86px;
}

.about-hero-copy p:not(.breadcrumb) {
  color: rgba(255,255,255,.9);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.72;
  margin: 0 auto 18px;
  max-width: 760px;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 30px;
}

.about-story {
  background:
    radial-gradient(circle at 8% 12%, rgba(231,25,34,.08), transparent 26%),
    #fff;
}

.about-story-shell {
  align-items: center;
  display: grid;
  gap: clamp(30px, 5vw, 64px);
  grid-template-columns: minmax(340px, .95fr) minmax(0, 1.05fr);
  margin: 0 auto;
  max-width: 1220px;
}

.about-story-image {
  border-radius: 10px;
  box-shadow: 0 20px 54px rgba(6,11,16,.18);
  height: clamp(330px, 38vw, 430px);
  overflow: hidden;
}

.about-story-image img,
.about-standard-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.about-story-copy h2 {
  color: var(--ink);
  font-size: clamp(32px, 4.1vw, 54px);
  letter-spacing: -.065em;
  line-height: 1;
  margin: 0 0 18px;
}

.about-story-copy > p:not(.section-kicker) {
  color: #424b56;
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 14px;
}

.about-values-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 30px;
}

.about-values-grid div {
  align-items: start;
  background: #fff;
  border-left: 1px solid #e4e7eb;
  display: grid;
  gap: 6px 16px;
  grid-template-columns: 42px 1fr;
  min-height: 92px;
  padding: 8px 0 8px 22px;
}

.about-values-grid svg {
  color: var(--red);
  grid-row: span 2;
  height: 36px;
  width: 36px;
}

.about-values-grid strong { color: var(--ink); font-size: 16px; line-height: 1.2; }
.about-values-grid span { color: #566170; font-size: 13px; line-height: 1.4; }

.about-standard {
  background:
    radial-gradient(circle at 18% 20%, rgba(231,25,34,.16), transparent 24%),
    linear-gradient(135deg, #05090e 0%, #101820 58%, #060b10 100%);
  color: #fff;
  padding: clamp(58px, 7vw, 86px) clamp(24px, 5vw, 72px);
}

.about-standard-shell {
  align-items: center;
  display: grid;
  gap: clamp(30px, 5vw, 68px);
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  margin: 0 auto;
  max-width: 1240px;
}

.about-standard-copy h2 {
  color: #fff;
  font-size: clamp(34px, 4.4vw, 58px);
  letter-spacing: -.07em;
  line-height: 1;
  margin: 0 0 16px;
}

.about-standard-copy p {
  color: rgba(255,255,255,.8);
  line-height: 1.65;
  margin: 0 0 24px;
  max-width: 480px;
}

.about-standard-copy ul {
  display: grid;
  gap: 13px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-standard-copy li {
  align-items: center;
  color: rgba(255,255,255,.9);
  display: flex;
  font-size: 14px;
  gap: 10px;
}

.about-standard-copy li svg {
  color: var(--red);
  flex: 0 0 auto;
  height: 18px;
  width: 18px;
}

.about-standard-image {
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(0,0,0,.34);
  height: clamp(280px, 32vw, 390px);
  overflow: hidden;
}

.about-stats {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 34px auto 0;
  max-width: 1240px;
  overflow: hidden;
}

.about-stats div {
  align-items: center;
  background: rgba(255,255,255,.04);
  display: grid;
  gap: 4px;
  min-height: 96px;
  padding: 18px;
  text-align: center;
}

.about-stats div + div { border-left: 1px solid rgba(255,255,255,.18); }
.about-stats strong { color: var(--red); font-size: clamp(28px, 3vw, 42px); line-height: 1; }
.about-stats span { color: rgba(255,255,255,.84); font-size: 13px; font-weight: 800; }

.about-final-cta {
  align-items: center;
  background: #fff;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) auto auto;
  padding: 38px max(clamp(24px, 6vw, 86px), calc((100vw - 1240px) / 2));
}

.about-final-cta h2 {
  color: var(--ink);
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: -.055em;
  line-height: 1;
  margin: 0 0 8px;
}

.about-final-cta p { color: #4f5966; line-height: 1.55; margin: 0; max-width: 620px; }
.about-final-cta .button-outline { width: auto; }

@media (max-width: 980px) {
  .about-story-shell,
  .about-standard-shell,
  .about-final-cta {
    grid-template-columns: 1fr;
  }

  .about-standard-shell { gap: 28px; }
  .about-final-cta { justify-items: start; }
  .about-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-stats div:nth-child(3) { border-left: 0; border-top: 1px solid rgba(255,255,255,.18); }
  .about-stats div:nth-child(4) { border-top: 1px solid rgba(255,255,255,.18); }
}

@media (max-width: 620px) {
  .about-hero { min-height: 0; padding-bottom: 76px; padding-top: 64px; }
  .about-hero-bg { background-position: 58% center; }
  .about-hero-actions,
  .about-final-cta { justify-items: stretch; }
  .about-hero-actions .button,
  .about-final-cta .button { width: 100%; }
  .about-values-grid,
  .about-stats { grid-template-columns: 1fr; }
  .about-values-grid div { border-left: 0; border-top: 1px solid #e4e7eb; padding-left: 0; padding-top: 18px; }
  .about-stats div + div { border-left: 0; border-top: 1px solid rgba(255,255,255,.18); }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
svg { display: inline-block; height: 1em; width: 1em; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }

.site-header {
  align-items: center;
  background: #fff;
  border-bottom: 1px solid rgba(6, 11, 16, 0.08);
  box-shadow: 0 8px 28px rgba(6, 11, 16, .08);
  color: var(--ink);
  display: grid;
  gap: 24px;
  grid-template-columns: auto 1fr auto;
  min-height: 84px;
  padding: 16px clamp(18px, 3.6vw, 52px);
  position: sticky;
  top: 0;
  z-index: 50;
}
.brand {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  color: var(--ink);
  display: grid;
  gap: 0;
  line-height: 0.9;
  padding: 0;
  position: relative;
  width: 238px;
}
.brand-main { color: var(--red); font-size: clamp(36px, 4vw, 48px); font-weight: 900; letter-spacing: -0.08em; }
.brand-service { color: #fff; font-size: 10px; font-weight: 900; letter-spacing: 0.18em; margin-top: 5px; }
.brand-icons { display: flex; gap: 4px; position: absolute; right: 4px; top: 0; }
.brand-icons span { background: #fff; border-radius: 2px; color: #07090c; display: grid; font-size: 14px; font-weight: 900; height: 24px; place-items: center; width: 24px; }
.brand-logo { background: #fff; border-radius: 6px; display: block; max-height: 56px; max-width: 252px; object-fit: contain; padding: 4px 8px; width: 100%; }
.main-nav { align-items: center; display: flex; gap: clamp(18px, 2.5vw, 38px); justify-content: center; }
.main-nav a,
.nav-trigger { align-items: center; color: inherit; display: inline-flex; font-family: inherit; font-size: 13px; font-weight: 600; height: 16px; letter-spacing: .02em; line-height: 1; min-height: 0; padding: 0; text-transform: uppercase; transition: color .2s ease; }
.nav-trigger { appearance: none; background: transparent; border: 0; cursor: pointer; margin: 0; }
.main-nav a:hover, .main-nav a.is-active, .nav-trigger:hover { color: var(--red); }
.nav-dropdown { align-items: center; display: inline-flex; height: 16px; line-height: 1; position: relative; }
.nav-menu {
  background: #fff;
  border: 1px solid rgba(6,11,16,.1);
  border-radius: 12px;
  box-shadow: 0 20px 42px rgba(6,11,16,.14);
  display: grid;
  gap: 2px;
  left: 50%;
  min-width: 220px;
  opacity: 0;
  padding: 18px 10px 10px;
  pointer-events: none;
  position: absolute;
  top: 100%;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .18s ease;
}
.nav-menu a { border-radius: 8px; color: var(--ink); display: block; font-size: 12px; padding: 11px 12px; text-transform: none; white-space: nowrap; }
.nav-menu a:hover { background: #f6f7f9; color: var(--red); }
.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu,
.nav-dropdown.is-open .nav-menu { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
.header-actions { align-items: center; display: flex; gap: 20px; }
.phone-link { align-items: center; display: flex; gap: 12px; font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.phone-link svg { background: var(--red); border-radius: 50%; color: #fff; height: 44px; padding: 11px; width: 44px; }
.phone-link strong { color: var(--ink); font-size: 17px; font-weight: 600; letter-spacing: 0; }
.header-schedule { font-size: 13.3px; min-height: 49px; padding: 0 25px; }
.menu-button { background: transparent; border: 0; display: none; flex-direction: column; gap: 5px; padding: 8px; }
.menu-button span { background: var(--ink); border-radius: 99px; display: block; height: 2px; width: 26px; }

.button {
  align-items: center;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  gap: 10px;
  justify-content: center;
  letter-spacing: .01em;
  min-height: 52px;
  padding: 0 26px;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button svg { height: 18px; width: 18px; }
.button:hover { transform: translateY(-2px); }
.button-red { background: linear-gradient(135deg, #f21c27, #d70713); color: #fff; box-shadow: 0 16px 38px rgba(231, 25, 34, .45); }
.button-red:hover { background: linear-gradient(135deg, #ff2631, var(--red-dark)); }
.button-dark { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.28); color: #fff; }
.button-outline { border: 1px solid var(--red); color: var(--red); width: 100%; }
.button-light { background: #fff; color: var(--red); }
.full { width: 100%; }

.review-strip {
  align-items: center;
  background: #151118;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  min-height: 58px;
  padding: 12px 16px;
  position: relative;
  z-index: 4;
}
.hero-review-strip {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.google-dot { align-items: center; display: inline-flex; }
.google-logo { display: block; height: 22px; width: 22px; }
.review-score { font-size: 18px; line-height: 1; }
.stars { color: var(--gold); display: inline-flex; gap: 3px; vertical-align: middle; }
.stars svg { fill: currentColor; height: 17px; stroke-width: 2.5; width: 17px; }

.hero {
  background:
    radial-gradient(circle at 72% 20%, rgba(150, 183, 206, .34), transparent 34%),
    linear-gradient(90deg, #050609 0%, #07090d 42%, #20313b 75%, #5b7484 100%);
  color: #fff;
  display: flex;
  align-items: center;
  min-height: 920px;
  overflow: hidden;
  padding: clamp(92px, 7vw, 138px) 0 clamp(56px, 5vw, 86px);
  position: relative;
}
.hero-inner {
  align-items: center;
  display: grid;
  gap: clamp(28px, 3vw, 48px);
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, .85fr);
  margin-left: auto;
  margin-right: auto;
  max-width: 1400px;
  padding-left: clamp(56px, 5vw, 96px);
  padding-right: clamp(56px, 5vw, 96px);
  position: relative;
  width: 100%;
  z-index: 3;
}
.hero-art { inset: 0; pointer-events: none; position: absolute; z-index: 0; }
.hero-bg-photo {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center center;
  opacity: 1;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.hero-photo-scrim {
  background:
    linear-gradient(90deg, rgba(3, 4, 7, .9) 0%, rgba(3, 4, 7, .75) 38%, rgba(3, 4, 7, .34) 68%, rgba(3, 4, 7, .08) 100%),
    linear-gradient(180deg, rgba(3, 4, 7, .02), rgba(3, 4, 7, .48));
  inset: 0;
  position: absolute;
  z-index: 2;
}
.hero-art::before {
  background:
    linear-gradient(135deg, transparent 0 46%, rgba(218, 234, 245, .54) 47% 50%, transparent 51%),
    linear-gradient(45deg, transparent 0 45%, rgba(255,255,255,.24) 46% 48%, transparent 49%);
  content: "";
  height: 365px;
  left: 30%;
  opacity: .58;
  position: absolute;
  top: 18px;
  width: 68%;
}
.hero-art::after {
  background:
    radial-gradient(ellipse at 76% 0%, rgba(28, 67, 39, .62), transparent 35%),
    linear-gradient(180deg, rgba(58,83,65,.46), rgba(21,42,27,.92));
  bottom: 0;
  content: "";
  height: 245px;
  left: 0;
  position: absolute;
  right: 0;
}
.mountain { display: none; }
.mountain-one { left: 48%; }
.mountain-two { height: 285px; left: 19%; opacity: .62; width: 690px; }
.service-van {
  background:
    linear-gradient(90deg, transparent 0 7%, rgba(247,248,249,.98) 7% 100%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(188,195,201,.96));
  border-radius: 18px 58px 17px 17px;
  bottom: 76px;
  box-shadow: 0 34px 100px rgba(0,0,0,.62);
  height: 330px;
  left: 34%;
  position: absolute;
  transform: skewX(-5deg);
  width: 850px;
  display: none;
}
.service-van::before { background: #111820; border-radius: 12px 40px 12px 12px; box-shadow: -250px 12px 0 -20px rgba(17,24,32,.96); content: ""; height: 108px; position: absolute; right: 58px; top: 48px; width: 190px; }
.service-van::after { background: linear-gradient(135deg, transparent 0 50%, rgba(255,255,255,.55) 51% 53%, transparent 54%); content: ""; height: 230px; left: 48px; opacity: .42; position: absolute; top: -90px; width: 760px; }
.van-ladder { background: linear-gradient(#bfc4c8, #8f969c); border-radius: 7px; height: 18px; left: 64px; position: absolute; top: -36px; width: 720px; }
.van-ladder::before, .van-ladder::after { background: #737b82; content: ""; height: 44px; position: absolute; top: -13px; width: 7px; }
.van-ladder::before { left: 160px; }
.van-ladder::after { left: 520px; }
.van-window { background: #101820; border-radius: 12px; position: absolute; top: 54px; }
.van-window-front { height: 112px; right: 58px; width: 190px; }
.van-window-side { height: 86px; left: 244px; width: 160px; }
.van-logo { color: var(--red); font-size: 88px; font-weight: 900; left: 112px; letter-spacing: -0.065em; position: absolute; text-shadow: 0 1px 0 rgba(0,0,0,.08); top: 134px; }
.van-service-text { color: #222830; font-size: 18px; font-weight: 800; left: 114px; letter-spacing: .12em; position: absolute; text-transform: uppercase; top: 214px; }
.van-line { background: var(--red); height: 6px; left: 112px; position: absolute; top: 240px; width: 310px; }
.van-icons { display: flex; gap: 7px; left: 114px; position: absolute; top: 92px; }
.van-icons svg { background: #07090c; border-radius: 2px; color: #fff; height: 34px; padding: 7px; width: 34px; }
.van-mascot { background: #1f2227; border: 4px solid var(--red); border-radius: 18px; bottom: 54px; height: 138px; position: absolute; right: 260px; width: 92px; }
.van-mascot::before { background: #f3d7bd; border-radius: 50%; content: ""; height: 50px; left: 21px; position: absolute; top: 17px; width: 50px; }
.van-mascot::after { background: var(--red); border-radius: 16px 16px 6px 6px; bottom: 0; content: ""; height: 62px; left: 13px; position: absolute; width: 66px; }
.van-mascot span { background: var(--red); border-radius: 999px; height: 19px; left: 17px; position: absolute; top: 7px; transform: rotate(-12deg); width: 60px; z-index: 1; }
.van-wheel { background: #101318; border: 10px solid #3c4147; border-radius: 50%; bottom: -30px; box-shadow: inset 0 0 0 12px #15191f; height: 98px; position: absolute; width: 98px; }
.wheel-left { left: 126px; }
.wheel-right { right: 96px; }
.hero-content { align-self: center; max-width: 940px; position: relative; transform: none; z-index: 3; }
.eyebrow { background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.42); border-radius: 999px; display: inline-flex; font-size: clamp(12.38px, 1.02vw, 15.92px); font-weight: 900; letter-spacing: .15em; padding: 10px 24px; text-transform: uppercase; }
h1 { font-size: clamp(51.3px, 6.19vw, 99.06px); letter-spacing: -0.078em; line-height: .99; margin: 30px 0 28px; max-width: 1110px; }
.hero .eyebrow { transform: translateY(-15%); }
.hero h1 { font-size: clamp(56px, 5vw, 92px); letter-spacing: -.04em; line-height: .95; margin-top: 28px; max-width: 980px; transform: none; }
h1 span, .hero h1 span { color: var(--red); }
.hero h1 .hero-nowrap { color: inherit; }
.hero h1 .hero-nowrap span { color: var(--red); }
.hero-nowrap { white-space: nowrap; }
.hero-company-line { color: inherit; display: block; }
.hero-copy { color: rgba(255,255,255,.92); font-size: clamp(16.81px, 1.46vw, 22.12px); line-height: 1.7; max-width: 660px; text-shadow: 0 2px 14px rgba(0,0,0,.45); }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 20px; margin: 34px 0 0; }
.hero-service-highlights { display: grid; gap: 10px; grid-column: 1 / -1; grid-template-columns: repeat(3, minmax(0, 1fr)); justify-self: center; margin-top: 34px; max-width: 690px; width: min(100%, 690px); }
.hero-service-highlights .service-hero-highlight { align-items: flex-start; background: rgba(5, 8, 12, .54); border: 1px solid rgba(255,255,255,.2); border-left: 3px solid rgba(231,25,34,.9); border-radius: 8px; box-shadow: 0 14px 30px rgba(0,0,0,.16); color: #fff; display: grid; gap: 9px; grid-template-columns: 18px 1fr; min-height: 86px; padding: 13px 14px; text-align: left; transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.hero-service-highlights .service-hero-highlight:hover { background: rgba(5, 8, 12, .66); border-color: rgba(255,255,255,.28); transform: translateY(-2px); }
.hero-service-highlights .service-hero-highlight svg { color: var(--red); height: 18px; margin-top: 1px; width: 18px; }
.hero-service-highlights .service-hero-highlight span { display: grid; gap: 4px; }
.hero-service-highlights .service-hero-highlight strong { color: #fff; font-size: 12.5px; letter-spacing: -.02em; line-height: 1.15; }
.hero-service-highlights .service-hero-highlight small { color: rgba(255,255,255,.76); font-size: 11px; line-height: 1.35; }
.trust-pills { display: grid; gap: 10px; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 28px; max-width: 600px; }
.trust-pills span { align-items: center; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.26); border-radius: 8px; display: flex; font-size: 13.75px; font-weight: 800; gap: 10px; line-height: 1.15; min-height: 48px; padding: 9px 16px; }
.trust-pills svg, .value-grid svg, .service-card svg { color: var(--red); font-size: 28px; }

.request-card {
  align-self: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  color: var(--ink);
  overflow: hidden;
  padding: 0;
  position: relative;
  justify-self: start;
  max-width: 500px;
  transform: translateX(8%);
  width: 100%;
  z-index: 4;
}
.request-card-top { background: #fff; border-bottom: 1px solid var(--line); color: var(--ink); padding: 26px clamp(21px, 2.85vw, 34px) 24px; }
.request-card h2 { color: inherit; font-size: 30px; letter-spacing: -0.055em; margin: 0 0 8px; }
.request-card-top p { color: #5f6873; font-size: 15px; line-height: 1.45; margin: 0; }
.rating-line { align-items: center; border-bottom: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; padding: 22px clamp(22px, 3vw, 36px); }
.rating-line .google-logo { height: 24px; width: 24px; }
fieldset { border: 0; display: grid; gap: 12px; grid-template-columns: 1fr 1fr; margin: 0; padding: 0 clamp(22px, 3vw, 36px) 16px; }
legend, label { color: #242a31; font-size: 12px; font-weight: 900; letter-spacing: .03em; text-transform: uppercase; }
legend { grid-column: 1 / -1; margin-bottom: 2px; }
.service-choice { align-items: center; border: 1px solid #ddd6cf; border-radius: 10px; cursor: pointer; display: flex; font-size: 15px; gap: 10px; min-height: 51px; padding: 0 17px; text-transform: none; }
.service-choice:has(input:checked) { border-color: var(--red); color: var(--red); box-shadow: inset 0 0 0 1px rgba(237,16,27,.18); }
.service-choice input { position: absolute; opacity: 0; }
.form-grid { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; padding: 0 clamp(22px, 3vw, 36px); }
input, textarea {
  background: #f4efe8;
  border: 1px solid #ddd6cf;
  border-radius: 10px;
  display: block;
  font: inherit;
  margin-top: 8px;
  min-height: 59px;
  outline: 0;
  padding: 0 14px;
  text-transform: none;
  transition: border-color .2s ease, box-shadow .2s ease;
  width: 100%;
}
select {
  appearance: none;
  background: #f4efe8;
  border: 1px solid #ddd6cf;
  border-radius: 10px;
  color: #6b7280;
  display: block;
  font: inherit;
  min-height: 59px;
  outline: 0;
  padding: 0 14px;
  transition: border-color .2s ease, box-shadow .2s ease;
  width: 100%;
}
textarea { min-height: 86px; padding-top: 12px; resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: var(--red); box-shadow: 0 0 0 4px rgba(237,16,27,.12); }
.request-card > label { display: block; margin: 0 0 14px; padding: 0 clamp(22px, 3vw, 36px); }
.request-card .service-address-field { margin-top: 10px; }
.request-card .button { margin: 10px 36px 0; width: calc(100% - 72px); }
.request-card small { color: var(--muted); display: block; margin: 16px 0 28px; text-align: center; }
.form-message { border-radius: 8px; font-weight: 800; margin: 0 clamp(22px, 3vw, 36px) 24px !important; padding: 0; text-align: center; }
.form-message.is-visible { background: #ecfff4; color: #087a37; padding: 12px; }

.section { padding: clamp(62px, 7.7vw, 99px) clamp(18px, 5vw, 72px); }
.services {
  background:
    linear-gradient(180deg, #f5f6f7 0%, #f8f8f8 68%, #fff 100%);
  padding-bottom: clamp(53px, 6.3vw, 89px);
  overflow: hidden;
  position: relative;
}
.services .section-heading,
.services .service-grid,
.services .services-cta { position: relative; z-index: 1; }
.section-heading { margin: 0 auto 39px; max-width: 720px; text-align: center; }
.section h2, .final-cta h2 { font-size: clamp(30px, 4vw, 46px); letter-spacing: -0.055em; line-height: 1.05; margin: 0 0 12px; }
.section p { color: var(--muted); line-height: 1.65; }
.service-grid { display: grid; gap: 20px; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 0 auto; max-width: 1120px; }
.service-card { background: rgba(255,255,255,.82); border: 1px solid #dedede; border-radius: 14px; box-shadow: 0 2px 0 rgba(6,11,16,.08); padding: 34px 24px; text-align: center; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.service-card:hover { background: #fff; border-color: rgba(237,16,27,.26); transform: translateY(-3px); }
.service-card h3 { font-size: 20px; margin: 18px 0 8px; }
.service-card a { align-items: center; color: var(--red); display: inline-flex; font-size: 13px; font-weight: 900; gap: 8px; margin-top: 10px; text-transform: uppercase; }
.service-card a svg { height: 15px; width: 15px; }
.services-cta { display: flex; justify-content: center; margin-top: 38px; }
.services-cta .button { min-width: 0; width: auto; }

.section-divider {
  align-items: center;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 32px 46px 32px 1fr;
  gap: 14px;
  margin-top: 0;
  padding: 14px 0 39px;
  position: relative;
}
.simple-section-divider {
  background: linear-gradient(90deg, transparent 0%, rgba(6,11,16,.32) 18%, var(--red) 50%, rgba(6,11,16,.32) 82%, transparent 100%);
  height: 5px;
  margin: 0 auto;
  max-width: 1180px;
  width: calc(100% - clamp(36px, 10vw, 144px));
}
.divider-line {
  background: #05090d;
  height: 20px;
  position: relative;
}
.divider-line-left {
  border-radius: 0 999px 0 0;
  clip-path: polygon(0 70%, 100% 0, 100% 100%, 0 100%);
}
.divider-line-right {
  border-radius: 999px 0 0 0;
  clip-path: polygon(0 100%, 0 0, 100% 70%, 100% 100%);
}
.divider-accent {
  background: var(--red);
  border-radius: 999px;
  height: 3px;
  width: 32px;
}
.divider-badge {
  align-items: center;
  background: var(--red);
  border: 5px solid #fff;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  height: 46px;
  justify-content: center;
  width: 46px;
  z-index: 1;
}
.divider-badge svg { height: 20px; width: 20px; }

.why-choose {
  background: linear-gradient(180deg, #fff 0%, #f8f9fb 100%);
  padding-bottom: clamp(66px, 7.9vw, 97px);
  padding-top: clamp(48px, 6vw, 76px);
}
.why-layout {
  align-items: stretch;
  display: grid;
  gap: clamp(24px, 3vw, 40px);
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 1fr);
  margin: 0 auto;
  max-width: 1280px;
}
.why-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 46px rgba(6,11,16,.12);
  padding: clamp(34px, 3.4vw, 46px) clamp(26px, 3.4vw, 46px);
}
.section-kicker { color: var(--red) !important; font-size: 14px; font-weight: 900; letter-spacing: .06em; margin: 0 0 12px !important; text-transform: uppercase; }
.why-card h2 { color: #05070a; font-size: clamp(34px, 4.32vw, 54px); letter-spacing: -.07em; line-height: 1; margin-bottom: 20px; }
.why-card > p:not(.section-kicker) { color: #4f5966; font-size: clamp(15.5px, 1.21vw, 19.4px); line-height: 1.55; max-width: 730px; }
.value-grid { display: grid; gap: 15px; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 24px; }
.value-grid > div { background: #fff; border: 1px solid #e3e6ea; border-radius: 10px; box-shadow: 0 7px 18px rgba(6,11,16,.09); padding: clamp(17px, 1.7vw, 21px); }
.value-grid > div svg { color: var(--red); height: 41px; margin-bottom: 10px; width: 41px; }
.value-grid h3 { font-size: clamp(13.8px, 1.07vw, 17.1px); margin: 0 0 7px; }
.value-grid p { color: #4f5966; font-size: clamp(11.9px, .86vw, 13.8px); line-height: 1.4; margin: 0; }
.trust-note { align-items: center; border-top: 1px solid #efefef; color: #374151; display: flex; gap: 12px; margin-top: 30px; padding-top: 22px; }
.trust-note svg { color: var(--red); height: 30px; width: 30px; }
.trust-note strong { color: var(--red); }
.why-photo-card {
  border-radius: 16px;
  box-shadow: 0 18px 46px rgba(6,11,16,.18);
  min-height: 0;
  overflow: hidden;
  position: relative;
}
.why-photo-card img {
  display: block;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
}

.why-review-divider { background: linear-gradient(180deg, #f8f9fb 0%, #fff 100%); padding: 0 0 24px; }
.why-review-divider span { background: linear-gradient(90deg, transparent 0%, rgba(6,11,16,.22) 18%, var(--red) 50%, rgba(6,11,16,.22) 82%, transparent 100%); border-radius: 999px; box-shadow: 0 8px 18px rgba(231,25,34,.16); display: block; height: 6.3px; margin: 0 auto; width: 100%; }

.google-reviews { background: linear-gradient(180deg, #fff 0%, #f7f9fb 100%); }
.reviews-heading { margin: 0 auto 42px; max-width: 900px; text-align: center; }
.reviews-heading > p:first-child { color: var(--red); font-size: 14px; font-weight: 900; letter-spacing: .45em; margin: 0 0 18px; text-transform: uppercase; }
.reviews-heading h2 { color: var(--ink); font-size: clamp(36px, 5vw, 62px); letter-spacing: -.06em; line-height: 1; margin: 0; }
.reviews-heading h2 span { color: var(--red); }
.reviews-divider { background: var(--red); border-radius: 999px; height: 4px; margin: 28px auto 24px; width: 78px; }
.reviews-score { align-items: center; display: flex; gap: 14px; justify-content: center; }
.reviews-score strong { color: #071f49; font-size: 34px; }
.reviews-score .google-logo { height: 36px; width: 36px; }
.reviews-count { color: #475569; font-size: 17px; margin: 8px 0 0; }
.reviews-count strong { color: #2f6fd6; }
.review-cards { display: grid; gap: 18px; grid-template-columns: repeat(5, minmax(0, 1fr)); margin: 0 auto; max-width: 1280px; }
.review-card { background: #fff; border: 1px solid #dfe6ee; border-radius: 14px; box-shadow: 0 18px 40px rgba(7, 31, 73, .08); color: #0f172a; display: flex; flex-direction: column; min-height: 300px; padding: 24px 20px; transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.review-card:hover { border-color: rgba(47,111,214,.35); box-shadow: 0 22px 46px rgba(7, 31, 73, .12); transform: translateY(-3px); }
.review-card-top { align-items: flex-start; display: grid; gap: 12px; grid-template-columns: 52px 1fr auto; margin-bottom: 28px; }
.review-avatar { align-items: center; background: linear-gradient(135deg, #e2e8f0, #cbd5e1); border-radius: 50%; color: #071f49; display: inline-flex; font-weight: 900; height: 46px; justify-content: center; width: 46px; }
.review-card-top strong { display: inline-block; font-size: 14px; margin-right: 6px; }
.verified { color: #2f6fd6; display: inline-flex; vertical-align: middle; }
.verified svg { fill: currentColor; height: 18px; width: 18px; }
.review-card .stars { display: flex; margin-top: 8px; }
.review-card .stars svg { height: 14px; width: 14px; }
.review-google { display: block; height: 28px; width: 28px; }
.review-card p { color: #1f2937; font-size: 16px; line-height: 1.7; margin: 0; }
.review-card small { color: #64748b; margin-top: auto; padding-top: 24px; }
.reviews-action { display: flex; justify-content: center; margin-top: 42px; }
.google-review-button { background: linear-gradient(135deg, #f21c27, #d70713); border: 1px solid var(--red); box-shadow: 0 16px 38px rgba(231,25,34,.35); color: #fff; gap: 10px; min-height: 52px; }
.google-review-button .review-google { background: #fff; border-radius: 50%; height: 24px; padding: 3px; width: 24px; }
.google-review-button.is-active,
.google-review-button:active { background: var(--red); border-color: var(--red); color: #fff; }
.google-review-button.is-active .review-google,
.google-review-button:active .review-google { background: #fff; }

.faq-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(231,25,34,.16), transparent 24%),
    linear-gradient(135deg, #151a20 0%, #252a31 54%, #171c22 100%);
  color: #fff;
  font-family: inherit;
  padding-bottom: clamp(58px, 6.8vw, 88px);
  padding-top: clamp(58px, 6.8vw, 88px);
}
.faq-layout {
  align-items: stretch;
  display: grid;
  gap: clamp(34px, 4.4vw, 58px);
  grid-template-columns: minmax(320px, 430px) minmax(420px, 560px);
  justify-content: start;
  margin: 0 auto;
  max-width: 1060px;
  transform: translateX(-5%);
}
.faq-intro { align-self: stretch; display: flex; flex-direction: column; justify-content: center; max-width: 430px; text-align: center; }
.faq-intro .section-kicker { font-size: 15.4px; margin-bottom: 8px !important; }
.faq-intro h2 { color: #fff; font-size: clamp(37px, 4.62vw, 57px); letter-spacing: -.07em; line-height: 1.04; margin: 0 0 22px; }
.faq-intro h2 span { color: var(--red); }
.faq-nowrap { color: inherit !important; white-space: nowrap; }
.faq-nowrap span { color: var(--red); }
.faq-intro > p:not(.section-kicker) { color: rgba(255,255,255,.78); font-size: 15px; line-height: 1.7; margin: 0 auto 30px; max-width: 380px; }
.faq-feature-grid { display: grid; gap: 17px; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 0 auto; max-width: 435px; }
.faq-feature-grid div { align-items: center; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: 13px; box-shadow: 0 12px 30px rgba(0,0,0,.18); display: grid; gap: 13px; min-height: 125px; padding: 20px; place-items: center; text-align: center; }
.faq-feature-grid svg { color: var(--red); height: 39px; width: 39px; }
.faq-feature-grid strong { color: #fff; font-family: inherit; font-size: 15.8px; }
.faq-accordion { display: grid; gap: 12px; justify-self: stretch; transform: translateX(10%); width: 100%; }
.faq-accordion details { background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.16); border-radius: 8px; box-shadow: 0 12px 30px rgba(0,0,0,.16); overflow: hidden; }
.faq-accordion summary { align-items: center; color: #fff; cursor: pointer; display: flex; font-family: inherit; font-size: 15px; font-weight: 900; justify-content: space-between; list-style: none; min-height: 58px; padding: 0 22px; }
.faq-accordion summary::-webkit-details-marker { display: none; }
.faq-accordion summary::after { color: #fff; content: "+"; font-size: 20px; font-weight: 700; line-height: 1; }
.faq-accordion details[open] summary { background: rgba(0,0,0,.45); color: #fff; }
.faq-accordion details[open] summary::after { color: #fff; content: "-"; }
.faq-accordion details p { color: rgba(255,255,255,.78); font-family: inherit; font-size: 14px; line-height: 1.65; margin: 0; padding: 18px 22px 22px; }
.faq-accordion details a { color: var(--red); font-weight: 800; }

.contact-section {
  background:
    radial-gradient(circle at 14% 17%, rgba(231,25,34,.08), transparent 22%),
    radial-gradient(circle at 86% 50%, rgba(6,11,16,.06), transparent 26%),
    #f8fafc;
  overflow: hidden;
}
.contact-container {
  background: linear-gradient(145deg, #fff 0%, #f9fafb 100%);
  border: 1px solid #e6e8eb;
  border-radius: 22px;
  box-shadow: 0 26px 70px rgba(6,11,16,.14), inset 0 1px 0 rgba(255,255,255,.9);
  margin: 0 auto;
  max-width: 1240px;
  padding: clamp(24px, 3.2vw, 44px);
  position: relative;
}
.contact-container::before {
  background: linear-gradient(90deg, var(--red), rgba(231,25,34,.18));
  border-radius: 999px;
  content: "";
  height: 4px;
  left: clamp(24px, 3.2vw, 44px);
  position: absolute;
  right: clamp(24px, 3.2vw, 44px);
  top: 0;
}
.contact-layout {
  align-items: center;
  display: grid;
  gap: clamp(28px, 4vw, 52px);
  grid-template-columns: minmax(0, .95fr) minmax(320px, 450px);
  margin: 0 auto;
  max-width: none;
}
.contact-kicker { align-items: center; color: var(--ink) !important; display: inline-flex; font-size: 13px; font-weight: 900; gap: 18px; letter-spacing: .32em; margin: 0 0 22px !important; text-transform: uppercase; }
.contact-kicker::after { background: var(--ink); content: ""; height: 3px; width: 58px; }
.contact-copy h2 { color: #07101c; font-size: clamp(36px, 4.6vw, 58px); letter-spacing: -.07em; line-height: .95; margin: 0; max-width: 560px; }
.contact-rule { background: var(--red); display: block; height: 4px; margin: 20px 0 24px; width: 74px; }
.contact-copy > p:not(.contact-kicker) { color: #3f4752; font-size: 16px; line-height: 1.65; max-width: 600px; }
.contact-highlights { display: grid; gap: 18px; margin-top: 28px; max-width: 600px; }
.contact-highlights div { display: grid; gap: 4px 18px; grid-template-columns: 38px 1fr; }
.contact-highlights svg { color: var(--red); grid-row: span 2; height: 32px; width: 32px; }
.contact-highlights strong { color: var(--ink); font-size: 16px; }
.contact-highlights span { color: #4f5966; font-size: 14px; line-height: 1.45; }
.contact-form-card {
  background: #fff;
  border: 1px solid #e6e8eb;
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(6,11,16,.12);
  padding: clamp(20px, 2.25vw, 28px);
  text-align: center;
}
.contact-form-icon { align-items: center; background: var(--ink); border-radius: 50%; color: #fff; display: inline-flex; height: 40px; justify-content: center; margin-bottom: 11px; width: 40px; }
.contact-form-icon svg { color: #fff; height: 19px; width: 19px; }
.contact-form-card h2 { color: var(--ink); font-size: clamp(21px, 2vw, 26px); letter-spacing: -.04em; margin: 0 0 6px; }
.contact-form-card > p { color: #5f6873; font-size: 14px; margin: 0 0 16px; }
.contact-form-grid { display: grid; gap: 10px; grid-template-columns: 1fr 1fr; }
.contact-form-grid label {
  align-items: center;
  background: #fff;
  border: 1px solid #dfe3e8;
  border-radius: 8px;
  display: grid;
  gap: 8px;
  grid-template-columns: 19px 1fr;
  letter-spacing: 0;
  min-height: 48px;
  padding: 0 12px;
  text-transform: none;
}
.contact-form-grid label:focus-within { border-color: var(--red); box-shadow: 0 0 0 4px rgba(231,25,34,.1); }
.contact-form-grid .wide { grid-column: 1 / -1; }
.contact-form-grid svg { color: var(--ink); height: 16px; width: 16px; }
.contact-form-grid input,
.contact-form-grid select,
.contact-form-grid textarea {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--ink);
  font-size: 14.8px;
  font-weight: 500;
  margin: 0;
  min-height: 46px;
  padding: 0;
}
.contact-form-grid input:focus,
.contact-form-grid select:focus,
.contact-form-grid textarea:focus { box-shadow: none; }
.contact-form-grid textarea { min-height: 68px; padding-top: 12px; }
.contact-form-card .button { font-size: 12.5px; margin-top: 11px; min-height: 47px; }
.contact-form-card small { align-items: center; color: #5f6873; display: inline-flex; font-size: 11px; gap: 7px; margin-top: 11px; }
.contact-form-card small svg { color: var(--ink); height: 14px; width: 14px; }
.contact-form-card .form-message { font-size: 12px; margin: 11px 0 0 !important; }
.contact-info-row { display: grid; gap: 15px; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 26px auto 0; max-width: none; }
.contact-info-row div { align-items: flex-start; background: #fff; border: 1px solid #e6e8eb; border-radius: 12px; box-shadow: 0 8px 20px rgba(6,11,16,.08); display: grid; gap: 5px 15px; grid-template-columns: 46px 1fr; min-height: 104px; padding: 18px; }
.contact-info-row svg { background: rgba(231,25,34,.08); border-radius: 50%; color: var(--red); grid-row: span 3; height: 46px; padding: 12px; width: 46px; }
.contact-info-row span { color: var(--ink); font-size: 17px; font-weight: 900; line-height: 1.2; text-transform: uppercase; }
.contact-info-row strong { color: #4f5966; font-size: 13px; line-height: 1.45; }
.contact-info-row em { color: var(--red); font-size: 12px; font-style: normal; font-weight: 800; }

.contact-location-divider {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  padding: 0 clamp(18px, 5vw, 72px) 10px;
  position: relative;
}
.contact-location-divider span {
  background:
    linear-gradient(90deg, transparent 0 8%, #080e14 8% 44%, var(--red) 44% 56%, #080e14 56% 92%, transparent 92% 100%);
  clip-path: polygon(0 50%, 7% 50%, 12% 0, 44% 0, 47% 50%, 53% 50%, 56% 0, 88% 0, 93% 50%, 100% 50%, 100% 100%, 0 100%);
  display: block;
  height: 18px;
  margin: 0 auto;
  max-width: 1180px;
  opacity: .95;
}

.locations-section { background: linear-gradient(180deg, #f8fafc 0%, #fff 100%); }
.locations-shell {
  background: linear-gradient(145deg, #fff 0%, #f8fafc 100%);
  border: 1px solid #e6e8eb;
  border-radius: 24px;
  box-shadow: 0 28px 76px rgba(6,11,16,.14), inset 0 1px 0 rgba(255,255,255,.9);
  margin: 0 auto;
  max-width: 1280px;
  overflow: hidden;
  padding: clamp(26px, 3.8vw, 52px);
  position: relative;
}
.locations-shell::before {
  background: linear-gradient(90deg, var(--red), rgba(231,25,34,.16));
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.locations-heading { margin: 0 auto 30px; max-width: 760px; text-align: center; }
.locations-heading h2 { color: var(--ink); font-size: clamp(34px, 4.6vw, 58px); letter-spacing: -.07em; line-height: 1; margin: 0 0 14px; }
.locations-heading p:not(.section-kicker) { color: #4f5966; margin: 0; }
.locations-page-hero {
  background:
    radial-gradient(circle at 78% 10%, rgba(231,25,34,.08), transparent 32%),
    linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  padding-top: clamp(54px, 7vw, 92px);
}
.locations-grid {
  background: #f3f5f7;
  border: 1px solid #e1e5ea;
  border-radius: 20px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.86);
  display: grid;
  gap: 18px;
  grid-template-columns: 270px 310px minmax(360px, 1fr);
  padding: clamp(16px, 2vw, 24px);
}
.locations-area-buttons {
  background: #f3f5f7;
  border: 1px solid #e1e5ea;
  border-radius: 20px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 24px auto 0;
  max-width: 1280px;
  padding: clamp(16px, 2vw, 24px);
}
.locations-area-buttons span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  grid-column: 1 / -1;
  letter-spacing: .1em;
  text-align: center;
  text-transform: uppercase;
}
.locations-area-buttons button,
.locations-area-buttons a {
  background: #060b10;
  border: 1px solid #060b10;
  border-radius: 14px;
  color: #fff;
  cursor: default;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  min-height: 64px;
  padding: 0 18px;
  text-transform: uppercase;
}
.locations-area-buttons a { cursor: pointer; }
.locations-area-buttons a:hover { background: var(--red); border-color: var(--red); }
.location-list { display: grid; gap: 12px; order: 1; }
.location-button {
  align-items: center;
  background: linear-gradient(145deg, #fff 0%, #f4f6f8 100%);
  border: 1px solid rgba(6,11,16,.08);
  border-radius: 14px;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  font-family: inherit;
  gap: 14px;
  grid-template-columns: 42px 1fr;
  min-height: 82px;
  padding: 16px;
  text-align: left;
  box-shadow: 0 12px 24px rgba(6,11,16,.08), inset 0 1px 0 rgba(255,255,255,.92);
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.location-button:hover,
.location-button.is-active { border-color: rgba(231,25,34,.55); box-shadow: 0 18px 36px rgba(6,11,16,.14), inset 0 1px 0 rgba(255,255,255,.96); transform: translateY(-3px); }
.location-button.is-active { background: linear-gradient(145deg, #fff 0%, #fff1f1 100%); }
.location-button svg { background: rgba(231,25,34,.1); border-radius: 50%; color: var(--red); height: 42px; padding: 10px; width: 42px; }
.location-button span { display: grid; gap: 4px; }
.location-button strong { font-size: 17px; }
.location-button small { color: #65717f; font-size: 13px; }
.location-map { background: #fff; border: 1px solid #dfe4ea; border-radius: 18px; box-shadow: 0 12px 34px rgba(6,11,16,.1); min-height: 438px; order: 3; overflow: hidden; }
.location-map iframe { border: 0; display: block; height: 100%; min-height: 438px; width: 100%; }
.location-details {
  background: linear-gradient(145deg, #111820, #20262e);
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(6,11,16,.18);
  color: #fff;
  display: flex;
  flex-direction: column;
  order: 2;
  padding: 28px;
}
.location-details-label { color: var(--red); font-size: 12px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.location-details h3 { font-size: 34px; letter-spacing: -.05em; margin: 12px 0 12px; }
.location-details p { color: rgba(255,255,255,.78); line-height: 1.65; margin: 0 0 22px; }
.location-detail-list { display: grid; gap: 14px; margin-bottom: 24px; }
.location-detail-list span { align-items: flex-start; display: grid; gap: 10px; grid-template-columns: 22px 1fr; }
.location-detail-list svg { color: var(--red); height: 20px; margin-top: 2px; width: 20px; }
.location-detail-list strong { color: #fff; font-size: 14px; line-height: 1.4; }
.location-detail-list a { color: #fff; }
.location-details .button { margin-top: auto; }

.services-page-hero {
  background: #090f15;
  color: #fff;
  display: grid;
  gap: clamp(28px, 4vw, 52px);
  grid-template-columns: minmax(0, 720px) minmax(340px, 440px);
  justify-content: center;
  min-height: 600px;
  overflow: hidden;
  padding: clamp(64px, 7vw, 96px) clamp(18px, 5vw, 72px) clamp(48px, 5.6vw, 72px);
  position: relative;
}
.services-hero-bg { inset: 0; position: absolute; }
.services-hero-bg img { height: 100%; object-fit: cover; opacity: .46; width: 100%; }
.services-hero-bg::after { background: linear-gradient(90deg, rgba(5,8,12,.94), rgba(5,8,12,.78) 48%, rgba(5,8,12,.48)); content: ""; inset: 0; position: absolute; }
.services-hero-copy { align-self: center; max-width: 720px; position: relative; z-index: 1; }
.breadcrumb { color: rgba(255,255,255,.72) !important; font-size: 12px; font-weight: 900; letter-spacing: .08em; margin: 0 0 18px !important; text-transform: uppercase; }
.services-page-hero h1 { font-size: clamp(44px, 5.5vw, 76px); letter-spacing: -.075em; line-height: .94; margin: 22px 0 20px; }
.services-page-hero h1 span { color: var(--red); display: block; }
.services-hero-copy > p:not(.breadcrumb):not(.eyebrow) { color: rgba(255,255,255,.86); font-size: clamp(16px, 1.4vw, 20px); line-height: 1.65; max-width: 650px; }
.services-page-list { background: linear-gradient(180deg, #fff 0%, #f8fafc 100%); }
.services-page-shell { margin: 0 auto; max-width: 1120px; }
.services-page-list .section-heading { max-width: 760px; }
.service-page-grid { display: grid; gap: 22px; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 0 auto; max-width: none; }
.service-page-card { background: #fff; border: 1px solid #e5e8ec; border-radius: 14px; box-shadow: 0 16px 36px rgba(6,11,16,.08); display: flex; flex-direction: column; overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.service-page-card:hover { border-color: rgba(231,25,34,.28); box-shadow: 0 22px 46px rgba(6,11,16,.12); transform: translateY(-3px); }
.service-page-photo { background: linear-gradient(135deg, #1a2028, #303844); height: 138px; overflow: hidden; position: relative; }
.service-page-photo::before { background: inherit; background-position: inherit; background-size: cover; content: ""; inset: 0; position: absolute; transform: scale(1.1); }
.service-page-photo::after { background: linear-gradient(135deg, rgba(231,25,34,.72), rgba(6,11,16,.18)); content: ""; inset: 0; position: absolute; }
.service-photo-plumbing { background-image: linear-gradient(135deg, rgba(6,11,16,.12), rgba(6,11,16,.02)), url("/assets/service-plumbing-one.png"); background-position: center; background-size: cover; }
.service-photo-sewer { background-image: linear-gradient(135deg, rgba(6,11,16,.18), rgba(6,11,16,.04)), url("/assets/service-2-sewer-drain.png"); background-position: center; background-size: cover; }
.service-photo-drain { background-image: linear-gradient(135deg, rgba(6,11,16,.18), rgba(6,11,16,.04)), url("/assets/service-drain-cleaning-two.webp"); background-position: center; background-size: cover; }
.service-photo-hvac { background-image: linear-gradient(135deg, rgba(6,11,16,.16), rgba(6,11,16,.04)), url("/assets/service-ac-addon.png"); background-position: center; background-size: cover; }
.service-photo-water { background-image: linear-gradient(135deg, rgba(6,11,16,.12), rgba(6,11,16,.02)), url("/assets/mesa-water-heater-new.png"); background-position: center; background-size: cover; }
.service-photo-pipe { background-image: linear-gradient(135deg, rgba(6,11,16,.16), rgba(6,11,16,.04)), url("/assets/service-sewer-repair-new.png"); background-position: center; background-size: cover; }
.service-photo-emergency { background-image: linear-gradient(135deg, rgba(6,11,16,.18), rgba(6,11,16,.04)), url("/assets/service-furnace-new.png"); background-position: center; background-size: cover; }
.service-page-body { display: flex; flex: 1; flex-direction: column; padding: 22px; }
.service-page-body > svg { background: rgba(231,25,34,.1); border-radius: 10px; color: var(--red); height: 42px; padding: 10px; width: 42px; }
.service-page-body h3 { font-size: 23px; letter-spacing: -.035em; margin: 16px 0 8px; }
.service-page-body p { color: #5f6873; font-size: 14px; line-height: 1.55; }
.service-page-body ul { color: #27313c; display: grid; gap: 8px; font-size: 13px; line-height: 1.35; list-style: none; margin: 18px 0 22px; padding: 0; }
.service-page-body li::before { color: var(--red); content: "✓"; font-weight: 900; margin-right: 8px; }
.service-page-body a { align-items: center; color: var(--red); display: inline-flex; font-size: 12px; font-weight: 900; gap: 7px; margin-top: auto; text-transform: uppercase; }

.legal-page main {
  background: linear-gradient(180deg, #f7f8fa 0%, #fff 42%);
}

.legal-hero {
  background: #080e15;
  color: #fff;
  overflow: hidden;
  padding: clamp(74px, 8vw, 118px) clamp(18px, 5vw, 72px) clamp(52px, 6vw, 82px);
  position: relative;
  text-align: center;
}

.legal-hero::before {
  background:
    radial-gradient(circle at 18% 20%, rgba(237,16,27,.26), transparent 24%),
    linear-gradient(135deg, rgba(255,255,255,.08), transparent 38%);
  content: "";
  inset: 0;
  opacity: .85;
  position: absolute;
}

.legal-hero > * {
  margin-left: auto;
  margin-right: auto;
  max-width: 880px;
  position: relative;
  z-index: 1;
}

.legal-hero h1 {
  font-size: clamp(42px, 6vw, 78px);
  letter-spacing: -.075em;
  line-height: .98;
  margin: 16px auto 18px;
}

.legal-hero p:not(.breadcrumb) {
  color: rgba(255,255,255,.82);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.65;
}

.legal-content {
  padding: clamp(52px, 6vw, 84px) clamp(18px, 5vw, 72px);
}

.legal-card {
  background: #fff;
  border: 1px solid #e6eaf0;
  border-radius: 18px;
  box-shadow: 0 20px 56px rgba(6,11,16,.08);
  color: #27313c;
  display: grid;
  gap: 30px;
  margin: 0 auto;
  max-width: 980px;
  padding: clamp(28px, 5vw, 58px);
}

.legal-card section {
  border-bottom: 1px solid #edf0f3;
  padding-bottom: 28px;
}

.legal-card section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.legal-card h2 {
  color: #07111d;
  font-size: clamp(24px, 2.4vw, 34px);
  letter-spacing: -.055em;
  line-height: 1.08;
  margin: 0 0 12px;
}

.legal-card p,
.legal-card li {
  color: #4d5865;
  line-height: 1.7;
}

.legal-card p {
  margin: 0 0 14px;
}

.legal-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.legal-card a {
  color: var(--red);
  font-weight: 900;
}

.service-why-band { background: linear-gradient(135deg, #070d13, #131b23); color: #fff; padding: clamp(58px, 6.5vw, 84px) clamp(18px, 5vw, 72px); }
.service-why-shell { align-items: center; display: grid; gap: clamp(28px, 4vw, 54px); grid-template-columns: minmax(0, 560px) minmax(320px, 520px); justify-content: center; margin: 0 auto; max-width: 1120px; }
.service-why-copy { max-width: 560px; }
.service-why-copy h2 { color: #fff; font-size: clamp(34px, 4.3vw, 56px); letter-spacing: -.07em; line-height: .98; margin: 0 0 16px; }
.service-why-copy > p { color: rgba(255,255,255,.78); line-height: 1.65; }
.service-proof-grid { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; margin-top: 28px; }
.service-proof-grid div { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15); border-radius: 12px; display: grid; gap: 6px 14px; grid-template-columns: 42px 1fr; padding: 18px; }
.service-proof-grid svg { background: var(--red); border-radius: 50%; color: #fff; grid-row: span 2; height: 38px; padding: 10px; width: 38px; }
.service-proof-grid strong { color: #fff; font-size: 14px; }
.service-proof-grid span { color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.4; }
.service-why-image { border-radius: 16px; box-shadow: 0 24px 64px rgba(0,0,0,.32); height: 360px; overflow: hidden; }
.service-why-image img { display: block; height: 100%; object-fit: cover; width: 100%; }

.service-process { background: #fff; }
.service-process-shell { margin: 0 auto; max-width: 1120px; }
.process-grid { display: grid; gap: 18px; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 0 auto; max-width: none; }
.process-grid div { background: #fff; border: 1px solid #e5e8ec; border-radius: 14px; box-shadow: 0 12px 32px rgba(6,11,16,.06); padding: 28px 24px; text-align: center; }
.process-grid span { align-items: center; background: var(--red); border-radius: 50%; color: #fff; display: inline-flex; font-weight: 900; height: 42px; justify-content: center; margin-bottom: 20px; width: 42px; }
.process-grid h3 { font-size: 18px; margin: 0 0 10px; }
.process-grid p { color: #65717f; font-size: 13px; line-height: 1.5; }

.service-help-grid { display: grid; gap: 28px; grid-template-columns: 1fr 1fr; margin-top: 58px; }
.service-help-card,
.service-faq-card { background: #fff; border: 1px solid #e5e8ec; border-radius: 16px; box-shadow: 0 18px 42px rgba(6,11,16,.08); padding: clamp(28px, 4vw, 44px); }
.service-help-card h2,
.service-faq-card h2 { font-size: clamp(28px, 3vw, 38px); letter-spacing: -.055em; margin: 0 0 12px; }
.help-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.help-actions .button-outline { width: auto; }
.service-faq-card details { border-top: 1px solid #eceff2; }
.service-faq-card summary { cursor: pointer; font-weight: 900; list-style: none; padding: 18px 0; }
.service-faq-card summary::after { color: var(--red); content: "+"; float: right; font-size: 20px; }
.service-faq-card details[open] summary::after { content: "-"; }
.service-faq-card details p { color: #65717f; margin: 0; padding: 0 0 18px; }

.service-final-cta { align-items: center; background: linear-gradient(135deg, #f21520, #bf0610); color: #fff; display: grid; gap: 26px; grid-template-columns: minmax(0, 1fr) auto auto; padding: 37px max(clamp(18px, 6vw, 112px), calc((100vw - 1120px) / 2)); }
.service-final-cta > div { max-width: 640px; }
.service-final-cta h2 { font-size: clamp(28px, 3.6vw, 44px); letter-spacing: -.055em; line-height: 1.05; margin: 0 0 8px; }
.service-final-cta p { margin: 0; }
.service-final-cta > a:not(.button) { align-items: center; display: inline-flex; font-size: 22px; font-weight: 900; gap: 10px; }

.final-cta { align-items: center; background: linear-gradient(135deg, #f21520, #bf0610); color: #fff; display: grid; gap: 26px; grid-template-columns: 1fr auto auto; padding: 37px clamp(18px, 6vw, 112px); }
.final-cta p { margin: 0; }
.final-cta > a:not(.button) { font-size: 22px; font-weight: 900; }
.site-footer {
  background: linear-gradient(180deg, #03070b 0%, #07111a 100%);
  color: #fff;
  padding: 54px clamp(18px, 4vw, 39px) 20px;
}
.footer-grid { display: grid; gap: clamp(26px, 3.6vw, 52px); grid-template-columns: 1.25fr .85fr 1fr 1.05fr; margin: 0 auto; max-width: 1340px; }
.footer-company p { color: rgba(255,255,255,.82); font-size: 18px; line-height: 1.5; margin: 24px 0 27px; max-width: 376px; }
.footer-brand { background: transparent; box-shadow: none; padding: 0; width: 354px; }
.footer-logo { max-height: 92px; max-width: 354px; }
.footer-brand .brand-main { font-size: 66px; }
.footer-brand .brand-service { color: #fff; font-size: 17px; letter-spacing: .17em; }
.footer-brand .brand-icons { right: 0; top: 7px; }
.footer-brand .brand-icons span { background: transparent; border: 2px solid var(--red); color: #fff; height: 39px; width: 39px; }
.footer-column { display: flex; flex-direction: column; gap: 19px; }
.footer-column h2 { border-bottom: 1px solid rgba(255,255,255,.22); font-size: 22px; letter-spacing: .08em; margin: 0 0 10px; padding-bottom: 16px; text-transform: uppercase; }
.footer-column a,
.footer-column span { align-items: flex-start; color: rgba(255,255,255,.86); display: inline-flex; font-size: 18px; gap: 16px; line-height: 1.3; transition: color .2s ease, transform .2s ease; }
.footer-column a:hover { color: #fff; transform: translateX(3px); }
.footer-services svg { color: var(--red); height: 22px; width: 22px; }
.footer-contact svg { color: #fff; height: 22px; width: 22px; }
.footer-column .footer-call-button { align-items: center; color: #fff !important; font-size: 14px; gap: 10px; justify-content: center; line-height: 1; margin-top: 10px; min-height: 52px; padding: 0 26px; text-transform: uppercase; width: fit-content; }
.footer-column .footer-call-button svg { color: #fff; height: 18px; width: 18px; }
.footer-column .footer-call-button:hover { transform: translateY(-2px); }
.footer-socials { display: flex; gap: 22px; }
.footer-socials a { align-items: center; background: #fff; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; color: var(--ink); display: inline-flex; height: 46px; justify-content: center; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; width: 46px; }
.footer-socials a:hover { border-color: #fff; box-shadow: 0 10px 26px rgba(0,0,0,.22); color: var(--red); transform: translateY(-2px); }
.footer-socials svg { height: 22px; width: 22px; }
.footer-socials .social-icon path[fill="currentColor"] { fill: currentColor; }
.footer-bottom { align-items: center; border-top: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.82); display: flex; flex-wrap: wrap; gap: 25px; justify-content: space-between; margin: 52px auto 0; max-width: 1340px; padding-top: 25px; }
.footer-bottom a { color: rgba(255,255,255,.86); }

@media (max-width: 1440px) {
  .hero-inner { padding-left: 48px; padding-right: 48px; }
}

@media (min-width: 1441px) {
  .hero-inner {
    gap: clamp(42px, 4vw, 64px);
    grid-template-columns: minmax(0, 760px) minmax(390px, 460px);
    justify-content: space-between;
    max-width: 1540px;
    padding-left: 48px;
    padding-right: 48px;
  }

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

  .hero h1 {
    font-size: clamp(56px, 4.75vw, 86px);
    max-width: 760px;
  }

  .request-card {
    max-width: 460px;
    justify-self: end;
    transform: none;
  }
}

@media (min-width: 1121px) and (max-width: 1440px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 460px);
  }

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

  .request-card {
    justify-self: end;
    transform: none;
  }
}

@media (max-width: 1200px) {
  .hero-inner { padding-left: 40px; padding-right: 40px; }
}

@media (max-width: 1120px) {
  .site-header { gap: 12px; grid-template-columns: minmax(0, auto) 1fr auto; }
  .brand { grid-column: 1; grid-row: 1; max-width: min(238px, 54vw); width: 100%; }
  .menu-button { display: flex; grid-column: 3; grid-row: 1; justify-self: end; }
  .main-nav { display: none; }
  .header-actions { display: flex; grid-column: 2; grid-row: 1; justify-self: end; }
  .header-actions .header-schedule { display: none; }
  .site-header.is-open .main-nav { display: flex; grid-column: 1 / -1; justify-content: flex-start; width: 100%; }
  .site-header.is-open .main-nav { align-items: flex-start; flex-direction: column; gap: 16px; }
  .site-header.is-open .header-actions { display: flex; }
  .nav-dropdown { align-items: stretch; display: grid; height: auto; width: 100%; }
  .nav-trigger { height: auto; justify-content: space-between; min-height: 20px; width: 100%; }
  .nav-trigger::after { content: "+"; font-size: 18px; font-weight: 900; line-height: 1; }
  .nav-dropdown.is-open > .nav-trigger::after { content: "-"; }
  .nav-menu { background: #f7f8fa; border: 0; box-shadow: none; display: none; left: auto; margin-top: 10px; min-width: 0; opacity: 1; padding: 8px; pointer-events: auto; position: static; transform: none; width: 100%; }
  .nav-dropdown:hover .nav-menu,
  .nav-dropdown:focus-within .nav-menu,
  .nav-dropdown.is-open .nav-menu { display: grid; transform: none; }
  .phone-link { background: #fff; border: 1px solid rgba(6,11,16,.12); border-radius: 999px; box-shadow: 0 8px 20px rgba(6,11,16,.08); gap: 8px; justify-content: center; min-height: 44px; padding: 0 12px; }
  .phone-link svg { height: 34px; padding: 8px; width: 34px; }
  .phone-link span { display: none; }
  .hero-review-strip { gap: 10px 18px; justify-content: center; margin-left: auto; margin-right: auto; max-width: 100%; width: 100%; }
  .hero { padding-left: 0; padding-right: 0; }
  .hero-inner { gap: 34px; grid-template-columns: 1fr; max-width: 900px; }
  .hero-content { margin-left: auto; margin-right: auto; max-width: 760px; transform: none; }
  .hero-nowrap { white-space: normal; }
  .request-card { justify-self: center; max-width: 532px; transform: none; width: 100%; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .review-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .faq-layout { grid-template-columns: 1fr; max-width: 620px; transform: none; }
  .faq-intro { justify-self: center; }
  .faq-accordion { transform: none; }
  .why-layout { grid-template-columns: 1fr; }
  .why-photo-card { aspect-ratio: 1.55 / 1; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-row { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .location-hero-lead-form .contact-form-grid { grid-template-columns: 1fr; }
  .locations-area-buttons { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .location-map, .location-map iframe { min-height: 360px; }
  .services-page-hero { grid-template-columns: minmax(0, 720px); justify-items: center; }
  .service-page-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-why-shell { grid-template-columns: minmax(0, 720px); }
  .service-why-copy { max-width: none; }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-help-grid { grid-template-columns: minmax(0, 620px); justify-content: center; }
  .service-final-cta { grid-template-columns: minmax(0, 720px); justify-content: center; }
  .service-final-cta { text-align: center; }
  .boulder-page .hero-inner { grid-template-columns: minmax(0, 760px); justify-content: center; }
  .boulder-hero-lead-form { justify-self: center; }
  .bottom-grid, .final-cta { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .final-cta { text-align: center; }
  .footer-socials { justify-content: flex-start; }
}

@media (max-width: 760px) {
  .brand-icons { display: none; }
  .site-header { min-height: 72px; padding: 12px 18px; }
  .brand-logo { max-height: 48px; padding: 3px 6px; }
  .hero-review-strip { align-items: center; flex-wrap: nowrap; gap: 9px; justify-content: center; padding-left: 10px; padding-right: 10px; }
  .hero-review-strip .google-logo { height: 20px; width: 20px; }
  .hero-review-strip .review-score { font-size: 16px; }
  .hero-review-strip .stars { gap: 1px; }
  .hero-review-strip .stars svg { height: 14px; width: 14px; }
  .hero-review-strip span:last-child { font-size: 12px; white-space: nowrap; }
  .hero { min-height: 0; padding: 36px 0 56px; }
  .hero-inner { padding-left: 24px; padding-right: 24px; }
  .hero-content { text-align: center; }
  .hero h1 { font-size: clamp(40px, 12vw, 58px); line-height: 1; }
  .hero-copy { font-size: 16px; line-height: 1.58; margin-left: auto; margin-right: auto; }
  .hero-buttons { gap: 12px; justify-content: center; }
  .hero-service-highlights { margin-left: auto; margin-right: auto; margin-top: 24px; max-width: 640px; }
  .hero-service-highlights .service-hero-highlight { padding: 12px; }
  .hero-service-highlights .service-hero-highlight strong { font-size: 11.5px; }
  .hero-nowrap { white-space: normal; }
  .hero-art { opacity: .32; }
  .service-van { left: 18%; width: 330px; }
  .trust-pills, .form-grid, fieldset, .service-grid, .value-grid, .contact-form-grid { grid-template-columns: 1fr; }
  .why-card, .why-photo-card { margin-left: auto; margin-right: auto; max-width: 560px; text-align: center; width: 100%; }
  .why-card > p:not(.section-kicker) { margin-left: auto; margin-right: auto; }
  .value-grid { margin-left: auto; margin-right: auto; max-width: 430px; }
  .value-grid > div { text-align: center; }
  .value-grid > div svg { display: block; margin-left: auto; margin-right: auto; }
  .trust-note { justify-content: center; text-align: left; }
  .services { padding-left: 20px; padding-right: 20px; }
  .services .section-heading { margin-bottom: 24px; }
  .service-grid { display: flex; flex-direction: column; gap: 14px; max-width: 430px; width: 100%; }
  .service-card { border-radius: 12px; display: block; padding: 24px 18px; width: 100%; }
  .service-card h3 { font-size: 19px; margin: 14px 0 6px; }
  .service-card p { font-size: 14px; line-height: 1.5; margin: 0; }
  .service-card a { justify-content: center; margin-top: 12px; width: 100%; }
  .services-cta { margin-top: 24px; }
  .services-cta .button { max-width: 430px; width: 100%; }
  .service-page-grid, .service-proof-grid, .process-grid, .service-help-grid { grid-template-columns: 1fr; }
  .services-page-hero { padding-top: 56px; }
  .services-page-hero h1 { font-size: clamp(42px, 13vw, 62px); }
  .contact-form-grid .wide { grid-column: auto; }
  .value-grid > div svg { height: 42px; width: 42px; }
  .review-cards { grid-template-columns: 1fr; }
  .review-card:nth-child(n + 4) { display: none; }
  .faq-feature-grid { gap: 10px; grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 340px; }
  .faq-feature-grid div { border-radius: 10px; gap: 8px; min-height: 76px; padding: 12px 10px; }
  .faq-feature-grid div:nth-child(1) { order: 2; }
  .faq-feature-grid div:nth-child(2) { order: 1; }
  .faq-feature-grid div:nth-child(3) { order: 4; }
  .faq-feature-grid div:nth-child(4) { order: 3; }
  .faq-feature-grid svg { height: 26px; width: 26px; }
  .faq-feature-grid strong { font-size: 13px; line-height: 1.2; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { width: 290px; }
  .footer-logo { max-width: 290px; }
  .footer-brand .brand-main { font-size: 52px; }
  .footer-brand .brand-service { font-size: 12px; }
  .footer-brand .brand-icons { display: none; }
  .footer-company p, .footer-column a, .footer-column span { font-size: 18px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 16px; }
  .request-card { border-radius: 12px; }
  .request-card .button { margin-left: 22px; margin-right: 22px; width: calc(100% - 44px); }
  .rating-line { align-items: flex-start; }
  .reviews-score { flex-wrap: wrap; }
  .services-cta .button, .google-review-button { width: 100%; }
  .contact-highlights { grid-template-columns: 1fr; }
  .contact-form-card { padding: 20px 16px; }
  .location-hero-chips { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .location-hero-chips button { padding: 0 10px; }
  .location-hero-map-card { width: 100%; }
  .locations-hero-reference { text-align: center; }
  .locations-hero-reference .hero-content { justify-items: center; }
  .location-hero-lead-form { padding-left: 16px; padding-right: 16px; }
  .location-hero-lead-form .button { width: 100%; }
  body.services-page .locations-hero-reference h1 { font-size: clamp(38px, 11vw, 58px); }
  body.services-page .service-final-cta .button { width: 100%; }
}

@media (max-width: 450px) {
  .site-header { padding-left: 14px; padding-right: 14px; }
  .brand { max-width: 196px; }
  .brand-main { font-size: 36px; }
  .brand-service { font-size: 9px; }
  .button { width: 100%; }
  .hero-service-highlights { grid-template-columns: 1fr; max-width: 360px; }
  .review-strip { justify-content: flex-start; }
  .hero-review-strip { justify-content: center; max-width: 100%; width: 100%; }
  .hero { padding-left: 0; padding-right: 0; }
  .hero-inner { padding-left: 20px; padding-right: 20px; }
  .hero h1 { font-size: clamp(36px, 13vw, 50px); }
  .eyebrow { padding: 9px 14px; }
  .trust-pills span { padding-left: 12px; padding-right: 12px; }
  .request-card .button { margin-left: 16px; margin-right: 16px; width: calc(100% - 32px); }
  fieldset, .form-grid, .request-card > label { padding-left: 16px; padding-right: 16px; }
  .rating-line { padding-left: 16px; padding-right: 16px; }
  .section { padding-left: 14px; padding-right: 14px; }
  .location-hero-chips { grid-template-columns: 1fr; }
  .locations-area-buttons { grid-template-columns: 1fr; }
  .footer-brand, .footer-logo { max-width: 100%; width: 100%; }
  .footer-socials { flex-wrap: wrap; }
  .location-details { padding: 20px; }
  .location-hero-selected { width: 100%; }
}

/* Services page: scoped layout pass based on the service-page mockup. */
body.services-page {
  background: #fff;
}

body.services-page .anchor-offset {
  display: block;
  position: relative;
  top: -90px;
  visibility: hidden;
}

body.services-page .service-hero-reference {
  display: block;
  grid-template-columns: none;
  min-height: 560px;
  padding: clamp(62px, 7vw, 86px) max(28px, calc((100vw - 1328px) / 2)) clamp(54px, 6vw, 74px);
}

body.services-page .service-hero-reference .hero-inner {
  display: block;
  margin: 0;
  max-width: none;
  position: static;
  width: auto;
}

body.services-page .service-hero-reference .hero-art {
  opacity: 1;
}

body.services-page .service-hero-reference .hero-bg-photo {
  opacity: 1;
}

body.services-page .service-hero-reference .hero-photo-scrim {
  background:
    linear-gradient(90deg, rgba(3,4,7,.9) 0%, rgba(3,4,7,.78) 38%, rgba(3,4,7,.42) 68%, rgba(3,4,7,.18) 100%),
    linear-gradient(180deg, rgba(3,4,7,.04), rgba(3,4,7,.5));
}

body.services-page .service-hero-reference .hero-content {
  margin-left: 0;
  max-width: 875px;
  transform: none;
}

body.services-page .service-hero-reference .breadcrumb {
  color: rgba(255,255,255,.8) !important;
  font-size: 13.8px;
  font-weight: 900;
  letter-spacing: .08em;
  margin: 0 0 18px !important;
  text-transform: uppercase;
}

body.services-page .service-hero-reference .eyebrow {
  font-size: 13.8px;
  padding: 10px 22px;
  transform: none;
}

body.services-page .service-hero-reference h1 {
  font-size: clamp(55px, 6.45vw, 91px);
  letter-spacing: -.078em;
  line-height: .91;
  margin: 24px 0 24px;
  max-width: 790px;
  transform: none;
}

body.services-page .service-hero-reference .hero-nowrap {
  white-space: normal;
}

body.services-page .service-hero-reference .hero-company-line {
  display: inline;
}

body.services-page .service-hero-reference h1 span {
  color: var(--red);
}

body.services-page .service-hero-reference .hero-copy {
  font-size: clamp(18.5px, 1.59vw, 22.8px);
  line-height: 1.62;
  max-width: 794px;
}

body.services-page .service-core-divider {
  align-items: center;
  background: linear-gradient(180deg, #fff 0%, #f7f8fa 100%);
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 54px 1fr;
  padding: 0 max(54px, calc((100vw - 1328px) / 2)) 38px;
}

body.services-page .service-core-divider span {
  background: linear-gradient(90deg, transparent, rgba(231,25,34,.9), rgba(6,11,16,.24));
  border-radius: 999px;
  height: 5px;
}

body.services-page .service-core-divider span:last-child {
  background: linear-gradient(90deg, rgba(6,11,16,.24), rgba(231,25,34,.9), transparent);
}

body.services-page .service-core-divider svg {
  background: var(--red);
  border: 5px solid #fff;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(231,25,34,.22);
  color: #fff;
  height: 54px;
  padding: 12px;
  width: 54px;
}

body.services-page .service-location-section {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.locations-hero-reference {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(5,8,12,.92) 0%, rgba(5,8,12,.8) 42%, rgba(5,8,12,.52) 72%, rgba(5,8,12,.34) 100%),
    url("assets/mesa-van2.png") center center / cover no-repeat,
    linear-gradient(135deg, #151b22 0%, #080d13 58%, #121922 100%);
  color: #fff;
  display: grid;
  gap: clamp(32px, 5.4vw, 86px);
  grid-template-columns: minmax(0, 1fr) minmax(390px, 590px);
  min-height: 720px;
  padding: clamp(58px, 7vw, 96px) max(30px, calc((100vw - 1328px) / 2)) clamp(46px, 6vw, 76px);
}

.locations-hero-reference .hero-art {
  background:
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 62px 62px;
  opacity: .45;
}

.locations-hero-reference .hero-bg-photo,
.locations-hero-reference .hero-photo-scrim,
.locations-hero-reference .hero-art::before,
.locations-hero-reference .hero-art::after {
  display: none;
}

.locations-hero-reference .hero-content {
  max-width: 680px;
  position: relative;
  z-index: 2;
}

.locations-hero-reference .eyebrow {
  align-items: center;
  background: rgba(5,8,12,.72);
  border-color: rgba(255,255,255,.13);
  color: var(--red);
  gap: 8px;
  letter-spacing: .07em;
}

.locations-hero-reference > .hero-content h1,
.locations-hero-reference > .hero-content h2 {
  font-size: clamp(42px, 5.7vw, 76px);
  letter-spacing: -.066em;
  line-height: 1.05;
  margin: 28px 0 18px;
  max-width: 760px;
}

.locations-hero-reference > .hero-content h1 span,
.locations-hero-reference > .hero-content h2 span {
  color: var(--red);
  display: inline;
}

.locations-hero-reference .hero-copy {
  font-size: clamp(16px, 1.35vw, 19px);
  max-width: 590px;
}

.location-hero-chips {
  display: grid;
  gap: 12px 13px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 26px;
  max-width: 700px;
}

.location-hero-chips button {
  align-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 7px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 12.6px;
  font-weight: 900;
  gap: 7px;
  justify-content: center;
  min-height: 36px;
  padding: 0 15px;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.location-hero-chips button:hover {
  background: rgba(231,25,34,.9);
  border-color: rgba(231,25,34,.9);
  transform: translateY(-2px);
}

.location-hero-chips button.is-active {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 12px 26px rgba(231,25,34,.28);
  color: #fff;
}

.location-hero-trust {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
  max-width: 650px;
  padding: 14px;
}

.location-hero-trust span {
  border-right: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.78);
  font-size: 12px;
  line-height: 1.3;
  padding: 4px 12px;
}

.location-hero-trust span:last-child { border-right: 0; }
.location-hero-trust strong { color: #fff; display: block; font-size: 17px; }
.location-hero-google {
  align-items: center;
  display: grid;
  gap: 4px 10px;
  grid-template-columns: 24px 1fr;
}
.location-hero-google .google-logo {
  grid-row: span 2;
  height: 24px;
  width: 24px;
}

.location-hero-map-card {
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0,0,0,.4);
  color: #0f1720;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.location-hero-map {
  background:
    radial-gradient(circle at 42% 44%, rgba(231,25,34,.18) 0 34%, transparent 35%),
    linear-gradient(90deg, rgba(15,23,32,.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(15,23,32,.07) 1px, transparent 1px),
    #f4f6f8;
  background-size: auto, 46px 46px, 46px 46px, auto;
  border-radius: 18px;
  min-height: 412px;
  overflow: hidden;
  position: relative;
}

.location-hero-map-embed {
  background: #eef2f5;
}

.location-hero-map-embed iframe {
  border: 0;
  display: block;
  height: 100%;
  min-height: 412px;
  width: 100%;
}

.location-hero-map:not(.location-hero-map-embed)::before {
  background: rgba(231,25,34,.12);
  border: 1px dashed rgba(231,25,34,.55);
  border-radius: 46% 54% 48% 52%;
  content: "";
  height: 72%;
  left: 18%;
  position: absolute;
  top: 10%;
  width: 62%;
}

.map-city {
  color: #1f2937;
  font-size: 12px;
  font-weight: 800;
  position: absolute;
  z-index: 2;
}

.map-boulder { left: 20%; top: 32%; }
.map-longmont { left: 48%; top: 16%; }
.map-lafayette { left: 38%; top: 28%; }
.map-louisville { left: 39%; top: 40%; }
.map-denver { bottom: 22%; font-size: 20px; left: 48%; }

.map-route {
  background: rgba(40,87,214,.72);
  border-radius: 999px;
  height: 5px;
  position: absolute;
  transform: rotate(-22deg);
  width: 180px;
  z-index: 1;
}

.map-route-one { left: 26%; top: 54%; }
.map-route-two { right: 18%; top: 42%; transform: rotate(20deg); width: 130px; }

.location-hero-selected {
  align-items: start;
  background: #fff;
  border: 1px solid #e7ebef;
  border-radius: 14px;
  box-shadow: none;
  display: grid;
  gap: 14px;
  grid-template-columns: 37px 1fr;
  margin: 22px auto 24px;
  padding: 20px 22px 22px;
  position: relative;
  width: 95%;
  z-index: 3;
}

.location-hero-lead-form {
  background: #fff;
  border-top: 1px solid #e6e8eb;
  padding: 24px 22px 26px;
  text-align: center;
}

.location-hero-lead-form h2 {
  color: var(--ink);
  font-size: clamp(24px, 2.2vw, 32px);
  letter-spacing: -.055em;
  line-height: 1;
  margin: 0 0 8px;
}

.location-hero-lead-form > p {
  color: #5f6873;
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 16px;
}

.location-hero-lead-form .contact-form-grid {
  grid-template-columns: 1fr 1fr;
}

.location-hero-lead-form .button {
  margin-top: 12px;
}

.location-hero-lead-form small {
  align-items: center;
  color: #5f6873;
  display: inline-flex;
  font-size: 11px;
  gap: 7px;
  margin-top: 11px;
}

.location-hero-lead-form small svg {
  color: var(--ink);
  height: 14px;
  width: 14px;
}

.location-hero-selected > span {
  align-items: center;
  background: var(--red);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  height: 37px;
  justify-content: center;
  margin-top: 2px;
  width: 37px;
}

.location-hero-selected > span svg {
  height: 18px;
  width: 18px;
}

.location-hero-popup-title {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin-bottom: 8px;
}

.location-hero-selected h2 {
  font-size: 24px;
  letter-spacing: -.045em;
  margin: 0;
}

.location-hero-popup-title strong {
  background: var(--red);
  border-radius: 5px;
  color: #fff;
  flex: 0 0 auto;
  font-size: 10px;
  letter-spacing: .05em;
  padding: 7px 9px;
  text-transform: uppercase;
}

.location-hero-selected p {
  color: #5b6470;
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0;
}

.location-hero-popup-stats {
  background: #f4f6f8;
  border-radius: 10px;
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 16px;
  padding: 8px;
}

.location-hero-popup-stats span {
  align-items: center;
  background: #fff;
  border: 1px solid #e0e4e8;
  border-radius: 8px;
  display: grid;
  gap: 8px;
  grid-template-columns: 24px 1fr;
  min-height: 58px;
  padding: 11px 12px;
}

.location-hero-popup-stats span:last-child { border-right: 1px solid #e0e4e8; }
.location-hero-popup-stats svg { color: var(--red); height: 22px; width: 22px; }
.location-hero-popup-stats strong { color: #1f2937; font-size: 11px; line-height: 1.25; }

body.services-page .service-hero-reference .hero-buttons {
  gap: 20px;
  margin-top: 34px;
}

body.services-page .service-hero-reference .button {
  min-height: 56px;
  padding-left: 30px;
  padding-right: 30px;
}

body.services-page .service-hero-highlights {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 24px auto 0;
  max-width: 690px;
}

body.services-page .service-hero-highlight {
  align-items: flex-start;
  background: rgba(5, 8, 12, .54);
  border: 1px solid rgba(255,255,255,.2);
  border-left: 3px solid rgba(231,25,34,.9);
  border-radius: 10px;
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
  display: grid;
  gap: 9px;
  grid-template-columns: 18px 1fr;
  min-height: 86px;
  padding: 13px 14px;
}

body.services-page .service-hero-highlight svg {
  color: var(--red);
  height: 18px;
  margin-top: 1px;
  width: 18px;
}

body.services-page .service-hero-highlight span {
  display: grid;
  gap: 6px;
}

body.services-page .service-hero-highlight strong {
  color: #fff;
  font-size: 12.5px;
  letter-spacing: -.02em;
  line-height: 1.15;
}

body.services-page .service-hero-highlight small {
  color: rgba(255,255,255,.76);
  font-size: 11px;
  line-height: 1.35;
}

body.services-page .review-strip {
  min-height: 42px;
  padding: 8px 18px;
}

body.services-page .services-page-hero {
  display: grid;
  gap: clamp(42px, 5vw, 76px);
  grid-template-columns: minmax(0, 735px) minmax(390px, 480px);
  min-height: 560px;
  padding: clamp(64px, 7vw, 86px) max(54px, calc((100vw - 1328px) / 2)) clamp(50px, 6vw, 70px);
}

body.services-page .services-hero-bg img {
  opacity: 1;
  object-position: center center;
}

body.services-page .services-hero-bg::after {
  background:
    linear-gradient(90deg, rgba(5,8,12,.9) 0%, rgba(5,8,12,.78) 42%, rgba(5,8,12,.42) 72%, rgba(5,8,12,.18) 100%),
    linear-gradient(180deg, rgba(5,8,12,.06), rgba(5,8,12,.5));
}

body.services-page .services-hero-copy {
  max-width: 840px;
}

body.services-page .breadcrumb {
  margin-bottom: 16px !important;
}

body.services-page .services-page-hero .eyebrow {
  font-size: 12px;
  padding: 8px 18px;
}

body.services-page .services-page-hero h1 {
  font-size: clamp(52px, 6.15vw, 88px);
  line-height: .9;
  margin: 22px 0 22px;
  max-width: 780px;
}

body.services-page .services-hero-copy > p:not(.breadcrumb):not(.eyebrow) {
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.62;
  max-width: 690px;
}

body.services-page .services-page-hero .hero-buttons {
  gap: 18px;
  margin-top: 29px;
}

body.services-page .services-page-hero .button {
  min-height: 54px;
  padding-left: 28px;
  padding-right: 28px;
}

body.services-page .service-picker-card {
  align-self: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 28px 76px rgba(0,0,0,.34);
  color: #090f1b;
  padding: 34px 34px 30px;
  position: relative;
  z-index: 1;
}

body.services-page .service-picker-card h2 {
  font-size: clamp(26px, 2.45vw, 34px);
  letter-spacing: -.055em;
  line-height: 1.05;
  margin: 0 0 10px;
}

body.services-page .service-picker-card > p {
  color: #667182;
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 24px;
}

body.services-page .service-picker-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

body.services-page .service-picker-grid label {
  align-items: center;
  background: #fff;
  border: 1px solid #e4e7eb;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  font-size: 12px;
  font-weight: 900;
  gap: 10px;
  min-height: 50px;
  padding: 0 14px;
  text-transform: none;
}

body.services-page .service-picker-grid label:has(input:checked) {
  border-color: rgba(231,25,34,.42);
  box-shadow: inset 0 0 0 1px rgba(231,25,34,.15);
}

body.services-page .service-picker-grid input {
  accent-color: var(--red);
  margin: 0;
  min-height: 0;
  width: auto;
}

body.services-page .service-picker-grid svg {
  color: var(--red);
  height: 16px;
  width: 16px;
}

body.services-page .service-picker-action {
  align-items: center;
  border-top: 1px solid #eef0f3;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 20px;
}

body.services-page .service-picker-action span {
  color: #667182;
  font-size: 13px;
}

body.services-page .service-picker-action strong {
  color: var(--red);
  display: block;
  font-size: 22px;
}

body.services-page .service-picker-action .button {
  flex-shrink: 0;
  min-height: 52px;
}

body.services-page .service-picker-card .form-message {
  margin: 14px 0 0 !important;
}

body.services-page .services-page-list {
  background: #fff;
  padding: clamp(64px, 7vw, 88px) max(54px, calc((100vw - 1328px) / 2)) clamp(70px, 7.4vw, 96px);
}

body.services-page .service-quality-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(231,25,34,.08), transparent 24%),
    linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  padding: clamp(62px, 7vw, 92px) max(30px, calc((100vw - 1328px) / 2));
}

body.services-page .service-quality-shell {
  align-items: center;
  background: rgba(255,255,255,.96);
  border: 1px solid #e6eaf0;
  border-radius: 24px;
  box-shadow: 0 28px 78px rgba(8,14,22,.12), inset 0 1px 0 rgba(255,255,255,.9);
  display: grid;
  gap: clamp(34px, 5vw, 70px);
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1fr);
  margin: 0 auto;
  max-width: 1328px;
  overflow: hidden;
  padding: clamp(28px, 4vw, 56px);
}

body.services-page .service-quality-copy h2 {
  color: #17212c;
  font-size: clamp(40px, 5vw, 68px);
  letter-spacing: -.075em;
  line-height: 1.05;
  margin: 0 0 24px;
  max-width: 620px;
}

body.services-page .service-quality-copy h2 span {
  color: var(--red);
}

body.services-page .service-quality-copy p {
  color: #2f3741;
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.72;
  margin: 0 0 24px;
  max-width: 670px;
}

body.services-page .service-quality-rule {
  background: linear-gradient(90deg, var(--red), rgba(6,11,16,.14));
  height: 4px;
  margin: 34px 0 24px;
  width: 92px;
}

body.services-page .service-quality-features {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 620px;
}

body.services-page .service-quality-features div {
  align-items: center;
  background: #fff;
  border: 1px solid #dfe4ea;
  border-radius: 12px;
  display: grid;
  gap: 10px;
  grid-template-columns: 38px 1fr;
  min-width: 0;
  padding: 14px;
}

body.services-page .service-quality-features div:first-child {
  padding-left: 14px;
}

body.services-page .service-quality-features div:last-child {
  border-right: 1px solid #dfe4ea;
}

body.services-page .service-quality-features svg {
  color: var(--red);
  height: 34px;
  width: 34px;
}

body.services-page .service-quality-features strong {
  color: #111820;
  font-size: 12px;
  letter-spacing: .02em;
  line-height: 1.2;
  min-width: 0;
  text-transform: uppercase;
}

body.services-page .service-quality-photo {
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(6,11,16,.16);
  height: clamp(380px, 47vw, 640px);
  overflow: hidden;
}

body.services-page .service-quality-photo img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

body.services-page .service-section-reference {
  background: #fff;
  padding: clamp(74px, 7.5vw, 96px) max(54px, calc((100vw - 1328px) / 2)) clamp(76px, 8vw, 104px);
}

body.services-page .services-page-shell,
body.services-page .service-why-shell,
body.services-page .service-process-shell {
  max-width: 1328px;
}

body.services-page .section-heading {
  margin-bottom: 48px;
  max-width: 780px;
}

body.services-page .section-kicker {
  color: var(--red) !important;
  font-size: 13px;
  letter-spacing: .28em;
  margin-bottom: 12px !important;
}

body.services-page .section h2,
body.services-page .service-process h2 {
  color: #090f1b;
  font-size: clamp(40px, 4.6vw, 58px);
  letter-spacing: -.075em;
  line-height: .98;
}

body.services-page .services-page-list .section-heading p:not(.section-kicker) {
  color: #687384;
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.55;
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

body.services-page .service-section-reference .section-heading p:not(.section-kicker) {
  color: #687384;
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.55;
  margin-left: auto;
  margin-right: auto;
  max-width: 780px;
}

body.services-page .service-page-grid {
  gap: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.services-page .service-section-reference .service-page-grid {
  gap: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.services-page .service-section-reference .service-page-grid.is-five-card-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

body.services-page .service-section-reference .service-page-grid.is-five-card-grid .service-page-card {
  grid-column: span 2;
}

body.services-page .service-section-reference .service-page-grid.is-five-card-grid .service-page-card:nth-child(4) {
  grid-column: 2 / span 2;
}

body.services-page .service-section-reference .service-page-grid.is-five-card-grid .service-page-card:nth-child(5) {
  grid-column: 4 / span 2;
}

body.services-page .service-page-card {
  border-color: #e7ebf0;
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(8,14,22,.1);
}

body.services-page .service-section-reference .service-page-card {
  background: #fff;
  border: 1px solid #e7ebf0;
  border-radius: 12px;
  box-shadow: 0 18px 48px rgba(8,14,22,.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

body.services-page .service-page-photo {
  height: 187px;
}

body.services-page .service-section-reference .service-page-photo {
  height: 187px;
}

body.services-page .service-page-photo::after {
  background: linear-gradient(180deg, rgba(6,11,16,0), rgba(6,11,16,.08));
}

body.services-page .service-page-body {
  padding: 28px 32px 30px;
}

body.services-page .service-section-reference .service-page-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px 34px 30px;
}

body.services-page .service-page-title {
  align-items: center;
  display: grid;
  gap: 16px;
  grid-template-columns: 48px 1fr;
  margin-bottom: 18px;
}

body.services-page .service-page-title svg {
  background: rgba(231,25,34,.08);
  border-radius: 10px;
  color: var(--red);
  height: 48px;
  padding: 12px;
  width: 48px;
}

body.services-page .service-page-body h3 {
  color: #090f1b;
  font-size: clamp(23px, 2.1vw, 28px);
  letter-spacing: -.055em;
  line-height: 1.05;
  margin: 0;
}

body.services-page .service-page-body p,
body.services-page .service-page-body ul {
  font-size: 14px;
}

body.services-page .service-page-body p {
  color: #677282;
  line-height: 1.58;
  margin: 0 0 20px;
}

body.services-page .service-page-body ul {
  color: #263140;
  gap: 10px;
  line-height: 1.35;
  margin: 0 0 28px;
}

body.services-page .service-page-body li::before {
  margin-right: 11px;
}

body.services-page .service-page-body > svg {
  display: none;
}

body.services-page .service-page-body a {
  color: var(--red);
  font-size: 13px;
  justify-content: center;
  letter-spacing: .04em;
  width: 100%;
}

body.services-page .service-section-reference .service-page-body a {
  margin-top: auto;
}

body.services-page .service-why-band {
  padding: clamp(66px, 6.6vw, 84px) max(54px, calc((100vw - 1328px) / 2));
}

body.services-page .service-why-shell {
  gap: clamp(42px, 5vw, 72px);
  grid-template-columns: minmax(0, 600px) minmax(500px, 1fr);
}

body.services-page .service-why-copy h2 {
  font-size: clamp(36px, 4.05vw, 50px);
}

body.services-page .service-why-image {
  height: 320px;
}

body.services-page .service-process {
  background: #fff;
  padding: clamp(66px, 7vw, 88px) max(54px, calc((100vw - 1328px) / 2)) clamp(72px, 8vw, 98px);
}

body.services-page .process-grid {
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.services-page .process-grid div {
  border-radius: 12px;
  min-height: 166px;
  padding: 28px 22px;
}

body.services-page .service-help-card h2,
body.services-page .service-faq-card h2 {
  color: #090f1b;
  font-size: clamp(27px, 2.5vw, 34px);
  letter-spacing: -.06em;
  line-height: 1.05;
}

body.services-page .service-help-grid {
  gap: 32px;
  grid-template-columns: 1fr 1fr;
  margin-top: 62px;
}

body.services-page .service-help-card,
body.services-page .service-faq-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 54px rgba(8,14,22,.08);
  min-height: 310px;
  padding: 34px;
}

body.services-page .service-faq-card details {
  background: #fff;
}

body.services-page .service-faq-card summary {
  color: #090f1b;
}

body.services-page .service-faq-card details p {
  color: #65717f;
}

body.services-page .faq-section,
body.services-page .faq-intro h2,
body.services-page .faq-intro > p:not(.section-kicker),
body.services-page .faq-feature-grid strong,
body.services-page .faq-accordion summary,
body.services-page .faq-accordion details[open] summary,
body.services-page .faq-accordion details p {
  color: #fff;
}

body.services-page .faq-accordion details p {
  color: rgba(255,255,255,.78);
}

body.services-page .service-final-cta {
  gap: 30px;
  grid-template-columns: minmax(0, 1fr) auto auto;
  padding: 28px max(54px, calc((100vw - 1328px) / 2));
}

body.services-page .service-final-cta h2 {
  font-size: clamp(28px, 3vw, 36px);
}

/* Locations reference page based on the downloaded service-area mockup. */
.locations-reference-page {
  background: #111821;
}

.locations-reference-page main {
  background:
    radial-gradient(circle at 24% 18%, rgba(231,25,34,.12), transparent 28%),
    radial-gradient(circle at 78% 10%, rgba(255,255,255,.08), transparent 26%),
    linear-gradient(135deg, #1e2630 0%, #101720 48%, #0b1118 100%);
  color: #fff;
  overflow: hidden;
}

.locations-reference-hero {
  align-items: center;
  display: grid;
  gap: clamp(34px, 5vw, 70px);
  grid-template-columns: minmax(420px, 610px) minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1440px;
  min-height: calc(100vh - 84px);
  padding: clamp(52px, 6vw, 86px) clamp(22px, 5vw, 64px) 42px;
}

.locations-eyebrow {
  align-items: center;
  background: rgba(6,11,16,.52);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  color: var(--red);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  gap: 8px;
  letter-spacing: .06em;
  margin: 0 0 22px;
  padding: 11px 14px;
  text-transform: uppercase;
}

.locations-eyebrow svg {
  height: 18px;
  width: 18px;
}

.locations-reference-copy h1 {
  color: #fff;
  font-size: clamp(48px, 5.35vw, 84px);
  letter-spacing: -.075em;
  line-height: .98;
  margin: 0;
  max-width: 720px;
}

.locations-reference-copy h1 span {
  color: var(--red);
  display: block;
}

.locations-subheadline {
  color: #fff !important;
  font-size: clamp(24px, 3vw, 38px) !important;
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.1 !important;
  margin: 14px 0 0 !important;
}

.locations-red-line {
  background: var(--red);
  border-radius: 999px;
  display: block;
  height: 5px;
  margin: 24px 0 22px;
  width: 76px;
}

.locations-reference-copy > p:not(.locations-eyebrow) {
  color: rgba(255,255,255,.82);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.7;
  margin: 0;
  max-width: 610px;
}

.locations-city-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 24px;
  max-width: 620px;
}

.locations-city-chips a {
  align-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 9px;
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  gap: 7px;
  min-height: 38px;
  padding: 0 14px;
}

.locations-city-chips a:hover,
.locations-city-chips a.is-active {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 12px 28px rgba(231,25,34,.28);
}

.locations-city-chips svg {
  height: 15px;
  width: 15px;
}

.locations-reference-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 26px;
}

.locations-reference-actions .button-dark {
  background: rgba(255,255,255,.07);
}

.locations-reference-map-panel {
  min-height: 672px;
  position: relative;
}

.locations-map-grid {
  display: grid;
  align-items: stretch;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-left: auto;
  margin-right: auto;
  max-width: 105%;
  position: relative;
  z-index: 1;
}

.locations-gbp-card {
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.88);
  border-radius: 20px;
  box-shadow: 0 26px 70px rgba(0,0,0,.26);
  color: #111820;
  min-height: 263px;
  overflow: hidden;
  position: relative;
}

.locations-gbp-card iframe {
  border: 0;
  display: block;
  height: 194px;
  width: 100%;
}

.locations-gbp-card div {
  display: grid;
  gap: 5px;
  padding: 16px 18px 18px;
}

.locations-gbp-card strong {
  font-size: 17px;
  letter-spacing: -.02em;
}

.locations-gbp-card small {
  color: #5d6874;
  font-size: 12px;
  line-height: 1.35;
}

.locations-gbp-card > span {
  background: var(--red);
  border-radius: 6px;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .04em;
  padding: 7px 9px;
  position: absolute;
  right: 14px;
  text-transform: uppercase;
  top: 14px;
}

.locations-neighbor-note {
  align-items: center;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(40px, 1fr) auto minmax(40px, 1fr);
  margin: 0 auto;
  max-width: 980px;
  padding: 0 22px 54px;
}

.locations-neighbor-note > span {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  height: 1px;
}

.locations-neighbor-note div {
  align-items: center;
  color: #fff;
  display: grid;
  gap: 2px 14px;
  grid-template-columns: 38px 1fr;
}

.locations-neighbor-note svg {
  color: var(--red);
  grid-row: span 2;
  height: 34px;
  width: 34px;
}

.locations-neighbor-note strong {
  font-size: 19px;
}

.locations-neighbor-note small {
  color: rgba(255,255,255,.68);
}

@media (max-width: 1180px) {
  .locations-reference-hero {
    grid-template-columns: 1fr;
  }

  .locations-reference-map-panel {
    min-height: 0;
    padding-bottom: 72px;
  }
}

@media (max-width: 760px) {
  .locations-reference-hero {
    min-height: 0;
    padding-left: 18px;
    padding-right: 18px;
  }

  .locations-reference-copy {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .locations-eyebrow {
    margin-left: auto;
    margin-right: auto;
  }

  .locations-reference-copy h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .locations-red-line {
    margin-left: auto;
    margin-right: auto;
  }

  .locations-reference-copy > p:not(.locations-eyebrow) {
    margin-left: auto;
    margin-right: auto;
  }

  .locations-city-chips {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .locations-city-chips a {
    justify-content: center;
  }

  .locations-reference-actions .button {
    width: 100%;
  }

  .locations-map-grid {
    grid-template-columns: 1fr;
  }

  .locations-neighbor-note {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .locations-neighbor-note div {
    justify-self: center;
    text-align: left;
  }
}

/* Boulder location landing page built from the downloaded mockup details. */
.boulder-page {
  background: #fff;
}

.boulder-page .hero-inner {
  grid-template-columns: minmax(0, 760px) minmax(360px, 470px);
  justify-content: center;
}

.boulder-page .hero-content {
  max-width: 760px;
}

.boulder-hero-lead-form {
  justify-self: end;
  max-width: 470px;
  transform: none;
}

.boulder-google-reviews {
  background: linear-gradient(180deg, #fff 0%, #f7f9fb 100%);
  border-top: 1px solid #eef1f4;
  position: relative;
}

.boulder-page .button-white {
  background: #fff;
  border: 1px solid rgba(6,11,16,.14);
  box-shadow: 0 14px 32px rgba(6,11,16,.08);
  color: var(--ink);
}

.boulder-service-showcase {
  align-items: center;
  background:
    radial-gradient(circle at 94% 10%, rgba(6,11,16,.08) 0 2px, transparent 3px) 0 0 / 16px 16px,
    radial-gradient(circle at 6% 88%, rgba(231,25,34,.1), transparent 24%),
    linear-gradient(145deg, #fff 0%, #fff 52%, #f5f6f8 100%);
  display: grid;
  gap: clamp(38px, 5vw, 72px);
  grid-template-columns: minmax(360px, 580px) minmax(360px, 720px);
  justify-content: center;
  margin: 0 auto;
  max-width: none;
  padding: clamp(58px, 7vw, 92px) clamp(24px, 5vw, 64px);
  position: relative;
  width: 100%;
}

.boulder-service-showcase::after {
  background: linear-gradient(90deg, #c90413, #f21c27, #c90413);
  bottom: 0;
  content: "";
  height: 10px;
  left: 0;
  position: absolute;
  right: 0;
}

.boulder-feature-visual {
  background: #101820;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(6,11,16,.18);
  height: clamp(420px, 42vw, 610px);
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.boulder-feature-visual img {
  display: block;
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  width: 100%;
}

.boulder-feature-sky {
  background: radial-gradient(circle at 22% 20%, rgba(255,255,255,.95) 0 10%, rgba(255,255,255,.55) 11% 18%, transparent 19%);
  inset: 0;
  position: absolute;
}

.boulder-feature-flatiron {
  background: linear-gradient(135deg, #5d5f52 0 30%, #c89666 31% 45%, #314f37 46% 100%);
  bottom: 150px;
  clip-path: polygon(0 100%, 52% 0, 100% 100%);
  filter: drop-shadow(0 22px 24px rgba(0,0,0,.24));
  position: absolute;
}

.flatiron-one { height: 300px; left: 8%; width: 34%; }
.flatiron-two { height: 360px; left: 33%; width: 38%; }
.flatiron-three { height: 260px; right: 4%; width: 30%; }

.boulder-feature-house {
  background:
    linear-gradient(135deg, transparent 0 48%, #2c2f32 49% 53%, transparent 54%) 0 0 / 100% 43%,
    linear-gradient(90deg, #725b4f 0 16%, #f2f5f6 16% 29%, #725b4f 29% 58%, #263039 58% 84%, #725b4f 84% 100%),
    linear-gradient(180deg, #b4a79b, #806d5e);
  border: 4px solid rgba(255,255,255,.24);
  border-radius: 8px 8px 4px 4px;
  bottom: 68px;
  box-shadow: 0 22px 44px rgba(0,0,0,.32);
  height: 170px;
  left: 14%;
  position: absolute;
  width: 72%;
}

.boulder-feature-house::before {
  background: linear-gradient(135deg, #2e3338 0 50%, #1f2428 51% 100%);
  content: "";
  height: 80px;
  left: -5%;
  position: absolute;
  top: -58px;
  transform: skewX(-18deg);
  width: 110%;
}

.boulder-feature-lawn {
  background: linear-gradient(180deg, #4e7f3f, #273f27);
  bottom: 0;
  height: 86px;
  left: 0;
  position: absolute;
  right: 0;
}

.boulder-service-copy h2 {
  color: #05090e;
  font-size: clamp(42px, 5vw, 68px);
  letter-spacing: -.07em;
  line-height: .98;
  margin: 0 0 22px;
  max-width: 700px;
}

.boulder-service-copy h2 span {
  color: var(--red);
  display: block;
}

.boulder-service-copy > p {
  color: #2f3741;
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.62;
  margin: 0;
  max-width: 690px;
}

.boulder-service-copy strong {
  color: #151a21;
}

.boulder-service-tile-grid {
  display: grid;
  gap: 16px 24px;
  grid-template-columns: 1fr 1fr;
  margin: 32px 0;
  max-width: 690px;
}

.boulder-service-tile-grid a {
  align-items: center;
  background: linear-gradient(135deg, #17191c, #0b0d10);
  border-bottom: 3px solid var(--red);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(6,11,16,.16);
  color: #fff;
  display: grid;
  gap: 14px;
  grid-template-columns: 48px 1fr;
  min-height: 72px;
  padding: 12px 18px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.boulder-service-tile-grid a:hover {
  box-shadow: 0 18px 38px rgba(6,11,16,.22);
  transform: translateY(-3px);
}

.boulder-service-tile-grid svg {
  background: var(--red);
  border-radius: 50%;
  color: #fff;
  height: 48px;
  padding: 12px;
  width: 48px;
}

.boulder-service-tile-grid strong {
  color: #fff;
  font-size: 17px;
}

.boulder-service-note strong {
  color: var(--red);
}

.boulder-homeowners-section {
  align-items: center;
  background: linear-gradient(180deg, #fff 0%, #f7f8fa 100%);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(360px, 1fr) minmax(360px, 590px);
  margin: 0 auto;
  max-width: 1440px;
  padding: clamp(58px, 7vw, 92px) clamp(24px, 5vw, 64px);
}

.boulder-homeowners-photo {
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(6,11,16,.14);
  min-height: 560px;
  overflow: hidden;
  position: relative;
}

.boulder-homeowners-photo img {
  display: block;
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: 12% center;
  position: absolute;
  width: 100%;
}

.boulder-homeowners-photo::after {
  background: linear-gradient(180deg, rgba(5,8,12,.05) 0%, rgba(5,8,12,.78) 100%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.boulder-homeowners-photo-title {
  bottom: clamp(28px, 4vw, 52px);
  color: #fff;
  font-size: clamp(38px, 5vw, 68px);
  letter-spacing: -.07em;
  line-height: .98;
  margin: 0;
  max-width: 520px;
  padding: 0 clamp(24px, 4vw, 46px);
  position: absolute;
  text-shadow: 0 8px 28px rgba(0,0,0,.42);
  z-index: 2;
}

.boulder-homeowners-photo-title span {
  color: var(--red);
  display: block;
}

.boulder-homeowners-card {
  background: #fff;
  border: 1px solid #e8ebef;
  border-radius: 10px;
  box-shadow: 0 22px 60px rgba(6,11,16,.12);
  padding: clamp(34px, 4.5vw, 58px);
}

.boulder-homeowners-card h2,
.boulder-challenges-panel h2 {
  color: #05090e;
  font-size: clamp(36px, 4.4vw, 58px);
  letter-spacing: -.065em;
  line-height: 1.05;
  margin: 0 0 22px;
}

.boulder-homeowners-card h2 span {
  color: var(--red);
  display: block;
}

.boulder-homeowners-card > p {
  color: #2f3741;
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 28px;
}

.boulder-homeowner-list {
  display: grid;
  gap: 18px;
  margin-bottom: 32px;
}

.boulder-homeowner-list a {
  align-items: center;
  background: linear-gradient(90deg, #fff, #f6f7f9);
  border-radius: 8px;
  color: #111820;
  display: grid;
  gap: 18px;
  grid-template-columns: 58px 1fr;
  min-height: 78px;
  padding: 10px 18px 10px 0;
  transition: box-shadow .2s ease, transform .2s ease;
}

.boulder-homeowner-list a:hover {
  box-shadow: 0 14px 30px rgba(6,11,16,.1);
  transform: translateY(-2px);
}

.boulder-homeowner-list svg {
  background: #111820;
  border-radius: 8px;
  color: #fff;
  height: 58px;
  padding: 16px;
  width: 58px;
}

.boulder-homeowner-list span {
  display: grid;
  gap: 6px;
}

.boulder-homeowner-list strong {
  color: #111820;
  font-size: 18px;
}

.boulder-homeowner-list small {
  color: #4a5360;
  font-size: 14px;
  line-height: 1.35;
}

.boulder-challenges-section {
  background: #fff;
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(420px, 1fr);
  margin: 0 auto;
  max-width: 1440px;
  padding: clamp(54px, 6vw, 78px) clamp(24px, 5vw, 54px);
}

.boulder-challenges-photo {
  border-radius: 16px 0 0 16px;
  box-shadow: 0 24px 70px rgba(6,11,16,.18);
  min-height: 620px;
  overflow: hidden;
  position: relative;
}

.boulder-challenges-photo img {
  display: block;
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  width: 100%;
}

.boulder-challenges-panel {
  background: radial-gradient(circle at 85% 10%, rgba(255,255,255,.08), transparent 28%), linear-gradient(135deg, #151719, #07090b);
  border-radius: 0 16px 16px 0;
  box-shadow: 0 24px 70px rgba(6,11,16,.18);
  color: #fff;
  padding: clamp(36px, 4.6vw, 66px);
  position: relative;
}

.boulder-panel-logo {
  color: #fff;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -.05em;
  position: absolute;
  right: 34px;
  text-align: right;
  top: 28px;
}

.boulder-panel-logo span {
  display: block;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.boulder-challenges-panel h2 {
  color: #fff;
  max-width: 620px;
  padding-right: 120px;
}

.boulder-challenges-panel > p {
  color: rgba(255,255,255,.86);
  font-size: 16px;
  line-height: 1.58;
  margin: 0;
  max-width: 650px;
}

.boulder-challenge-list {
  border-bottom: 1px solid rgba(255,255,255,.22);
  display: grid;
  gap: 20px;
  margin: 28px 0 20px;
  padding-bottom: 26px;
}

.boulder-challenge-list a {
  align-items: flex-start;
  color: rgba(255,255,255,.9);
  display: grid;
  gap: 18px;
  grid-template-columns: 42px 1fr;
  transition: color .2s ease, transform .2s ease;
}

.boulder-challenge-list a:hover {
  color: #fff;
  transform: translateX(4px);
}

.boulder-challenge-list svg {
  background: var(--red);
  border-radius: 50%;
  color: #fff;
  height: 42px;
  padding: 10px;
  width: 42px;
}

.boulder-challenge-list strong {
  color: #fff;
  font-size: 17px;
}

.boulder-challenge-note {
  color: rgba(255,255,255,.86) !important;
}

.boulder-about-section {
  align-items: center;
  background: #080c11;
  display: flex;
  justify-content: center;
  min-height: 320px;
  overflow: hidden;
  padding: clamp(30px, 4vw, 46px) clamp(18px, 5vw, 64px);
  position: relative;
}

.boulder-about-bg {
  inset: 0;
  position: absolute;
}

.boulder-about-bg img {
  display: block;
  filter: saturate(.9);
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: .78;
  width: 100%;
}

.boulder-about-section::after {
  background: rgba(2, 4, 7, .5);
  content: "";
  inset: 0;
  position: absolute;
}

.boulder-about-card {
  background: rgba(5, 7, 10, .82);
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 16px;
  box-shadow: 0 30px 90px rgba(0,0,0,.38);
  color: #fff;
  margin: 0 auto;
  max-width: 1120px;
  padding: clamp(22px, 3vw, 34px) clamp(20px, 5vw, 72px);
  position: relative;
  text-align: center;
  z-index: 1;
}

.boulder-about-logo {
  margin: 0 auto 14px;
}

.boulder-about-logo img {
  display: block;
  margin: 0 auto;
  max-height: 62px;
  object-fit: contain;
  width: min(260px, 70vw);
}

.boulder-about-card h2 {
  color: #fff;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -.055em;
  line-height: 1;
  margin: 0 0 18px;
}

.boulder-about-card p {
  color: rgba(255,255,255,.9);
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.48;
  margin: 0 auto;
  max-width: 940px;
}

.boulder-about-rule {
  background: var(--red);
  display: block;
  height: 2px;
  margin: 14px auto;
  width: 68px;
}

.boulder-about-faq-divider {
  background: linear-gradient(180deg, #080c11 0%, #f3efe8 100%);
  padding: 0 clamp(18px, 5vw, 72px) 20px;
}

.boulder-about-faq-divider span {
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.42) 18%, var(--red) 50%, rgba(6,11,16,.22) 82%, transparent 100%);
  border-radius: 999px;
  display: block;
  height: 5px;
  margin: 0 auto;
  max-width: 980px;
}

.boulder-page .faq-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(231,25,34,.09), transparent 24%),
    linear-gradient(135deg, #f6f2ea 0%, #eee8dc 100%);
  color: var(--ink);
}

.boulder-page .faq-intro h2,
.boulder-page .faq-intro h2 span,
.boulder-page .faq-feature-grid strong,
.boulder-page .faq-accordion summary {
  color: var(--ink);
}

.boulder-page .faq-intro > p:not(.section-kicker),
.boulder-page .faq-accordion details p {
  color: #4f5966;
}

.boulder-page .faq-feature-grid div,
.boulder-page .faq-accordion details {
  background: rgba(255,255,255,.62);
  border-color: rgba(6,11,16,.1);
  box-shadow: 0 14px 34px rgba(6,11,16,.08);
}

.boulder-page .faq-accordion details[open] summary {
  background: rgba(255,255,255,.82);
  color: var(--ink);
}

.boulder-page .faq-accordion summary::after,
.boulder-page .faq-accordion details[open] summary::after {
  color: var(--red);
}

.boulder-page .boulder-locations-hero > .hero-content h2 {
  color: #fff;
}

.boulder-hero {
  background: linear-gradient(90deg, #fff 0%, #fff 42%, #e8eef4 100%);
  display: grid;
  grid-template-columns: minmax(360px, 520px) minmax(0, 1fr);
  min-height: 560px;
  overflow: hidden;
  position: relative;
}

.boulder-hero::before {
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.96) 44%, rgba(255,255,255,.58) 62%, rgba(255,255,255,0) 82%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.boulder-hero-copy {
  align-self: center;
  padding: clamp(42px, 6vw, 74px) 0 clamp(44px, 6vw, 74px) clamp(24px, 6vw, 68px);
  position: relative;
  z-index: 3;
}

.boulder-page .breadcrumb {
  color: #090f15 !important;
  font-size: 12px;
  margin: 0 0 18px !important;
}

.boulder-page .breadcrumb span {
  color: var(--red);
}

.boulder-hero h1 {
  color: #05090e;
  font-size: clamp(46px, 5.6vw, 70px);
  letter-spacing: -.07em;
  line-height: .98;
  margin: 0 0 18px;
  max-width: 560px;
}

.boulder-hero h1 span {
  color: var(--red);
  display: block;
}

.boulder-red-line {
  background: var(--red);
  display: block;
  height: 4px;
  margin: 0 0 24px;
  width: 70px;
}

.boulder-hero-copy > p:not(.breadcrumb) {
  color: #1e2731;
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
  max-width: 500px;
}

.boulder-trust-list {
  display: grid;
  gap: 17px;
  margin: 30px 0 28px;
}

.boulder-trust-list span {
  align-items: center;
  color: #121922;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  gap: 14px;
}

.boulder-trust-list svg,
.boulder-proof-list svg {
  color: var(--red);
  height: 24px;
  width: 24px;
}

.boulder-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.boulder-hero-actions .button {
  min-height: 50px;
}

.boulder-hero-art {
  background:
    radial-gradient(circle at 72% 14%, rgba(255,255,255,.74), transparent 24%),
    linear-gradient(180deg, #94c4ef 0%, #d8ecf8 42%, #b9d19b 68%, #315b72 100%);
  min-height: 560px;
  overflow: hidden;
  position: relative;
}

.boulder-sun {
  background: rgba(255,255,255,.7);
  border-radius: 50%;
  box-shadow: 0 0 88px rgba(255,255,255,.86);
  height: 190px;
  left: 18%;
  position: absolute;
  top: 16%;
  width: 190px;
}

.boulder-mountain {
  background: linear-gradient(135deg, #263b28 0 34%, #ad7f54 35% 47%, #2d4b2f 48% 100%);
  bottom: 142px;
  clip-path: polygon(0 100%, 42% 0, 100% 100%);
  filter: drop-shadow(0 24px 30px rgba(0,0,0,.26));
  position: absolute;
}

.boulder-mountain-one {
  height: 330px;
  right: 0;
  width: 58%;
}

.boulder-mountain-two {
  background: linear-gradient(135deg, #526837 0 28%, #c29762 29% 42%, #314c32 43% 100%);
  height: 260px;
  right: 38%;
  width: 42%;
}

.boulder-city {
  background:
    linear-gradient(90deg, transparent 0 6%, #b58d5d 6% 12%, transparent 12% 19%, #875f3f 19% 25%, transparent 25% 34%, #d9c2a0 34% 42%, transparent 42% 100%),
    linear-gradient(180deg, #e7d8bd, #97734f);
  bottom: 134px;
  box-shadow: 80px 16px 0 -8px rgba(172,128,79,.9), 170px 24px 0 -12px rgba(221,194,148,.84), 260px 14px 0 -10px rgba(143,94,56,.78);
  height: 92px;
  left: 20%;
  position: absolute;
  width: 54px;
}

.boulder-city::before,
.boulder-city::after {
  background: rgba(29,52,42,.75);
  bottom: -22px;
  content: "";
  height: 52px;
  position: absolute;
  width: 520px;
}

.boulder-city::before { left: -220px; }
.boulder-city::after { left: 58px; }

.boulder-lake {
  background: linear-gradient(180deg, rgba(53,115,139,.96), rgba(27,72,96,.96));
  bottom: 0;
  height: 142px;
  left: 0;
  position: absolute;
  right: 0;
}

.boulder-lake::before {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.36), transparent);
  content: "";
  height: 2px;
  left: 14%;
  position: absolute;
  top: 42px;
  width: 56%;
}

.boulder-overview {
  display: grid;
  gap: clamp(32px, 6vw, 72px);
  grid-template-columns: minmax(320px, 520px) minmax(320px, 1fr);
  margin: 0 auto;
  max-width: 1240px;
  padding: clamp(34px, 5vw, 48px) clamp(18px, 5vw, 48px) clamp(58px, 7vw, 86px);
}

.boulder-service-card h2,
.boulder-why-card h2 {
  color: #070d13;
  font-size: clamp(25px, 2.6vw, 32px);
  letter-spacing: -.05em;
  line-height: 1.1;
  margin: 0 0 18px;
}

.boulder-service-list {
  border: 1px solid #dfe3e8;
  border-radius: 8px;
  overflow: hidden;
}

.boulder-service-list a {
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #e5e8ec;
  color: #081019;
  display: grid;
  gap: 14px;
  grid-template-columns: 26px 1fr 18px;
  min-height: 48px;
  padding: 0 14px;
}

.boulder-service-list a:last-child { border-bottom: 0; }
.boulder-service-list a:hover { background: #fff6f6; }
.boulder-service-list svg:first-child { color: #1c2732; height: 20px; width: 20px; }
.boulder-service-list svg:last-child { color: var(--red); height: 18px; width: 18px; }
.boulder-service-list strong { font-size: 14px; }

.boulder-view-all {
  align-items: center;
  border: 1px solid #dfe3e8;
  border-radius: 8px;
  color: #071019;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
  min-height: 50px;
  text-transform: uppercase;
  width: 100%;
}

.boulder-view-all:hover {
  border-color: var(--red);
  color: var(--red);
}

.boulder-proof-list {
  display: grid;
  gap: 24px;
  padding-top: 4px;
}

.boulder-proof-list div {
  align-items: flex-start;
  display: grid;
  gap: 20px;
  grid-template-columns: 44px 1fr;
}

.boulder-proof-list svg {
  height: 34px;
  margin-top: 4px;
  width: 34px;
}

.boulder-proof-list span {
  display: grid;
  gap: 7px;
}

.boulder-proof-list strong {
  color: #071019;
  font-size: 17px;
}

.boulder-proof-list small {
  color: #3c4652;
  font-size: 14px;
  line-height: 1.45;
}

.boulder-cta {
  align-items: center;
  background: linear-gradient(135deg, #080e14, #1a232d);
  color: #fff;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin: 0 auto clamp(58px, 6vw, 78px);
  max-width: 1240px;
  padding: clamp(28px, 4vw, 42px);
}

.boulder-cta .section-kicker {
  margin: 0 0 10px;
}

.boulder-cta h2 {
  color: #fff;
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -.06em;
  line-height: 1;
  margin: 0 0 10px;
}

.boulder-cta p:not(.section-kicker) {
  color: rgba(255,255,255,.76);
  margin: 0;
}

@media (max-width: 980px) {
  .boulder-homeowners-section,
  .boulder-challenges-section {
    grid-template-columns: 1fr;
  }

  .boulder-homeowners-photo,
  .boulder-challenges-photo {
    min-height: 430px;
  }

  .boulder-challenges-photo,
  .boulder-challenges-panel {
    border-radius: 16px;
  }

  .boulder-service-showcase {
    grid-template-columns: 1fr;
  }

  .boulder-feature-visual {
    min-height: 420px;
    order: -1;
  }

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

  .boulder-hero::before {
    background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,.96) 52%, rgba(255,255,255,.08) 100%);
  }

  .boulder-hero-copy {
    padding-right: clamp(24px, 6vw, 68px);
  }

  .boulder-hero-art {
    min-height: 360px;
    order: -1;
  }

  .boulder-overview,
  .boulder-cta {
    grid-template-columns: 1fr;
  }

  .boulder-about-section {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .boulder-homeowners-section,
  .boulder-challenges-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .boulder-homeowners-card,
  .boulder-challenges-panel {
    padding: 28px 20px;
    text-align: center;
  }

  .boulder-homeowners-card h2,
  .boulder-challenges-panel h2 {
    font-size: clamp(34px, 11vw, 46px);
    padding-right: 0;
  }

  .boulder-panel-logo {
    margin-bottom: 18px;
    position: static;
    text-align: center;
  }

  .boulder-homeowners-card .boulder-red-line,
  .boulder-challenges-panel .boulder-red-line,
  .boulder-challenges-panel > p,
  .boulder-challenge-note {
    margin-left: auto;
    margin-right: auto;
  }

  .boulder-homeowner-list a,
  .boulder-challenge-list a {
    grid-template-columns: 40px 1fr;
    text-align: left;
  }

  .boulder-homeowner-list,
  .boulder-challenge-list {
    margin-left: auto;
    margin-right: auto;
    max-width: 390px;
  }

  .boulder-homeowner-list svg,
  .boulder-challenge-list svg {
    height: 40px;
    padding: 10px;
    width: 40px;
  }

  .boulder-homeowners-photo,
  .boulder-challenges-photo {
    min-height: 300px;
  }

  .boulder-homeowners-photo-title {
    bottom: 24px;
    font-size: clamp(34px, 11vw, 46px);
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
  }

  .boulder-service-showcase {
    padding-left: 18px;
    padding-right: 18px;
  }

  .boulder-service-copy {
    text-align: center;
  }

  .boulder-service-copy h2 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .boulder-service-copy .boulder-red-line,
  .boulder-service-copy > p {
    margin-left: auto;
    margin-right: auto;
  }

  .boulder-service-tile-grid {
    grid-template-columns: 1fr;
    margin-left: auto;
    margin-right: auto;
    max-width: 390px;
    text-align: left;
  }

  .boulder-feature-visual {
    min-height: 340px;
  }

  .boulder-hero-copy {
    padding-left: 18px;
    padding-right: 18px;
  }

  .boulder-hero h1 {
    font-size: clamp(40px, 13vw, 52px);
  }

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

  .boulder-overview {
    padding-left: 18px;
    padding-right: 18px;
  }

  .boulder-proof-list div {
    gap: 14px;
    grid-template-columns: 34px 1fr;
  }

  .boulder-proof-list svg {
    height: 28px;
    width: 28px;
  }

  .boulder-about-section {
    padding: 34px 14px;
  }

  .boulder-about-card {
    border-radius: 12px;
    padding: 28px 18px;
  }

  .boulder-about-card p {
    font-size: 15px;
    line-height: 1.55;
  }
}

@media (max-width: 1120px) {
  body.services-page .service-hero-reference .hero-content {
    transform: translateX(0);
  }

  body.services-page .service-hero-highlights {
    grid-template-columns: repeat(3, minmax(150px, 1fr));
  }

  body.services-page .services-page-hero {
    grid-template-columns: minmax(0, 760px);
  }

  body.services-page .service-picker-card {
    max-width: 560px;
  }

  .locations-hero-reference {
    grid-template-columns: minmax(0, 760px);
  }

  .location-hero-map-card {
    width: min(100%, 620px);
  }

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

  body.services-page .service-section-reference .service-page-grid.is-five-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.services-page .service-section-reference .service-page-grid.is-five-card-grid .service-page-card,
  body.services-page .service-section-reference .service-page-grid.is-five-card-grid .service-page-card:nth-child(4),
  body.services-page .service-section-reference .service-page-grid.is-five-card-grid .service-page-card:nth-child(5) {
    grid-column: auto;
  }

  body.services-page .service-why-shell,
  body.services-page .service-quality-shell,
  body.services-page .service-help-grid,
  body.services-page .service-final-cta {
    grid-template-columns: 1fr;
  }

  body.services-page .service-quality-copy,
  body.services-page .service-quality-copy h2,
  body.services-page .service-quality-copy p {
    max-width: none;
  }

  body.services-page .service-quality-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  body.services-page .service-quality-features div {
    border-right: 0;
    padding: 14px;
  }

  body.services-page .service-why-image {
    height: 360px;
  }

}

@media (max-width: 760px) {
  body.services-page .service-hero-reference {
    min-height: 0;
    padding-left: 18px;
    padding-right: 18px;
  }

  body.services-page .service-hero-reference .hero-content {
    margin-left: 0;
  }

  body.services-page .service-hero-reference .hero-copy {
    font-size: 16px;
    line-height: 1.58;
  }

  body.services-page .service-hero-reference .button-red {
    box-shadow: 0 10px 24px rgba(231,25,34,.28);
  }

  body.services-page .service-hero-highlights {
    gap: 10px;
    grid-template-columns: 1fr;
    margin: 20px auto 0;
    max-width: 390px;
  }

  body.services-page .service-hero-highlight {
    background: rgba(255,255,255,.92);
    border-color: rgba(255,255,255,.52);
    border-left-color: var(--red);
    box-shadow: 0 12px 28px rgba(0,0,0,.18);
    color: #091019;
    min-height: 0;
    padding: 12px 14px;
    text-align: left;
  }

  body.services-page .service-hero-highlight strong {
    color: #091019;
  }

  body.services-page .service-hero-highlight small {
    color: #4c5866;
  }

  body.services-page .service-hero-reference h1 {
    font-size: clamp(42px, 12vw, 62px);
  }

  body.services-page .services-page-hero,
  body.services-page .services-page-list,
  body.services-page .service-quality-section,
  body.services-page .service-why-band,
  body.services-page .service-process,
  body.services-page .service-final-cta {
    padding-left: 18px;
    padding-right: 18px;
  }

  body.services-page .services-page-hero h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .locations-hero-reference {
    padding-left: 18px;
    padding-right: 18px;
  }

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

  .location-hero-trust span {
    border-bottom: 1px solid rgba(255,255,255,.14);
    border-right: 0;
  }

  .location-hero-trust span:last-child {
    border-bottom: 0;
  }

  .location-hero-map {
    min-height: 280px;
  }

  .location-hero-map-embed iframe {
    min-height: 280px;
  }

  .location-hero-selected {
    left: auto;
    margin: 16px auto 18px;
    padding: 18px;
    position: relative;
    top: auto;
    transform: none;
    width: 94%;
  }

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

  .location-hero-popup-stats span {
    border-bottom: 1px solid #e0e4e8;
    border-right: 0;
  }

  .location-hero-popup-stats span:last-child {
    border-bottom: 0;
  }

  body.services-page .service-picker-card {
    padding: 24px 20px;
  }

  body.services-page .service-picker-grid {
    grid-template-columns: 1fr;
  }

  body.services-page .service-picker-action {
    align-items: stretch;
    flex-direction: column;
  }

  body.services-page .service-page-grid,
  body.services-page .process-grid,
  body.services-page .service-help-grid {
    grid-template-columns: 1fr;
  }

  body.services-page .service-section-reference .service-page-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-left: auto;
    margin-right: auto;
    max-width: 430px;
    width: 100%;
  }

  body.services-page .service-section-reference .service-page-card {
    display: block;
    text-align: center;
    width: 100%;
  }

  body.services-page .service-section-reference .service-page-photo {
    display: block;
    height: 160px;
  }

  body.services-page .service-section-reference .service-page-body {
    padding: 22px 20px 24px;
    text-align: center;
  }

  body.services-page .service-page-title {
    gap: 12px;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  body.services-page .service-page-title svg {
    height: 40px;
    padding: 10px;
    width: 40px;
  }

  body.services-page .service-page-body h3 {
    font-size: 22px;
    text-align: center;
  }

  body.services-page .service-page-body p {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  body.services-page .service-page-body ul {
    margin-left: auto;
    margin-right: auto;
    max-width: 300px;
    text-align: left;
  }

  body.services-page .service-why-shell {
    grid-template-columns: 1fr;
  }

  body.services-page .service-why-image {
    height: 260px;
  }

  body.services-page .service-quality-copy {
    text-align: center;
  }

  body.services-page .service-quality-rule {
    margin-left: auto;
    margin-right: auto;
  }

  body.services-page .service-quality-features {
    margin-left: auto;
    margin-right: auto;
    max-width: 430px;
  }

  body.services-page .service-quality-features div {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  body.services-page .service-quality-photo {
    height: 320px;
  }

  body.services-page .service-quality-photo img {
    object-position: center top;
  }

  body.services-page .service-final-cta {
    text-align: center;
  }

  body.services-page .service-final-cta > div,
body.services-page .service-final-cta > a {
    justify-self: center;
  }

}

@media (min-width: 961px) {
  .boulder-page .hero-inner {
    align-items: center;
    grid-template-columns: minmax(0, 1.05fr) minmax(400px, .75fr);
    max-width: 1400px;
  }

  .boulder-page .hero-content {
    grid-column: 1;
    grid-row: 1;
    text-align: left;
  }

  .boulder-hero-lead-form {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }
}

@media (max-width: 960px) {
  .boulder-page .hero-inner {
    grid-template-columns: minmax(0, 760px);
    justify-content: center;
  }

  .boulder-page .hero-content {
    text-align: center;
  }

  .boulder-hero-lead-form {
    grid-column: 1;
    justify-self: center;
  }
}

.mcadams-page .mcadams-hero {
  min-height: clamp(640px, 60vw, 760px);
  padding-bottom: clamp(42px, 4vw, 64px);
  padding-top: clamp(62px, 5vw, 88px);
}

.mcadams-page .mcadams-hero .hero-content {
  max-width: 760px;
}

.mcadams-page .mcadams-hero h1 {
  font-size: clamp(34px, 3.6vw, 54px);
  max-width: 820px;
}

.mcadams-logo-lockup {
  align-items: center;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,.24);
  display: inline-grid;
  gap: 15px;
  grid-template-columns: minmax(110px, 150px) 42px minmax(120px, 170px);
  margin-bottom: 24px;
  max-width: 100%;
  padding: 14px 16px;
}

.mcadams-logo-lockup.is-single {
  grid-template-columns: minmax(180px, 260px);
  padding: 16px 18px;
}

.mcadams-logo-lockup.is-single img {
  max-height: 128px;
}

.mcadams-logo-lockup img {
  display: block;
  height: auto;
  max-height: 88px;
  object-fit: contain;
  width: 100%;
}

.mcadams-old-logo,
.mcadams-new-logo {
  align-items: center;
  display: flex;
  justify-content: center;
}

.mcadams-lockup-divider {
  align-items: center;
  background: var(--red);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.mcadams-lockup-divider svg {
  height: 20px;
  width: 20px;
}

.mcadams-page .section-heading p {
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
}

.mcadams-landing-page .landing-only-header {
  grid-template-columns: auto 1fr auto;
}

.mcadams-landing-page .landing-only-header .header-actions {
  grid-column: 3;
  justify-self: end;
}

.mcadams-support-copy {
  font-size: clamp(15px, 1.18vw, 18px);
  margin-top: 14px;
}

.mcadams-landing-note {
  background:
    radial-gradient(circle at 14% 18%, rgba(231,25,34,.08), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f7f8fa 100%);
  padding: clamp(42px, 6vw, 76px) clamp(18px, 5vw, 72px);
}

.mcadams-landing-note-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  box-shadow: 0 20px 54px rgba(6,11,16,.12);
  margin: 0 auto;
  max-width: 1120px;
  padding: clamp(28px, 4vw, 48px);
  text-align: center;
}

.mcadams-landing-note-card h2 {
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -.06em;
  line-height: 1.04;
  margin: 0 auto 28px;
  max-width: 760px;
}

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

.mcadams-note-grid div {
  background: #f8fafc;
  border: 1px solid #e6e8eb;
  border-radius: 14px;
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 24px 18px;
}

.mcadams-note-grid svg {
  color: var(--red);
  height: 34px;
  width: 34px;
}

.mcadams-note-grid strong {
  color: var(--ink);
  font-size: 17px;
}

.mcadams-note-grid span {
  color: #536071;
  font-size: 14px;
  line-height: 1.45;
}

.mcadams-landing-footer .footer-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
}

.mcadams-page .hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(231,25,34,.14), transparent 34%),
    #fff;
  color: var(--ink);
}

.mcadams-page .hero-bg-photo {
  opacity: 1;
}

.mcadams-page .hero-content {
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.72);
  border-left: 6px solid var(--red);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(6,11,16,.18);
  padding: clamp(20px, 2.2vw, 31px);
}

.mcadams-page .hero .eyebrow {
  font-size: clamp(10.5px, .87vw, 13.5px);
  padding: 8px 20px;
}

.mcadams-page .hero-copy {
  font-size: clamp(14.3px, 1.24vw, 18.8px);
}

.mcadams-page .trust-pills span {
  font-size: 11.7px;
  min-height: 41px;
  padding: 8px 14px;
}

.mcadams-page .request-card {
  max-width: 425px;
}

.mcadams-page .request-card-top {
  padding: 22px clamp(18px, 2.4vw, 29px) 20px;
}

.mcadams-page .request-card h2 {
  font-size: 25.5px;
}

.mcadams-page .request-card-top p,
.mcadams-page .rating-line,
.mcadams-page .service-choice {
  font-size: 12.75px;
}

.mcadams-page .rating-line {
  padding: 18px clamp(19px, 2.55vw, 31px);
}

.mcadams-page .service-choice {
  min-height: 43px;
  padding: 0 14px;
}

.mcadams-page input,
.mcadams-page select {
  min-height: 50px;
}

.mcadams-page .request-card .button {
  font-size: 12px;
  min-height: 44px;
}

.mcadams-page .hero-photo-scrim {
  background: none;
}

.mcadams-page .header-schedule {
  font-size: 11.3px;
  min-height: 42px;
  padding: 0 21px;
}

.mcadams-page .footer-call-button {
  font-size: 12px;
  min-height: 44px;
  padding: 0 22px;
}

.mcadams-page .phone-link {
  font-size: 10px;
  gap: 10px;
}

.mcadams-page .phone-link svg {
  height: 37px;
  padding: 9px;
  width: 37px;
}

.mcadams-page .phone-link strong {
  font-size: 14.5px;
}

.mcadams-page .hero-buttons .button {
  font-size: 12px;
  min-height: 44px;
  padding: 0 22px;
}

.mcadams-page .hero-buttons .button-dark {
  background: #060b10;
  border-color: #060b10;
  color: #fff;
}

.mcadams-page .hero-buttons .button-dark:hover {
  background: #111827;
  border-color: #111827;
}

.mcadams-page .hero-art::before {
  display: none;
}

.mcadams-page .hero-art::after {
  background: none;
  border-bottom: 10px solid var(--red);
}

.mcadams-page .hero .eyebrow {
  background: #fff;
  border-color: rgba(231,25,34,.28);
  color: var(--red);
  box-shadow: 0 12px 28px rgba(231,25,34,.12);
}

.mcadams-page .hero-copy {
  color: #374151;
  text-shadow: none;
}

.mcadams-page .trust-pills span {
  background: rgba(255,255,255,.92);
  border-color: rgba(231,25,34,.22);
  box-shadow: 0 10px 24px rgba(6,11,16,.08);
  color: #151a20;
}

.mcadams-page .hero-service-highlights .service-hero-highlight {
  background: rgba(255,255,255,.94);
  border-color: rgba(231,25,34,.18);
  border-left-color: var(--red);
  color: #111827;
}

.mcadams-page .hero-service-highlights .service-hero-highlight strong {
  color: #111827;
}

.mcadams-page .hero-service-highlights .service-hero-highlight small {
  color: #4b5563;
}

.mcadams-page .faq-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(231,25,34,.12), transparent 24%),
    linear-gradient(180deg, #fff 0%, #fff7f7 100%);
  color: var(--ink);
}

.mcadams-page .faq-intro h2 {
  color: var(--ink);
}

.mcadams-page .faq-intro > p:not(.section-kicker) {
  color: #4b5563;
}

.mcadams-page .faq-feature-grid div,
.mcadams-page .faq-accordion details {
  background: #fff;
  border-color: rgba(231,25,34,.14);
  box-shadow: 0 14px 32px rgba(6,11,16,.08);
}

.mcadams-page .faq-feature-grid strong,
.mcadams-page .faq-accordion summary {
  color: var(--ink);
}

.mcadams-page .faq-accordion summary::after {
  color: var(--red);
}

.mcadams-page .faq-accordion details[open] summary {
  background: #fff0f1;
  color: var(--ink);
}

.mcadams-page .faq-accordion details p {
  color: #4b5563;
}

.mcadams-page .mcadams-single-location-grid {
  grid-template-columns: minmax(300px, .65fr) minmax(0, 1.35fr);
}

.mcadams-page .mcadams-single-location-grid .location-map {
  order: 2;
}

.mcadams-page .mcadams-single-location-grid .location-details {
  background: linear-gradient(145deg, #fff 0%, #fff5f5 100%);
  border: 1px solid rgba(231,25,34,.18);
  color: var(--ink);
  order: 1;
}

.mcadams-page .location-details p,
.mcadams-page .location-detail-list strong,
.mcadams-page .location-detail-list a {
  color: #374151;
}

.mcadams-page .review-cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 760px) {
  .mcadams-page .site-header {
    align-items: center;
    gap: 12px;
    justify-items: center;
    padding: 12px 16px;
  }

  .mcadams-page .brand {
    justify-self: center;
    width: min(220px, 64vw);
  }

  .mcadams-page .brand-logo {
    max-height: 64px;
  }

  .mcadams-page .landing-only-header .header-actions {
    grid-column: 1 / -1;
    justify-content: center;
    justify-self: center;
    width: 100%;
  }

  .mcadams-page .phone-link {
    justify-content: center;
    letter-spacing: .08em;
  }

  .mcadams-page .mcadams-hero {
    min-height: 0;
    padding-bottom: 46px;
    padding-top: 58px;
  }

  .mcadams-page .hero-inner {
    gap: 28px;
    justify-items: center;
    padding-left: 18px;
    padding-right: 18px;
  }

  .mcadams-page .hero-content {
    max-width: 560px;
    text-align: center;
  }

  .mcadams-page .mcadams-hero h1 {
    font-size: clamp(38px, 11vw, 56px);
    letter-spacing: -.055em;
    margin-left: auto;
    margin-right: auto;
  }

  .mcadams-page .hero-copy {
    font-size: 16px;
    line-height: 1.58;
    margin-left: auto;
    margin-right: auto;
  }

  .mcadams-page .trust-pills,
  .mcadams-page .hero-service-highlights,
  .mcadams-page .service-grid,
  .mcadams-page .review-cards,
  .mcadams-page .value-grid,
  .mcadams-page .faq-feature-grid {
    grid-template-columns: 1fr;
  }

  .mcadams-page .trust-pills,
  .mcadams-page .hero-buttons,
  .mcadams-page .hero-service-highlights {
    margin-left: auto;
    margin-right: auto;
    max-width: 420px;
  }

  .mcadams-page .hero-buttons,
  .mcadams-page .hero-buttons .button {
    width: 100%;
  }

  .mcadams-page .request-card {
    max-width: 460px;
  }

  .mcadams-page fieldset,
  .mcadams-page .form-grid {
    grid-template-columns: 1fr;
  }

  .mcadams-page .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .mcadams-page .reviews-heading h2,
  .mcadams-page .why-card h2,
  .mcadams-page .locations-heading h2,
  .mcadams-page .faq-intro h2 {
    font-size: clamp(32px, 10vw, 46px);
    text-align: center;
  }

  .mcadams-page .reviews-score,
  .mcadams-page .trust-note {
    justify-content: center;
    text-align: center;
  }

  .mcadams-page .why-layout,
  .mcadams-page .faq-layout {
    grid-template-columns: 1fr;
    transform: none;
  }

  .mcadams-page .why-card,
  .mcadams-page .faq-intro,
  .mcadams-page .location-details,
  .mcadams-page .locations-heading {
    text-align: center;
  }

  .mcadams-page .why-photo-card {
    min-height: 280px;
  }

  .mcadams-page .faq-accordion {
    margin-left: auto;
    margin-right: auto;
    max-width: 560px;
    transform: none;
  }

  .mcadams-page .locations-shell {
    border-radius: 18px;
    padding: 20px;
  }

  .mcadams-page .locations-grid {
    border-radius: 16px;
    padding: 14px;
  }

  .mcadams-page .location-detail-list span {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .mcadams-page .location-details .button {
    width: 100%;
  }

  .mcadams-page .footer-grid,
  .mcadams-page .footer-company,
  .mcadams-page .footer-contact,
  .mcadams-page .footer-bottom {
    justify-items: center;
    text-align: center;
  }

  .mcadams-logo-lockup {
    grid-template-columns: 1fr;
    justify-items: center;
    margin-left: auto;
    margin-right: auto;
    width: min(100%, 340px);
  }

  .mcadams-logo-lockup img {
    max-height: 78px;
    max-width: 210px;
  }

  .mcadams-lockup-divider {
    transform: rotate(90deg);
  }

  .mcadams-landing-page .landing-only-header {
    grid-template-columns: 1fr auto;
  }

  .mcadams-landing-page .landing-only-header .header-actions {
    grid-column: 2;
  }

  .mcadams-note-grid,
  .mcadams-landing-footer .footer-grid {
    grid-template-columns: 1fr;
  }

  .mcadams-page .mcadams-single-location-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 450px) {
  .mcadams-page .mcadams-hero h1 {
    font-size: clamp(34px, 12vw, 46px);
  }

  .mcadams-page .eyebrow {
    font-size: 11px;
    justify-content: center;
    letter-spacing: .08em;
    padding: 9px 14px;
  }

  .mcadams-page .request-card,
  .mcadams-page .review-card,
  .mcadams-page .why-card,
  .mcadams-page .locations-shell {
    border-radius: 14px;
  }

  .mcadams-page .rating-line,
  .mcadams-page .reviews-score {
    justify-content: center;
  }

  .mcadams-page .location-map,
  .mcadams-page .location-map iframe {
    min-height: 300px;
  }
}
