:root {
  --brand-red: #d90000;
  --brand-red-dark: #a90000;
  --blue: var(--brand-red);
  --blue-2: var(--brand-red);
  --red: var(--brand-red);
  --black: #000;
  --charcoal: #333;
  --ink: #101114;
  --muted: #5d6470;
  --paper: #fff;
  --soft: #f2f4f8;
  --line: #dde2ec;
  --shadow: 0 22px 55px rgba(0, 0, 0, .12);
  --font-body: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font: var(--font-heading);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  background: var(--paper);
}

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

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

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

h1,
h2,
h3,
h4,
h5,
h6,
.btn,
.topbar,
.primary-nav,
.hero-card__eyebrow,
.badge p,
.section-heading p,
.service-card h3,
.service-card span,
.stat-card strong,
.rating-card strong,
.process-card h3,
.faq summary,
.mobile-sticky-bar a {
  font-family: var(--font-heading);
}

p + p {
  margin-top: 16px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--black);
  color: var(--paper);
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(1320px, calc(100% - 32px));
  margin-inline: auto;
}

.topbar {
  background: var(--blue);
  color: var(--paper);
  font-weight: 600;
  font-size: 14px;
}

.topbar__inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .08);
}

.header__inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: auto;
}

.logo-brand img {
  width: clamp(190px, 23vw, 305px);
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.4vw, 20px);
  font-weight: 600;
  flex: 1;
}

.primary-nav a,
.primary-nav button {
  text-decoration: none;
  transition: color .2s ease;
}

.primary-nav a:hover,
.primary-nav button:hover {
  color: var(--red);
}

.nav-item {
  position: relative;
}

.nav-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.nav-dropdown-toggle {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  appearance: none;
}

.nav-item--has-dropdown > .nav-link::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transform: translateY(1px);
  transition: transform .2s ease;
}

.nav-item--has-dropdown:hover > .nav-link::after,
.nav-item--has-dropdown:focus-within > .nav-link::after {
  transform: translateY(1px) rotate(180deg);
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 25;
  display: grid;
  min-width: 235px;
  padding: 10px;
  background: var(--paper);
  border-top: 3px solid var(--red);
  border-radius: 0 0 8px 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
}

.nav-item:hover .sub-menu,
.nav-item:focus-within .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sub-menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.15;
  white-space: nowrap;
}

.sub-menu a:hover {
  color: var(--red);
  background: var(--mist);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--header,
.btn--primary {
  color: var(--paper);
  background: var(--red);
}

.btn--secondary {
  color: var(--blue);
  border-color: var(--blue);
  background: var(--paper);
}

.btn--secondary:hover {
  color: var(--paper);
  background: var(--brand-red-dark);
  border-color: var(--brand-red-dark);
}

.btn--light {
  color: var(--paper);
  border-color: var(--paper);
  background: transparent;
}

.btn--light:hover {
  color: var(--black);
  background: var(--paper);
}

.btn--footer {
  color: var(--paper);
  background: var(--blue);
}

.nav-toggle {
  display: none;
}

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

.nav-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-button span {
  width: 22px;
  height: 2px;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  padding-top: 72px;
  background: linear-gradient(90deg, #fff 0%, #fff 51%, #dce5ef 51%, #dce5ef 100%);
}

.hero__media {
  position: absolute;
  inset: 0 0 0 50%;
  z-index: 0;
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, 0) 45%);
  z-index: 1;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__inner {
  position: relative;
  z-index: 2;
}

.hero__content {
  max-width: 548px;
  padding-bottom: 34px;
}

.eyebrow {
  color: var(--blue-2);
  font-size: 18px;
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-review {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.hero-review__stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: #f5b50a;
  flex: 0 0 auto;
}

.hero-review__stars svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-review-note {
  margin-top: -12px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
}

.hero h1 {
  font-size: clamp(36px, 3.7vw, 50px);
  line-height: 1.08;
  font-weight: 780;
}

.hero h2 {
  margin-top: 10px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  font-weight: 700;
}

.hero p:not(.eyebrow) {
  margin-top: 24px;
  color: #262a31;
  max-width: 510px;
}

.hero p.hero-review-note {
  margin-top: -12px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
}

.highlights {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 970px;
  margin: 18px 0 0;
  padding: 16px 34px 16px 0;
  list-style: none;
  background: var(--paper);
  border-radius: 0 999px 999px 0;
  box-shadow: var(--shadow);
}

.highlights::before {
  content: "";
  position: absolute;
  inset: 0 100% 0 auto;
  width: 50vw;
  background: var(--paper);
}

.highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  min-width: 0;
}

.hero .highlights p {
  display: block;
  margin: 0;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.2;
  max-width: none;
}

.highlight--gaf {
  gap: 12px;
}

.highlight--gaf p {
  max-width: 210px;
  line-height: 1.12;
}

.badge-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--paper);
  background: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.badge-icon--gaf {
  width: 46px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
}

.badge-icon--gaf img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.badge-icon--image {
  background: var(--paper);
  border: 1px solid var(--line);
}

.badge-icon--image img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.quote-strip {
  position: relative;
  z-index: 4;
  width: min(1320px, calc(100% - 30px));
  margin: 52px 0 0 auto;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--paper);
  background: var(--black);
  border-radius: 60px 0 0 60px;
  box-shadow: var(--shadow);
}

.quote-strip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  bottom: 0;
  width: 50vw;
  background: var(--black);
}

