/* ==========================================================================
   AUTOVA – Špecialisti na dovoz vozidiel Škoda
   Brand: gold #D4AF37 · black #0A0A0A · white #FFFFFF · Montserrat
   ========================================================================== */

@font-face { font-family: "Montserrat"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/montserrat-v31-latin_latin-ext-regular.woff2") format("woff2"); }
@font-face { font-family: "Montserrat"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/montserrat-v31-latin_latin-ext-500.woff2") format("woff2"); }
@font-face { font-family: "Montserrat"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/montserrat-v31-latin_latin-ext-600.woff2") format("woff2"); }
@font-face { font-family: "Montserrat"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/montserrat-v31-latin_latin-ext-700.woff2") format("woff2"); }

:root {
  --black: #0a0a0a;
  --black-deep: #000000;
  --surface: #101010;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.22);
  --white: #ffffff;
  --muted: #cfcfcf;
  --muted-2: #8f8f8f;
  --gold: #d4af37;
  --gold-light: #e6c65a;
  --gold-deep: #b8932a;
  --green: #4dbd3d;
  --green-deep: #2e9143;

  --header-h: 114px;
  --pad: 48px;
  --container: 1536px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.gold { color: var(--gold); }
.green { color: var(--green); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* Icons -------------------------------------------------------------------- */

.icon {
  width: 44px; height: 44px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon--lg { width: 52px; height: 52px; stroke-width: 2.2; }
.icon--sm { width: 22px; height: 22px; stroke-width: 3; }

/* Buttons ------------------------------------------------------------------ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 0 26px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.btn--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0a0a;
}
.btn--gold:hover, .btn--gold:focus-visible {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -12px rgba(212, 175, 55, 0.55);
}
.btn--outline {
  background: rgba(10, 10, 10, 0.35);
  border-width: 1.5px;
  border-color: rgba(255, 255, 255, 0.78);
  color: var(--white);
}
.btn--outline:hover, .btn--outline:focus-visible {
  background: var(--white);
  border-color: var(--white);
  color: #0a0a0a;
  transform: translateY(-2px);
}
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* Header ------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--black-deep);
  transition: background-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}
.brand__mark { width: 79px; height: auto; }
.brand__word { width: 243px; height: auto; }
.brand--footer .brand__mark { width: 50px; }
.brand--footer .brand__word { width: 175px; }
.brand--footer { gap: 18px; }
.brand__stack { display: flex; flex-direction: column; gap: 8px; }
.brand__tagline {
  color: var(--gold);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 56px;
}
.site-nav a {
  position: relative;
  display: block;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  padding: 8px 0;
  color: var(--white);
  transition: color 0.3s var(--ease);
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s var(--ease);
}
.site-nav a:hover, .site-nav a:focus-visible, .site-nav a.is-active { color: var(--gold); }
.site-nav a:hover::after, .site-nav a:focus-visible::after, .site-nav a.is-active::after { transform: scaleX(1); }
.site-nav a:focus-visible { outline: none; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  padding: 8px;
  background: transparent;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Hero --------------------------------------------------------------------- */

.hero {
  position: relative;
  isolation: isolate;
  min-height: 587px;
  display: flex;
  overflow: hidden;
  background: var(--black);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #050505 url("../img/hero.jpg") no-repeat center center;
  background-size: cover;
  transform-origin: 65% 45%;
  animation: hero-zoom 2.2s var(--ease) both;
}
.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.55) 0%, rgba(5, 5, 5, 0.35) 28%, rgba(5, 5, 5, 0) 46%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.25) 0%, rgba(5, 5, 5, 0) 25%, rgba(5, 5, 5, 0) 78%, rgba(5, 5, 5, 0.35) 100%);
}
@keyframes hero-zoom {
  from { transform: scale(1.06); opacity: 0.6; }
  to   { transform: scale(1); opacity: 1; }
}

.hero__inner {
  display: flex;
  flex-direction: column;
  padding-top: 85px;
  padding-bottom: 44px;
}
.hero__content { max-width: 640px; }

.hero__title {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.26;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero__points {
  display: flex;
  flex-wrap: wrap;
  margin-top: 27px;
  column-gap: 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 2;
}
.hero__points li { display: inline-flex; align-items: center; }
.hero__points li + li::before {
  content: "";
  width: 5px; height: 5px;
  margin: 0 14px;
  border-radius: 50%;
  background: var(--white);
}
.hero__points-break { flex-basis: 100%; height: 0; }
.hero__points-break::before,
.hero__points-break + li::before { display: none; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
  margin-top: 54px;
}

.hero__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-top: auto;
  padding-top: 88px;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 44px;
}
.badge {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--white);
}
.badge .icon { width: 50px; height: 50px; stroke-width: 2.7; }

.skoda {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  line-height: 1;
}
.skoda__word {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--white);
}
.skoda__claim {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-deep);
}
.skoda--block { align-items: flex-start; text-align: left; }

