@font-face {
  font-family: "Rubik";
  src: url("/assets/rubik-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  unicode-range: U+0400-052F, U+2116;
}

@font-face {
  font-family: "Rubik";
  src: url("/assets/rubik-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
}

@font-face {
  font-family: "Unbounded";
  src: url("/assets/unbounded-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  unicode-range: U+0400-052F, U+2116;
}

@font-face {
  font-family: "Unbounded";
  src: url("/assets/unbounded-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --ink: #17191a;
  --ink-deep: #0c0e0f;
  --ink-soft: #232627;
  --paper: #eceae5;
  --paper-muted: #c2c1bc;
  --line: rgba(255, 255, 255, 0.16);
  --red: #d43b3f;
  --red-bright: #f04b4f;
  --green: #7cd5a5;
  --shell: 1360px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: "Rubik", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--red);
  color: #fff;
}

button,
input {
  font: inherit;
  letter-spacing: 0;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: #fff;
  color: #111;
}

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

.scroll-progress {
  position: fixed;
  z-index: 120;
  inset: 0 0 auto;
  height: 3px;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.08);
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--red-bright);
}

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 80px), var(--shell));
  min-height: 104px;
  transform: translateX(-50%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  width: max-content;
}

.brand__mark {
  display: block;
  width: 112px;
  height: 64px;
  overflow: hidden;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.18);
}

.brand__label {
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 42px;
}

.site-nav a,
.header-phone {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 600;
  transition: color 180ms ease;
}

.site-nav a:hover,
.header-phone:hover {
  color: #fff;
}

.header-phone {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 14px;
  color: #fff;
}

.icon-arrow {
  color: var(--red-bright);
  font-size: 20px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 780px;
  height: 89svh;
  max-height: 980px;
  overflow: hidden;
  isolation: isolate;
  background: #101213;
}

.hero__media,
.hero__veil,
.hero__shine,
.hero__word {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: -4;
  overflow: hidden;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.035);
  will-change: transform;
}

.hero__veil {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(9, 11, 12, 0.94) 0%, rgba(9, 11, 12, 0.72) 38%, rgba(9, 11, 12, 0.08) 72%),
    linear-gradient(0deg, rgba(8, 10, 11, 0.72) 0%, transparent 36%);
}

.hero__shine {
  z-index: -2;
  left: 54%;
  width: 16%;
  transform: skewX(-16deg) translateX(-500%);
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero__word {
  z-index: -1;
  top: auto;
  right: -24px;
  bottom: 58px;
  left: auto;
  height: auto;
  color: rgba(255, 255, 255, 0.055);
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 144px;
  font-weight: 800;
  line-height: 0.78;
  white-space: nowrap;
  user-select: none;
}

.hero__content {
  align-self: center;
  width: min(calc(100% - 80px), var(--shell));
  margin: 78px auto 0;
}

.hero__eyebrow,
.section-index {
  margin: 0 0 22px;
  color: var(--red-bright);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.booking__intro h2,
.contacts__head h2 {
  margin: 0;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 72px;
  font-weight: 800;
  line-height: 1.04;
  text-transform: uppercase;
}

.hero-title-line {
  display: block;
  overflow: hidden;
}

.hero-title-line span {
  display: block;
  will-change: transform;
}

.hero h1 .hero-title-line:last-child {
  color: rgba(255, 255, 255, 0.56);
}

.hero__lead {
  max-width: 540px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 19px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 0 25px;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button--primary,
.button--submit {
  background: var(--red);
  color: #fff;
}

.button--primary:hover,
.button--submit:hover {
  background: var(--red-bright);
}

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

.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.82);
}

.hero__meta {
  position: absolute;
  right: max(40px, calc((100% - var(--shell)) / 2));
  bottom: 42px;
  display: flex;
  gap: 30px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: max(40px, calc((100% - var(--shell)) / 2));
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero__scroll span {
  position: relative;
  display: block;
  width: 42px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
}

.hero__scroll span::after {
  position: absolute;
  inset: 0;
  content: "";
  transform: translateX(-100%);
  background: var(--red-bright);
  animation: scroll-line 1.9s ease-in-out infinite;
}

@keyframes scroll-line {
  50%, 100% { transform: translateX(100%); }
}

.section {
  position: relative;
  padding: 116px 0;
}

.section-shell {
  width: min(calc(100% - 80px), var(--shell));
  margin: 0 auto;
}

.section-index {
  display: flex;
  gap: 16px;
  align-items: center;
}

.section-index span {
  color: rgba(255, 255, 255, 0.4);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.65fr);
  gap: 80px;
  align-items: end;
}

.section-heading h2,
.booking__intro h2,
.contacts__head h2 {
  font-size: 48px;
}

.section-heading h2 em,
.booking__intro h2 em,
.contacts__head h2 em {
  color: rgba(255, 255, 255, 0.43);
  font-style: normal;
}

.section-heading p,
.booking__intro > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 18px;
}

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

