:root {
  --ink: #101522;
  --navy: #17244a;
  --muted: #5f6675;
  --line: #e4e8ef;
  --soft: #f4f6f9;
  --white: #fff;
  --red: #e30613;
  --red-dark: #b9000b;
  --gold: #f0b429;
  --radius: 8px;
  --radius-lg: 22px;
  --shadow: 0 22px 55px rgba(16, 21, 34, .12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
}

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

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

@media (hover: hover) and (pointer: fine) {
  body.custom-cursor,
  body.custom-cursor * {
    cursor: none !important;
  }

  .custom-cursor__cursor {
    width: 25px;
    height: 25px;
    border-radius: 100%;
    border: 1px solid var(--red);
    transition: all 200ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    transform: translate(calc(-50% + 5px), -50%);
    z-index: 999991;
  }

  .custom-cursor__cursor-two {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: var(--red);
    opacity: .3;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: width .3s, height .3s, opacity .3s;
    z-index: 999991;
  }

  .custom-cursor__cursor.custom-cursor__hover {
    background: var(--red);
    opacity: .4;
  }

  .custom-cursor__cursor.custom-cursor--light {
    border-color: var(--white);
  }

  .custom-cursor__cursor-two.custom-cursor--light {
    background-color: var(--white);
    opacity: .65;
  }

  .custom-cursor__cursor.custom-cursor__hover.custom-cursor--light {
    background: var(--white);
    opacity: .42;
  }

  .custom-cursor__cursor-two.custom-cursor__innerhover {
    width: 25px;
    height: 25px;
    opacity: .4;
  }
}

p,
h1,
h2,
h3,
h4 {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 20;
  padding: .75rem 1rem;
  background: var(--ink);
  color: var(--white);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.topbar {
  background: #1d1d1d;
  color: var(--white);
  font-size: .93rem;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.topbar .container {
  min-height: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar__links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.topbar__social {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}

.topbar__social img {
  width: 16px;
  height: 16px;
}

.topbar__links > * {
  position: relative;
}

.topbar__links > * + *::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 50%;
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, .22);
  transform: translateY(-50%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #1d1d1d;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.nav {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  height: 54px;
  padding: 0 1.25rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 16px 34px rgba(227, 6, 19, .3);
  white-space: nowrap;
}

.nav__cta::before {
  content: "";
  display: none;
  width: 22px;
  height: 22px;
  background: currentColor;
  -webkit-mask: url("/assets/img/phone-call-icon-white.svg") center / contain no-repeat;
  mask: url("/assets/img/phone-call-icon-white.svg") center / contain no-repeat;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand__logo {
  width: auto;
  height: clamp(58px, 6.2vw, 74px);
  object-fit: contain;
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: transparent;
  border-radius: var(--radius);
  color: var(--white);
}

.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: .2rem;
  list-style: none;
}

.nav__links a {
  display: block;
  padding: .7rem .85rem;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, .92);
  font-weight: 750;
  font-size: .95rem;
}

.nav__links a:is(:hover, :focus),
.nav__links a[aria-current="page"] {
  color: var(--red);
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 7px;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .8rem 1.15rem;
  border: 0;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 15px 30px rgba(227, 6, 19, .24);
}

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

.button--dark {
  background: var(--ink);
  box-shadow: none;
}

.button::after {
  content: "→";
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-left: .7rem;
  border-radius: 50%;
  color: var(--white);
  background: #151515;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  background: #1d1d1d;
}

.hero--small {
  min-height: 560px;
}

.hero--small .hero__media {
  z-index: -3;
}

.hero--small .hero__media img {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(72vw, 1180px);
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: saturate(.95) contrast(1.08);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, .18) 18%, #000 44%);
  mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, .18) 18%, #000 44%);
  animation: hero-kenburns 10s ease-out both;
}

.hero--small .hero__content {
  width: min(var(--max), calc(100% - 32px));
  max-width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
  padding-top: 6.4rem;
  padding-bottom: 5.6rem;
}

.hero__media,
.cta-band__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

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

.hero__media {
  inset: 0;
  width: 100%;
  height: 100%;
  background: #1d1d1d;
  overflow: hidden;
  z-index: -3;
}

