:root {
  --bg: #f4f4f1;
  --paper: #ffffff;
  --ink: #111214;
  --muted: #747474;
  --line: #e5e2da;
  --soft: #f1f0ec;
  --dark: #111214;
  --dark-2: #1b1c1f;
  --accent: #f6c431;
  --accent-ink: #111214;
  --radius: 10px;
  --page-x: clamp(16px, 3.2vw, 52px);
  --container: min(92vw, 1360px);
  font-family: "Golos Text", Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; background: var(--bg); }
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }

.topline {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.topline__inner {
  width: var(--container);
  min-height: clamp(64px, 5.5vw, 82px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 2vw;
}

.brand img { width: clamp(126px, 10vw, 170px); height: auto; }
.nav { display: flex; justify-content: center; gap: .45vw; flex-wrap: wrap; }
.nav a {
  padding: clamp(9px, .8vw, 13px) clamp(11px, 1vw, 16px);
  border-radius: 999px;
  color: #343434;
  font-size: clamp(13px, .9vw, 15px);
  font-weight: 750;
}
.nav a:hover, .nav a[aria-current="page"] { background: var(--dark); color: #fff; }
.header-contacts { display: grid; gap: 2px; text-align: right; font-size: 13px; color: var(--muted); }
.header-contacts a { color: var(--ink); font-weight: 900; font-size: clamp(14px, 1vw, 17px); }
.burger { display: none; border: 0; background: transparent; width: 42px; height: 42px; }
.burger span { display: block; height: 2px; background: var(--ink); margin: 7px 0; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(46px, 3.6vw, 56px);
  padding: 0 clamp(18px, 1.7vw, 28px);
  border-radius: var(--radius);
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-1px); background: #ffd95a; border-color: #ffd95a; }
.button--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.3); }
.button--ghost:hover { color: var(--ink); border-color: var(--accent); }
.button--dark { background: var(--dark); border-color: var(--dark); color: #fff; }
.button:disabled { opacity: .65; cursor: wait; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: clamp(11px, .85vw, 14px);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
h1, h2, h3 { margin: 0; line-height: .98; letter-spacing: -.045em; }
p { line-height: 1.55; }

.hero {
  width: var(--container);
  min-height: clamp(620px, 52vw, 780px);
  margin: clamp(14px, 2vw, 28px) auto clamp(54px, 6vw, 88px);
  padding: clamp(24px, 4.2vw, 64px);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
  align-items: end;
  background:
    radial-gradient(circle at 72% 38%, rgba(246,196,49,.34), transparent 22vw),
    linear-gradient(135deg, #161719, #08090a 74%);
  color: #fff;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -6vw -8vw auto;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  background: rgba(246,196,49,.08);
}
.hero__copy { position: relative; z-index: 2; max-width: 58vw; }
.hero h1 { margin-top: 1vw; font-size: clamp(46px, 6.8vw, 108px); max-width: 11ch; }
.hero p { max-width: 650px; color: rgba(255,255,255,.78); font-size: clamp(17px, 1.55vw, 24px); margin: clamp(18px, 1.8vw, 26px) 0 0; }
.hero__actions, .card-actions, .inline-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: clamp(22px, 2.3vw, 34px); }
.hero__car { position: relative; z-index: 1; align-self: center; }
.hero__car img { width: min(58vw, 760px); margin-left: -2vw; filter: drop-shadow(0 3vw 3vw rgba(0,0,0,.42)); }
.hero__facts {
  position: absolute;
  left: clamp(24px, 4.2vw, 64px);
  right: clamp(24px, 4.2vw, 64px);
  bottom: clamp(22px, 2.6vw, 40px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  z-index: 3;
}
.hero__facts span, .lead-points span {
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.07);
  border-radius: 999px;
  padding: 12px 14px;
  text-align: center;
  font-weight: 850;
}

.section {
  width: var(--container);
  margin: 0 auto clamp(56px, 6vw, 96px);
}
.section-head, .intro, .options {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  gap: clamp(20px, 5vw, 84px);
  align-items: end;
}
.section-head { margin-bottom: clamp(18px, 2vw, 30px); }
.section-head h2, .intro h2, .contract h2, .lead-copy h2, .options h2 { margin-top: 10px; font-size: clamp(34px, 4.7vw, 74px); }
.section-head p, .intro p, .options li { margin: 0; color: var(--muted); font-size: clamp(16px, 1.25vw, 20px); }
.section-head--light { color: #fff; }
.section-head--light p { color: rgba(255,255,255,.68); }

.model-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.2vw, 18px);
}
.model-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(220px, .9fr) minmax(0, 1.1fr);
  min-height: clamp(360px, 29vw, 430px);
}
.model-card__media { background: var(--soft); display: grid; place-items: center; padding: 2vw; }
.model-card__media img { width: 100%; max-height: 300px; object-fit: contain; filter: drop-shadow(0 1.6vw 1.8vw rgba(0,0,0,.18)); }
.model-card__body { padding: clamp(18px, 2vw, 30px); display: flex; flex-direction: column; gap: 16px; }
.badges { display: flex; gap: 8px; flex-wrap: wrap; }
.badges span {
  border-radius: 999px;
  background: var(--soft);
  padding: 8px 11px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}
.model-card h3 { font-size: clamp(30px, 3vw, 48px); }
.model-card p { color: var(--muted); margin: 0; }
.price, .hero-price, .trim-price { font-size: clamp(21px, 2vw, 32px); color: var(--ink); }
.mini-stats, .stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.mini-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: auto; }
.stat {
  padding: clamp(13px, 1.2vw, 18px);
  border-radius: var(--radius);
  background: var(--soft);
  border: 1px solid var(--line);
}
.stat b { display: block; font-size: clamp(17px, 1.45vw, 24px); }
.stat span { display: block; margin-top: 6px; color: var(--muted); font-size: 13px; }

