@font-face {
  font-family: "Archivo Black";
  src: url("/assets/fonts/archivo-black.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("/assets/fonts/ibm-plex-mono-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  --ink: #132329;
  --deep: #0d2228;
  --deep-soft: #15343a;
  --steel: #dbe2e1;
  --aluminum: #f2f4f2;
  --white: #ffffff;
  --muted: #647478;
  --line: #b9c5c5;
  --signal: #ec6a35;
  --signal-deep: #bd4720;
  --aqua: #7cc8c6;
  --display: "Archivo Black", "Arial Black", sans-serif;
  --body: "Manrope", Arial, sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --container: min(1180px, calc(100% - 48px));
  --shadow: 0 18px 60px rgb(9 28 32 / 16%);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--aluminum);
  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;
}

:focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--deep);
  background: var(--white);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  background: rgb(8 28 33 / 92%);
  border-bottom: 1px solid rgb(255 255 255 / 13%);
  backdrop-filter: blur(16px) saturate(130%);
}

.header-inner {
  display: flex;
  width: var(--container);
  min-height: 80px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: grid;
  min-width: 245px;
  color: inherit;
  text-decoration: none;
  grid-template-columns: 44px 1fr;
  grid-template-rows: auto auto;
  column-gap: 11px;
  align-items: center;
}

.brand img {
  grid-row: 1 / 3;
}

.brand-name {
  font-family: var(--display);
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.brand-place {
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.3;
  letter-spacing: 0.13em;
  opacity: 0.7;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav > a {
  color: #e7eeee;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.site-nav > a:hover {
  color: var(--aqua);
}

.nav-actions,
.cta-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  align-items: center;
  justify-content: center;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, color 160ms ease, background-color 160ms ease,
    border-color 160ms ease;
}

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

.button-small {
  min-height: 42px;
  padding-inline: 16px;
  font-size: 12px;
}

.button-large {
  min-height: 56px;
  padding-inline: 26px;
}

.button-call {
  color: #17110d;
  background: var(--signal);
  border-color: var(--signal);
}

.button-call:hover {
  color: #100c09;
  background: #ff7a41;
  border-color: #ff7a41;
}

.button-secondary,
.button-ghost {
  color: var(--white);
  background: transparent;
  border-color: rgb(255 255 255 / 42%);
}

.button-secondary:hover,
.button-ghost:hover {
  color: var(--deep);
  background: var(--white);
  border-color: var(--white);
}

.button-outline {
  color: var(--deep);
  background: transparent;
  border-color: #738589;
}

.button-outline:hover {
  color: var(--white);
  background: var(--deep);
  border-color: var(--deep);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 810px;
  padding-top: 80px;
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgb(7 24 29 / 92%) 0%, rgb(7 24 29 / 71%) 48%, rgb(7 24 29 / 22%) 78%),
    linear-gradient(0deg, rgb(7 24 29 / 78%) 0%, transparent 36%),
    url("/assets/photos/hero-chrome-detail.webp");
  background-position: center;
  background-size: cover;
  transform: scale(1.015);
}

.hero-image::after {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgb(255 255 255 / 3%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 3%) 1px, transparent 1px);
  background-size: 80px 80px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.hero-scan {
  position: absolute;
  inset: 80px 0 0;
  overflow: hidden;
  pointer-events: none;
}

.scan-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 62%;
  width: 2px;
  background: linear-gradient(transparent 5%, var(--aqua) 22%, #fff 52%, var(--aqua) 78%, transparent 95%);
  box-shadow: 0 0 22px 5px rgb(124 200 198 / 35%);
  animation: scan 8s cubic-bezier(0.65, 0, 0.35, 1) infinite alternate;
}

.scan-line::before {
  position: absolute;
  top: 22%;
  left: -11px;
  width: 22px;
  height: 22px;
  border: 1px solid var(--aqua);
  border-radius: 50%;
  content: "";
}

@keyframes scan {
  0% {
    transform: translateX(-90px);
    opacity: 0.45;
  }
  100% {
    transform: translateX(110px);
    opacity: 1;
  }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 650px;
  padding-block: 112px 90px;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: end;
  gap: 80px;
}

.eyebrow,
.mono-label {
  font-family: var(--mono);
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  margin: 0 0 24px;
  color: #c8d5d5;
  align-items: center;
  gap: 10px;
}