.hero__slide-image {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(72vw, 1180px);
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0;
  filter: saturate(.95) contrast(1.08);
  transform: scale(1.04);
  transition: opacity .75s ease, transform 5.5s ease;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, .18) 18%, #000 44%);
  mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, .18) 18%, #000 44%);
}

.hero__slide-image.is-active {
  opacity: .92;
  transform: scale(1.08);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 82% 34%, rgba(227, 6, 19, .2), transparent 18%),
    linear-gradient(90deg, rgba(29, 29, 29, 1) 0 34%, rgba(29, 29, 29, .92) 46%, rgba(29, 29, 29, .34) 100%);
}

.hero::before {
  display: none;
}

.hero__shell {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 760px);
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  min-height: inherit;
}

.hero__slider-nav {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.hero__slider-nav::before,
.hero__slider-nav::after {
  content: "";
  width: 4px;
  height: 78px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .32);
}

.hero__slider-nav button {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: rgba(255, 255, 255, .58);
  background: transparent;
  font: inherit;
  font-size: .72rem;
  font-weight: 900;
  cursor: pointer;
  position: relative;
  transition: color .2s ease, background .2s ease;
}

.hero__slider-nav button::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: .45;
}

.hero__slider-nav button span {
  display: none;
}

.hero__slider-nav button.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, .12);
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.hero__slider-nav button.is-active::before {
  color: var(--red);
  opacity: 1;
}

.hero__content {
  width: min(760px, 100%);
  padding: 7.4rem 0 5rem;
  position: relative;
  z-index: 3;
  max-width: calc(100vw - 120px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .9rem;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  font-size: .82rem;
  letter-spacing: .08em;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

h1 {
  max-width: 850px;
  font-size: clamp(2.8rem, 6vw, 4.9rem);
  line-height: 1.1;
  letter-spacing: 0;
  font-weight: 950;
}

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

.hero p {
  max-width: 720px;
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1.02rem, 2vw, 1.2rem);
}

.hero__actions {
  margin-top: 2rem;
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
}

.hero-card {
  margin-top: 2.2rem;
  width: min(560px, 100%);
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  backdrop-filter: none;
  border-radius: 0;
}

.hero-card img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 16px;
  clip-path: polygon(0 0, 100% 0, 86% 100%, 0 100%);
}

.hero-card strong {
  display: block;
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1.15;
}

.hero-card span {
  color: rgba(255, 255, 255, .85);
  font-weight: 750;
}

.stats {
  transform: translateY(-38%);
  position: relative;
  z-index: 2;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.stats__grid::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 10px;
  background: var(--red);
}

.stat {
  padding: 1.35rem;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  font-size: 1.55rem;
  color: var(--red);
  line-height: 1.1;
}

.stat span {
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: 90px 0;
}

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

.section--tight {
  padding-top: 30px;
}

.section--tight::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: min(48vw, 780px);
  background: url("/assets/img/about-half-car.webp") center right / cover no-repeat;
  z-index: 0;
  pointer-events: none;
}

.section--tight .container {
  position: relative;
  z-index: 1;
}

.section__head {
  max-width: 760px;
  margin-bottom: 2.3rem;
}

.section__head h2,
.content h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: 0;
}

.contact-panel h2 {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: 0;
}

.section__head p {
  margin-top: .9rem;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: min(6vw, 70px);
  align-items: stretch;
}

.section {
  position: relative;
  overflow: hidden;
}

.section::before {
  display: none;
}

.split--reverse {
  grid-template-columns: .95fr 1.05fr;
}

.media-card {
  position: relative;
  min-height: 0;
  align-self: stretch;
  margin-block: -15px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  clip-path: none;
  isolation: isolate;
}

.media-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(8, 13, 24, .22));
  pointer-events: none;
}

.media-card::before {
  display: none;
}

.why-choose .media-card {
  border-radius: var(--radius-lg);
  clip-path: none;
}

.why-choose .media-card::before,
.why-choose .media-card::after {
  display: none;
}

.why-choose .media-card img {
  min-height: 0;
  height: 100%;
}

.about-car {
  position: relative;
  min-height: 1px;
  margin-right: calc((100vw - min(var(--max), calc(100vw - 32px))) / -2);
  align-self: stretch;
}

