:root {
  --red: #d91f2b;
  --red-dark: #b71520;
  --ink: #12161c;
  --ink-soft: #303741;
  --grey: #68717c;
  --line: #dce0e4;
  --paper: #f5f3ee;
  --white: #fff;
  --green: #63a86a;
  --shadow: 0 24px 60px rgba(16, 20, 25, .12);
  --radius: 18px;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  display: block;
}

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

.section {
  padding: 108px 0;
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  color: var(--white);
  background: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

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

.topbar p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #78d47e;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(120, 212, 126, .14);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(18, 22, 28, .08);
  backdrop-filter: blur(16px);
  transition: box-shadow .25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 35px rgba(10, 14, 20, .08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand__mark {
  color: var(--red);
  font-family: var(--display);
  font-size: 36px;
  font-style: italic;
  font-weight: 900;
  line-height: .8;
  letter-spacing: -3px;
  transform: skew(-4deg);
}

.brand__name {
  padding-left: 12px;
  border-left: 1px solid var(--line);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.brand__name strong {
  font-size: 11px;
  font-weight: 800;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-call {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: var(--ink);
  line-height: 1.15;
  text-decoration: none;
}

.header-call__label {
  margin-bottom: 4px;
  color: var(--red);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.header-call strong {
  font-size: 18px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 0;
  color: var(--white);
  background: var(--ink);
}

.hero__texture {
  position: absolute;
  inset: 0;
  opacity: .06;
  background-image:
    linear-gradient(rgba(255,255,255,.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.4) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to right, black, transparent 75%);
}

.hero::before {
  position: absolute;
  top: -240px;
  right: -180px;
  width: 560px;
  height: 560px;
  background: var(--red);
  border-radius: 50%;
  content: "";
  filter: blur(150px);
  opacity: .2;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: 72px;
  min-height: 590px;
  padding-bottom: 82px;
}

.eyebrow {
  margin: 0 0 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow span {
  margin-right: 13px;
  padding: 7px 10px;
  color: var(--white);
  background: var(--red);
  border-radius: 4px;
}

.eyebrow--red {
  color: var(--red);
}

.hero h1,
.section h2,
.contact h2 {
  font-family: var(--display);
  font-weight: 800;
  line-height: .95;
  letter-spacing: -.025em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 660px;
  margin: 0 0 24px;
  font-size: clamp(64px, 7vw, 104px);
}

.hero h1 em {
  color: var(--red);
  font-style: italic;
}

.hero__lead {
  max-width: 650px;
  margin: 0 0 34px;
  color: #bcc3cc;
  font-size: 18px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

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

.button svg,
.mobile-call svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.button--primary {
  color: var(--white);
  background: var(--red);
}

.button--primary:hover {
  background: var(--red-dark);
}

.button--secondary {
  color: var(--white);
  border-color: #454c55;
}

.button--secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, .05);
}

.button--dark {
  color: var(--white);
  background: var(--ink);
}

.button--dark:hover {
  background: var(--red);
}

.button--light {
  color: var(--ink);
  background: var(--white);
}

.button--outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, .5);
}

.button--outline-light:hover {
  color: var(--ink);
  background: var(--white);
}

.hero__proof {
  display: flex;
  gap: 0;
  margin: 46px 0 0;
  padding: 26px 0 0;
  border-top: 1px solid #30363e;
  list-style: none;
}

.hero__proof li {
  display: flex;
  flex-direction: column;
  min-width: 135px;
  padding-right: 22px;
}

.hero__proof li + li {
  padding-left: 22px;
  border-left: 1px solid #30363e;
}

.hero__proof strong {
  font-family: var(--display);
  font-size: 31px;
  line-height: 1;
}

.hero__proof span {
  margin-top: 6px;
  color: #9199a3;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.hero__visual {
  position: relative;
}

.hero__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 4.45;
  background: #272c33;
  border-radius: 22px 22px 6px 22px;
  box-shadow: 24px 24px 0 rgba(255, 255, 255, .045);
}

.hero__image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(9, 12, 16, .78));
  content: "";
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(.93) contrast(1.04);
}