.eyebrow span {
  width: 34px;
  height: 2px;
  background: var(--signal);
}

.eyebrow-dark {
  color: #526569;
}

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

h1,
h2 {
  margin-bottom: 22px;
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  font-size: clamp(54px, 6.5vw, 92px);
}

h2 {
  font-size: clamp(42px, 4.8vw, 68px);
}

h3 {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.hero-lede {
  max-width: 660px;
  margin-bottom: 30px;
  color: #d2dddd;
  font-size: 18px;
  line-height: 1.7;
}

.cta-note {
  margin: 14px 0 0;
  color: #a9baba;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.finish-card {
  padding: 26px;
  background: rgb(10 31 36 / 88%);
  border: 1px solid rgb(255 255 255 / 18%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(13px);
}

.finish-card .mono-label {
  margin-bottom: 20px;
  color: var(--aqua);
}

.finish-row {
  display: grid;
  padding: 18px 0;
  border-top: 1px solid rgb(255 255 255 / 13%);
  grid-template-columns: 32px 1fr;
  align-items: baseline;
}

.finish-row span {
  color: var(--signal);
  font-family: var(--mono);
  font-size: 10px;
}

.finish-row strong {
  font-size: 16px;
}

.finish-row em {
  grid-column: 2;
  color: #95a9aa;
  font-size: 12px;
  font-style: normal;
}

.finish-status {
  display: flex;
  padding-top: 18px;
  border-top: 1px solid rgb(255 255 255 / 13%);
  color: #cbd8d8;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 10px var(--aqua);
}

.hero-bottom {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: 58px;
  padding-inline: max(24px, calc((100% - 1180px) / 2));
  border-top: 1px solid rgb(255 255 255 / 12%);
  align-items: center;
  justify-content: space-between;
  color: #8ea2a4;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-light {
  background: var(--aluminum);
}

.intro {
  padding: 110px 0 90px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 780px);
  justify-content: space-between;
  gap: 70px;
}

.section-index {
  padding-top: 12px;
  border-top: 3px solid var(--signal);
  color: #586b6f;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-lede {
  max-width: 740px;
  margin-bottom: 0;
  color: #506267;
  font-size: 19px;
}

.services,
.process,
.questions {
  padding: 110px 0;
}

.section-heading {
  display: grid;
  margin-bottom: 52px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.65fr);
  align-items: end;
  gap: 60px;
}

.section-heading h2 {
  max-width: 800px;
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 4px;
  color: #5e6f73;
}

.service-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
}

.service-card-wide {
  grid-row: span 2;
  min-height: 760px;
}

.service-card img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.service-card-wide img {
  object-position: 56% center;
}

.service-card:not(.service-card-wide) {
  min-height: 371px;
}

.service-card:not(.service-card-wide) img {
  object-position: center 44%;
}

.service-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgb(7 25 30 / 94%) 0%, rgb(7 25 30 / 42%) 57%, transparent 82%);
  content: "";
}

.service-card:hover img {
  transform: scale(1.035);
}

.service-card-accent::before {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 72px;
  height: 6px;
  background: var(--signal);
  content: "";
}

.service-copy {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px;
}

.service-copy .mono-label {
  margin-bottom: 12px;
  color: var(--aqua);
}

.service-copy p:last-child {
  max-width: 560px;
  margin-bottom: 0;
  color: #c8d4d4;
  font-size: 14px;
}

.inspection {
  position: relative;
  min-height: 750px;
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
}

.inspection-photo {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgb(8 27 32 / 97%) 0%, rgb(8 27 32 / 91%) 48%, rgb(8 27 32 / 44%) 100%),
    url("/assets/photos/panel-reflection.webp");
  background-position: center;
  background-size: cover;
}

.inspection-photo::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 66%;
  width: 1px;
  background: linear-gradient(transparent, var(--aqua), transparent);
  box-shadow: 0 0 35px 8px rgb(124 200 198 / 20%);
  content: "";
}

.inspection-grid {
  position: relative;
  display: grid;
  min-height: 750px;
  padding-block: 110px;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 100px;
}

.inspection-copy h2 {
  max-width: 540px;
}

.inspection-copy > p:last-child {
  max-width: 520px;
  margin-bottom: 0;
  color: #b8c7c8;
  font-size: 17px;
}