.service-list {
  margin-top: 84px;
  border-top: 1px solid var(--line);
}

.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr 80px;
  width: 100%;
  min-height: 150px;
  align-items: center;
  padding: 20px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--paper);
  text-align: left;
  cursor: pointer;
  isolation: isolate;
}

.service-row::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  transform: scaleY(0);
  transform-origin: bottom;
  background: var(--red);
  transition: transform 420ms cubic-bezier(.2,.8,.2,1);
}

.service-row:hover::before,
.service-row.is-active::before {
  transform: scaleY(1);
}

.service-row__number {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
}

.service-row__copy {
  display: flex;
  gap: 30px;
  align-items: baseline;
}

.service-row__copy strong {
  min-width: 350px;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 30px;
  text-transform: uppercase;
}

.service-row__copy small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 16px;
}

.service-row:hover .service-row__copy small,
.service-row.is-active .service-row__copy small {
  color: rgba(255, 255, 255, 0.86);
}

.service-row__action {
  justify-self: end;
  font-size: 28px;
  transition: transform 300ms ease;
}

.service-row:hover .service-row__action,
.service-row.is-active .service-row__action {
  transform: translate(5px, -5px);
}

.booking {
  overflow: hidden;
  background: #e9e7e1;
  color: #17191a;
}

.booking__backdrop {
  position: absolute;
  top: 56px;
  right: -24px;
  color: rgba(23, 25, 26, 0.045);
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 130px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.booking__layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(520px, 1.2fr);
  gap: 100px;
  align-items: start;
}

.booking .section-index {
  color: var(--red);
}

.booking .section-index span {
  color: rgba(23, 25, 26, 0.4);
}

.booking__intro h2 em {
  color: rgba(23, 25, 26, 0.4);
}

.booking__intro > p {
  max-width: 470px;
  margin-top: 28px;
  color: rgba(23, 25, 26, 0.64);
}

.booking__direct {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  margin-top: 50px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(23, 25, 26, 0.45);
  font-size: 22px;
  font-weight: 700;
}

.booking-panel {
  position: relative;
  padding: 42px;
  border: 1px solid rgba(23, 25, 26, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.43);
  box-shadow: 0 30px 70px rgba(32, 25, 20, 0.08);
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 18px;
  font-weight: 800;
}

.service-switch {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 58px;
  padding: 4px;
  border-radius: 4px;
  background: rgba(23, 25, 26, 0.09);
}

.service-switch__indicator {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc(50% - 4px);
  border-radius: 3px;
  background: var(--ink);
  box-shadow: 0 8px 24px rgba(23, 25, 26, 0.16);
  transition: transform 420ms cubic-bezier(.2,.8,.2,1);
}

.service-switch.is-repair .service-switch__indicator {
  transform: translateX(100%);
}

.service-switch label {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-weight: 700;
  transition: color 240ms ease;
}

.service-switch label:has(input:checked) {
  color: #fff;
}

.service-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.vehicle-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 130px;
  gap: 15px;
  overflow: hidden;
  margin-top: 34px;
}

.vehicle-fields.is-hidden {
  pointer-events: none;
}

.field {
  min-width: 0;
}

.field label {
  display: block;
  margin-bottom: 9px;
  color: rgba(23, 25, 26, 0.62);
  font-size: 13px;
  font-weight: 700;
}