.hero__image-label {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.hero__image-label span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero__image-label strong {
  font-family: var(--display);
  font-size: 35px;
  line-height: 1;
  text-transform: uppercase;
}

.hero__badge {
  position: absolute;
  top: 36px;
  left: -42px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  padding: 16px 18px;
  color: var(--ink);
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.hero__badge svg {
  width: 34px;
  height: 34px;
  padding: 5px;
  fill: var(--white);
  background: var(--red);
  border-radius: 50%;
}

.hero__badge span {
  display: flex;
  flex-direction: column;
}

.hero__badge strong {
  font-size: 12px;
}

.hero__badge small {
  color: var(--grey);
  font-size: 9px;
}

.emergency-card {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  padding: 20px 34px;
  color: var(--white);
  background: var(--red);
  border-radius: 16px 16px 0 0;
}

.emergency-card > div {
  display: flex;
  align-items: center;
  gap: 16px;
}

.emergency-card__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 800;
}

.emergency-card p {
  display: flex;
  flex-direction: column;
  margin: 0;
  line-height: 1.4;
}

.emergency-card p strong {
  font-size: 16px;
}

.emergency-card p span {
  color: rgba(255, 255, 255, .75);
  font-size: 12px;
}

.emergency-card > a {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: .02em;
  text-decoration: none;
  text-transform: uppercase;
}

.emergency-card > a span {
  margin-left: 10px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 56px;
}

.section h2 {
  margin: 0;
  font-size: clamp(48px, 5vw, 72px);
}

.section-heading > p {
  max-width: 520px;
  margin: 0 0 5px;
  color: var(--grey);
  font-size: 16px;
}

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

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #ccd0d3;
  border-left: 1px solid #ccd0d3;
}

.service-card {
  position: relative;
  min-height: 330px;
  padding: 34px;
  background: var(--white);
  border-right: 1px solid #ccd0d3;
  border-bottom: 1px solid #ccd0d3;
  transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:hover {
  z-index: 2;
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(18, 22, 28, .1);
}

.service-card--featured {
  color: var(--white);
  background: var(--red);
}

.service-card--contact {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  background: var(--ink);
}

.service-card__number {
  position: absolute;
  top: 26px;
  right: 28px;
  color: #adb3ba;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
}

.service-card--featured .service-card__number {
  color: rgba(255, 255, 255, .65);
}

.service-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 48px;
  place-items: center;
  color: var(--red);
  background: #f5e7e8;
  border-radius: 50%;
}

.service-card__icon svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.service-card--featured .service-card__icon {
  color: var(--red);
  background: var(--white);
}

.service-card h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
  color: var(--grey);
  font-size: 13px;
  line-height: 1.7;
}

.service-card--featured p,
.service-card--contact p {
  color: rgba(255, 255, 255, .75);
}