.inspection-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.inspection-list li {
  display: grid;
  padding: 22px 0;
  border-top: 1px solid rgb(255 255 255 / 17%);
  grid-template-columns: 46px 150px 1fr;
  align-items: baseline;
}

.inspection-list li:last-child {
  border-bottom: 1px solid rgb(255 255 255 / 17%);
}

.inspection-list span {
  color: var(--signal);
  font-family: var(--mono);
  font-size: 10px;
}

.inspection-list strong {
  font-size: 16px;
}

.inspection-list em {
  color: #a9baba;
  font-size: 13px;
  font-style: normal;
}

.process-heading {
  grid-template-columns: minmax(0, 1fr) auto;
}

.cta-row-dark {
  justify-content: flex-end;
}

.process-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(3, 1fr);
}

.process-list li {
  min-height: 280px;
  padding: 30px 34px 32px;
  border-left: 1px solid var(--line);
}

.process-list li:last-child {
  border-right: 1px solid var(--line);
}

.process-number {
  display: block;
  margin-bottom: 80px;
  color: var(--signal-deep);
  font-family: var(--mono);
  font-size: 12px;
}

.process-list p {
  margin-bottom: 0;
  color: #5f6f73;
  font-size: 14px;
}

.section-steel {
  background: var(--steel);
}

.questions-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
}

.questions-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.questions-intro > p:not(.eyebrow) {
  max-width: 440px;
  color: #56686c;
}

.questions-intro .cta-row {
  margin-top: 30px;
  justify-content: flex-start;
}

.faq-list details {
  border-top: 1px solid #9eacad;
}

.faq-list details:last-child {
  border-bottom: 1px solid #9eacad;
}

.faq-list summary {
  display: flex;
  min-height: 90px;
  padding: 22px 0;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary span {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border: 1px solid #849698;
  border-radius: 50%;
  place-items: center;
  font-family: var(--mono);
  font-weight: 400;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

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

.faq-list details p {
  max-width: 680px;
  padding: 0 56px 26px 0;
  color: #526569;
}

.final-cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
  text-align: center;
}

.final-cta::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgb(255 255 255 / 3%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 3%) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
}

.final-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 650px;
  height: 220px;
  border: 1px solid rgb(124 200 198 / 25%);
  border-radius: 50%;
  box-shadow: 0 0 100px rgb(124 200 198 / 12%), inset 0 0 100px rgb(124 200 198 / 7%);
  transform: translate(-50%, -50%) rotate(-4deg);
}

.final-cta-inner {
  position: relative;
}

.final-cta .mono-label {
  color: var(--aqua);
}

.final-cta h2 {
  max-width: 920px;
  margin-inline: auto;
}

.final-cta-inner > p:not(.mono-label) {
  color: #bccaca;
  font-size: 18px;
}

.cta-row-center {
  margin-top: 30px;
  justify-content: center;
}

.site-footer {
  padding: 70px 0 26px;
  color: #dbe5e5;
  background: #081b20;
}

.footer-grid {
  display: grid;
  padding-bottom: 52px;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  align-items: start;
  gap: 50px;
}

.footer-brand {
  width: max-content;
  grid-template-columns: 52px 1fr;
}

.footer-brand .brand-name {
  font-size: 22px;
}

.footer-location .mono-label {
  margin-bottom: 5px;
  color: #849b9d;
}

.footer-location p:last-child {
  margin-bottom: 0;
}

.footer-actions {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 10px;
}

.footer-actions a {
  color: #c4d2d2;
  text-decoration-color: #56777a;
  text-underline-offset: 5px;
}

.footer-actions .footer-call {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  padding-top: 24px;
  border-top: 1px solid rgb(255 255 255 / 11%);
  justify-content: space-between;
  gap: 30px;
  color: #82989b;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin-bottom: 0;
}

.mobile-sticky {
  display: none;
}