.contract {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(18px, 4vw, 58px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4.5vw, 66px);
}
.contract__grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.contract article {
  min-height: 142px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--soft);
}
.contract b { display: block; font-size: 21px; margin-bottom: 10px; }
.contract span { color: var(--muted); line-height: 1.5; }

.compare-wrap {
  background: var(--dark);
  color: #fff;
  padding: clamp(40px, 6vw, 92px) max(var(--page-x), calc((100vw - 1360px) / 2));
  margin: clamp(58px, 6vw, 94px) 0;
}
.compare-table, .wide-trim-table { overflow-x: auto; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.12); }
table { width: 100%; min-width: 840px; border-collapse: collapse; background: rgba(255,255,255,.03); }
th, td { text-align: left; padding: 18px; border-bottom: 1px solid rgba(255,255,255,.12); vertical-align: top; }
th { color: var(--accent); text-transform: uppercase; font-size: 12px; letter-spacing: .08em; }
td { color: rgba(255,255,255,.82); }
.wide-trim-table { border-color: var(--line); }
.wide-trim-table table { background: #fff; }
.wide-trim-table td { color: var(--ink); border-bottom: 1px solid var(--line); }

.model-hero, .chars-hero {
  width: var(--container);
  margin: clamp(14px, 2vw, 28px) auto clamp(48px, 5vw, 72px);
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  gap: clamp(12px, 1.2vw, 18px);
}
.model-hero__copy, .chars-hero > div {
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(24px, 4.2vw, 62px);
  min-height: clamp(480px, 39vw, 630px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.model-hero h1, .chars-hero h1 { margin-top: 12px; font-size: clamp(46px, 6vw, 96px); }
.model-hero p, .chars-hero p { color: rgba(255,255,255,.76); font-size: clamp(17px, 1.25vw, 21px); }
.hero-price { color: #fff; margin-top: 10px; }
.model-hero__media, .chars-hero img {
  min-height: clamp(480px, 39vw, 630px);
  border-radius: var(--radius);
  background: var(--soft);
}
.model-hero__media { display: grid; place-items: center; padding: 3vw; }
.model-hero__media img, .chars-hero img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 2vw 2vw rgba(0,0,0,.2)); }
.chars-hero img { padding: 4vw; }

.stats-band, .spec-table {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(12px, 1.3vw, 18px);
}

.color-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(320px, .76fr);
  gap: clamp(18px, 3.4vw, 54px);
  background: #1d191b;
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(18px, 2.4vw, 34px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.07);
}
.color-media {
  position: relative;
  min-height: clamp(380px, 39vw, 620px);
  display: grid;
  place-items: center;
  background: #171416;
  border-radius: var(--radius);
  overflow: hidden;
  padding: clamp(24px, 4vw, 58px) clamp(18px, 3vw, 42px) clamp(92px, 8vw, 130px);
}
.color-media::before {
  content: "";
  position: absolute;
  inset: 16% 4% auto;
  height: 38%;
  background: radial-gradient(ellipse, rgba(246,196,49,.14), transparent 68%);
}
.color-media img[data-color-image] {
  position: relative;
  z-index: 1;
  width: min(100%, 780px);
  max-height: clamp(290px, 30vw, 470px);
  object-fit: contain;
  filter: drop-shadow(0 2.6vw 2.6vw rgba(0,0,0,.42));
  transition: opacity .18s ease, transform .18s ease;
}
.color-status {
  position: absolute;
  left: clamp(16px, 1.8vw, 26px);
  top: clamp(16px, 1.8vw, 26px);
  z-index: 2;
  padding: 10px 18px;
  border-radius: 999px;
  background: #84b744;
  color: #fff;
  font-weight: 900;
}
.thumbs {
  position: absolute;
  left: clamp(18px, 3vw, 46px);
  right: clamp(18px, 3vw, 46px);
  bottom: clamp(18px, 2vw, 30px);
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.thumb {
  width: clamp(58px, 5vw, 84px);
  height: clamp(42px, 3.6vw, 58px);
  flex: 0 0 auto;
  border: 2px solid transparent;
  border-radius: 12px;
  background: #262225;
  padding: 4px;
  cursor: pointer;
}
.thumb img { width: 100%; height: 100%; object-fit: contain; }
.thumb.is-active { border-color: var(--accent); box-shadow: 0 0 0 2px rgba(246,196,49,.16); }
.color-controls {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(380px, 39vw, 620px);
}
.color-controls h2 {
  margin-top: 12px;
  font-size: clamp(32px, 3.8vw, 62px);
}
.color-controls p {
  max-width: 520px;
  color: rgba(255,255,255,.64);
  font-size: clamp(16px, 1.15vw, 19px);
}
.swatches {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 1vw, 15px);
  margin-top: clamp(22px, 2.3vw, 34px);
}
.swatch {
  position: relative;
  width: clamp(52px, 4.2vw, 70px);
  height: clamp(52px, 4.2vw, 70px);
  border-radius: 50%;
  border: 4px solid #fff;
  background: transparent;
  padding: 4px;
  cursor: pointer;
}
.swatch span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.18);
}
.swatch.is-active { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(246,196,49,.22); }
.swatch em {
  position: absolute;
  left: 50%;
  top: -12px;
  transform: translateX(-50%);
  white-space: nowrap;
  border-radius: 999px;
  background: #84b744;
  color: #fff;
  padding: 3px 7px;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}