.service-card > a {
  display: inline-flex;
  gap: 9px;
  margin-top: 22px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.service-card--contact .eyebrow {
  margin-bottom: 12px;
  color: var(--red);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .03em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link--red {
  color: var(--red);
}

.proof-strip {
  padding: 34px 0;
  color: var(--white);
  background: var(--ink);
}

.proof-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-strip__grid > div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 56px;
  padding: 0 24px;
}

.proof-strip__grid > div:first-child {
  padding-left: 0;
}

.proof-strip__grid > div + div {
  border-left: 1px solid #353b43;
}

.proof-strip__tick {
  display: grid;
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

.proof-strip p {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.proof-strip strong {
  font-size: 11px;
  text-transform: uppercase;
}

.proof-strip p span {
  color: #8f98a2;
  font-size: 9px;
}

.about {
  overflow: hidden;
}

.about__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 110px;
}

.about__images {
  position: relative;
  padding: 0 40px 70px 0;
}

.about__images::before {
  position: absolute;
  top: 40px;
  right: -30px;
  bottom: 25px;
  left: 44px;
  background: var(--paper);
  content: "";
}

.about__main-image {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 1 / .82;
  margin: 0;
  background: #ddd;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about__main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__award-image {
  position: absolute;
  z-index: 2;
  right: -28px;
  bottom: 0;
  overflow: hidden;
  width: 170px;
  aspect-ratio: .64 / 1;
  margin: 0;
  background: #ddd;
  border: 8px solid var(--white);
  border-radius: 4px;
  box-shadow: 0 16px 36px rgba(18, 22, 28, .2);
}

.about__award-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__intro {
  margin: 28px 0 34px;
  color: var(--grey);
  font-size: 17px;
  line-height: 1.8;
}

.check-list {
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.check-list li > span {
  color: var(--red);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
}

.check-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
}

.check-list p {
  margin: 0;
  color: var(--grey);
  font-size: 12px;
}

.reviews {
  color: var(--white);
  background: var(--ink);
}

.reviews__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 54px;
}

.reviews .eyebrow {
  color: var(--red);
}

.rating-block {
  display: flex;
  align-items: center;
  gap: 16px;
}

.rating-block > strong {
  font-family: var(--display);
  font-size: 62px;
  line-height: .8;
}

.rating-block > span {
  display: flex;
  flex-direction: column;
}

.stars {
  color: #ffca43;
  font-size: 17px;
  letter-spacing: 2px;
}

.rating-block small {
  color: #9aa2ab;
  font-size: 9px;
  text-transform: uppercase;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #363c44;
  border-left: 1px solid #363c44;
}

.review-card {
  min-height: 300px;
  padding: 34px;
  border-right: 1px solid #363c44;
  border-bottom: 1px solid #363c44;
}

.review-card blockquote {
  margin: 36px 0 46px;
  font-family: var(--display);
  font-size: 27px;
  font-weight: 600;
  line-height: 1.15;
  text-transform: uppercase;
}

.review-card footer {
  display: flex;
  flex-direction: column;
  font-size: 11px;
}

.review-card footer span {
  color: #858e99;
  font-size: 9px;
  text-transform: uppercase;
}

.reviews__source {
  margin: 22px 0 0;
  color: #7f8892;
  font-size: 10px;
}

.reviews__source a {
  color: #c4cbd2;
}

.areas {
  color: var(--ink);
  background: var(--red);
}

.areas .eyebrow--red {
  color: var(--ink);
}

.areas__grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: end;
  gap: 90px;
}

.areas__grid > div > p:last-child {
  max-width: 480px;
  margin: 24px 0 0;
  color: rgba(18, 22, 28, .74);
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(18, 22, 28, .28);
  list-style: none;
}

.area-list li {
  position: relative;
  padding: 19px 10px 19px 30px;
  border-bottom: 1px solid rgba(18, 22, 28, .28);
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
}

.area-list li::before {
  position: absolute;
  top: 27px;
  left: 4px;
  width: 8px;
  height: 8px;
  background: var(--ink);
  border-radius: 50%;
  content: "";
}

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

.faq__grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  align-items: start;
  gap: 100px;
}

.faq__grid > div:first-child > p:not(.eyebrow) {
  color: var(--grey);
}

.faq__items {
  border-top: 1px solid #c9cdd1;
}

.faq details {
  border-bottom: 1px solid #c9cdd1;
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 24px 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 700;
  line-height: 1.15;
  list-style: none;
  text-transform: uppercase;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary span {
  display: grid;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-family: var(--body);
  font-size: 17px;
  font-weight: 400;
  transition: transform .2s ease, background .2s ease;
}

.faq details[open] summary span {
  background: var(--red);
  transform: rotate(45deg);
}

.faq details p {
  max-width: 650px;
  margin: -4px 55px 25px 0;
  color: var(--grey);
  font-size: 13px;
}

.contact {
  position: relative;
  overflow: hidden;
  padding: 118px 0;
  color: var(--white);
  background: var(--red);
  text-align: center;
}

.contact__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(217, 31, 43, .94), rgba(217, 31, 43, .86)),
    url("assets/ads-branding.jpg") center / cover;
}

.contact__inner {
  position: relative;
}

.contact .eyebrow {
  color: rgba(255, 255, 255, .75);
}

.contact h2 {
  margin: 0;
  font-size: clamp(72px, 9vw, 126px);
}

.contact__inner > p:not(.eyebrow, .contact__email) {
  margin: 24px 0 34px;
  font-size: 18px;
}

.contact__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.contact__email {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
}

.footer {
  padding: 58px 0 26px;
  color: #aeb5bd;
  background: #0b0e12;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: start;
  gap: 40px;
  padding-bottom: 48px;
}

.brand--footer {
  color: var(--white);
}