@media (max-width: 1120px) {
  .site-nav {
    gap: 16px;
  }

  .site-nav > a {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 36px;
  }

  .inspection-grid {
    gap: 55px;
  }

  .questions-grid {
    gap: 60px;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100% - 34px, 680px);
  }

  html {
    scroll-padding-top: 70px;
  }

  .header-inner {
    min-height: 70px;
  }

  .menu-toggle {
    display: flex;
    padding: 8px 0;
    border: 0;
    align-items: center;
    gap: 10px;
    color: var(--white);
    background: transparent;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .menu-toggle-lines,
  .menu-toggle-lines::before,
  .menu-toggle-lines::after {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    content: "";
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle-lines {
    position: relative;
  }

  .menu-toggle-lines::before {
    position: absolute;
    top: -6px;
  }

  .menu-toggle-lines::after {
    position: absolute;
    top: 6px;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-lines {
    background: transparent;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-lines::before {
    top: 0;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-lines::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 70px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    padding: 34px max(17px, calc((100vw - 680px) / 2));
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    color: var(--white);
    background: #081c21;
    transform: translateX(100%);
    transition: transform 220ms ease;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav > a {
    display: block;
    padding: 17px 0;
    border-bottom: 1px solid rgb(255 255 255 / 12%);
    font-size: 21px;
  }

  .nav-actions {
    margin-top: 30px;
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .nav-actions .button {
    min-height: 52px;
  }

  .hero {
    min-height: auto;
    padding-top: 70px;
  }

  .hero-image {
    background-image: linear-gradient(0deg, rgb(7 24 29 / 96%) 0%, rgb(7 24 29 / 66%) 65%, rgb(7 24 29 / 26%) 100%),
      url("/assets/photos/hero-chrome-detail.webp");
    background-position: 62% center;
  }

  .hero-grid {
    min-height: 780px;
    padding-block: 140px 92px;
    grid-template-columns: 1fr;
    align-content: end;
    gap: 40px;
  }

  .finish-card {
    max-width: 500px;
  }

  .hero-bottom {
    display: none;
  }

  .intro-grid,
  .section-heading,
  .inspection-grid,
  .questions-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    gap: 38px;
  }

  .section-heading,
  .inspection-grid,
  .questions-grid {
    gap: 35px;
  }

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

  .service-card-wide,
  .service-card:not(.service-card-wide) {
    min-height: 520px;
    grid-row: auto;
  }

  .inspection-grid {
    min-height: auto;
  }

  .inspection-list li {
    grid-template-columns: 42px 120px 1fr;
  }

  .process-heading {
    align-items: start;
  }

  .process-heading .cta-row {
    justify-content: flex-start;
  }

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

  .process-list li,
  .process-list li:last-child {
    min-height: 0;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .process-number {
    margin-bottom: 35px;
  }

  .questions-intro {
    position: static;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 60px;
  }

  .brand {
    min-width: 0;
    grid-template-columns: 38px 1fr;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 15px;
  }

  .brand-place {
    font-size: 7px;
  }

  .menu-toggle-label {
    display: none;
  }

  .hero-grid {
    min-height: 770px;
    padding-block: 100px 60px;
  }

  h1 {
    font-size: clamp(46px, 14.5vw, 68px);
  }

  h2 {
    font-size: clamp(39px, 11vw, 55px);
  }

  .hero-lede {
    font-size: 16px;
  }

  .hero-copy .cta-row,
  .cta-row-dark,
  .cta-row-center {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-copy .button,
  .cta-row-center .button {
    width: 100%;
  }

  .finish-card {
    padding: 20px;
  }

  .intro,
  .services,
  .process,
  .questions,
  .final-cta {
    padding-block: 78px;
  }

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

  .service-card-wide,
  .service-card:not(.service-card-wide) {
    min-height: 440px;
  }

  .service-copy {
    padding: 25px;
  }

  .inspection-grid {
    padding-block: 85px;
  }

  .inspection-list li {
    grid-template-columns: 34px 1fr;
  }

  .inspection-list em {
    margin-top: 4px;
    grid-column: 2;
  }

  .questions-intro .cta-row {
    align-items: stretch;
  }

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

  .footer-brand,
  .footer-location,
  .footer-actions {
    grid-column: 1;
  }

  .footer-actions {
    align-items: flex-start;
  }

  .mobile-sticky {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: 60px;
    border-top: 1px solid rgb(255 255 255 / 16%);
    grid-template-columns: 1.15fr 0.85fr;
  }

  .mobile-sticky a {
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-call {
    color: #17110d;
    background: var(--signal);
  }

  .mobile-book {
    color: var(--white);
    background: var(--deep);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
