: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: "Gabarito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  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;
}

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

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

.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-width: 0;
}

.highlights p {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.2;
}

.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: 56px;
  border-radius: 8px;
  overflow: hidden;
  background: #d71920;
}

.badge-icon--gaf img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.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: 34px 0;
  background: var(--soft);
}

.trust__row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.trust__row div {
  min-height: 78px;
  display: grid;
  place-items: center;
  padding: 16px;
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
  color: var(--blue);
}

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

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

.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: 44px 0;
}

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

.emblem span {
  height: 1px;
  background: var(--ink);
}

.emblem div {
  display: grid;
  place-items: center;
  width: 136px;
  height: 136px;
  border-radius: 50%;
  border: 8px solid var(--blue);
  color: var(--blue);
  background: var(--paper);
  text-align: center;
  font-weight: 900;
  line-height: 1;
}

.emblem strong {
  font-size: 28px;
}

.emblem small {
  color: var(--ink);
  font-size: 12px;
  text-transform: uppercase;
}

.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: fit-content;
  margin-bottom: 24px;
  padding: 10px;
  border-radius: 8px;
  background: var(--paper);
}

.brand--footer img {
  width: min(280px, 100%);
}

.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);
}

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

.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));
  }

  .trust__row {
    grid-template-columns: repeat(3, 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));
  }
}

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

  .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);
  }

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

  .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(170px, 50vw, 240px);
  }

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

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

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

  .trust__row,
  .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;
  }

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