.quote-strip h3 {
  flex: 0 0 auto;
  font-size: 22px;
}

.quote-strip form {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(110px, 1fr)) auto;
  gap: 14px;
  align-items: center;
}

.quote-strip label {
  display: grid;
}

.quote-strip label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.quote-strip input {
  width: 100%;
  height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: var(--paper);
}

.intro-video {
  position: relative;
  isolation: isolate;
  padding: 180px 0 92px;
  color: var(--paper);
  background: var(--black);
}

.intro-video__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .35), rgba(0, 0, 0, .92)),
    url("https://images.unsplash.com/photo-1643225523483-e2c434191bba?auto=format&fit=crop&w=1600&q=82") center/cover;
  z-index: -1;
}

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

.ratings {
  display: flex;
  justify-content: center;
  gap: 42px;
  margin-bottom: 34px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.rating__logo {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
  overflow: hidden;
  font-size: 24px;
  font-weight: 900;
}

.rating__logo img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.rating__logo--facebook img {
  width: 18px;
  height: 32px;
}

.rating__logo--badge {
  background: var(--red);
  border-color: var(--red);
  font-size: 18px;
}

.stars {
  color: #fbbc04;
  letter-spacing: 0;
  font-weight: 900;
}

.intro-video h2,
.section-heading h2,
.expansion h2,
.partner h2,
.inspection h2,
.areas h2,
.faq h2,
.final-cta h2 {
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.05;
  font-weight: 740;
}

.intro-video p {
  max-width: 760px;
  margin-top: 28px;
}

section {
  padding: 76px 0;
}

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

.section-heading--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.section-heading--center {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 20px;
}

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

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

.service-card,
.review-card,
.article-grid article,
.process-grid article,
.report-card,
.map-card,
.google-map-card,
.faq details {
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.service-card {
  overflow: hidden;
  display: block;
  outline-offset: 4px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, .16);
}

.service-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform .25s ease, filter .25s ease;
}

.service-card:hover img,
.service-card:focus-visible img {
  transform: scale(1.035);
  filter: saturate(1.04);
}

.service-card div {
  padding: 26px;
}

.service-card h3,
.review-card h3,
.article-grid h3,
.process-grid h3,
.report-card h3,
.footer__grid h3 {
  font-size: 22px;
  line-height: 1.1;
  font-weight: 720;
}

.service-card p,
.review-card p,
.article-grid p,
.process-grid p,
.report-card p {
  color: var(--muted);
  margin-top: 14px;
}

.service-card span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-top: 18px;
  color: var(--red);
  font-weight: 700;
  line-height: 1;
}

.trust {
  padding: 76px 0;
  background: var(--paper);
}

.trust__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(34px, 5vw, 82px);
  flex-wrap: wrap;
}

.trust-logo {
  display: grid;
  place-items: center;
  min-width: 116px;
}

.trust-logo img {
  width: auto;
  max-width: 172px;
  max-height: 58px;
  object-fit: contain;
}

.trust-logo--wide img {
  max-width: 230px;
  max-height: 52px;
}

.trust-logo--mark img {
  max-width: 78px;
  max-height: 78px;
}

.trust-logo--tall img {
  max-width: 86px;
  max-height: 86px;
}

.expansion {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  padding: 0;
}

.expansion__image {
  width: min(560px, 42vw);
  margin: 0 0 -130px max(24px, calc((100vw - 1320px) / 2));
  position: relative;
  z-index: 2;
}

.expansion__image img {
  height: 390px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.expansion__panel {
  background: var(--soft);
  padding: 95px 0 72px;
}

.expansion__content {
  display: grid;
  justify-items: end;
}

.expansion__content > * {
  max-width: 560px;
}

.expansion p:not(.eyebrow) {
  margin: 22px 0 26px;
  color: var(--muted);
}

.reviews {
  background: var(--paper);
}

.review-card {
  padding: 30px;
}

.review-card__top {
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-card h3 {
  font-weight: 400;
}

.review-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 7px;
  line-height: 1;
}

.review-rating img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.review-rating__divider {
  color: var(--muted);
  font-weight: 400;
}

.review-rating .stars {
  font-size: 15px;
}

.avatar {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--paper);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 22px;
}

.partner {
  position: relative;
  min-height: 560px;
  padding: 82px 0;
  background: var(--soft);
}

.partner__image {
  position: absolute;
  inset: 82px 0 82px 50%;
}

.partner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px 0 0 8px;
}

.partner__text {
  max-width: 560px;
}

.partner__text p:not(.eyebrow) {
  color: var(--muted);
}

.partner .btn {
  margin-top: 26px;
}

.process {
  background: var(--paper);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 42px;
}

.process-grid article {
  min-height: 292px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.process-grid article + article {
  margin-left: -12px;
}

.process-grid span {
  position: absolute;
  right: -24px;
  bottom: -26px;
  color: #c8c8c8;
  opacity: .28;
  font-size: 260px;
  line-height: .72;
  font-weight: 600;
  z-index: 0;
}

.process-grid h3,
.process-grid p {
  position: relative;
  z-index: 1;
}

.inspection {
  background: var(--soft);
}

.inspection__grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 70px;
  align-items: center;
}

.inspection__copy p:not(.eyebrow) {
  color: var(--muted);
}

.inspection-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.inspection-tabs li {
  display: grid;
  justify-items: center;
  gap: 10px;
  font-weight: 800;
}