.about-car img {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.content > * + * {
  margin-top: 1rem;
}

.content p,
.content li {
  color: var(--muted);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem 1rem;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.7rem;
  font-weight: 650;
  line-height: 1.62;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55rem;
  width: .8rem;
  height: .8rem;
  background: var(--red);
  clip-path: polygon(14% 44%, 0 60%, 40% 100%, 100% 20%, 84% 6%, 38% 68%);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  counter-reset: info-card;
}

.service-card,
.testimonial,
.offer-card,
.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  box-shadow: 0 10px 30px rgba(16, 21, 34, .06);
}

.info-card {
  position: relative;
  overflow: visible;
  background: transparent;
  color: var(--white);
  border: 0;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: none;
  isolation: isolate;
}

.info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 0, rgba(255, 255, 255, .08), transparent 28%),
    linear-gradient(145deg, #292929, #1f1f1f);
  clip-path: polygon(0 0, calc(100% - 102px) 0, calc(100% - 102px) 102px, 100% 102px, 100% 100%, 0 100%);
  box-shadow: 0 18px 50px rgba(16, 21, 34, .12);
  z-index: -1;
}

.info-card::after {
  counter-increment: info-card;
  content: "0" counter(info-card);
  position: absolute;
  top: 0;
  right: 0;
  width: 88px;
  height: 82px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border-radius: 8px;
  font-size: 2.3rem;
  line-height: 1;
  font-weight: 950;
  z-index: 2;
}

.info-card h3::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -38px;
  border-top: 1px dashed rgba(255, 255, 255, .25);
}

.info-card .eyebrow {
  margin-right: 102px;
}

.service-card {
  min-height: 390px;
  padding: 0;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  isolation: isolate;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card img {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin: -32px 0 1rem 1.35rem;
  padding: .55rem;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 14px 35px rgba(16, 21, 34, .16);
}

.service-card::before {
  content: "";
  display: block;
  height: 170px;
  background: var(--navy) center / cover no-repeat;
  clip-path: polygon(0 0, 100% 0, 100% 82%, 0 100%);
  filter: saturate(.95);
}

.service-card:nth-child(1)::before { background-image: linear-gradient(rgba(16, 21, 34, .16), rgba(16, 21, 34, .16)), url("/assets/img/car-repairs.webp"); }
.service-card:nth-child(2)::before { background-image: linear-gradient(rgba(16, 21, 34, .16), rgba(16, 21, 34, .16)), url("/assets/img/tyres.webp"); }
.service-card:nth-child(3)::before { background-image: linear-gradient(rgba(16, 21, 34, .16), rgba(16, 21, 34, .16)), url("/assets/img/open-hood.webp"); }
.service-card:nth-child(4)::before { background-image: linear-gradient(rgba(16, 21, 34, .16), rgba(16, 21, 34, .16)), url("/assets/img/mechanic-garage.webp"); }
.service-card:nth-child(5)::before { background-image: linear-gradient(rgba(16, 21, 34, .16), rgba(16, 21, 34, .16)), url("/assets/img/car-servicing.webp"); }
.service-card:nth-child(6)::before { background-image: linear-gradient(rgba(16, 21, 34, .16), rgba(16, 21, 34, .16)), url("/assets/img/motorbike-service.webp"); }

.service-card::after {
  content: "0" counter(service-card);
  counter-increment: service-card;
  position: absolute;
  top: 126px;
  right: 1.2rem;
  z-index: 2;
  color: var(--white);
  background: var(--red);
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 950;
  box-shadow: 0 12px 30px rgba(227, 6, 19, .35);
}

.cards {
  counter-reset: service-card info-card;
}

.service-card h3,
.offer-card h3 {
  font-size: 1.18rem;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: .65rem;
}

.info-card h3 {
  position: relative;
  max-width: calc(100% - 72px);
  min-height: 3rem;
  margin-top: 4.5rem;
  margin-bottom: .65rem;
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1.2;
}

.service-card h3 {
  padding-inline: 1.35rem;
}

.service-card p,
.offer-card p,
.info-card p,
.testimonial p {
  color: var(--muted);
}

.info-card p {
  color: rgba(255, 255, 255, .72);
}

.info-card a {
  color: var(--white);
  font-weight: 900;
}

.service-card p {
  padding: 0 1.35rem 1.5rem;
}

.process-offers {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.process-offers::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 52%;
  background: #ececec;
  z-index: -1;
}

.process-offers__top {
  margin-bottom: 4.6rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.process-offers .section__head {
  max-width: 1040px;
  margin-bottom: 4.6rem;
  flex: 1 1 1040px;
  text-align: left;
}

.process-offers__top .section__head {
  margin-bottom: 0;
}

.process-offers__top .button {
  flex: 0 0 auto;
  margin-bottom: .35rem;
}

.process-offers .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: .7rem;
}

.process-offers .eyebrow::before,
.process-offers .eyebrow::after {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--red);
}