.field input {
  width: 100%;
  height: 58px;
  padding: 0 15px;
  border: 1px solid rgba(23, 25, 26, 0.21);
  border-radius: 4px;
  outline: 0;
  background: rgba(255, 255, 255, 0.72);
  color: #17191a;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.field input:focus {
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(212, 59, 63, 0.12);
}

.field input[aria-invalid="true"] {
  border-color: var(--red);
}

.field-error {
  display: block;
  min-height: 20px;
  padding-top: 5px;
  color: #b62c31;
  font-size: 12px;
}

.field--phone {
  margin-top: 14px;
}

.field--phone input {
  font-size: 20px;
  font-weight: 700;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.button--submit {
  width: 100%;
  min-height: 62px;
  margin-top: 20px;
}

.button--submit:disabled {
  cursor: wait;
  opacity: 0.66;
}

.button--submit.is-loading span {
  animation: loading-arrow 760ms ease-in-out infinite alternate;
}

@keyframes loading-arrow {
  to { transform: translateX(7px); }
}

.form-consent {
  margin: 16px 0 0;
  color: rgba(23, 25, 26, 0.51);
  font-size: 12px;
}

.form-consent a {
  border-bottom: 1px solid currentColor;
}

.form-result {
  min-height: 360px;
  place-content: center;
  text-align: center;
}

.form-result:not([hidden]) {
  display: grid;
}

.result-mark {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 28px;
}

.form-result.is-success .result-mark {
  background: #23764b;
}

.form-result.is-error .result-mark {
  background: var(--red);
}

.result-kicker {
  margin-bottom: 12px !important;
  color: rgba(23, 25, 26, 0.5) !important;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.form-result h3 {
  margin: 0 0 12px;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 25px;
  text-transform: uppercase;
}

.form-result p {
  margin: 0;
  color: rgba(23, 25, 26, 0.62);
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.result-actions a {
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}

.contacts {
  background: #d43b3f;
  color: #fff;
}

.contacts .section-index {
  color: #fff;
}

.contacts .section-index span {
  color: rgba(255, 255, 255, 0.52);
}

.contacts__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}

.contacts__head h2 em {
  color: rgba(255, 255, 255, 0.54);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 76px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.contact-grid > div {
  min-height: 160px;
  padding: 26px 26px 26px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.contact-grid > div:not(:first-child) {
  padding-left: 26px;
}

.contact-grid > div:last-child {
  border-right: 0;
}

.contact-label {
  display: block;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-grid strong,
.contact-grid a {
  font-size: 22px;
  font-weight: 700;
}

.map-frame {
  position: relative;
  min-height: 470px;
  margin-top: 38px;
  overflow: hidden;
  border-radius: 6px;
  background: #dedbd4;
}

.map-frame iframe {
  width: 100%;
  height: 470px;
  border: 0;
  filter: grayscale(1) contrast(1.05);
}

.map-frame__label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 13px 16px;
  border-radius: 4px;
  background: rgba(18, 20, 21, 0.92);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.map-frame__label span {
  color: var(--red-bright);
  font-size: 11px;
  font-weight: 800;
}

.map-frame__label strong {
  font-size: 13px;
  text-transform: uppercase;
}

.site-footer {
  overflow: hidden;
  padding: 86px max(40px, calc((100% - var(--shell)) / 2)) 34px;
  background: var(--ink-deep);
}

.footer-word {
  color: rgba(255, 255, 255, 0.93);
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 118px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.footer-meta {
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.footer-meta a:hover {
  color: #fff;
}

.legal-page {
  background: #e9e7e1;
  color: #17191a;
}

.legal-shell {
  width: min(calc(100% - 48px), 820px);
  margin: 0 auto;
  padding: 70px 0 100px;
}

.legal-back {
  display: inline-block;
  margin-bottom: 70px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
}

.legal-shell .section-index {
  color: var(--red);
}

.legal-shell h1 {
  margin: 0 0 36px;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 44px;
  line-height: 1.08;
  text-transform: uppercase;
}

.legal-shell h2 {
  margin-top: 44px;
}

.legal-shell p {
  color: rgba(23, 25, 26, 0.72);
  font-size: 18px;
}

.legal-shell a {
  font-weight: 700;
}

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

.booking :focus-visible,
.legal-page :focus-visible {
  outline-color: var(--red);
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
    width: min(calc(100% - 48px), var(--shell));
  }

  .site-nav {
    display: none;
  }

  .hero__content,
  .section-shell {
    width: min(calc(100% - 48px), var(--shell));
  }

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

  .hero__word {
    font-size: 108px;
  }

  .booking__layout {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .booking__intro {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px 50px;
  }

  .booking__intro .section-index {
    grid-column: 1 / -1;
  }

  .booking__intro > p,
  .booking__direct {
    align-self: end;
  }

  .booking__direct {
    justify-self: start;
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 80px;
    width: calc(100% - 32px);
  }

  .brand {
    gap: 8px;
  }

  .brand__mark {
    width: 84px;
    height: 50px;
  }

  .brand__label {
    padding-left: 8px;
    font-size: 9px;
  }

  .header-phone span:first-child {
    display: none;
  }

  .header-phone .icon-arrow {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
  }

  .hero {
    min-height: 670px;
    height: 86svh;
    max-height: 830px;
  }

  .hero__media img {
    object-position: 64% center;
  }

  .hero__veil {
    background:
      linear-gradient(90deg, rgba(8, 10, 11, 0.9) 0%, rgba(8, 10, 11, 0.55) 72%, rgba(8, 10, 11, 0.26) 100%),
      linear-gradient(0deg, rgba(8, 10, 11, 0.85) 0%, transparent 46%);
  }

  .hero__content,
  .section-shell {
    width: calc(100% - 32px);
  }

  .hero__content {
    align-self: end;
    margin: 0 auto 108px;
  }

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

  .hero__lead {
    max-width: 390px;
    margin-top: 20px;
    font-size: 16px;
  }

  .hero__actions {
    gap: 22px;
    margin-top: 26px;
  }

  .button {
    min-height: 52px;
    gap: 16px;
    padding: 0 19px;
  }

  .text-link {
    font-size: 13px;
  }

  .hero__meta {
    right: 16px;
    bottom: 26px;
  }

  .hero__meta span:last-child,
  .hero__scroll,
  .hero__word {
    display: none;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading h2,
  .booking__intro h2,
  .contacts__head h2 {
    font-size: 34px;
  }

  .section-heading p,
  .booking__intro > p {
    font-size: 16px;
  }

  .service-list {
    margin-top: 50px;
  }

  .service-row {
    grid-template-columns: 42px 1fr 32px;
    min-height: 126px;
  }

  .service-row__copy {
    display: block;
  }

  .service-row__copy strong {
    display: block;
    min-width: 0;
    font-size: 21px;
  }

  .service-row__copy small {
    display: block;
    margin-top: 7px;
    font-size: 13px;
  }

  .booking__backdrop {
    display: none;
  }

  .booking__layout {
    gap: 46px;
  }

  .booking__intro {
    display: block;
  }

  .booking__intro > p {
    margin-top: 22px;
  }

  .booking__direct {
    margin-top: 30px;
    font-size: 18px;
  }

  .booking-panel {
    padding: 24px 18px;
  }

  .vehicle-fields {
    grid-template-columns: 1fr 1fr;
  }

  .field--year {
    grid-column: 1 / -1;
  }

  .contacts__head {
    display: block;
  }

  .contacts__head .button {
    margin-top: 28px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .contact-grid > div,
  .contact-grid > div:not(:first-child) {
    min-height: 0;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  }

  .contact-grid > div:last-child {
    border-bottom: 0;
  }

  .contact-label {
    margin-bottom: 10px;
  }

  .contact-grid strong,
  .contact-grid a {
    font-size: 19px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 360px;
    height: 360px;
  }

  .site-footer {
    padding: 62px 16px 26px;
  }

  .footer-word {
    font-size: 54px;
  }

  .footer-meta {
    flex-direction: column;
    gap: 14px;
    margin-top: 30px;
  }

  .legal-shell h1 {
    font-size: 32px;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 36px;
  }

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

  .vehicle-fields {
    grid-template-columns: 1fr;
  }

  .field--year {
    grid-column: auto;
  }
}

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

  .hero__media img {
    transform: none;
  }
}