.inspection-tabs span {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  color: var(--blue);
  box-shadow: var(--shadow);
  font-weight: 900;
}

.inspection-tabs span img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.report-card {
  position: relative;
  padding-bottom: 28px;
}

.report-card img {
  width: 100%;
  aspect-ratio: 1.39;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.report-card div {
  width: calc(100% - 64px);
  margin: -54px auto 0;
  position: relative;
  padding: 28px;
  background: var(--paper);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.projects__inner {
  width: min(1320px, calc(100% - 32px));
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  overflow: visible;
}

.projects__inner > .project-grid {
  width: min(1880px, calc(100vw - 32px));
  margin-left: 50%;
  transform: translateX(-50%);
}

.project-tile {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  background: var(--black);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .14);
  outline-offset: 4px;
}

.project-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(.96);
  transition: transform .25s ease, filter .25s ease;
}

.project-tile::after {
  content: "View full image";
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 9px 12px;
  color: var(--paper);
  background: rgba(0, 0, 0, .72);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
}

.project-tile:hover img,
.project-tile:focus-visible img {
  transform: scale(1.035);
  filter: saturate(1.04);
}

.project-tile:hover::after,
.project-tile:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.project-grid.expanded {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.project-grid.expanded .project-tile {
  aspect-ratio: 4 / 3;
}

.lightbox-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 26px;
  background: rgba(7, 10, 14, .92);
}

.gallery-lightbox.is-open {
  display: flex;
}

.gallery-lightbox__stage {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-areas:
    "close close close"
    "prev image next"
    "meta meta meta";
  align-items: center;
  gap: 14px;
  width: min(1500px, 96vw);
}

.gallery-lightbox__image {
  grid-area: image;
  width: auto;
  max-width: 100%;
  max-height: 78vh;
  justify-self: center;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .45);
  background: var(--black);
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
  color: var(--paper);
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.gallery-lightbox__close:hover,
.gallery-lightbox__nav:hover,
.gallery-lightbox__close:focus-visible,
.gallery-lightbox__nav:focus-visible {
  background: var(--red);
  transform: translateY(-1px);
}

.gallery-lightbox__close {
  grid-area: close;
  justify-self: end;
  min-height: 42px;
  padding: 9px 18px;
}

.gallery-lightbox__nav {
  min-height: 52px;
  padding: 12px 16px;
}

.gallery-lightbox__nav--prev {
  grid-area: prev;
}

.gallery-lightbox__nav--next {
  grid-area: next;
}

.gallery-lightbox__meta {
  grid-area: meta;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--paper);
  font-weight: 700;
}

.gallery-lightbox__caption {
  margin: 0;
}

.gallery-lightbox__counter {
  white-space: nowrap;
}

.areas {
  background: var(--paper);
}

.areas__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.areas__copy p:not(.eyebrow) {
  color: var(--muted);
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 38px;
  padding: 0;
  margin: 32px 0 0;
  list-style: none;
}

.city-list li {
  color: var(--blue);
  font-weight: 700;
  border-bottom: 2px solid var(--blue);
  line-height: 1.1;
  padding-bottom: 4px;
}

.map-card {
  min-height: 418px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(5, 64, 242, .22), transparent 28%),
    radial-gradient(circle at 72% 62%, rgba(253, 91, 86, .2), transparent 24%),
    linear-gradient(135deg, #eef3fb, #d9e4f2);
}

.map-card::before,
.map-card::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, .7);
  border: 1px solid rgba(5, 64, 242, .16);
  transform: rotate(-18deg);
}

.map-card::before {
  width: 460px;
  height: 160px;
  left: -40px;
  top: 170px;
  border-radius: 120px;
}

.map-card::after {
  width: 330px;
  height: 120px;
  right: -80px;
  top: 75px;
  border-radius: 90px;
}

.map-card__pin {
  position: absolute;
  z-index: 2;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--blue);
  border: 5px solid var(--paper);
  border-radius: 50%;
  box-shadow: var(--shadow);
  font-weight: 900;
}

.pin-1 {
  left: 46%;
  top: 52%;
}

.pin-2 {
  right: 16%;
  bottom: 18%;
  background: var(--red);
}

.pin-3 {
  left: 22%;
  top: 24%;
  background: var(--charcoal);
}

.map-card__line {
  position: absolute;
  z-index: 1;
  height: 4px;
  background: rgba(5, 64, 242, .32);
  transform-origin: left center;
}

.line-1 {
  width: 250px;
  left: 30%;
  top: 40%;
  transform: rotate(36deg);
}

.line-2 {
  width: 230px;
  left: 50%;
  top: 62%;
  transform: rotate(16deg);
}

.google-map-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background: var(--soft);
}

.google-map-card iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  border: 0;
}

.google-map-card__bar {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(16, 17, 20, .1);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .14);
}

.google-map-card__bar strong {
  font-weight: 720;
  line-height: 1.1;
}

.google-map-card__bar a {
  flex: 0 0 auto;
  padding: 9px 13px;
  color: var(--paper);
  background: var(--red);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.faq {
  background: var(--soft);
}

.faq__grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 58px;
  align-items: start;
}

.faq__heading {
  position: sticky;
  top: 130px;
}