.process-offers .section__head h2 {
  max-width: 980px;
}

.process-offers .offers-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.7rem;
  align-items: stretch;
}

.process-offers .offer-card {
  position: relative;
  display: flex;
  min-height: 100%;
  padding: 0;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: transparent;
  box-shadow: none;
  overflow: visible;
  isolation: isolate;
}

.process-offers .offer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 0, rgba(255, 255, 255, .08), transparent 28%),
    linear-gradient(145deg, #292929, #1f1f1f);
  clip-path: polygon(0 0, calc(100% - 102px) 0, calc(100% - 102px) 102px, 100% 102px, 100% 100%, 0 100%);
  z-index: -1;
}

.process-offers .offer-card:hover {
  box-shadow: none;
}

.offer-card__count {
  position: absolute;
  top: 0;
  right: 0;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border-radius: 8px;
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 950;
  z-index: 2;
}

.offer-card__icon {
  position: absolute;
  top: 34px;
  left: 30px;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
}

.offer-card__icon img {
  width: 58px;
  height: 58px;
  filter: brightness(0) invert(1);
}

.process-offers .offer-card:hover .offer-card__icon img {
  animation: service-wobble .9s ease-in-out;
}

.offer-card__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 116px 28px 30px;
}

.offer-card__content::before {
  content: "";
  display: block;
  border-top: 1px dashed rgba(255, 255, 255, .28);
  margin-bottom: 22px;
}

.process-offers .offer-card h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: clamp(1.25rem, 1.55vw, 1.65rem);
  line-height: 1.12;
  font-weight: 950;
}

.process-offers .offer-card p {
  color: rgba(255, 255, 255, .7);
  font-size: .98rem;
  line-height: 1.7;
}

.process-offers .offer-card p:last-child {
  margin-top: auto;
  padding-top: 1.4rem;
}

.process-offers .offer-card a {
  color: var(--white);
  font-weight: 900;
}

.process-offers .offer-card a::after {
  content: " →";
}

.process-offers .offer-card a:hover {
  color: var(--red);
}

.services-one {
  position: relative;
  padding: 105px 0 80px;
  overflow: hidden;
}

.services-one .container {
  max-width: none;
  width: 100%;
}

.services-one__top {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 3.2rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.services-one__head {
  flex: 1;
  text-align: left;
}

.services-one__tagline {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: .7rem;
  margin-bottom: .8rem;
  color: var(--red);
  font-size: .9rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.services-one__tagline span {
  width: 42px;
  height: 2px;
  background: var(--red);
  position: relative;
}

.services-one__tagline span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  transform: translateY(-50%);
}

.services-one__tagline span:first-child::after {
  right: -4px;
}

.services-one__tagline span:last-child::after {
  left: -4px;
}

.services-one__head h2 {
  font-size: clamp(2.3rem, 5vw, 4.1rem);
  line-height: 1.02;
  font-weight: 950;
  color: var(--ink);
}

.services-one__head h2 span {
  color: var(--red);
}

.services-one__viewport {
  position: relative;
  overflow: visible;
  padding-inline: 0;
}

.services-one__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 410px;
  gap: 30px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scroll-padding-inline: max(16px, calc((100vw - var(--max)) / 2));
  padding: 0 max(16px, calc((100vw - var(--max)) / 2)) 48px;
  scrollbar-width: none;
}

.services-one__track::-webkit-scrollbar {
  display: none;
}

.services-one__single {
  position: relative;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  transition: transform .25s ease;
}

.services-one__single:hover {
  transform: translateY(-5px);
}

.services-one__img-box {
  position: relative;
}

.services-one__img {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 61% 78%, 54% 92%, 0 92%);
  background: #e4e4e4;
  isolation: isolate;
}

.services-one__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(29, 29, 29, .86);
  opacity: 0;
  transform: translateY(50px);
  transition: opacity .45s ease, transform .45s ease;
  z-index: 1;
}

