:root {
  --ink: #101214;
  --ink-2: #181b1d;
  --ink-3: #282c2f;
  --paper: #f3f4f1;
  --white: #ffffff;
  --muted: #73797d;
  --line: #d6d9d7;
  --red: #e12b27;
  --red-dark: #b91f1b;
  --mint: #9be3c0;
  --compare: 52%;
  --header-height: 78px;
  color-scheme: light;
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-synthesis: none;
  letter-spacing: 0;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  background: var(--ink);
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

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

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

.hero-media > picture,
.hover-repair picture,
.loaner-media picture,
.compare > picture,
.compare-before picture {
  display: contents;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.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: 200;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
  transform: translateY(-150%);
}

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

.page-shell {
  width: min(100% - 96px, 1440px);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 0 48px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 10, 11, 0.05);
  transition: background-color 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled,
.menu-open .site-header {
  background: rgba(9, 11, 12, 0.96);
  border-color: rgba(255, 255, 255, 0.1);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
}

.brand-name {
  color: var(--white);
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
}

.brand-name b {
  color: var(--red);
  font-weight: 750;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 650;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 5px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--white);
}

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

.header-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  font-weight: 750;
  transition: background-color 180ms ease;
}

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

.header-cta .icon {
  width: 17px;
  height: 17px;
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle .icon-close,
.menu-open .menu-toggle .icon-menu {
  display: none;
}

.menu-open .menu-toggle .icon-close {
  display: block;
}

.mobile-nav {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: none;
  align-content: center;
  gap: 0;
  padding: 110px 24px 40px;
  background: var(--ink);
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.mobile-nav a {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  min-height: 74px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 26px;
  font-weight: 700;
}

.mobile-nav a:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.mobile-nav a span {
  color: var(--red);
  font-size: 11px;
}

.hero-scroll {
  height: 96svh;
  min-height: 660px;
  position: relative;
  background: #080a0b;
}

.hero-sticky {
  position: relative;
  height: 100%;
  min-height: 660px;
  overflow: hidden;
  color: var(--white);
  background: #080a0b;
}

.hero-media,
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 50% 50%;
}

.hover-repair {
  --repair-radius-x: clamp(250px, 24vw, 420px);
  --repair-radius-y: clamp(165px, 25vh, 265px);
  --repair-lobe-x: clamp(175px, 17vw, 290px);
  --repair-lobe-y: clamp(120px, 18vh, 195px);
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: 0;
  -webkit-mask-image:
    radial-gradient(
      ellipse var(--repair-radius-x) var(--repair-radius-y) at var(--hover-x, 50%) var(--hover-y, 50%),
      #000 0%,
      rgba(0, 0, 0, 0.96) 30%,
      rgba(0, 0, 0, 0.7) 52%,
      rgba(0, 0, 0, 0.24) 70%,
      transparent 88%
    ),
    radial-gradient(
      ellipse var(--repair-lobe-x) var(--repair-lobe-y) at calc(var(--hover-x, 50%) - 7%) calc(var(--hover-y, 50%) + 3%),
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.52) 48%,
      transparent 86%
    ),
    radial-gradient(
      ellipse var(--repair-lobe-x) var(--repair-lobe-y) at calc(var(--hover-x, 50%) + 6%) calc(var(--hover-y, 50%) - 4%),
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.4) 46%,
      transparent 84%
    );
  mask-image:
    radial-gradient(
      ellipse var(--repair-radius-x) var(--repair-radius-y) at var(--hover-x, 50%) var(--hover-y, 50%),
      #000 0%,
      rgba(0, 0, 0, 0.96) 30%,
      rgba(0, 0, 0, 0.7) 52%,
      rgba(0, 0, 0, 0.24) 70%,
      transparent 88%
    ),
    radial-gradient(
      ellipse var(--repair-lobe-x) var(--repair-lobe-y) at calc(var(--hover-x, 50%) - 7%) calc(var(--hover-y, 50%) + 3%),
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.52) 48%,
      transparent 86%
    ),
    radial-gradient(
      ellipse var(--repair-lobe-x) var(--repair-lobe-y) at calc(var(--hover-x, 50%) + 6%) calc(var(--hover-y, 50%) - 4%),
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.4) 46%,
      transparent 84%
    );
  pointer-events: none;
  will-change: opacity;
  transition: opacity 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .hero-media.is-hover-repairing .hover-repair {
    opacity: 1;
  }
}