.faq__heading .btn {
  margin-top: 26px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq details {
  padding: 24px 26px;
}

.faq summary {
  cursor: pointer;
  font-size: 20px;
  font-weight: 720;
}

.faq details p {
  margin-top: 14px;
  color: var(--muted);
}

.articles {
  background: var(--paper);
}

.article-grid article {
  padding: 30px;
  border-top: 7px solid var(--blue);
}

.article-grid span {
  color: var(--muted);
  font-weight: 700;
}

.article-grid a {
  display: inline-block;
  margin-top: 20px;
  color: var(--blue);
  font-weight: 700;
}

.emblem {
  padding: 58px 0;
  background: var(--paper);
}

.emblem__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.emblem__line {
  height: 1px;
  background: rgba(16, 17, 20, .58);
}

.emblem__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 0;
  color: var(--ink);
  text-align: center;
}

.emblem__mark strong {
  font-size: clamp(18px, 2.2vw, 25px);
  line-height: 1.05;
  font-weight: 760;
  white-space: nowrap;
}

.emblem__mark img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  border-radius: 8px;
  mix-blend-mode: multiply;
}

.final-cta {
  position: relative;
  min-height: 520px;
  padding: 118px 0;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--paper);
  background: var(--black);
}

.final-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .46;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .92), rgba(0, 0, 0, .18));
}

.final-cta__content {
  position: relative;
  z-index: 1;
}

.final-cta p {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 14px;
}

.final-cta .btn {
  margin-top: 26px;
}

.site-footer {
  background: var(--black);
  color: var(--paper);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding: 72px 0;
}

.brand--footer {
  width: min(300px, 100%);
  margin-bottom: 24px;
  padding: 0;
}

.brand--footer img {
  width: 100%;
  height: auto;
  display: block;
}

.footer__grid a:not(.brand):not(.btn) {
  display: block;
  color: rgba(255, 255, 255, .82);
  margin-top: 10px;
}

.footer__grid p {
  color: rgba(255, 255, 255, .82);
  margin-top: 12px;
}

.footer__grid h3 {
  margin-bottom: 16px;
}

.footer__bottom {
  background: var(--charcoal);
  padding: 20px 0;
  color: rgba(255, 255, 255, .84);
}

.subpage section {
  padding: 76px 0;
}

.subpage .page-hero {
  padding: 86px 0 0;
}

.page-hero {
  position: relative;
  min-height: 650px;
  padding: 86px 0 0;
  overflow: hidden;
  background: linear-gradient(90deg, #fff 0%, #fff 52%, #f0f2f5 52%, #f0f2f5 100%);
}

.page-hero__media {
  position: absolute;
  inset: 0 0 0 52%;
}

.page-hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .86), rgba(255, 255, 255, .08));
  z-index: 1;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin-left: max(16px, calc((100vw - 1320px) / 2));
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--brand-red);
}

.page-hero h1 {
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 1.03;
  font-weight: 780;
}

.page-hero h2 {
  max-width: 650px;
  margin-top: 14px;
  font-size: clamp(28px, 3.3vw, 48px);
  line-height: 1.06;
  font-weight: 720;
}

.page-hero p:not(.eyebrow) {
  max-width: 610px;
  margin-top: 22px;
  color: #272b31;
}

.page-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.page-highlights li {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
  color: var(--brand-red);
  font-weight: 700;
}

.page-quote {
  margin-top: 54px;
}

.ratings-band {
  padding: 34px 0;
  background: var(--black);
  color: var(--paper);
}

.ratings-band__inner {
  display: flex;
  justify-content: center;
  gap: 42px;
  flex-wrap: wrap;
}

.split-feature {
  background: var(--paper);
}

.split-feature__grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
}

.split-feature h2,
.related h2 {
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.05;
  font-weight: 740;
}

.split-feature p:not(.eyebrow) {
  margin-top: 22px;
  color: var(--muted);
}

.split-feature .btn {
  margin-top: 28px;
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-list article,
.card-grid article,
.related-card {
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.feature-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 16px;
  padding: 22px;
  border-left: 6px solid var(--brand-red);
}

.feature-list span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-red);
  color: var(--paper);
  font-weight: 900;
}

.feature-list p {
  margin: 0;
  color: var(--ink);
  font-weight: 750;
}

.inner-areas,
.inner-faq {
  background: var(--soft);
}

.inner-gallery {
  background: var(--paper);
}

.related {
  background: var(--paper);
}

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

.related-card {
  display: grid;
  min-height: 138px;
  align-content: space-between;
  padding: 22px;
  border-top: 6px solid var(--brand-red);
  transition: transform .2s ease;
}

.related-card:hover {
  transform: translateY(-2px);
}

.related-card span {
  font-size: 20px;
  font-weight: 720;
  line-height: 1.1;
}

.related-card small {
  color: var(--brand-red);
  font-weight: 700;
}

.related-card.is-current {
  background: var(--black);
  color: var(--paper);
}

.estimator-page .page-hero {
  min-height: 590px;
  padding-bottom: 80px;
}

.estimator-page .page-hero h1 {
  font-size: clamp(38px, 4.7vw, 64px);
}

.estimator-page .page-hero__inner {
  max-width: 760px;
}

.estimator-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.estimator-hero-actions span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.estimator-section {
  padding: 56px 0 76px;
  background: var(--soft);
}

.estimator-heading {
  max-width: 860px;
  margin-inline: auto;
}

.estimator-heading p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
}