.color-name {
  margin-top: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-size: clamp(18px, 1.5vw, 24px);
}
.color-name span { margin-left: 8px; color: var(--accent); font-weight: 900; }
.color-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.spec-table {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  overflow: hidden;
}
.spec-table div { background: #fff; padding: clamp(18px, 2vw, 28px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.spec-table span { display: block; color: var(--muted); margin-bottom: 9px; }
.spec-table b { font-size: clamp(18px, 1.6vw, 25px); }

.trim-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.2vw, 18px);
}
.trim-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(18px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.trim-card h3 { margin-top: 8px; font-size: clamp(22px, 2vw, 34px); line-height: 1.05; min-height: 2.1em; }
.trim-card ul, .options ul { list-style: none; padding: 0; margin: 0; }
.trim-card li { display: flex; justify-content: space-between; gap: 18px; padding: 12px 0; border-top: 1px solid var(--line); color: var(--muted); }
.trim-card li b { color: var(--ink); text-align: right; }

.inline-actions { align-items: center; }
.link { font-weight: 900; text-decoration: underline; text-underline-offset: 4px; }
.options {
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(26px, 4.5vw, 66px);
}
.options ul { display: grid; gap: 12px; }
.options li { color: rgba(255,255,255,.74); padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.12); }

.lead-section {
  width: var(--container);
  margin: 0 auto clamp(60px, 6vw, 98px);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(18px, 3vw, 46px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 58px);
}
.lead-copy h2 { margin-top: 12px; }
.lead-copy p { color: var(--muted); font-size: clamp(16px, 1.2vw, 20px); }
.lead-points { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.lead-points span { color: var(--ink); background: var(--soft); border-color: var(--line); }
.lead-form { display: grid; gap: 14px; }
.lead-form label { display: grid; gap: 8px; font-weight: 850; }
.lead-form input, .lead-form select {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  padding: 0 16px;
  color: var(--ink);
}
.lead-form input:focus, .lead-form select:focus { outline: 2px solid rgba(246,196,49,.45); border-color: var(--accent); }
.hp, .lead-frame { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.form-status { min-height: 24px; margin: 0; color: var(--muted); font-weight: 750; }

.footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: clamp(34px, 5vw, 72px) max(var(--page-x), calc((100vw - 1360px) / 2)) 34px;
}
.footer__grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr .8fr; gap: clamp(20px, 3vw, 48px); }
.footer__logo { width: 150px; margin-bottom: 18px; }
.footer p { color: var(--muted); margin: 0 0 10px; }
.footer h3 { font-size: 18px; margin-bottom: 12px; letter-spacing: 0; }
.footer a { display: block; font-weight: 850; margin: 8px 0; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: clamp(28px, 4vw, 56px);
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.modal[hidden] { display: none; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0,0,0,.62);
  display: grid;
  place-items: center;
  padding: 18px;
}
.modal__panel {
  position: relative;
  width: min(860px, 96vw);
  max-height: 92vh;
  overflow: auto;
  background: var(--bg);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 38px);
}
.modal__panel .lead-section { width: 100%; margin: 18px 0 0; grid-template-columns: 1fr; padding: 0; border: 0; background: transparent; }
.modal__panel .lead-copy { display: none; }
.modal__close {
  position: absolute;
  right: 16px;
  top: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  font-size: 28px;
  cursor: pointer;
}
.missing { min-height: 50vh; padding-top: 80px; }