.hero-media.is-touch-repairing .hover-repair {
  opacity: 1;
}

.hero-shade {
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(5, 7, 8, 0.93) 0%, rgba(5, 7, 8, 0.72) 25%, rgba(5, 7, 8, 0.13) 58%, rgba(5, 7, 8, 0.05) 100%),
    linear-gradient(0deg, rgba(5, 7, 8, 0.72) 0%, transparent 35%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 28px;
  padding-bottom: 30px;
  pointer-events: none;
}

.hero-copy > * {
  pointer-events: auto;
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.78);
}

.eyebrow i {
  width: 3px;
  height: 3px;
  background: var(--red);
  border-radius: 50%;
}

.hero-copy h1 {
  max-width: 780px;
  margin: 0;
  color: var(--white);
  font-size: 72px;
  font-weight: 750;
  line-height: 0.98;
}

.hero-lead {
  max-width: 560px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

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

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

.button-ghost {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(8, 10, 11, 0.12);
  color: var(--white);
}

.button-ghost:hover {
  border-color: var(--white);
  background: rgba(8, 10, 11, 0.5);
}

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

.button-light:hover {
  background: var(--mint);
}

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

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

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 92px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 24px;
  border-right: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item .icon {
  width: 18px;
  height: 18px;
  color: var(--red);
  stroke-width: 2.4;
}

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

.services {
  padding: 140px 0 80px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  gap: 96px;
  align-items: end;
  margin-bottom: 88px;
}

.section-heading h2,
.process-intro h2,
.insurance h2,
.loaner h2,
.contact h2 {
  margin: 0;
  font-size: 58px;
  font-weight: 750;
  line-height: 1.02;
}

.section-heading > p {
  margin: 0 0 4px;
  color: #5e6467;
  font-size: 16px;
  line-height: 1.65;
}

.service-list {
  border-bottom: 1px solid #bfc3c1;
}

.service-row {
  display: grid;
  grid-template-columns: 42px 66px minmax(190px, 0.7fr) minmax(300px, 1.2fr) 48px;
  align-items: center;
  gap: 28px;
  min-height: 154px;
  border-top: 1px solid #bfc3c1;
  transition: background-color 180ms ease, padding 180ms ease;
}

.service-row:hover {
  padding-inline: 18px;
  background: var(--white);
}

.service-number {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid #bfc3c1;
}

.service-icon .icon {
  width: 24px;
  height: 24px;
}

.service-row h3 {
  margin: 0;
  font-size: 26px;
  font-weight: 750;
}

.service-row h3 a {
  color: inherit;
  text-decoration: none;
}

.service-row p {
  margin: 0;
  color: #646a6d;
  font-size: 15px;
  line-height: 1.6;
}

.service-row > a {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid #bfc3c1;
  color: var(--ink);
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.service-row > a:hover,
.service-row > a:focus-visible {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.process {
  padding: 100px 0 150px;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(480px, 1.2fr);
  gap: 120px;
  margin-top: 22px;
}

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

.process-intro h2 {
  font-size: 46px;
}

.process-intro > p {
  max-width: 440px;
  margin: 24px 0 36px;
  color: #646a6d;
  font-size: 16px;
  line-height: 1.6;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  border-bottom: 2px solid var(--red);
}

.process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
  border-bottom: 1px solid #bfc3c1;
}

.process-steps li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  min-height: 174px;
  padding: 40px 0;
  border-top: 1px solid #bfc3c1;
}

.process-steps > li > span {
  display: grid;
  place-items: center;
  align-self: start;
  width: 50px;
  height: 50px;
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
}

.process-steps h3 {
  margin: 2px 0 10px;
  font-size: 25px;
}

.process-steps p {
  margin: 0;
  color: #646a6d;
  font-size: 15px;
  line-height: 1.6;
}

.insurance {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
  background: #111416;
  color: var(--white);
}

.insurance::before {
  content: "RCA";
  position: absolute;
  right: -20px;
  bottom: -70px;
  color: rgba(255, 255, 255, 0.025);
  font-size: 310px;
  font-weight: 850;
  line-height: 1;
  pointer-events: none;
}

.insurance-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.8fr);
  gap: 130px;
}

.section-kicker-light {
  color: var(--mint);
}

.insurance h2 {
  max-width: 700px;
}

.insurance-lead {
  max-width: 670px;
  margin: 28px 0 36px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.65;
}

.insurance-note {
  max-width: 530px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  line-height: 1.55;
}