.estimator-card {
  width: min(1200px, 100%);
  margin-inline: auto;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.estimator-card iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  border: 0;
  border-radius: 6px;
  background: var(--paper);
}

.estimator-disclaimer {
  max-width: 1000px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  text-align: center;
}

.cost-guide,
.project-showcase,
.estimator-benefits {
  background: var(--paper);
}

.cost-guide__grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 42px;
  align-items: start;
  margin-bottom: 42px;
}

.cost-guide__grid p {
  color: var(--muted);
}

.cost-guide__grid .btn {
  margin-top: 26px;
}

.cost-range-list {
  display: grid;
  gap: 14px;
}

.cost-range-list article,
.cost-factor-grid article,
.benefit-grid article,
.cost-project-card {
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.cost-range-list article {
  padding: 24px;
  border-left: 7px solid var(--brand-red);
}

.cost-range-list span,
.cost-project-body dt {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.cost-range-list strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1;
  font-weight: 780;
}

.cost-range-list p,
.cost-factor-grid p,
.benefit-grid p,
.cost-project-body p {
  margin-top: 10px;
  color: var(--muted);
}

.cost-factor-grid,
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.cost-factor-grid article,
.benefit-grid article {
  padding: 24px;
  border-top: 6px solid var(--brand-red);
}

.cost-factor-grid h3,
.benefit-grid h3,
.cost-project-card h3 {
  font-size: 21px;
  line-height: 1.1;
  font-weight: 720;
}

.cost-project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.cost-project-card {
  overflow: hidden;
  border: 1px solid rgba(221, 226, 236, .65);
}

.cost-project-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
  background: #f6f7fa;
}

.project-placeholder {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  padding: 12px;
  color: var(--muted);
  background:
    linear-gradient(135deg, rgba(217, 0, 0, .08), rgba(16, 17, 20, .04)),
    repeating-linear-gradient(45deg, rgba(16, 17, 20, .06) 0 10px, transparent 10px 20px);
  border: 1px dashed #c4cad5;
  border-radius: 8px;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.project-placeholder--after {
  background:
    linear-gradient(135deg, rgba(16, 17, 20, .06), rgba(217, 0, 0, .06)),
    repeating-linear-gradient(-45deg, rgba(16, 17, 20, .055) 0 10px, transparent 10px 20px);
}

.cost-project-media--photos {
  align-items: stretch;
}

.cost-project-photo {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
}

.cost-project-photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.cost-project-photo figcaption {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 6px 10px;
  color: var(--paper);
  background: rgba(16, 17, 20, .82);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1;
  text-transform: uppercase;
}

.cost-project-body {
  padding: 22px;
}

.cost-project-body dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 0;
}

.cost-project-body dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 650;
  line-height: 1.25;
}

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

.estimator-page .areas__copy .btn {
  margin-top: 24px;
}

.final-cta .final-cta__subtext {
  max-width: 640px;
  margin: 18px 0 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
}

.card-section,
.projects-page,
.reviews-page {
  background: var(--paper);
}

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

.card-grid article {
  padding: 30px;
  border-top: 6px solid var(--brand-red);
}

.card-grid h3 {
  font-size: 24px;
  line-height: 1.1;
  font-weight: 760;
}

.card-grid p {
  margin-top: 16px;
  color: var(--muted);
}

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

.projects-page {
  scroll-margin-top: 120px;
}

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

.page-form {
  display: grid;
  gap: 14px;
  padding: 30px;
  border-radius: 8px;
  background: var(--black);
  box-shadow: var(--shadow);
}

.page-form label {
  display: grid;
  gap: 7px;
  color: var(--paper);
  font-weight: 750;
}

.page-form input {
  min-height: 46px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
}

.form-status {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--paper);
  background: rgba(255, 255, 255, .14);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.page-form .form-status {
  background: rgba(255, 255, 255, .12);
}

.form-status--success {
  color: #14532d;
  background: #dcfce7;
}

.form-status--error {
  color: #7f1d1d;
  background: #fee2e2;
}

.form-status--loading {
  color: var(--paper);
  background: rgba(255, 255, 255, .18);
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  outline: 3px solid rgba(217, 0, 0, .35);
}

.btn.is-loading {
  opacity: .82;
  cursor: wait;
}

.compact-cta {
  min-height: 420px;
}

@media (max-width: 1180px) {
  .header__inner {
    min-height: 78px;
  }

  .primary-nav,
  .btn--header {
    display: none;
  }

  .nav-button {
    display: inline-flex;
  }

  .primary-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    padding: 18px;
    background: var(--paper);
    border-radius: 8px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }

  .nav-toggle:checked ~ .primary-nav {
    display: flex;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 10px 8px;
  }

  .sub-menu {
    position: static;
    min-width: 0;
    padding: 2px 0 8px 12px;
    margin: 0 0 4px 8px;
    border-top: 0;
    border-left: 3px solid var(--red);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .sub-menu a {
    padding: 9px 10px;
    white-space: normal;
  }

  .nav-item--has-dropdown > .nav-link::after,
  .nav-item--has-dropdown:hover > .nav-link::after,
  .nav-item--has-dropdown:focus-within > .nav-link::after {
    transform: translateY(1px);
  }

  .hero {
    min-height: auto;
  }

  .quote-strip {
    flex-direction: column;
    align-items: stretch;
    margin-left: 16px;
  }

  .quote-strip form {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .process-grid article + article {
    margin-left: 0;
  }

  .project-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .cost-guide__grid,
  .cost-project-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 780px) {
  .site-header {
    z-index: 80;
  }

  .header__inner {
    min-height: 70px;
    gap: 10px;
  }

  .nav-button {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border: 1px solid rgba(34, 34, 34, .2);
    border-radius: 999px;
    background: var(--paper);
  }

  .nav-button span {
    width: 20px;
    height: 2px;
  }

  .primary-nav {
    left: 0;
    right: 0;
    top: 100%;
    padding: 12px 22px 18px;
    border-radius: 0 0 8px 8px;
    max-height: calc(100vh - 184px);
  }

  body {
    padding-bottom: 64px;
  }

  .mobile-sticky-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    display: flex;
    background: var(--ink);
    box-shadow: 0 -10px 28px rgba(0, 0, 0, .24);
  }

  .mobile-sticky-bar a {
    display: inline-flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 0;
    padding: 15px 8px;
    color: var(--paper);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    text-decoration: none;
  }

  .mobile-sticky-bar a:first-child {
    background: var(--red);
  }

  .mobile-sticky-bar svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
  }
}