.services-one__single:hover .services-one__img::after {
  opacity: 1;
  transform: translateY(0);
}

.services-one__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform .8s ease;
}

.services-one__single:hover .services-one__img img {
  transform: scale(1.06);
}

.services-one__count {
  position: absolute;
  top: 0;
  left: 0;
  width: 78px;
  height: 85px;
  display: grid;
  place-items: center;
  padding-bottom: 10px;
  color: var(--white);
  background: var(--red);
  font-size: 2rem;
  line-height: 1;
  font-weight: 950;
  border-radius: 14px 0 16px 0;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
  transition: background .35s ease;
  z-index: 2;
}

.services-one__single:hover .services-one__count {
  background: #151515;
}

.services-one__content {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
  height: 302px;
  margin-top: -1px;
  padding: 30px 30px 30px;
  background: var(--white);
  border-radius: 0 0 15px 15px;
  box-shadow: 0 10px 60px rgba(0, 0, 0, .07);
  z-index: 2;
}

.services-one__icon {
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  margin: -74px auto 20px;
  border: 8px solid var(--white);
  border-radius: 50%;
  background: var(--red);
  transition: background .35s ease, transform .35s ease;
}

.services-one__single:hover .services-one__icon {
  background: #151515;
  transform: translateY(-2px);
}

.services-one__icon img {
  width: 44px;
  height: 44px;
  filter: brightness(0) invert(1);
}

.services-one__single:hover .services-one__icon img {
  animation: service-wobble .9s ease-in-out;
}

.services-one__content h3 {
  min-height: 2.4em;
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.15;
  font-weight: 900;
}

.services-one__content p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.services-one__content a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  align-self: center;
  margin-top: 18px;
  color: var(--ink);
  font-weight: 900;
}

.services-one__content a::after {
  content: "→";
  color: inherit;
}

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

.services-one__controls {
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-end;
  gap: .65rem;
  padding-bottom: .35rem;
}

.services-one__controls button {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: #151515;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.services-one__controls button:hover,
.services-one__controls button:focus {
  background: var(--red);
  transform: translateY(-2px);
}

@keyframes service-wobble {
  16.65% { transform: translateX(6px); }
  33.3% { transform: translateX(-5px); }
  49.95% { transform: translateX(4px); }
  66.6% { transform: translateX(-2px); }
  83.25% { transform: translateX(1px); }
  100% { transform: translateX(0); }
}

.cta-band {
  position: relative;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  background-image: var(--cta-image);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.cta-band--garage {
  --cta-image: url("/assets/img/mechanic-garage.webp");
}

.cta-band--repairs {
  --cta-image: url("/assets/img/car-repairs.webp");
}

.cta-band--servicing {
  --cta-image: url("/assets/img/car-servicing.webp");
}

.cta-band--mot {
  --cta-image: url("/assets/img/open-hood.webp");
}

.cta-band--motorbike {
  --cta-image: url("/assets/img/motorcycles.webp");
}

.cta-band--tyres {
  --cta-image: url("/assets/img/tyres.webp");
}

.cta-band__media {
  display: none;
}

.cta-band .container {
  min-height: clamp(340px, 34vw, 440px);
  display: grid;
  align-items: center;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 15, 24, .95) 0 36%, rgba(10, 15, 24, .72) 55%, rgba(10, 15, 24, .18) 100%),
    radial-gradient(circle at 78% 35%, rgba(227, 6, 19, .24), transparent 24%);
  z-index: -2;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: min(50vw, 680px);
  background:
    linear-gradient(135deg, rgba(227, 6, 19, .9), rgba(227, 6, 19, .18) 68%, transparent 68%),
    linear-gradient(90deg, rgba(14, 20, 32, .88), rgba(14, 20, 32, .1));
  clip-path: polygon(0 0, 78% 0, 100% 100%, 0 100%);
  mix-blend-mode: multiply;
  z-index: -1;
}