@media (max-width: 1100px) {
  .topline__inner { grid-template-columns: auto 1fr auto; }
  .header-contacts { display: none; }
  .hero, .model-hero, .chars-hero, .lead-section, .intro, .contract, .options { grid-template-columns: 1fr; }
  .color-showcase { grid-template-columns: 1fr; }
  .hero__copy { max-width: none; }
  .hero__car img { width: min(88vw, 760px); margin: 0 auto; }
  .model-card { grid-template-columns: 1fr; }
  .trim-grid, .spec-table { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  :root { --container: calc(100vw - 20px); }
  .topline__inner { grid-template-columns: auto auto; justify-content: space-between; }
  .burger { display: block; }
  .nav {
    position: fixed;
    left: 10px;
    right: 10px;
    top: 74px;
    display: none;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
  }
  .nav.is-open { display: flex; }
  .hero { min-height: 720px; padding-bottom: 130px; }
  .hero__facts, .mini-stats, .stats-band, .trim-grid, .spec-table, .contract__grid, .footer__grid { grid-template-columns: 1fr; }
  .color-media, .color-controls { min-height: auto; }
  .color-media { padding-bottom: 96px; }
  .model-hero__copy, .chars-hero > div, .model-hero__media, .chars-hero img { min-height: auto; }
  .model-hero__media, .chars-hero img { padding: 34px 10px; }
  .section-head { grid-template-columns: 1fr; align-items: start; }
  .card-actions, .hero__actions, .inline-actions { flex-direction: column; align-items: stretch; }
  .footer__bottom { display: grid; }
}

/* E.N.CARS dark catalog pass */
:root {
  --bg: #1f1b1d;
  --paper: #221f21;
  --ink: #f4f4f4;
  --muted: #a7a3a6;
  --line: rgba(255,255,255,.12);
  --soft: #2d292c;
  --dark: #1b1719;
  --dark-2: #272326;
  --accent: #ffca18;
}

body { background: var(--bg); color: var(--ink); }
.topline {
  background: rgba(31,27,29,.96);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topline__inner { min-height: clamp(76px, 6vw, 100px); }
.brand img {
  width: clamp(158px, 13vw, 220px);
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.22));
}
.nav a {
  color: #e8e5e7;
  background: rgba(255,255,255,.04);
  border: 1px solid transparent;
  font-weight: 950;
}
.nav a:hover, .nav a[aria-current="page"] {
  color: #101010;
  background: var(--accent);
  border-color: var(--accent);
}
.header-contacts span { color: #8f8b8e; }
.header-contacts a { color: #fff; }
.burger span { background: #fff; }

.hero {
  min-height: clamp(560px, 43vw, 720px);
  margin-top: 0;
  background: linear-gradient(135deg, #211d20, #151214 76%);
  border: 1px solid rgba(255,255,255,.08);
}
.hero h1 { color: #fff; text-transform: none; }
.hero__facts span, .lead-points span {
  background: #3c393c;
  border: 0;
  color: #fff;
}
.button {
  border-radius: 999px;
  min-height: 58px;
  padding: 0 clamp(22px, 2.2vw, 38px);
  text-transform: uppercase;
  letter-spacing: .01em;
}
.button--dark {
  background: #ffca18;
  border-color: #ffca18;
  color: #111;
}
.button--ghost {
  border-color: rgba(255,202,24,.8);
  color: #ffca18;
}

.intro, .section-head { color: #fff; }
.intro p, .section-head p { color: #aaa4a8; }
.model-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.model-card {
  grid-template-columns: .92fr 1.08fr;
  background: #211d20;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  padding: clamp(18px, 1.7vw, 28px);
  min-height: 342px;
}
.model-card__media {
  border-radius: 18px;
  background: #171416;
  min-height: 250px;
  padding: clamp(12px, 1.4vw, 22px);
}
.model-card__media img {
  max-height: 230px;
  filter: drop-shadow(0 24px 36px rgba(0,0,0,.38));
}
.model-card__body { padding: clamp(10px, 1.1vw, 18px) 0 clamp(10px, 1.1vw, 18px) clamp(12px, 1.4vw, 24px); }
.badges span {
  background: #84b744;
  color: #fff;
  font-weight: 950;
}
.badges span:first-child {
  background: transparent;
  color: #aaa4a8;
  padding-left: 0;
}
.model-card h3 {
  color: #fff;
  font-size: clamp(26px, 2.2vw, 40px);
  letter-spacing: -.03em;
}
.model-card p { color: #aaa4a8; font-size: clamp(14px, .98vw, 16px); }
.price, .hero-price, .trim-price { color: #fff; }
.mini-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.stat {
  background: transparent;
  border: 0;
  padding: 4px 0;
}
.stat b { color: #fff; font-size: clamp(18px, 1.4vw, 25px); }
.stat span { color: #8d888c; }
.card-actions { margin-top: auto; }

.contract, .lead-section {
  background: #211d20;
  border-color: rgba(255,255,255,.12);
  color: #fff;
}
.contract article, .lead-form input, .lead-form select {
  background: #171416;
  border-color: rgba(255,255,255,.12);
  color: #fff;
}
.contract span, .lead-copy p, .form-status { color: #aaa4a8; }
.lead-form label { color: #fff; }

.model-hero__copy, .chars-hero > div {
  background: #211d20;
  border: 1px solid rgba(255,255,255,.12);
}
.model-hero__media, .chars-hero img {
  background: #171416;
  border: 1px solid rgba(255,255,255,.08);
}
.stats-band, .spec-table, .trim-card {
  background: #211d20;
  border-color: rgba(255,255,255,.12);
  color: #fff;
}
.spec-table div { background: #211d20; border-color: rgba(255,255,255,.1); }
.spec-table span, .trim-card li, .options li { color: #aaa4a8; }
.spec-table b, .trim-card li b { color: #fff; }
.trim-card {
  border-radius: 22px;
}
.options {
  background: #171416;
  border: 1px solid rgba(255,255,255,.1);
}
.footer {
  background: #171416;
  border-top-color: rgba(255,255,255,.08);
  color: #aaa4a8;
}
.footer h3, .footer a { color: #fff; }
.footer__bottom { border-top-color: rgba(255,255,255,.1); }

@media (max-width: 1100px) {
  .model-card { grid-template-columns: 1fr; }
  .model-card__body { padding-left: 0; }
}

@media (max-width: 760px) {
  .topline__inner { min-height: 76px; }
  .nav { background: #211d20; border-color: rgba(255,255,255,.12); }
  .model-grid { grid-template-columns: 1fr; }
  .hero { min-height: 680px; }
}

/* Product page and catalog pass closer to E.N.CARS */
main {
  background:
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px) 0 0 / 10.2vw 10.2vw,
    var(--bg);
}
.topline {
  position: sticky;
  top: 0;
  z-index: 20;
}
.topline__inner {
  width: min(78vw, 1560px);
}
.brand img {
  width: clamp(170px, 10.8vw, 230px);
}
.nav {
  justify-content: center;
  gap: .55vw;
}
.nav a {
  min-height: clamp(42px, 2.9vw, 56px);
  padding: 0 clamp(13px, 1.2vw, 24px);
  display: inline-flex;
  align-items: center;
}
.hero {
  width: min(78vw, 1560px);
  grid-template-columns: .78fr 1.22fr;
  border-radius: 0 0 28px 28px;
  overflow: hidden;
  min-height: clamp(500px, 37vw, 650px);
  padding: clamp(28px, 3.4vw, 56px);
  margin-bottom: clamp(34px, 4vw, 62px);
}
.hero__copy {
  max-width: min(48vw, 760px);
}
.hero h1 {
  max-width: 12em;
  font-size: clamp(44px, 4.8vw, 86px);
  line-height: .95;
}
.hero p {
  max-width: 620px;
  font-size: clamp(16px, 1.18vw, 21px);
}
.hero__car {
  min-height: clamp(330px, 29vw, 510px);
  display: grid;
  place-items: end center;
}
.hero__car img {
  width: min(48vw, 820px);
  max-height: clamp(300px, 26vw, 470px);
  object-fit: contain;
  object-position: center bottom;
}
.hero__facts {
  position: static;
  grid-column: 1 / -1;
  margin-top: clamp(16px, 1.6vw, 28px);
}
.section {
  width: min(78vw, 1560px);
}
.model-grid {
  gap: clamp(18px, 1.3vw, 28px);
}
.model-card {
  position: relative;
  gap: clamp(20px, 1.9vw, 34px);
  min-height: clamp(330px, 24vw, 430px);
}
.model-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.035), transparent 42%);
}
.model-card__media {
  min-height: clamp(220px, 16vw, 300px);
}
.model-card__media img {
  width: 112%;
  max-width: none;
  height: clamp(190px, 14.5vw, 270px);
  object-fit: contain;
  object-position: center bottom;
}
.model-card__body {
  min-width: 0;
  z-index: 1;
}
.badges span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
}
.model-card .button--dark {
  background: var(--accent);
  color: #111;
  font-weight: 1000;
}

.product-head {
  width: min(78vw, 1560px);
  margin: clamp(14px, 1.3vw, 26px) auto clamp(12px, 1vw, 18px);
}
.breadcrumbs {
  display: flex;
  gap: .8vw;
  align-items: center;
  color: #8c878a;
  font-weight: 850;
  margin-bottom: clamp(14px, 1.3vw, 24px);
}
.breadcrumbs a {
  color: var(--accent);
}
.product-head__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(18px, 2vw, 34px);
  align-items: end;
}
.product-head h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(40px, 3.8vw, 74px);
  letter-spacing: -.045em;
  line-height: .92;
}
.product-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: clamp(10px, .95vw, 16px);
}
.product-tags span {
  border-radius: 999px;
  background: #4a474a;
  color: #fff;
  font-weight: 950;
  padding: 9px 16px;
}
.product-head__price {
  text-align: right;
}
.product-head__price span {
  display: block;
  color: #9e999d;
  font-weight: 850;
  margin-bottom: 7px;
}
.product-head__price b {
  color: #fff;
  font-size: clamp(24px, 2.2vw, 42px);
}

.color-section {
  margin-bottom: clamp(36px, 4vw, 70px);
}
.color-showcase {
  grid-template-columns: minmax(0, 1.34fr) minmax(360px, .86fr);
  gap: clamp(34px, 4.2vw, 78px);
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
}
.color-media {
  min-height: clamp(400px, 30vw, 580px);
  border-radius: 22px;
  background: #1a1719;
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  align-content: start;
  padding: clamp(24px, 2.3vw, 44px) clamp(18px, 2vw, 34px) clamp(78px, 5.8vw, 108px);
}
.color-media::before {
  inset: auto 9% 17%;
  height: 18%;
  background: radial-gradient(ellipse, rgba(0,0,0,.52), transparent 68%);
  filter: blur(13px);
}
.color-media img[data-color-image] {
  width: 100%;
  height: clamp(255px, 21.5vw, 410px);
  max-height: none;
  object-fit: contain;
  object-position: center bottom;
  transform: none;
  filter: drop-shadow(0 26px 34px rgba(0,0,0,.36));
}
.color-status {
  background: #84b744;
  color: #fff;
  border: 0;
  font-weight: 950;
}
.thumbs {
  justify-content: center;
  gap: 10px;
}
.thumb {
  width: clamp(62px, 4.8vw, 88px);
  height: clamp(42px, 3.2vw, 58px);
  background: rgba(0,0,0,.52);
  border-radius: 10px;
}
.thumb img {
  object-position: center;
}
.color-controls {
  min-height: clamp(400px, 30vw, 580px);
  justify-content: flex-start;
  padding-top: clamp(4px, .7vw, 14px);
}
.color-controls h2 {
  color: #fff;
  margin-top: 8px;
  font-size: clamp(28px, 2.2vw, 44px);
}
.showroom-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.3vw, 24px) clamp(18px, 2.2vw, 40px);
  margin: clamp(16px, 1.4vw, 24px) 0;
  padding-bottom: clamp(16px, 1.4vw, 24px);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.showroom-specs .stat {
  display: grid;
  grid-template-columns: clamp(28px, 2vw, 38px) 1fr;
  gap: 11px;
  align-items: center;
}
.showroom-specs .stat::before {
  content: "";
  width: clamp(28px, 2vw, 38px);
  height: clamp(28px, 2vw, 38px);
  border: 3px solid var(--accent);
  border-radius: 10px;
  box-shadow: inset 0 0 0 7px rgba(255,202,24,.08);
}
.showroom-specs .stat b {
  font-size: clamp(18px, 1.2vw, 24px);
}
.showroom-trims {
  padding-bottom: clamp(14px, 1.2vw, 22px);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.showroom-trims > b {
  display: block;
  color: #fff;
  font-size: clamp(19px, 1.4vw, 25px);
  margin-bottom: 12px;
}
.showroom-trims div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.showroom-trims button {
  min-height: 44px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.18);
  background: transparent;
  color: #fff;
  font: inherit;
  font-weight: 900;
  padding: 0 20px;
}
.showroom-trims button.is-active {
  border-color: var(--accent);
  color: var(--accent);
}
.swatches {
  margin-top: clamp(14px, 1.2vw, 22px);
  padding-top: 0;
}
.swatch {
  width: clamp(50px, 3.5vw, 66px);
  height: clamp(50px, 3.5vw, 66px);
  border: 4px solid #fff;
}
.swatch.is-active {
  border-color: #fff;
  box-shadow: 0 0 0 4px var(--accent);
}
.color-name {
  color: #fff;
  font-size: clamp(17px, 1.15vw, 22px);
}
.color-name strong,
.color-name span {
  color: var(--accent);
}
.trim-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.trim-card .button {
  background: var(--accent);
  color: #111;
}
.compare-wrap {
  background: #171416;
}

@media (max-width: 1180px) {
  .topline__inner,
  .hero,
  .section,
  .product-head {
    width: calc(100vw - 32px);
  }
  .color-showcase,
  .product-head__row {
    grid-template-columns: 1fr;
  }
  .product-head__price {
    text-align: left;
  }
}

@media (max-width: 760px) {
  main {
    background: var(--bg);
  }
  .hero {
    grid-template-columns: 1fr;
    padding-bottom: 120px;
  }
  .hero__car {
    min-height: 280px;
  }
  .hero__car img {
    width: 100%;
    max-height: 300px;
  }
  .product-head h1 {
    font-size: clamp(38px, 15vw, 62px);
  }
  .breadcrumbs {
    overflow-x: auto;
    white-space: nowrap;
  }
  .showroom-specs,
  .trim-grid {
    grid-template-columns: 1fr;
  }
  .color-media {
    min-height: 420px;
  }
  .color-media img[data-color-image] {
    height: 310px;
  }
  .color-controls {
    min-height: auto;
  }
}

.hero .hero__facts {
  position: static !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  grid-column: 1 / -1;
  margin-top: 0;
}
.hero .hero__actions {
  margin-bottom: clamp(18px, 1.8vw, 28px);
}