@media (max-width: 900px) {
  .topbar__inner {
    justify-content: center;
  }

  .topbar p {
    display: none;
  }

  .hero {
    padding-top: 0;
    background: var(--paper);
  }

  .subpage .page-hero {
    padding: 0 0 54px;
  }

  .page-hero {
    min-height: auto;
    background: var(--paper);
  }

  .page-hero__media {
    position: relative;
    inset: auto;
    height: 310px;
  }

  .estimator-page .page-hero__media {
    height: 230px;
  }

  .page-hero__media::before {
    display: none;
  }

  .page-hero__inner {
    max-width: calc(100% - 32px);
    margin: -30px auto 0;
    padding: 30px 24px;
    background: var(--paper);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .estimator-page .page-hero__inner {
    margin-top: -24px;
    padding: 24px 20px;
  }

  .estimator-page .breadcrumb {
    display: none;
  }

  .estimator-page .page-hero p:not(.eyebrow) {
    margin-top: 16px;
  }

  .estimator-page .page-highlights {
    gap: 8px;
    margin-top: 16px;
  }

  .estimator-page .page-highlights li {
    padding: 8px 10px;
    font-size: 12px;
  }

  .page-quote {
    margin-top: 28px;
  }

  .hero__media {
    position: relative;
    inset: auto;
    height: 310px;
  }

  .hero__media::before {
    display: none;
  }

  .hero__content {
    max-width: 640px;
    margin: -30px auto 0;
    padding: 30px 24px 20px;
    background: var(--paper);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .highlights {
    flex-direction: column;
    align-items: stretch;
    border-radius: 8px;
    padding: 20px;
    margin-inline: auto;
  }

  .highlights::before {
    display: none;
  }

  .quote-strip {
    border-radius: 8px;
    margin: 28px auto 0;
  }

  .quote-strip::after {
    display: none;
  }

  .intro-video {
    padding-top: 76px;
  }

  .section-heading--split,
  .areas__grid,
  .inspection__grid,
  .faq__grid,
  .split-feature__grid,
  .partner__content,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .section-heading--split {
    display: grid;
    align-items: start;
  }

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

  .expansion__image {
    width: min(620px, calc(100% - 32px));
    margin: 0 auto -60px;
  }

  .expansion__image img {
    height: 310px;
  }

  .expansion__panel {
    padding-top: 98px;
  }

  .expansion__content {
    justify-items: start;
  }

  .partner {
    display: grid;
    gap: 24px;
  }

  .partner__image {
    position: relative;
    inset: auto;
    order: -1;
    width: min(640px, calc(100% - 32px));
    margin-inline: auto;
  }

  .partner__image img {
    height: 320px;
    border-radius: 8px;
  }

  .faq__heading {
    position: static;
  }

  .footer__grid {
    gap: 30px;
  }

  .estimator-page .page-hero {
    padding-bottom: 54px;
  }

  .estimator-hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .estimator-card {
    padding: 12px;
  }

  .estimator-card iframe {
    min-height: 680px !important;
  }

  .cost-factor-grid,
  .benefit-grid,
  .cost-project-grid {
    grid-template-columns: 1fr;
  }

  .cost-project-body dl {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .project-grid,
  .project-grid.expanded,
  .review-grid.expanded {
    grid-template-columns: 1fr;
  }

  .project-grid .project-tile,
  .project-grid.expanded .project-tile {
    grid-column: auto;
    aspect-ratio: 4 / 3;
  }

  .gallery-lightbox {
    padding: 16px;
  }

  .gallery-lightbox__stage {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "close close"
      "image image"
      "prev next"
      "meta meta";
  }

  .gallery-lightbox__image {
    max-height: 68vh;
  }

  .gallery-lightbox__nav {
    width: 100%;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  section {
    padding: 54px 0;
  }

  .logo-brand img {
    width: clamp(190px, 58vw, 260px);
  }

  .hero-review {
    gap: 8px;
    font-size: 12px;
    margin-bottom: 18px;
  }

  .hero-review__stars svg {
    width: 16px;
    height: 16px;
  }

  .hero p.hero-review-note {
    margin-top: -10px;
    font-size: 11px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .estimator-page .page-hero h1 {
    font-size: 32px;
  }

  .hero h2,
  .intro-video h2,
  .section-heading h2,
  .expansion h2,
  .partner h2,
  .inspection h2,
  .areas h2,
  .faq h2,
  .final-cta h2 {
    font-size: 32px;
  }

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

  .estimator-section {
    padding-top: 44px;
  }

  .estimator-card {
    padding: 8px;
    border-radius: 8px;
  }

  .estimator-disclaimer {
    text-align: left;
  }

  .cost-project-media {
    grid-template-columns: 1fr;
  }

  .ratings {
    flex-direction: column;
    gap: 18px;
  }

  .process-grid,
  .related-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-grid .project-tile {
    aspect-ratio: 4 / 3;
  }

  .gallery-lightbox__meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .inspection-tabs {
    justify-content: center;
  }

  .emblem {
    padding: 46px 0;
  }

  .emblem__inner {
    gap: 16px;
  }

  .emblem__mark {
    flex-direction: column;
    gap: 8px;
  }

  .emblem__mark strong {
    white-space: normal;
  }

  .report-card div {
    width: calc(100% - 32px);
    padding: 22px;
  }

  .map-card,
  .google-map-card {
    min-height: 320px;
  }

  .google-map-card__bar {
    align-items: stretch;
    flex-direction: column;
  }

  .google-map-card__bar a {
    text-align: center;
  }

  .footer__grid {
    padding: 50px 0;
  }
}

/* Closed Meta/Facebook instant estimate landing page */
body.ad-landing-page {
  overflow-x: hidden;
  background: #f7f8fb;
}

.ad-landing-page .container {
  width: min(1200px, calc(100% - 32px));
}

.ad-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid rgba(221, 226, 236, .9);
  box-shadow: 0 10px 26px rgba(16, 17, 20, .08);
}

.ad-header__inner {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.ad-header__brand img {
  width: clamp(220px, 24vw, 315px);
}

.ad-header__trust {
  justify-self: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .04em;
  text-align: center;
  text-transform: uppercase;
}

.ad-header__phone {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}

.ad-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 42px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .94) 52%, rgba(242, 244, 248, .84) 52%, rgba(242, 244, 248, .84) 100%),
    #fff;
}

.ad-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
}

.ad-hero__copy {
  max-width: 640px;
}

.ad-hero__rating {
  margin-bottom: 18px;
}

.ad-hero h1 {
  max-width: 680px;
  font-size: clamp(39px, 4.6vw, 66px);
  line-height: 1.03;
  font-weight: 760;
  letter-spacing: 0;
}

.ad-hero__subhead {
  max-width: 570px;
  margin-top: 22px;
  color: #30343b;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
}

.ad-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.ad-hero__actions p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.ad-cta {
  min-height: 50px;
  padding-inline: 26px;
}

.ad-proof-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.ad-proof-row article {
  min-width: 0;
  min-height: 108px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  padding: 14px 10px;
  background: var(--paper);
  border: 1px solid rgba(221, 226, 236, .9);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(16, 17, 20, .08);
  text-align: center;
}

.ad-proof-row article > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--brand-red);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 760;
}