.cta-band .container > div,
.cta-band .container > h2 {
  max-width: 740px;
  padding: clamp(1.6rem, 3vw, 2.5rem) clamp(1.4rem, 3vw, 2.9rem);
  border-left: 6px solid var(--red);
  background: rgba(13, 20, 32, .72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
  backdrop-filter: blur(2px);
}

.cta-band h2 {
  font-size: clamp(1.8rem, 3.7vw, 3.1rem);
  line-height: 1.08;
  text-wrap: balance;
}

.cta-band p {
  margin-top: .9rem;
  color: rgba(255, 255, 255, .86);
}

.cta-band .hero__actions {
  margin-top: 1.6rem;
}

.offers-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.reviews-section {
  background:
    linear-gradient(180deg, var(--soft) 0, var(--soft) 62%, var(--white) 62%);
}

.reviews-section__top {
  margin-bottom: 2.8rem;
}

.reviews-section .section__head {
  max-width: 760px;
  margin-bottom: 0;
}

.reviews-section__controls {
  display: flex;
  gap: .65rem;
  padding-bottom: .35rem;
}

.reviews-section__controls button {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: #151515;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.reviews-section__controls button:hover,
.reviews-section__controls button:focus {
  background: var(--red);
  transform: translateY(-2px);
}

.reviews-carousel {
  position: relative;
}

.reviews-track {
  display: flex;
  gap: .65rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  padding: .4rem 0 2.6rem;
  scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.testimonial {
  position: relative;
  flex: 0 0 calc(33.333% - .44rem);
  margin: 0;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  padding: 2rem;
  border: 1px solid rgba(16, 21, 34, .08);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 55px rgba(16, 21, 34, .08);
  overflow: hidden;
  isolation: isolate;
  transition: transform .25s ease, box-shadow .25s ease;
}

.testimonial::before {
  content: "“";
  position: absolute;
  right: 20px;
  top: -36px;
  font-size: 10rem;
  line-height: 1;
  color: rgba(227, 6, 19, .07);
  font-weight: 950;
  z-index: -1;
}

.testimonial::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--red), #151515);
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(16, 21, 34, .12);
}

.testimonial__stars {
  color: var(--red);
  font-size: 1.05rem;
  letter-spacing: .14em;
  margin-bottom: 1.2rem;
}

.testimonial p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: .65rem;
}

.reviews-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(16, 21, 34, .25);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}

.reviews-dots button:nth-child(n+4) {
  display: none;
}

.reviews-dots button.is-active {
  width: 32px;
  background: var(--red);
}

.appointment {
  background:
    linear-gradient(90deg, rgba(8, 13, 24, .96), rgba(8, 13, 24, .88)),
    url("/assets/img/shape-feature-card.webp") center / cover no-repeat,
    var(--ink);
  color: var(--white);
  position: relative;
  isolation: isolate;
}

.appointment::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: min(40vw, 520px);
  height: 100%;
  background: var(--red);
  clip-path: polygon(38% 0, 100% 0, 100% 100%, 0 100%);
  opacity: .78;
  z-index: -1;
}

.appointment__head {
  width: min(70%, 860px);
  margin-bottom: 2.4rem;
}

.appointment__head h2 {
  color: var(--white);
}

.appointment__head p {
  color: rgba(255, 255, 255, .78);
}

.appointment--contact {
  background: #f4f6f9;
  color: var(--ink);
}

.appointment--contact::before {
  display: none;
}

.appointment--contact .appointment__head h2 {
  color: var(--ink);
}

.appointment--contact .appointment__head p {
  color: var(--muted);
}

.appointment--contact .contact-panel,
.appointment--contact .form-panel {
  background: #fff;
}

.appointment-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.contact-panel,
.form-panel {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow);
}

.form-panel {
  position: relative;
  overflow: hidden;
}

.form-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, var(--red), #1d1d1d);
}

.contact-panel h3 {
  margin-top: 1.05rem;
  margin-bottom: .65rem;
}

.contact-panel ul {
  list-style: none;
  margin-top: 0;
}

.contact-panel li + li {
  margin-top: .75rem;
}

.contact-panel a {
  color: var(--red);
  font-weight: 800;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem .9rem;
}

.field {
  display: grid;
  gap: .3rem;
}

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

label {
  font-weight: 800;
  color: #313746;
  font-size: .9rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .56rem .9rem;
  font: inherit;
  color: var(--ink);
  background: var(--soft);
}

textarea {
  min-height: 100px;
  resize: vertical;
}

button:disabled {
  cursor: not-allowed;
  opacity: .68;
}