.insurance-points {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.insurance-points > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.insurance-points .icon {
  width: 24px;
  height: 24px;
  color: var(--mint);
}

.insurance-points span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.55;
}

.insurance-points b {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 17px;
}

.loaner {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #dfe2df;
}

.loaner-media {
  position: absolute;
  inset: 0 0 0 45%;
  overflow: hidden;
}

.loaner-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #dfe2df 0, rgba(223, 226, 223, 0.9) 4%, transparent 34%);
}

.loaner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 61% 50%;
}

.loaner-content {
  position: relative;
  z-index: 2;
  min-height: 720px;
  display: grid;
  align-items: center;
}

.loaner-copy {
  max-width: 620px;
  padding: 90px 0;
}

.loaner h2 {
  font-size: 56px;
}

.loaner-copy > p:not(.section-kicker) {
  max-width: 510px;
  margin: 26px 0 34px;
  color: #545a5d;
  font-size: 17px;
  line-height: 1.65;
}

.before-after {
  padding: 140px 0;
  background: var(--ink);
  color: var(--white);
}

.section-heading-dark > p {
  color: rgba(255, 255, 255, 0.55);
}

.compare {
  --compare: 52%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  max-height: 780px;
  margin-inline: auto;
  background: #080a0b;
  border: 1px solid rgba(255, 255, 255, 0.18);
  user-select: none;
  touch-action: pan-y;
}

.compare img,
.compare-before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.compare img {
  object-fit: cover;
}

.compare-before {
  clip-path: inset(0 calc(100% - var(--compare)) 0 0);
}

.compare-before img {
  width: 100%;
}

.compare-label {
  position: absolute;
  top: 22px;
  z-index: 3;
  padding: 8px 11px;
  background: rgba(7, 9, 10, 0.82);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
}

.compare-label-before { left: 22px; }
.compare-label-after { right: 22px; }

.compare-divider {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: var(--compare);
  width: 2px;
  background: var(--white);
  transform: translateX(-1px);
  pointer-events: none;
}

.compare-divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background: var(--red);
  border: 2px solid var(--white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.compare-divider .icon {
  width: 17px;
  height: 17px;
  transform: rotate(90deg);
}

.compare-divider .icon:first-child {
  transform: rotate(90deg) scaleY(-1);
}

#compare-range {
  position: absolute;
  z-index: 5;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.contact {
  padding: 150px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 120px;
}

.contact-copy h2 {
  max-width: 660px;
  font-size: 52px;
}

.contact-copy > p:not(.section-kicker) {
  max-width: 560px;
  margin: 26px 0 42px;
  color: #646a6d;
  font-size: 16px;
  line-height: 1.65;
}

.contact-details {
  margin: 0;
  border-bottom: 1px solid #bfc3c1;
}

.contact-details > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  padding: 16px 0;
  border-top: 1px solid #bfc3c1;
}

.contact-details dt {
  color: #565c5f;
  font-size: 12px;
  font-weight: 700;
}

.contact-details dd {
  margin: 0;
  font-size: 14px;
  font-weight: 650;
}

.contact-details dd a {
  color: inherit;
  text-decoration: none;
  transition: color 160ms ease;
}

.contact-details dd a:hover,
.contact-details dd a:focus-visible {
  color: var(--red);
}

.contact-details address {
  font-style: normal;
}

.hours-list {
  display: grid;
  gap: 5px;
}

