:root {
  --red: #b63341;
  --black: #000000;
  --black-soft: #090909;
  --white: #ffffff;
  --white-muted: rgba(255, 255, 255, 0.62);
  --line: rgba(255, 255, 255, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

::selection {
  background: var(--red);
  color: var(--white);
}

.wrap {
  width: min(calc(100% - 72px), 1440px);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 90px;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid transparent;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.88), transparent);
  transition: height 220ms ease, background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  height: 72px;
  border-color: var(--line);
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(16px);
}

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

.brand-logo {
  width: 172px;
  height: auto;
  object-fit: contain;
}

.brand-mark {
  width: 42px;
  height: 50px;
  display: grid;
  place-items: center;
  clip-path: polygon(15% 0, 100% 0, 84% 100%, 0 100%);
  background: var(--red);
  color: var(--black);
  font-size: 32px;
  font-weight: 950;
  font-style: italic;
  line-height: 1;
}

.brand-type {
  display: grid;
  line-height: 1;
}

.brand-type strong {
  font-size: 24px;
  font-weight: 950;
  letter-spacing: 0.2em;
}

.brand-type small {
  margin-top: 6px;
  color: var(--red);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.42em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.5vw, 44px);
}

.main-nav a {
  position: relative;
  padding: 12px 0;
  font-size: 13px;
  font-weight: 700;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

.account-link {
  justify-self: end;
  min-width: 156px;
  height: 52px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.07em;
  transition: background 180ms ease, color 180ms ease;
}

.account-link:hover,
.account-link:focus-visible {
  background: var(--white);
  color: var(--black);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 720px;
  height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
}

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

.hero-media {
  z-index: -3;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.25) brightness(0.55);
  transform: scale(1.03);
  animation: hero-zoom 14s ease-out both;
}

@keyframes hero-zoom {
  from { transform: scale(1.08); }
  to { transform: scale(1.02); }
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.58), transparent 34%, rgba(0, 0, 0, 0.74)),
    linear-gradient(100deg, rgba(182, 51, 65, 0.48), transparent 48%, rgba(0, 0, 0, 0.22));
  mix-blend-mode: normal;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.1;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(255, 255, 255, 0.22) 3px 4px);
  pointer-events: none;
}

.hero-content {
  width: min(calc(100% - 40px), 1100px);
  padding-top: 70px;
  text-align: center;
}

.hero-kicker {
  margin: 0 0 24px;
  color: var(--white-muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.34em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(68px, 9.8vw, 158px);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.hero h1 em,
.cars-section h2 em,
.drive-copy h2 em,
.news-copy h2 em {
  color: var(--red);
  font-style: italic;
}

.hero-links {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.hero-links a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.hero-links a:hover,
.hero-links a:focus-visible {
  border-color: var(--red);
}

.hero-links span {
  width: 4px;
  height: 4px;
  background: var(--red);
}

.hero-footer {
  position: absolute;
  bottom: 24px;
  left: 50%;
  width: min(calc(100% - 72px), 1440px);
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.hero-line {
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
}

.hero-line i {
  display: block;
  width: 35%;
  height: 3px;
  background: var(--red);
  transform: translateY(-1px);
}

.quote-section {
  min-height: 520px;
  padding: 90px max(36px, calc((100vw - 1440px) / 2));
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 60px;
  background: var(--black);
  border-bottom: 1px solid var(--line);
}

.quote-number {
  align-self: stretch;
  padding-top: 30px;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  border-right: 1px solid var(--line);
}

.quote-number strong {
  color: var(--red);
  font-size: 72px;
  line-height: 1;
  letter-spacing: -0.08em;
}

.quote-number span {
  margin-top: 8px;
  color: var(--white-muted);
  font-size: 9px;
}

.quotes {
  position: relative;
  min-height: 260px;
}

.quote {
  position: absolute;
  inset: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 350ms ease, transform 350ms ease;
}

.quote.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.quote p {
  max-width: 950px;
  margin: 0;
  font-size: clamp(28px, 3vw, 50px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.035em;
}

.quote cite {
  margin-top: 34px;
  color: var(--red);
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.quote-controls {
  display: flex;
  gap: 8px;
}

.quote-controls button {
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  font-size: 18px;
  transition: background 180ms ease, border-color 180ms ease;
}

.quote-controls button:hover,
.quote-controls button:focus-visible {
  border-color: var(--red);
  background: var(--red);
}

.cars-section {
  padding: 140px 0;
  background: var(--black-soft);
}

.section-top {
  margin-bottom: 70px;
  display: grid;
  grid-template-columns: 1.5fr 0.6fr;
  gap: 80px;
  align-items: end;
}

.eyebrow {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.22em;
}

.eyebrow > span {
  width: 32px;
  height: 3px;
  background: var(--red);
}

.eyebrow-dark {
  color: var(--black);
}

.eyebrow-dark > span {
  background: var(--black);
}

.cars-section h2,
.drive-copy h2,
.news-copy h2 {
  margin: 0;
  font-size: clamp(60px, 7.5vw, 118px);
  font-weight: 950;
  letter-spacing: -0.07em;
  line-height: 0.86;
}

.section-copy > p {
  margin: 0 0 32px;
  color: var(--white-muted);
  font-size: 14px;
  line-height: 1.75;
}

.line-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--white);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

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

.car-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.91fr 0.91fr;
  gap: 16px;
}

.car-card {
  min-width: 0;
}

.car-photo {
  position: relative;
  aspect-ratio: 0.88;
  overflow: hidden;
  background: var(--black);
}

.car-card-large .car-photo {
  aspect-ratio: 1.08;
}

.car-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(182, 51, 65, 0.16), transparent 45%, rgba(0, 0, 0, 0.8));
  pointer-events: none;
}

.car-photo img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.2);
  transition: transform 500ms ease, filter 350ms ease;
}