.form-turnstile {
  margin: 1rem 0 .2rem;
}

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.form-note {
  min-height: 1.5rem;
  color: var(--muted);
  font-size: .92rem;
}

.footer {
  background: #080d18;
  color: rgba(255, 255, 255, .72);
  padding: 70px 0 26px;
  font-size: .875rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 2rem;
}

.footer h3,
.footer h4 {
  color: var(--white);
}

.footer__logo {
  width: 78px;
  height: auto;
  margin-bottom: .85rem;
}

.footer ul {
  list-style: none;
}

.footer a {
  color: rgba(255, 255, 255, .78);
}

.footer li + li {
  margin-top: .45rem;
}

.footer__bottom {
  margin-top: 2.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .8125rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slow-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes hero-kenburns {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.09) translate3d(-1.5%, -1%, 0);
  }
}

.map {
  width: 100%;
  min-height: 340px;
  border: 0;
  display: block;
}

.map-card[data-cookie-embed] {
  position: relative;
  min-height: 340px;
  background: var(--soft);
}

.map-card[data-cookie-embed] iframe:not([src]) {
  visibility: hidden;
}

.cookie-embed-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: .8rem;
  padding: 2rem;
  text-align: center;
  color: var(--ink);
  background: linear-gradient(135deg, #f4f6f9, #fff);
}

.cookie-embed-placeholder[hidden] {
  display: none;
}

.cookie-panel {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  width: min(390px, calc(100vw - 32px));
  padding: 1.15rem;
  border-radius: var(--radius-lg);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(8, 13, 24, .22);
}

.cookie-panel[hidden] {
  display: none;
}

.cookie-panel strong {
  display: block;
  font-size: 1.1rem;
  line-height: 1.2;
}

.cookie-panel p {
  margin: .5rem 0 1rem;
  color: var(--muted);
  font-size: .92rem;
}

.cookie-panel > div {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

.cookie-settings {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  min-height: 40px;
  padding: 0 .9rem;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: #151515;
  font-weight: 850;
  box-shadow: 0 16px 34px rgba(8, 13, 24, .2);
}

.cookie-settings[hidden] {
  display: none;
}

.floating-chat {
  position: fixed;
  left: 24px;
  bottom: 36px;
  z-index: 8;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 18px 32px rgba(227, 6, 19, .35);
}

.floating-chat img {
  width: 24px;
  height: 24px;
}

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

  .brand__logo {
    height: 64px;
  }

  .nav__links {
    gap: .05rem;
  }

  .nav__links a {
    padding-inline: .58rem;
    font-size: .86rem;
  }

  .nav__cta {
    width: 52px;
    height: 52px;
    padding: 0;
    font-size: 0;
  }

  .nav__cta::before {
    display: block;
  }

  .section--tight {
    background: var(--soft);
  }

  .section--tight::after {
    width: 100%;
    opacity: 1;
    background-position: center right;
  }
}

@media (max-width: 900px) {
  .nav {
    height: auto;
    min-height: 72px;
    flex-wrap: wrap;
    padding: .75rem 0;
  }

  .nav__toggle {
    display: block;
    order: 2;
    margin-left: auto;
  }

  .nav__cta {
    order: 3;
  }

  .nav__links {
    display: none;
    order: 4;
    width: 100%;
    padding: .75rem 0;
    border-top: 1px solid var(--line);
  }

  .nav__links.is-open {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
    justify-items: start;
  }

  .nav__links a {
    width: 100%;
    padding: .85rem .5rem;
  }

  .hero,
  .hero--small {
    min-height: 560px;
  }

  .hero__shell {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 26px;
  }

  .hero__slider-nav::before,
  .hero__slider-nav::after {
    height: 54px;
  }

  .hero__content {
    max-width: calc(100vw - 86px);
  }

  .stats {
    transform: none;
    margin-top: 24px;
  }

  .stats__grid,
  .cards,
  .testimonials,
  .offers-grid,
  .contact-grid,
  .appointment-grid,
  .split,
  .split--reverse,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split .content {
    order: 1;
  }

  .split .media-card {
    order: 2;
  }

  .stats__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section {
    padding: 70px 0;
  }

  .services-one {
    padding: 80px 0 64px;
  }

  .process-offers .offers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial {
    flex-basis: calc(50% - .325rem);
  }

  .services-one__track {
    grid-auto-columns: 360px;
  }

  .services-one__img {
    height: 260px;
  }

  .media-card {
    min-height: 360px;
  }

  .reviews-dots button:nth-child(4) {
    display: block;
  }

  .section--tight {
    background: var(--soft);
  }

  .section--tight::after {
    width: 100%;
    opacity: .32;
    background-position: center right;
  }
}