.ad-proof-row article:first-child > span {
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
}

.ad-proof-row img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.ad-proof-row p {
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
}

.ad-hero__media {
  position: relative;
}

.ad-hero__media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.ad-hero-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(320px, calc(100% - 36px));
  padding: 18px;
  color: var(--paper);
  background: rgba(16, 17, 20, .92);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .24);
}

.ad-hero-card strong {
  display: block;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 730;
}

.ad-hero-card p {
  margin-top: 8px;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  line-height: 1.45;
}

.ad-estimator-section {
  padding: 48px 0 70px;
  scroll-margin-top: 98px;
}

.ad-estimator-card {
  max-width: 1200px;
  background: #fff;
}

.ad-section {
  padding: 72px 0;
  background: var(--paper);
}

.ad-how {
  background: #fff;
}

.ad-benefits,
.ad-social-proof {
  background: #f7f8fb;
}

.ad-card-grid,
.ad-factor-grid {
  display: grid;
  gap: 18px;
}

.ad-card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ad-card-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.ad-card-grid article,
.ad-factor-grid article {
  min-width: 0;
  padding: 24px;
  background: var(--paper);
  border: 1px solid rgba(221, 226, 236, .8);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(16, 17, 20, .08);
}

.ad-card-grid article > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--paper);
  background: var(--brand-red);
  border-radius: 50%;
  font-weight: 740;
}

.ad-card-grid h3,
.ad-factor-grid h3 {
  font-size: 21px;
  line-height: 1.15;
  font-weight: 700;
}

.ad-card-grid p,
.ad-factor-grid p {
  margin-top: 10px;
  color: var(--muted);
}

.ad-factor-grid article {
  border-top: 5px solid var(--brand-red);
}

.ad-social-proof__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .7fr);
  align-items: center;
  gap: clamp(32px, 5vw, 68px);
}

.ad-social-proof__grid > div:first-child p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
}

.ad-social-proof__grid .btn {
  margin-top: 26px;
}

.ad-review-stack {
  display: grid;
  gap: 16px;
}