.footer__details p {
  max-width: 320px;
  margin: 0 0 6px;
  font-size: 11px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
}

.footer__links a {
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.footer__links a:hover {
  color: var(--red);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid #282d34;
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer__bottom p {
  margin: 0;
}

.mobile-call {
  display: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

:focus-visible {
  outline: 3px solid #3b82f6;
  outline-offset: 4px;
}

@media (max-width: 1040px) {
  .header__inner {
    grid-template-columns: auto auto 1fr;
  }

  .nav {
    position: fixed;
    z-index: 99;
    top: 118px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 28px 24px;
    background: var(--white);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: 30px;
    text-transform: uppercase;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header-call {
    justify-self: end;
  }

  .hero__grid {
    gap: 42px;
  }

  .hero__badge {
    left: -20px;
  }

  .about__grid {
    gap: 70px;
  }

  .proof-strip__grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
  }

  .proof-strip__grid > div:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 78px 0;
  }

  .hero {
    padding-top: 60px;
  }

  .hero__grid,
  .section-heading,
  .about__grid,
  .areas__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 58px;
    padding-bottom: 70px;
  }

  .hero__copy {
    max-width: 680px;
  }

  .hero__visual {
    max-width: 600px;
  }

  .hero__image-wrap {
    aspect-ratio: 4 / 3.6;
  }

  .section-heading,
  .areas__grid,
  .faq__grid {
    gap: 32px;
  }

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

  .about__grid {
    gap: 80px;
  }

  .about__images {
    max-width: 680px;
  }

  .reviews__heading {
    align-items: flex-start;
  }

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

  .review-card {
    min-height: 0;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .footer__links {
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  body {
    padding-bottom: 68px;
  }

  .topbar__location,
  .header-call {
    display: none;
  }

  .topbar__inner {
    justify-content: center;
  }

  .header__inner {
    grid-template-columns: 1fr auto;
    min-height: 72px;
  }

  .nav {
    top: 108px;
  }

  .hero {
    padding-top: 50px;
  }

  .hero h1 {
    font-size: clamp(55px, 18vw, 78px);
  }

  .hero__lead {
    font-size: 15px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero__proof {
    justify-content: space-between;
  }

  .hero__proof li {
    min-width: 0;
    padding-right: 14px;
  }

  .hero__proof li + li {
    padding-left: 14px;
  }

  .hero__proof strong {
    font-size: 27px;
  }

  .hero__proof span {
    font-size: 8px;
  }

  .hero__image-wrap {
    aspect-ratio: 1 / 1.1;
    border-radius: 15px;
  }

  .hero__badge {
    top: -18px;
    left: 12px;
    min-width: 0;
    padding: 12px 14px;
  }

  .hero__badge small {
    display: none;
  }

  .emergency-card {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding: 24px;
  }

  .emergency-card > a {
    width: 100%;
    padding-top: 17px;
    border-top: 1px solid rgba(255, 255, 255, .35);
    font-size: 21px;
  }

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

  .section h2 {
    font-size: 48px;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 285px;
  }

  .proof-strip__grid {
    grid-template-columns: 1fr;
  }

  .proof-strip__grid > div,
  .proof-strip__grid > div:nth-child(3) {
    padding: 12px 0;
    border-left: 0;
  }

  .proof-strip__grid > div + div {
    border-top: 1px solid #353b43;
    border-left: 0;
  }

  .about__images {
    padding: 0 28px 54px 0;
  }

  .about__award-image {
    right: -4px;
    width: 124px;
    border-width: 5px;
  }

  .reviews__heading {
    flex-direction: column;
  }

  .review-card {
    padding: 28px;
  }

  .review-card blockquote {
    margin: 28px 0 34px;
    font-size: 25px;
  }

  .area-list {
    grid-template-columns: 1fr;
  }

  .contact {
    padding: 88px 0;
  }

  .contact h2 {
    font-size: 72px;
  }

  .contact__actions {
    flex-direction: column;
  }

  .footer__top {
    grid-template-columns: 1fr;
  }

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

  .mobile-call {
    position: fixed;
    z-index: 120;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 64px;
    color: var(--white);
    background: var(--red);
    box-shadow: 0 -8px 30px rgba(10, 14, 20, .18);
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