@media (max-width: 620px) {
  .topbar {
    display: none;
  }

  .hero__actions,
  .footer__bottom {
    display: grid;
  }

  .hero__actions .button {
    justify-self: start;
  }

  .topbar .container {
    padding: .7rem 0;
  }

  .brand {
    width: fit-content;
  }

  .brand__logo {
    height: 58px;
  }

  .hero__content {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding: 4.5rem 0;
  }

  .hero--small .hero__content {
    width: min(var(--max), calc(100% - 32px));
    margin-inline: auto;
  }

  .appointment__head {
    width: 100%;
  }

  .hero__shell {
    width: min(var(--max), calc(100% - 32px));
    grid-template-columns: 1fr;
    align-content: center;
    align-items: start;
    gap: 1.5rem;
  }

  .hero__slider-nav {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: flex-start;
    margin-top: 16px;
  }

  .hero__slider-nav::before,
  .hero__slider-nav::after {
    width: 54px;
    height: 4px;
  }

  .hero__slider-nav button span {
    display: none;
  }

  .hero__slide-image {
    width: 100%;
    opacity: 0;
    object-position: center;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero__slide-image.is-active {
    opacity: .36;
  }

  h1 {
    font-size: 2.25rem;
    line-height: 1.03;
    overflow-wrap: break-word;
  }

  .hero::after {
    background: rgba(16, 21, 34, .82);
  }

  .cta-band {
    background-attachment: scroll;
    background-position: center;
  }

  .cta-band .container {
    min-height: 340px;
  }

  .cta-band::after {
    width: 100%;
    clip-path: none;
    opacity: .7;
  }

  .cta-band .container > div,
  .cta-band .container > h2 {
    padding: 1.45rem;
  }

  .floating-chat {
    display: none;
  }

  .services-one {
    padding: 66px 0 54px;
  }

  .process-offers .section__head {
    text-align: left;
  }

  .process-offers__top {
    display: grid;
    gap: 1.4rem;
    margin-bottom: 2.8rem;
  }

  .process-offers__top .button {
    width: fit-content;
    margin-bottom: 0;
  }

  .reviews-section__top {
    display: grid;
    gap: 1.4rem;
  }

  .reviews-section__controls {
    padding-bottom: 0;
  }

  .reviews-dots button:nth-child(5) {
    display: block;
  }

  .testimonial {
    flex-basis: calc(100vw - 48px);
  }

  .testimonial {
    min-height: 360px;
    padding: 1.55rem;
  }

  .process-offers .eyebrow {
    justify-content: flex-start;
  }

  .process-offers .eyebrow::after {
    display: none;
  }

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

  .offer-card__count {
    width: 78px;
    height: 78px;
    font-size: 2.05rem;
  }

  .offer-card__icon {
    top: 28px;
    left: 24px;
  }

  .offer-card__content {
    padding: 128px 24px 28px;
  }

  .services-one__top {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .services-one__head {
    text-align: left;
  }

  .services-one__tagline {
    justify-content: flex-start;
  }

  .services-one__tagline span:last-child {
    display: none;
  }

  .services-one__track {
    grid-auto-columns: calc(100vw - 48px);
    gap: 18px;
    padding-bottom: 28px;
  }

  .services-one__img {
    height: 230px;
  }

  .services-one__content {
    height: 300px;
    padding-inline: 22px;
  }

  .services-one__controls {
    justify-content: flex-start;
    padding-bottom: 0;
  }

  .stats__grid,
  .check-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    margin-top: 24px;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .media-card {
    min-height: 310px;
  }

  .section--tight::after {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    opacity: 1;
    min-height: 0;
    aspect-ratio: 1 / .9;
    margin-top: 2rem;
    margin-bottom: -70px;
    background-position: center right;
  }

  .about-car {
    display: none;
    min-height: 1px;
    margin-right: 0;
  }

  .hero-card {
    grid-template-columns: 76px 1fr;
  }

  .hero-card img {
    width: 76px;
    height: 76px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