.ad-review-stack article {
  padding: 24px;
  background: var(--paper);
  border: 1px solid rgba(221, 226, 236, .9);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.ad-review-stack__source {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

.ad-review-stack__source img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.ad-review-stack article p {
  margin-top: 14px;
  color: #30343b;
  font-size: 17px;
  line-height: 1.55;
}

.ad-review-stack article > span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.ad-final-cta {
  padding: 76px 0 96px;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(16, 17, 20, .94), rgba(16, 17, 20, .82)),
    url("assets/gallery-08.jpg") center/cover;
  text-align: center;
}

.ad-final-cta .container {
  display: grid;
  justify-items: center;
}

.ad-final-cta h2 {
  max-width: 760px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  font-weight: 740;
}

.ad-final-cta p {
  max-width: 650px;
  margin-top: 18px;
  color: rgba(255, 255, 255, .84);
  font-size: 18px;
}

.ad-final-cta .btn {
  margin-top: 28px;
}

.ad-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, .86);
  background: var(--ink);
}

.ad-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ad-footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.ad-footer__brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
}

.ad-footer strong {
  display: block;
  color: var(--paper);
  font-size: 17px;
  font-weight: 700;
}

.ad-footer p {
  margin-top: 3px;
  font-size: 13px;
}

.ad-footer a {
  color: var(--paper);
  font-weight: 700;
  white-space: nowrap;
}

.ad-sticky-quote {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 85;
  display: flex;
  padding: 8px;
  background: rgba(16, 17, 20, .92);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .26);
}

.ad-sticky-quote .btn {
  min-height: 46px;
  padding-inline: 24px;
  box-shadow: none;
}

.estimator-modal[hidden] {
  display: none;
}

.estimator-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: stretch;
}

.estimator-modal__backdrop {
  position: absolute;
  inset: 0;
  padding: 0;
  border: 0;
  background: rgba(0, 0, 0, .72);
  cursor: pointer;
}

.estimator-modal__panel {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 28px));
  height: min(920px, calc(100dvh - 28px));
  margin: auto;
  overflow: hidden;
  background: var(--paper);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .4);
}

.estimator-modal__header {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 16px;
  background: var(--ink);
  color: var(--paper);
}

.estimator-modal__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.estimator-modal__brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--paper);
}

.estimator-modal__brand strong {
  display: block;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 700;
}

.estimator-modal__brand p {
  margin-top: 2px;
  color: rgba(255, 255, 255, .76);
  font-size: 12px;
  line-height: 1.2;
}

.estimator-modal__close {
  min-height: 42px;
  padding: 10px 16px;
  color: var(--paper);
  background: var(--brand-red);
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.estimator-modal__frame {
  display: block;
  width: 100%;
  height: calc(100dvh - 100px);
  max-height: calc(920px - 72px);
  border: 0;
  background: var(--paper);
}

body.estimator-modal-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .ad-header__inner {
    grid-template-columns: 1fr auto;
    min-height: 74px;
    gap: 12px;
  }

  .ad-header__trust {
    display: none;
  }

  .ad-header__brand img {
    width: clamp(210px, 52vw, 280px);
  }

  .ad-header__phone {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 13px;
  }

  .ad-hero {
    padding: 32px 0 34px;
    background: #fff;
  }

  .ad-hero__grid,
  .ad-social-proof__grid {
    grid-template-columns: 1fr;
  }

  .ad-hero__media {
    order: -1;
  }

  .ad-hero__media img {
    aspect-ratio: 16 / 10;
  }

  .ad-proof-row,
  .ad-card-grid--three,
  .ad-card-grid--six,
  .ad-factor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ad-sticky-quote {
    right: 0;
    bottom: 0;
    left: 0;
    padding: 10px 14px;
    background: var(--ink);
    border: 0;
    border-radius: 0;
  }

  .ad-sticky-quote .btn {
    width: 100%;
    min-height: auto;
    padding: 16px 18px;
    border-radius: 999px;
    font-size: 14px;
    letter-spacing: .05em;
    text-transform: uppercase;
  }

  body.ad-landing-page {
    padding-bottom: 72px;
  }
}

@media (max-width: 640px) {
  .ad-landing-page .container {
    width: min(100% - 26px, 1200px);
  }

  .ad-header__inner {
    min-height: 70px;
  }

  .ad-header__brand img {
    width: clamp(188px, 54vw, 232px);
  }

  .ad-header__phone {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 12px;
  }

  .ad-hero h1 {
    font-size: 34px;
  }

  .ad-hero__subhead {
    font-size: 16px;
  }

  .ad-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .ad-hero__actions .btn {
    width: 100%;
  }

  .ad-proof-row,
  .ad-card-grid--three,
  .ad-card-grid--six,
  .ad-factor-grid {
    grid-template-columns: 1fr;
  }

  .ad-proof-row article {
    min-height: 84px;
    grid-template-columns: auto 1fr;
    justify-items: start;
    text-align: left;
  }

  .ad-hero-card {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .ad-estimator-section,
  .ad-section,
  .ad-final-cta {
    padding-block: 50px;
  }

  .ad-social-proof__grid {
    gap: 26px;
  }

  .ad-footer__inner,
  .ad-footer__brand {
    align-items: flex-start;
    flex-direction: column;
  }

  .estimator-modal__panel {
    width: 100%;
    height: 100dvh;
    border-radius: 0;
  }

  .estimator-modal__header {
    height: 64px;
    padding: 10px 12px;
  }

  .estimator-modal__brand strong {
    display: none;
  }

  .estimator-modal__close {
    min-height: 38px;
    padding: 8px 12px;
  }

  .estimator-modal__frame {
    height: calc(100dvh - 64px);
    max-height: none;
  }
}