/* Model strip -------------------------------------------------------------- */

.models {
  background: var(--black-deep);
  border-top: 2px solid #2c2c2c;
}
.models__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  padding-left: 0;
  padding-right: 0;
}
.model {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 27px 12px 56px;
  transition: background-color 0.4s var(--ease);
}
.model::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 58px;
  width: 1px;
  background: #505050;
}
.model:first-child::before { display: none; }
.model:hover { background: rgba(255, 255, 255, 0.03); }

.model__img {
  width: 100%;
  max-width: 230px;
  height: 154px;
  object-fit: contain;
  transition: transform 0.5s var(--ease);
}
.model:hover .model__img { transform: translateY(-6px) scale(1.04); }

.model__name {
  margin-top: 4px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
  transition: color 0.3s var(--ease);
}
.model:hover .model__name { color: var(--gold); }
.model__tag {
  margin-top: 3px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.5;
  color: #ececec;
}
.model--electric .model__name,
.model--electric .model__tag { color: var(--green); }
.model--electric:hover .model__name { color: #74dc63; }

/* Sections (below the fold) ----------------------------------------------- */

.section { padding: 104px 0; }
.section__head { max-width: 760px; }
.section__eyebrow {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.section__title {
  margin-top: 16px;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.15;
}
.section__lead {
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}
.section__cta { margin-top: 56px; }

.import {
  background:
    radial-gradient(1200px 500px at 80% 0%, rgba(212, 175, 55, 0.07), transparent 60%),
    var(--black);
  border-top: 1px solid var(--line);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 64px;
}
.feature, .pillar {
  position: relative;
  padding: 40px 36px 42px;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), background-color 0.45s var(--ease);
}
.feature::before, .pillar::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent 70%);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}
.feature:hover, .pillar:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.45);
  background: #131313;
}
.feature:hover::before, .pillar:hover::before { opacity: 1; }
.feature h3, .pillar h3 {
  margin-top: 28px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.feature p, .pillar p {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}

.about { border-top: 1px solid var(--line); }
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 80px;
  align-items: start;
}
.partner {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 52px;
  padding: 32px 0 0;
  border-top: 1px solid var(--line);
}
.partner .skoda__word { font-size: 30px; }
.partner .skoda__claim { font-size: 11.5px; }
.partner__text { padding-left: 32px; border-left: 1px solid var(--line); }
.partner__line {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.55;
}
.partner__values {
  margin-top: 10px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.pillar { padding: 34px 30px 36px; }
.pillar h3 { color: var(--white); margin-top: 22px; }
.pillar p { color: var(--gold); font-size: 14px; letter-spacing: 0.02em; }

/* Contact ------------------------------------------------------------------ */

.contact {
  background: var(--black-deep);
  border-top: 1px solid var(--line);
}
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 32px;
  align-items: stretch;
}
.contact__card {
  padding: 52px 56px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 45%, var(--gold-deep) 100%);
  color: #0a0a0a;
}
.contact__title, .contact__subtitle {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.contact__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 40px;
  margin-top: 34px;
}
.contact__list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.contact__list .icon { stroke: #0a0a0a; }
.contact__list a { position: relative; }
.contact__list a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 2px;
  background: #0a0a0a;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.contact__list a:hover::after { transform: scaleX(1); }

.contact__social {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px 56px;
  border: 1px solid var(--line);
}
.social {
  display: flex;
  gap: 18px;
  margin-top: 34px;
}
.social__link {
  display: grid;
  place-items: center;
  width: 62px; height: 62px;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  color: var(--white);
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.social__link svg { width: 26px; height: 26px; }
.social__link:hover, .social__link:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0a0a;
  transform: translateY(-3px);
}

/* Footer ------------------------------------------------------------------- */

.site-footer {
  background: var(--black-deep);
  border-top: 1px solid var(--line);
}
.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 40px;
  padding-bottom: 40px;
}
.site-footer__copy {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--muted-2);
}

/* Reveal / motion ---------------------------------------------------------- */

.is-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.is-ready .reveal.is-visible { opacity: 1; transform: none; }
.models__grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.models__grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.models__grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.models__grid .reveal:nth-child(5) { transition-delay: 0.32s; }
.models__grid .reveal:nth-child(6) { transition-delay: 0.40s; }
.features .reveal:nth-child(2), .pillars .reveal:nth-child(2) { transition-delay: 0.1s; }
.features .reveal:nth-child(3), .pillars .reveal:nth-child(3) { transition-delay: 0.2s; }
.pillars .reveal:nth-child(4) { transition-delay: 0.3s; }