.car-card:hover .car-photo img {
  transform: scale(1.045);
  filter: grayscale(0.3) saturate(0.45) contrast(1.15);
}

.car-index {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  font-weight: 900;
}

.car-photo > a {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  font-size: 18px;
  transition: background 180ms ease, color 180ms ease;
}

.car-photo > a:hover,
.car-photo > a:focus-visible {
  background: var(--white);
  color: var(--black);
}

.car-card > header {
  padding: 23px 2px 18px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.car-card > header span,
.car-card > header p {
  color: var(--red);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.car-card > header h3 {
  margin: 3px 0 0;
  font-size: clamp(36px, 3.5vw, 56px);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.car-card > header p {
  margin: 0 0 4px;
}

.car-card dl {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.car-card dl div {
  padding-top: 16px;
}

.car-card dt {
  color: rgba(255, 255, 255, 0.38);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.car-card dd {
  margin: 7px 0 0;
  font-size: 10px;
  font-weight: 900;
}

.drive-section {
  min-height: 820px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: var(--red);
  color: var(--black);
}

.drive-image {
  position: relative;
  overflow: hidden;
}

.drive-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 45%, rgba(182, 51, 65, 0.76));
  mix-blend-mode: multiply;
}

.drive-image img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.22);
}

.drive-image > span {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 28px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.drive-copy {
  padding: clamp(70px, 8vw, 130px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.drive-copy h2 {
  font-size: clamp(58px, 6.5vw, 106px);
}

.drive-copy h2 em {
  color: var(--white);
}

.drive-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 34px 0;
  font-size: 14px;
  line-height: 1.75;
}

.black-button,
.red-button {
  width: fit-content;
  min-width: 230px;
  min-height: 58px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  transition: background 180ms ease, color 180ms ease;
}

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

.black-button:hover,
.black-button:focus-visible {
  background: var(--white);
  color: var(--black);
}

.drive-stats {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(0, 0, 0, 0.34);
}

.drive-stats > div {
  padding: 22px 14px 0 0;
  display: grid;
  gap: 8px;
}

.drive-stats strong {
  font-size: 38px;
  line-height: 1;
}

.drive-stats span {
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.news-section {
  padding: 140px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--black);
}

.news-copy {
  width: min(calc(100% - 72px), 720px);
  margin-right: 0;
}

.news-date {
  margin: 70px 0 16px;
  color: var(--red);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.news-copy h2 {
  font-size: clamp(60px, 6.8vw, 108px);
}

.news-lead {
  max-width: 510px;
  margin: 36px 0;
  color: var(--white-muted);
  font-size: 14px;
  line-height: 1.75;
}

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

.red-button:hover,
.red-button:focus-visible {
  background: var(--white);
  color: var(--black);
}

.race-list {
  margin-right: max(36px, calc((100vw - 1440px) / 2));
  align-self: center;
  border-top: 8px solid var(--red);
  background:
    repeating-linear-gradient(135deg, transparent 0 30px, rgba(182, 51, 65, 0.08) 30px 31px),
    var(--black-soft);
}

.race-list article {
  min-height: 140px;
  padding: 0 34px;
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--line);
  border-top: 0;
  transition: background 180ms ease;
}

.race-list article:hover {
  background: var(--red);
}

.race-list span,
.race-list time {
  color: var(--white-muted);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.race-list strong {
  font-size: clamp(30px, 3vw, 46px);
  letter-spacing: -0.04em;
}

.site-footer {
  padding-top: 86px;
  background: var(--black-soft);
}

.footer-grid {
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 70px;
}

.footer-brand p {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.footer-links span,
.newsletter label {
  margin-bottom: 10px;
  color: var(--red);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.footer-links a {
  color: var(--white-muted);
  font-size: 12px;
}

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

.newsletter p {
  margin: 14px 0 25px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}

.newsletter > div {
  display: grid;
  grid-template-columns: 1fr 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.newsletter input {
  min-width: 0;
  height: 56px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.newsletter button {
  border: 0;
  background: var(--red);
  color: var(--white);
  font-size: 18px;
}

.footer-bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.34);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

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

.icp-record {
  padding: 0 18px 22px;
  text-align: center;
}

.icp-record a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  letter-spacing: 0.08em;
  transition: color 180ms ease;
}

.icp-record a:hover,
.icp-record a:focus-visible {
  color: var(--red);
}

.cookie-bar {
  position: fixed;
  z-index: 120;
  right: 20px;
  bottom: 20px;
  width: min(calc(100% - 40px), 520px);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(0, 0, 0, 0.94);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  transition: opacity 220ms ease, transform 220ms ease;
}

.cookie-bar.is-hidden {
  opacity: 0;
  transform: translateY(24px);
  pointer-events: none;
}

.cookie-bar p {
  margin: 0;
  color: var(--white-muted);
  font-size: 11px;
  line-height: 1.55;
}

.cookie-bar button {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 14px;
  border: 0;
  background: var(--red);
  color: var(--white);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .account-link {
    display: none;
  }

  .menu-button {
    justify-self: end;
    width: 48px;
    height: 48px;
    padding: 0 13px;
    display: grid;
    align-content: center;
    gap: 7px;
    border: 0;
    background: var(--red);
  }

  .menu-button span {
    height: 2px;
    background: var(--white);
    transition: transform 180ms ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 72px 0 auto;
    padding: 28px 36px 36px;
    display: grid;
    gap: 0;
    background: rgba(0, 0, 0, 0.98);
    border-bottom: 6px solid var(--red);
    opacity: 0;
    transform: translateY(-14px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    text-transform: uppercase;
  }

  .quote-section {
    grid-template-columns: 110px 1fr;
  }

  .quote-controls {
    grid-column: 2;
  }

  .section-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .section-copy {
    max-width: 620px;
  }

  .car-grid {
    grid-template-columns: 1fr 1fr;
    gap: 46px 16px;
  }

  .car-card-large {
    grid-column: 1 / -1;
  }

  .car-card-large .car-photo {
    aspect-ratio: 1.7;
  }

  .drive-section {
    grid-template-columns: 1fr;
  }

  .drive-image {
    min-height: 560px;
  }

  .news-section {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .news-copy {
    width: min(calc(100% - 72px), 1440px);
    margin-inline: auto;
  }

  .race-list {
    width: min(calc(100% - 72px), 1440px);
    margin-inline: auto;
  }

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

  .newsletter {
    grid-column: 1 / -1;
    max-width: 650px;
  }
}

@media (max-width: 680px) {
  .wrap,
  .hero-footer,
  .news-copy,
  .race-list {
    width: calc(100% - 36px);
  }

  .site-header {
    height: 72px;
    padding: 0 18px;
  }

  .brand-mark {
    width: 35px;
    height: 42px;
    font-size: 27px;
  }

  .brand-type strong {
    font-size: 19px;
  }

  .brand-type small {
    font-size: 5px;
  }

  .brand-logo {
    width: 146px;
  }

  .main-nav {
    padding-inline: 18px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-media {
    object-position: 58% center;
  }

  .hero h1 {
    font-size: clamp(56px, 20vw, 92px);
  }

  .hero-links {
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .hero-footer > span:last-child {
    display: none;
  }

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

  .quote-section {
    min-height: 600px;
    padding: 70px 18px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .quote-number {
    min-height: 72px;
    padding: 0 0 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quote-number strong {
    font-size: 54px;
  }

  .quotes {
    min-height: 280px;
  }

  .quote p {
    font-size: 27px;
  }

  .quote-controls {
    grid-column: auto;
  }

  .cars-section,
  .news-section {
    padding: 90px 0;
  }

  .cars-section h2,
  .drive-copy h2,
  .news-copy h2 {
    font-size: clamp(54px, 17vw, 82px);
  }

  .car-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .car-card-large {
    grid-column: auto;
  }

  .car-card-large .car-photo,
  .car-photo {
    aspect-ratio: 1.05;
  }

  .drive-image {
    min-height: 430px;
  }

  .drive-copy {
    padding: 80px 18px;
  }

  .drive-stats {
    margin-top: 60px;
  }

  .drive-stats strong {
    font-size: 30px;
  }

  .news-date {
    margin-top: 50px;
  }

  .race-list article {
    min-height: 105px;
    padding: 0 18px;
    grid-template-columns: 64px 1fr auto;
    gap: 8px;
  }

  .race-list strong {
    font-size: 26px;
  }

  .site-footer {
    padding-top: 64px;
  }

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

  .newsletter {
    grid-column: auto;
  }

  .footer-bottom {
    min-height: 100px;
    padding: 22px 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
  }

  .footer-bottom > span:nth-child(2) {
    display: none;
  }

  .cookie-bar {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-bar button {
    width: 100%;
  }
}

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

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