.contact-form {
  display: grid;
  gap: 22px;
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form > label,
.form-row label {
  display: grid;
  gap: 9px;
  color: #3f4447;
  font-size: 12px;
  font-weight: 750;
}

.form-optional {
  color: #858b8e;
  font-size: 10px;
  font-weight: 550;
  text-transform: uppercase;
}

.service-options {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.service-options legend {
  padding: 0;
  color: #3f4447;
  font-size: 12px;
  font-weight: 750;
}

.field-help {
  margin: 6px 0 11px;
  color: #7d8386;
  font-size: 11px;
  line-height: 1.4;
}

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

.service-option {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid #c7cbc9;
  border-radius: 2px;
  background: #fbfbfa;
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 650;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.service-option:hover,
.service-option:focus-within {
  border-color: var(--ink);
}

.service-option:has(input:checked) {
  border-color: var(--red);
  background: rgba(225, 43, 39, 0.05);
}

.service-option input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin: 0;
  accent-color: var(--red);
}

.other-service-field {
  display: grid;
  gap: 9px;
  margin-top: 12px;
  color: #3f4447;
  font-size: 12px;
  font-weight: 750;
}

.other-service-field[hidden] {
  display: none;
}

.contact-form input:not([type="checkbox"]):not([type="file"]),
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid #c7cbc9;
  border-radius: 2px;
  outline: 0;
  background: #fbfbfa;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form textarea {
  min-height: 116px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(16, 18, 20, 0.08);
}

.contact-form [aria-invalid="true"] {
  border-color: var(--red) !important;
}

.upload-field input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.upload-field > label {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 18px;
  border: 1px dashed #aeb3b0;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.upload-field > label:hover,
.upload-field input:focus-visible + label {
  border-color: var(--red);
  background: rgba(225, 43, 39, 0.035);
}

.upload-field .icon {
  color: var(--red);
}

.upload-field span {
  display: grid;
  gap: 3px;
}

.upload-field b {
  font-size: 13px;
}

.upload-field small {
  color: #7d8386;
  font-size: 11px;
  font-weight: 500;
}

.consent-note {
  margin: 0;
  color: #686e71;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
}

.form-submit {
  width: 100%;
  border: 0;
}

.form-submit-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.form-submit:disabled {
  opacity: 0.62;
  cursor: wait;
  transform: none;
}

.form-status {
  min-height: 18px;
  margin: -8px 0 0;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.4;
}

.site-footer {
  padding: 60px 0 22px;
  background: #090b0c;
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 70px;
  padding-bottom: 50px;
}

.footer-main > p {
  max-width: 530px;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.5;
}

.footer-main > p a {
  color: var(--white);
  text-decoration: none;
}

.footer-top {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.footer-top .icon {
  transform: rotate(-45deg);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 650;
}

.footer-bottom span:last-child {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom i {
  width: 3px;
  height: 3px;
  background: var(--red);
  border-radius: 50%;
}

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

@media (max-width: 1180px) {
  .page-shell {
    width: min(100% - 64px, 1280px);
  }

  .site-header {
    padding-inline: 32px;
  }

  .desktop-nav {
    gap: 20px;
  }

  .desktop-nav a {
    font-size: 12px;
  }

  .hero-copy h1 {
    font-size: 60px;
  }

  .section-heading {
    gap: 60px;
  }

  .service-row {
    grid-template-columns: 32px 58px minmax(170px, 0.65fr) minmax(260px, 1.2fr) 46px;
    gap: 20px;
  }

  .process-layout,
  .insurance-grid,
  .contact-grid {
    gap: 70px;
  }

  .loaner-media {
    inset-inline-start: 38%;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 72px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle,
  .mobile-nav {
    display: grid;
  }

  .menu-open .mobile-nav {
    opacity: 1;
    visibility: visible;
  }

  .hero-copy h1 {
    font-size: 54px;
  }

  .section-heading h2,
  .insurance h2,
  .loaner h2,
  .contact-copy h2 {
    font-size: 48px;
  }

  .service-row {
    grid-template-columns: 34px 52px 1fr 46px;
    min-height: 138px;
  }

  .service-row p {
    grid-column: 3 / 5;
    padding: 0 46px 22px 0;
  }

  .service-row h3 {
    align-self: end;
    padding-top: 24px;
  }

  .service-row > a {
    align-self: end;
    margin-top: 20px;
  }

  .service-number,
  .service-icon {
    grid-row: 1 / span 2;
  }

  .process-layout,
  .insurance-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .process-intro {
    position: static;
  }

  .insurance-grid {
    gap: 80px;
  }

  .loaner {
    min-height: 780px;
  }

  .loaner-media {
    inset: auto 0 0;
    height: 48%;
  }

  .loaner-media::after {
    background: linear-gradient(180deg, #dfe2df 0, rgba(223, 226, 223, 0.85) 8%, transparent 38%);
  }

  .loaner-content {
    min-height: 780px;
    align-items: start;
  }

  .loaner-copy {
    max-width: 700px;
    padding-top: 100px;
  }

  .contact-grid {
    gap: 70px;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 36px, 680px);
  }

  .site-header {
    padding-inline: 18px;
  }

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

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .hero-scroll {
    height: 80svh;
    min-height: 650px;
  }

  .hero-sticky {
    min-height: 650px;
  }

  .hero-media {
    background: #080a0b;
  }

  .hero-image {
    top: 63%;
    bottom: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    transform: translateY(-50%);
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(5, 7, 8, 0.96) 0%, rgba(5, 7, 8, 0.76) 32%, rgba(5, 7, 8, 0.02) 57%, rgba(5, 7, 8, 0.77) 76%, rgba(5, 7, 8, 0.95) 100%);
  }

  .hero-copy {
    justify-content: flex-start;
    padding-top: 102px;
    padding-bottom: 40px;
  }

  .eyebrow {
    margin-bottom: 13px;
    font-size: 9px;
  }

  .hero-copy h1 {
    max-width: 440px;
    font-size: 42px;
    line-height: 1.01;
  }

  .hero-copy h1 br {
    display: none;
  }

  .hero-lead {
    max-width: 450px;
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.45;
  }

  .hero-actions {
    width: 100%;
    gap: 8px;
    margin-top: 18px;
  }

  .hero-actions .button {
    min-height: 46px;
    padding-inline: 13px;
    font-size: 12px;
  }

  .hero-actions .button-primary {
    flex: 1 1 auto;
  }

  .hero-actions .button-ghost {
    flex: 0 0 auto;
  }

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

  .trust-item {
    min-height: 70px;
    justify-content: flex-start;
    padding: 15px 18px;
    border-bottom: 1px solid var(--line);
    font-size: 11px;
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .services {
    padding: 90px 0 50px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 55px;
  }

  .section-heading h2,
  .insurance h2,
  .loaner h2,
  .contact-copy h2 {
    font-size: 40px;
  }

  .section-heading > p {
    font-size: 14px;
  }

  .service-row {
    grid-template-columns: 30px 1fr 44px;
    gap: 13px;
    padding: 24px 0;
  }

  .service-row:hover {
    padding-inline: 10px;
  }

  .service-icon {
    display: none;
  }

  .service-number {
    grid-row: auto;
  }

  .service-row h3 {
    align-self: center;
    padding: 0;
    font-size: 22px;
  }

  .service-row > a {
    align-self: center;
    margin: 0;
  }

  .service-row p {
    grid-column: 2 / 4;
    padding: 0 0 4px;
    font-size: 13px;
  }

  .process {
    padding: 70px 0 95px;
  }

  .process-layout {
    gap: 55px;
  }

  .process-intro h2 {
    font-size: 36px;
  }

  .process-steps li {
    grid-template-columns: 55px 1fr;
    gap: 18px;
    min-height: 145px;
    padding: 28px 0;
  }

  .process-steps > li > span {
    width: 44px;
    height: 44px;
  }

  .process-steps h3 {
    font-size: 21px;
  }

  .insurance {
    padding: 90px 0;
  }

  .insurance-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 60px;
  }

  .insurance::before {
    font-size: 160px;
    bottom: -25px;
  }

  .insurance-lead {
    font-size: 15px;
  }

  .insurance-points > div {
    grid-template-columns: 32px 1fr;
  }

  .loaner,
  .loaner-content {
    min-height: 720px;
  }

  .loaner-copy {
    padding-top: 80px;
  }

  .loaner-media {
    height: 45%;
  }

  .loaner-media img {
    object-position: 57% 50%;
  }

  .loaner-copy > p:not(.section-kicker) {
    font-size: 15px;
  }

  .before-after {
    padding: 90px 0;
  }

  .compare {
    width: calc(100% + 36px);
    margin-left: -18px;
    border-inline: 0;
  }

  .compare-divider span {
    width: 46px;
    height: 46px;
  }

  .compare-label {
    top: 12px;
  }

  .compare-label-before { left: 12px; }
  .compare-label-after { right: 12px; }

  .contact {
    padding: 90px 0;
  }

  .contact-grid {
    gap: 55px;
  }

  .contact-form {
    gap: 18px;
    padding: 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .form-submit-actions {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr auto;
    gap: 24px;
  }

  .footer-main > p {
    grid-column: 1 / 3;
    grid-row: 2;
  }

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

@media (max-width: 420px) {
  .service-option-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: 37px;
  }

  .hero-lead {
    font-size: 13px;
  }

  .hero-actions .button {
    font-size: 11px;
  }

  .hero-actions .button .icon {
    width: 17px;
    height: 17px;
  }

  .hero-actions .button-primary {
    padding-inline: 10px;
  }

  .section-heading h2,
  .insurance h2,
  .loaner h2,
  .contact-copy h2 {
    font-size: 35px;
  }

  .trust-item {
    padding-inline: 12px;
  }
}

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

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

}