.hero__title, .hero__points, .hero__actions, .badges, .skoda {
  animation: rise 0.9s var(--ease) both;
}
.hero__points { animation-delay: 0.15s; }
.hero__actions { animation-delay: 0.3s; }
.badges { animation-delay: 0.5s; }
.hero .skoda { animation-delay: 0.65s; }
@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* Responsive --------------------------------------------------------------- */

@media (max-width: 1300px) {
  :root { --pad: 36px; }
  .site-nav ul { gap: 40px; }
  .brand { gap: 20px; }
  .brand__mark { width: 66px; }
  .brand__word { width: 220px; }
  .hero__title { font-size: 46px; }
  .badges { gap: 20px 32px; }
  .badge { font-size: 15px; }
}

@media (max-width: 1100px) {
  .site-nav ul { gap: 28px; }
  .site-nav a { font-size: 13.5px; letter-spacing: 0.08em; }
  .brand__word { width: 190px; }
  .hero__bg { background-position: 70% top; }
  .hero__footer { flex-direction: column; align-items: flex-start; gap: 36px; }
  .skoda { align-items: flex-start; text-align: left; }
  .badges { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .models__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .model::before { bottom: 0; }
  .model:nth-child(4)::before { display: none; }
  .model:nth-child(n + 4) { border-top: 1px solid var(--line); }
  .about__grid { grid-template-columns: 1fr; gap: 56px; }
  .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  :root { --header-h: 84px; --pad: 24px; }
  .brand__mark { width: 52px; }
  .brand__word { width: 160px; }
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0; bottom: 0;
    z-index: 40;
    padding: 32px var(--pad);
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0s linear 0.35s;
  }
  .nav-open .site-nav { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
  .nav-open { overflow: hidden; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav li + li { border-top: 1px solid var(--line); }
  .site-nav a { font-size: 17px; padding: 20px 0; }
  .site-nav a::after { bottom: 14px; left: 0; right: auto; width: 32px; }

  .hero { min-height: 0; }
  .hero__bg {
    background-position: 66% 0;
    background-size: auto 340px;
    animation: none;
  }
  .hero__shade {
    background:
      linear-gradient(180deg, rgba(10, 10, 10, 0.35) 0%, rgba(10, 10, 10, 0) 60px, rgba(10, 10, 10, 0) 200px, rgba(10, 10, 10, 0.75) 300px, #0a0a0a 340px);
  }
  .hero__inner { padding-top: 290px; padding-bottom: 40px; }
  .hero__title { font-size: 38px; }
  .hero__points {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 24px;
    font-size: 13.5px;
    line-height: 1.9;
  }
  .hero__points li::before,
  .hero__points li + li::before {
    content: "";
    display: block;
    width: 5px; height: 5px;
    margin: 0 12px 0 0;
    border-radius: 50%;
    background: var(--gold);
  }
  .hero__points li.hero__points-break { display: none; }
  .hero__actions { margin-top: 36px; gap: 14px; }
  .btn { min-height: 56px; padding: 0 26px; font-size: 14px; }
  .hero__footer { padding-top: 52px; }
  .badge { font-size: 14.5px; gap: 14px; }
  .badge .icon { width: 34px; height: 40px; }

  .model { padding: 26px 10px 40px; }
  .model__img { height: 120px; }
  .model__name { font-size: 20px; }
  .model__tag { font-size: 12.5px; }

  .section { padding: 72px 0; }
  .section__title { font-size: 30px; }
  .section__lead { font-size: 16px; }
  .features { grid-template-columns: 1fr; gap: 16px; margin-top: 44px; }
  .pillars { grid-template-columns: 1fr; gap: 14px; }
  .partner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .partner__text { padding-left: 0; border-left: 0; }
  .contact__card, .contact__social { padding: 36px 28px; }
  .contact__list { grid-template-columns: 1fr; gap: 20px; }
  .contact__list li { font-size: 16px; }
}

@media (max-width: 560px) {
  .hero__inner { padding-top: 236px; }
  .hero__bg { background-size: auto 280px; background-position: 64% 0; }
  .hero__shade {
    background:
      linear-gradient(180deg, rgba(10, 10, 10, 0.35) 0%, rgba(10, 10, 10, 0) 50px, rgba(10, 10, 10, 0) 160px, rgba(10, 10, 10, 0.75) 245px, #0a0a0a 280px);
  }
  .hero__title { font-size: min(32px, 7.2vw); }
  .hero__actions .btn { flex: 1 1 100%; }
  .badges { grid-template-columns: 1fr; gap: 16px; }
  .models__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .model:nth-child(n) { border-top: 0; }
  .model:nth-child(n)::before { display: block; }
  .model:nth-child(odd)::before { display: none; }
  .model:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .brand__word { width: 130px; }
  .brand--footer .brand__word { width: 140px; }
  .site-footer__inner { flex-direction: column; align-items: flex-start; }
}
