@font-face {
  font-family: "Barlow";
  src: url("/assets/fonts/barlow-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  src: url("/assets/fonts/barlow-semibold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("/assets/fonts/barlow-condensed-extrabold.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  --ink: #111318;
  --ink-soft: #3e4652;
  --muted: #606a78;
  --line: #d9dfe7;
  --line-strong: #aeb8c5;
  --paper: #f7f9fb;
  --surface: #fdfdfc;
  --surface-raised: #ffffff;
  --surface-muted: #edf1f5;
  --charcoal: #101820;
  --charcoal-soft: #192630;
  --red: #d82135;
  --red-dark: #a81325;
  --red-soft: #fbeaed;
  --success: #0d6a49;
  --error: #9c1d2e;
  --radius: 16px;
  --radius-small: 10px;
  --shadow: 0 18px 52px rgba(22, 35, 51, 0.12);
  --shadow-small: 0 10px 28px rgba(22, 35, 51, 0.1);
  --shell: min(1320px, calc(100% - 64px));
  --header-height: 72px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--red) var(--surface-muted);
  scrollbar-width: thin;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Barlow", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::-webkit-scrollbar {
  width: 12px;
}

body::-webkit-scrollbar-track {
  background: var(--surface-muted);
}

body::-webkit-scrollbar-thumb {
  border: 3px solid var(--surface-muted);
  border-radius: 10px;
  background: var(--red);
}

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

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-color: rgba(216, 33, 53, 0.48);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

a:hover {
  text-decoration-color: var(--red);
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(216, 33, 53, 0.72);
  outline-offset: 3px;
}

h1,
h2,
h3,
p,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.6rem, 6.5vw, 5.8rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 4.5vw, 4.7rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
}

p {
  margin-bottom: 20px;
  color: var(--ink-soft);
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.section-block {
  padding-block: 112px;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: var(--radius-small);
  padding: 12px 16px;
  color: var(--surface);
  background: var(--ink);
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(174, 184, 197, 0.62);
  background: rgba(247, 249, 251, 0.94);
  backdrop-filter: blur(18px) saturate(130%);
}

.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  width: var(--shell);
  min-height: var(--header-height);
  margin-inline: auto;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius-small);
  color: var(--surface);
  background: var(--red);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand-copy strong {
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 1.38rem;
  letter-spacing: 0.01em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.7rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 34px);
  min-width: 0;
}

.primary-nav a {
  position: relative;
  padding-block: 22px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 16px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--red);
  content: "";
  transition: transform 220ms var(--ease-out);
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.locale-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  padding: 4px;
  background: var(--surface);
  font-size: 0.76rem;
  font-weight: 600;
}

.locale-switch a,
.locale-switch span {
  display: grid;
  min-width: 34px;
  min-height: 30px;
  place-items: center;
  border-radius: 7px;
  text-decoration: none;
}

.locale-switch span {
  color: var(--surface);
  background: var(--ink);
}

.mobile-locale-switch {
  display: none;
}

.menu-button {
  display: none;
  min-width: 64px;
  min-height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-small);
  background: var(--surface);
  cursor: pointer;
  font-weight: 600;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--red);
  border-radius: var(--radius-small);
  padding: 13px 22px;
  color: var(--surface);
  background: var(--red);
  box-shadow: 0 10px 24px rgba(216, 33, 53, 0.18);
  cursor: pointer;
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: background 180ms var(--ease-out), border-color 180ms var(--ease-out), box-shadow 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.button:hover {
  border-color: var(--red-dark);
  background: var(--red-dark);
  box-shadow: 0 14px 32px rgba(168, 19, 37, 0.22);
  text-decoration: none;
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(1px);
}

.button:disabled {
  border-color: var(--line-strong);
  color: var(--muted);
  background: var(--surface-muted);
  box-shadow: none;
  cursor: not-allowed;
}

.button-secondary {
  border-color: var(--line-strong);
  color: var(--ink);
  background: transparent;
  box-shadow: none;
}

.button-secondary:hover {
  border-color: var(--ink);
  color: var(--surface);
  background: var(--ink);
  box-shadow: none;
}

.button-small {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 0.86rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  min-height: calc(100dvh - var(--header-height));
  align-items: center;
  gap: clamp(42px, 6vw, 92px);
  padding-block: 42px;
}

.hero-copy {
  max-width: 580px;
}

.hero-copy h1 {
  max-width: 100%;
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 5.5vw, 5rem);
}

.hero-copy > p {
  max-width: 48ch;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: clamp(1.06rem, 1.35vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-gallery {
  display: grid;
  min-height: min(620px, calc(100dvh - 138px));
  grid-template-rows: minmax(0, 1.9fr) minmax(145px, 0.75fr);
  gap: 14px;
}

.hero-primary,
.hero-support a {
  display: grid;
  min-height: 0;
  color: var(--ink);
  text-decoration: none;
}

.hero-primary {
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-raised);
  box-shadow: var(--shadow);
}

.hero-primary img,
.hero-support img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms var(--ease-out);
}

.hero-primary > span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px 16px;
}

.hero-primary strong {
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 1.65rem;
}

.hero-primary small {
  color: var(--red-dark);
  font-weight: 600;
}

.hero-primary:hover img,
.hero-support a:hover img,
.product-card__media:hover img {
  transform: scale(1.025);
}

.hero-support {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-support a {
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border-radius: var(--radius-small);
  background: var(--surface-raised);
}

.hero-support span {
  overflow: hidden;
  padding: 9px 12px 10px;
  font-size: 0.84rem;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-heading p {
  max-width: 68ch;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.featured-section {
  padding-top: 132px;
}

.featured-grid,
.hot-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 34px 24px;
}

.featured-grid > :nth-child(1),
.hot-grid > :nth-child(1) {
  grid-column: span 7;
}

.featured-grid > :nth-child(2),
.hot-grid > :nth-child(2) {
  grid-column: span 5;
}

.featured-grid > :nth-child(3),
.hot-grid > :nth-child(3) {
  grid-column: span 5;
}

.featured-grid > :nth-child(4),
.hot-grid > :nth-child(4) {
  grid-column: span 7;
}

.hot-grid > :nth-child(5) {
  grid-column: span 7;
}

.hot-grid > :nth-child(6) {
  grid-column: span 5;
}

.hot-grid > :nth-child(7) {
  grid-column: span 5;
}

.hot-grid > :nth-child(8) {
  grid-column: span 7;
}

.product-card {
  display: grid;
  min-width: 0;
  align-content: start;
  gap: 20px;
}

.product-card__media {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-muted);
}

.product-card__media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 500ms var(--ease-out);
}

.product-card__body {
  display: grid;
  align-content: start;
  gap: 18px;
  padding-inline: 2px;
}

.product-card__body h3 {
  margin-bottom: 10px;
}

.product-card__body h3 a {
  text-decoration: none;
}

.product-card__body h3 a:hover {
  color: var(--red-dark);
}

.product-card__body p {
  max-width: 52ch;
  margin-bottom: 0;
}

.product-category {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-bottom: 9px !important;
  color: var(--red-dark) !important;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-category span + span {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.card-specs {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.card-specs div {
  min-width: 0;
}

.card-specs dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.76rem;
}

.card-specs dd {
  margin-bottom: 0;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
}

.text-link {
  width: fit-content;
  color: var(--red-dark);
  font-weight: 600;
}

.new-model-section-home {
  padding-block: 76px 24px;
}

.new-model-section-catalog {
  padding-block: 28px 70px;
}

.new-model-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  overflow: hidden;
  min-height: 510px;
  border-radius: var(--radius);
  color: var(--surface);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.new-model-feature__content {
  display: grid;
  align-content: center;
  padding: clamp(44px, 5.5vw, 78px);
}

.new-model-feature__content h2 {
  max-width: 12ch;
  color: var(--surface);
  font-size: clamp(3.1rem, 4.2vw, 4.7rem);
}

.new-model-feature__content > p {
  max-width: 54ch;
  color: #d5dbe3;
}

.new-model-specs {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1.45fr) minmax(0, 0.72fr);
  gap: 22px;
  margin: 22px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  padding-top: 22px;
}

.new-model-specs div {
  min-width: 0;
}

.new-model-specs dt {
  margin-bottom: 6px;
  color: #aeb8c5;
  font-size: 0.76rem;
}

.new-model-specs dd {
  margin-bottom: 0;
  color: var(--surface);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.38;
  font-variant-numeric: tabular-nums;
}

.new-model-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.text-link-light {
  color: var(--surface);
}

.new-model-feature__media {
  display: block;
  min-height: 100%;
  overflow: hidden;
}

.new-model-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
}

.new-model-feature__media:hover img {
  transform: scale(1.025);
}

.catalog-teaser {
  background: var(--surface-muted);
}

.catalog-teaser__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: 72px;
}

.catalog-teaser__inner > div:first-child p {
  max-width: 55ch;
}

.catalog-teaser__actions {
  display: flex;
  grid-column: 2;
  align-items: center;
  justify-self: start;
  gap: 20px;
}

.catalog-teaser__actions .button {
  flex: 0 0 auto;
}

.category-links {
  display: grid;
  border-top: 1px solid var(--line-strong);
}

.category-links a {
  display: grid;
  grid-template-columns: minmax(130px, 0.45fr) minmax(0, 1fr);
  gap: 24px;
  border-bottom: 1px solid var(--line-strong);
  padding: 18px 4px;
  text-decoration: none;
  transition: color 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.category-links a:hover {
  color: var(--red-dark);
  transform: translateX(6px);
}

.category-links span {
  font-weight: 600;
}

.category-links small {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.dealer-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 76px;
}

.dealer-intro p {
  max-width: 56ch;
  font-size: 1.08rem;
}

.dealer-steps {
  display: grid;
  align-content: start;
  border-top: 1px solid var(--line-strong);
}

.dealer-steps article {
  display: grid;
  grid-template-columns: minmax(120px, 0.35fr) minmax(0, 1fr);
  gap: 22px;
  border-bottom: 1px solid var(--line);
  padding: 24px 4px;
}

.dealer-steps h3 {
  margin: 0;
  font-size: 1.8rem;
}

.dealer-steps p {
  margin: 0;
}

.quote-only-note {
  width: fit-content;
  margin: 0;
  border-radius: var(--radius-small);
  padding: 12px 15px;
  color: var(--red-dark);
  background: var(--red-soft);
  font-weight: 600;
}

.dealer-section > .quote-only-note {
  grid-column: 2;
}

.factory-section {
  color: #f4f7fa;
  background: var(--charcoal);
}

.factory-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
  align-items: center;
  gap: 64px;
}

.section-heading-light {
  margin-bottom: 0;
}

.section-heading-light h2,
.section-heading-light p,
.factory-note {
  color: #f4f7fa;
}

.section-heading-light p,
.factory-note {
  color: #c9d2dc;
}

.factory-video {
  overflow: hidden;
  border: 1px solid #334552;
  border-radius: var(--radius);
  background: #080c10;
  box-shadow: 0 24px 70px rgba(3, 8, 12, 0.42);
}

.factory-video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.factory-note {
  grid-column: 2;
  margin: -40px 0 0;
  font-size: 0.9rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 78px;
}

.contact-intro {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.contact-intro p {
  max-width: 50ch;
}

.direct-contact {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.direct-contact a {
  width: fit-content;
  font-size: 1.08rem;
  font-weight: 600;
}

.inquiry-form {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 48px);
  background: var(--surface-raised);
  box-shadow: var(--shadow-small);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 18px;
}

.field {
  display: grid;
  align-content: start;
  gap: 8px;
}

.field > span {
  font-weight: 600;
}

.field small {
  min-height: 1.2em;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.3;
}

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

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-small);
  padding: 12px 14px;
  background: var(--surface);
  caret-color: var(--red);
  transition: border-color 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.field textarea {
  min-height: 138px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #687482;
  opacity: 1;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--ink-soft);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--red);
  outline: none;
  box-shadow: 0 0 0 3px rgba(216, 33, 53, 0.16);
}

.field [aria-invalid="true"] {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(156, 29, 46, 0.12);
}

.field-error {
  color: var(--error) !important;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
}

.form-footer p {
  max-width: 48ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.form-status:empty {
  display: none;
}

.form-status {
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  padding: 13px 15px;
  font-weight: 600;
}

.form-status.is-success {
  border-color: rgba(13, 106, 73, 0.38);
  color: var(--success);
  background: #e9f5f0;
}

.form-status.is-error {
  border-color: rgba(156, 29, 46, 0.34);
  color: var(--error);
  background: #fbecef;
}

.response-page {
  display: grid;
  align-content: center;
  min-height: 100dvh;
  gap: 24px;
}

.response-page .button {
  width: fit-content;
}

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

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1.38fr);
  gap: 80px;
  padding-top: 24px;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  padding: 22px 2px;
  cursor: pointer;
  font-weight: 600;
}

.faq-list summary::marker {
  color: var(--red);
}

.faq-list details p {
  max-width: 66ch;
  padding: 0 2px 22px;
}

.site-footer {
  border-top: 1px solid var(--line-strong);
  padding: 76px 0 30px;
  background: var(--surface-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(2, minmax(0, 0.7fr));
  width: var(--shell);
  margin-inline: auto;
  gap: 62px;
}

.brand-footer {
  margin-bottom: 18px;
}

.footer-grid p {
  max-width: 42ch;
}

.footer-grid h2 {
  margin: 4px 0 20px;
  font-family: "Barlow", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.footer-grid > div:not(:first-child) {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-grid a {
  width: fit-content;
}

.footer-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--shell);
  margin: 54px auto 0;
  border-top: 1px solid var(--line-strong);
  padding-top: 22px;
  color: var(--muted);
  font-size: 0.82rem;
}

.page-intro {
  padding-block: 62px 20px;
}

.page-intro h1 {
  max-width: 15ch;
  font-size: clamp(3.5rem, 5vw, 5rem);
}

.page-intro > p:last-child {
  max-width: 62ch;
  font-size: 1.14rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 0.82rem;
}

.breadcrumb a {
  color: var(--ink-soft);
}

.hot-collection {
  padding-top: 48px;
}

.catalog-section {
  padding-top: 56px;
}

.catalog-controls {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  align-items: end;
  gap: 34px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  padding-block: 24px;
}

.search-field {
  display: grid;
  gap: 8px;
}

.search-field span,
.filter-group legend {
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 600;
}

.search-field input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-small);
  padding: 11px 14px;
  background: var(--surface);
  caret-color: var(--red);
}

.filter-group {
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

.filter-group > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.filter-group button {
  min-height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-small);
  padding: 9px 14px;
  background: var(--surface);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 180ms var(--ease-out), border-color 180ms var(--ease-out), color 180ms var(--ease-out);
}

.filter-group button:hover {
  border-color: var(--ink);
}

.filter-group button[aria-pressed="true"] {
  border-color: var(--ink);
  color: var(--surface);
  background: var(--ink);
}

.results-count {
  min-height: 1.5em;
  margin: 22px 0 36px;
  color: var(--muted);
  font-size: 0.88rem;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 54px 24px;
}

.catalog-grid > .product-card {
  grid-column: span 6;
}

.catalog-grid > .product-card-wide {
  grid-column: span 7;
}

.catalog-grid > .product-card-wide + .product-card {
  grid-column: span 5;
}

.catalog-grid > :nth-child(8n + 4),
.catalog-grid > :nth-child(8n + 7) {
  grid-column: span 5;
}

.catalog-grid > :nth-child(8n + 5),
.catalog-grid > :nth-child(8n + 8) {
  grid-column: span 7;
}

.product-card[hidden] {
  display: none;
}

.catalog-empty {
  max-width: 560px;
  margin: 40px auto 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 42px;
  text-align: center;
}

.catalog-empty h3 {
  font-size: 2.4rem;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  min-height: calc(100dvh - var(--header-height));
  align-items: center;
  gap: clamp(46px, 6vw, 88px);
  padding-block: 52px;
}

.product-hero__media {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-muted);
  box-shadow: var(--shadow);
}

.product-hero__media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.product-hero__content h1 {
  margin-bottom: 18px;
}

.product-quick-quote {
  display: none;
}

.product-lead {
  max-width: 52ch;
  font-size: 1.08rem;
}

.hero-specs {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(0, 1.4fr);
  gap: 22px;
  margin: 34px 0 24px;
  border-top: 1px solid var(--line-strong);
  padding-top: 22px;
}

.hero-specs div {
  min-width: 0;
}

.hero-specs span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.78rem;
}

.hero-specs strong {
  display: block;
  line-height: 1.35;
}

.product-hero .quote-only-note {
  margin-bottom: 26px;
}

.configuration-section {
  background: var(--surface-muted);
}

.configuration-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: 78px;
}

.configuration-grid .section-heading {
  margin-bottom: 0;
}

.configuration-stack {
  display: grid;
  gap: 36px;
}

.configuration-title {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
}

.battery-config {
  border-top: 1px solid var(--line-strong);
  padding-top: 26px;
}

.battery-config h3 {
  margin-bottom: 28px;
  font-family: "Barlow", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
}

.battery-config__groups {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.35fr);
  gap: 34px;
}

.battery-config-fixed .battery-config__groups {
  grid-template-columns: 1fr;
}

.spec-caption {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.option-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.option-list span {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-small);
  padding: 9px 12px;
  background: var(--surface);
  font-size: 0.88rem;
  font-weight: 600;
}

.import-data {
  border-top: 1px solid var(--line-strong);
  padding-top: 26px;
}

.import-data h3 {
  margin-bottom: 22px;
  font-family: "Barlow", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
}

.import-data dl {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px 28px;
  margin: 0;
}

.import-data dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.78rem;
}

.import-data dd {
  margin: 0;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.specs-section {
  padding-bottom: 84px;
}

.spec-groups {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr) minmax(0, 0.75fr);
  gap: 54px;
}

.spec-cluster {
  min-width: 0;
  border-top: 1px solid var(--line-strong);
  padding-top: 22px;
}

.spec-cluster h3 {
  margin-bottom: 24px;
  font-family: "Barlow", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
}

.spec-cluster dl {
  display: grid;
  gap: 20px;
}

.spec-cluster dl div {
  display: grid;
  gap: 5px;
}

.spec-cluster dt {
  color: var(--muted);
  font-size: 0.78rem;
}

.spec-cluster dd {
  margin: 0;
  font-weight: 600;
  line-height: 1.4;
}

.product-quote {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 52px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.product-quote h2 {
  max-width: 12ch;
}

.product-quote p {
  max-width: 58ch;
  margin-bottom: 0;
}

.related-section {
  padding-top: 96px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.guide-index-intro {
  max-width: 1040px;
}

.guide-article__header {
  max-width: 1200px;
}

.guide-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  align-items: center;
  gap: 68px;
  padding-top: 40px;
}

.guide-feature__media {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-muted);
  box-shadow: var(--shadow);
}

.guide-feature__media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 500ms var(--ease-out);
}

.guide-feature__media:hover img {
  transform: scale(1.025);
}

.guide-feature__content h2 {
  max-width: 12ch;
}

.guide-feature__content > p:not(.guide-updated) {
  max-width: 48ch;
}

.guide-updated,
.guide-article__header time {
  color: var(--muted);
  font-size: 0.84rem;
  font-variant-numeric: tabular-nums;
}

.guide-article__header h1 {
  max-width: 1200px;
  font-size: clamp(3.4rem, 5.2vw, 4.8rem);
}

.guide-article__header > p:not(.breadcrumb) {
  max-width: 66ch;
  font-size: 1.15rem;
}

.guide-cover {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
  padding-bottom: 44px;
}

.guide-cover img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  border-radius: var(--radius-small);
  object-fit: cover;
}

.guide-cover img:nth-child(1),
.guide-cover img:nth-child(4) {
  grid-column: span 7;
}

.guide-cover img:nth-child(2),
.guide-cover img:nth-child(3) {
  grid-column: span 5;
}

.guide-article__body {
  max-width: 900px;
  padding-block: 80px 112px;
}

.guide-article__lead {
  max-width: 58ch;
  margin-bottom: 72px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.42;
}

.guide-article__body section {
  border-top: 1px solid var(--line-strong);
  padding-block: 38px 30px;
}

.guide-article__body h2 {
  max-width: 15ch;
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 4vw, 3.6rem);
}

.guide-article__body p {
  max-width: 72ch;
}

.guide-checklist ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding-left: 22px;
  gap: 14px 44px;
}

.guide-checklist li {
  padding-left: 4px;
}

.guide-checklist li::marker {
  color: var(--red);
}

.guide-compliance p {
  color: var(--ink);
  font-weight: 600;
}

.error-page {
  display: grid;
  min-height: 100dvh;
  align-content: center;
  gap: 72px;
  padding-block: 48px;
}

.error-page > div {
  max-width: 720px;
}

.error-page h1 {
  max-width: 9ch;
}

.error-page p:not(.product-category) {
  max-width: 54ch;
  font-size: 1.08rem;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy {
    animation: hero-copy-in 720ms var(--ease-out) both;
  }

  .hero-primary {
    animation: hero-media-in 900ms 80ms var(--ease-out) both;
  }

  @keyframes hero-copy-in {
    from {
      transform: translateY(22px);
      opacity: 0;
      filter: blur(4px);
    }

    to {
      transform: translateY(0);
      opacity: 1;
      filter: blur(0);
    }
  }

  @keyframes hero-media-in {
    from {
      clip-path: inset(0 0 18% 0 round var(--radius));
      opacity: 0.5;
    }

    to {
      clip-path: inset(0 0 0 0 round var(--radius));
      opacity: 1;
    }
  }
}

@media (max-width: 1120px) {
  :root {
    --shell: min(100% - 44px, 1120px);
  }

  .header-inner {
    gap: 20px;
  }

  .primary-nav {
    gap: 16px;
  }

  .primary-nav a {
    font-size: 0.84rem;
  }

  .header-actions .button {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 42px;
  }

  .hero-gallery {
    min-height: min(560px, calc(100dvh - 132px));
  }

  .factory-inner,
  .contact-section {
    gap: 46px;
  }

  .spec-groups {
    gap: 32px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 66px;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 22px;
    left: 22px;
    display: none;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 10px;
    background: var(--surface-raised);
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav a {
    min-height: 46px;
    padding: 12px;
  }

  .primary-nav a::after {
    display: none;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
  }

  .hero,
  .product-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 56px 76px;
  }

  .new-model-feature {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .new-model-feature__media {
    min-height: 0;
  }

  .new-model-feature__media img {
    aspect-ratio: 3 / 2;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .hero-gallery {
    min-height: 620px;
  }

  .catalog-teaser__inner,
  .dealer-section,
  .factory-inner,
  .contact-section,
  .faq-section,
  .configuration-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .catalog-teaser__actions,
  .dealer-section > .quote-only-note,
  .factory-note {
    grid-column: 1;
  }

  .factory-note {
    margin: -24px 0 0;
  }

  .contact-intro {
    position: static;
  }

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

  .spec-groups > :first-child {
    grid-column: 1 / -1;
  }

  .catalog-controls {
    grid-template-columns: 1fr;
  }

  .guide-feature {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: min(100% - 32px, 640px);
    --radius: 14px;
  }

  body {
    font-size: 16px;
  }

  h1 {
    font-size: clamp(3.3rem, 16vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2.65rem, 13vw, 3.9rem);
  }

  .section-block {
    padding-block: 78px;
  }

  .new-model-section-home {
    padding-block: 48px 10px;
  }

  .new-model-section-catalog {
    padding-block: 18px 58px;
  }

  .new-model-feature__content {
    padding: 34px 26px 30px;
  }

  .new-model-feature__content h2 {
    font-size: clamp(2.8rem, 13vw, 3.7rem);
  }

  .new-model-specs {
    grid-row: 4;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-block: 18px 26px;
  }

  .new-model-actions {
    grid-row: 3;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 8px;
  }

  .new-model-actions .button {
    width: 100%;
  }

  .catalog-teaser__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .guide-article__header h1 {
    font-size: clamp(3rem, 15vw, 4.2rem);
  }

  .guide-cover {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .guide-cover img,
  .guide-cover img:nth-child(1),
  .guide-cover img:nth-child(2),
  .guide-cover img:nth-child(3),
  .guide-cover img:nth-child(4) {
    min-height: 132px;
    grid-column: auto;
  }

  .guide-article__body {
    padding-block: 58px 82px;
  }

  .guide-article__lead {
    margin-bottom: 52px;
  }

  .guide-checklist ul {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .brand-copy small {
    display: none;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .locale-switch {
    display: none;
  }

  .mobile-locale-switch {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    border-top: 1px solid var(--line);
    padding-top: 10px;
  }

  .primary-nav .mobile-locale-switch a,
  .mobile-locale-switch span {
    display: grid;
    min-width: 44px;
    min-height: 44px;
    place-items: center;
    border-radius: 8px;
    padding: 0;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
  }

  .mobile-locale-switch span {
    color: var(--surface);
    background: var(--ink);
  }

  .hero {
    gap: 40px;
    padding-top: 46px;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .hero-copy > p {
    max-width: 34ch;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-gallery {
    min-height: 560px;
    grid-template-rows: minmax(0, 1.55fr) minmax(150px, 0.8fr);
  }

  .hero-support {
    overflow-x: auto;
    grid-auto-columns: 72%;
    grid-template-columns: none;
    grid-auto-flow: column;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .hero-support::-webkit-scrollbar {
    display: none;
  }

  .hero-support a {
    scroll-snap-align: start;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .featured-grid,
  .hot-grid,
  .catalog-grid,
  .related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .featured-grid > *,
  .hot-grid > *,
  .catalog-grid > *,
  .catalog-grid > .product-card,
  .catalog-grid > .product-card-wide,
  .catalog-grid > .product-card-wide + .product-card,
  .catalog-grid > :nth-child(8n + 4),
  .catalog-grid > :nth-child(8n + 5),
  .catalog-grid > :nth-child(8n + 7),
  .catalog-grid > :nth-child(8n + 8) {
    grid-column: 1;
  }

  .card-specs,
  .category-links a,
  .dealer-steps article,
  .battery-config__groups,
  .spec-groups,
  .product-quote,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .catalog-teaser__inner {
    gap: 36px;
  }

  .category-links a {
    gap: 5px;
  }

  .dealer-steps article {
    gap: 5px;
  }

  .factory-inner {
    gap: 34px;
  }

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

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

  .form-footer {
    display: grid;
  }

  .form-footer .button {
    width: 100%;
  }

  .faq-section {
    gap: 18px;
  }

  .footer-grid {
    gap: 36px;
  }

  .footer-base {
    display: grid;
    gap: 8px;
  }

  .page-intro {
    padding-block: 44px 0;
  }

  .hot-collection {
    padding-top: 30px;
  }

  .catalog-controls {
    gap: 24px;
  }

  .filter-group > div {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: thin;
  }

  .filter-group button {
    flex: 0 0 auto;
  }

  .product-hero {
    gap: 38px;
    padding-block: 30px 68px;
  }

  .product-hero__content h1 {
    font-size: clamp(3rem, 14vw, 4.1rem);
  }

  .product-quick-quote {
    display: inline-flex;
    width: 100%;
    margin: 2px 0 24px;
  }

  .product-hero__media {
    margin-inline: -16px;
    border-radius: 0;
    box-shadow: none;
  }

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

  .configuration-grid {
    gap: 30px;
  }

  .spec-groups > :first-child {
    grid-column: 1;
  }

  .product-quote {
    gap: 26px;
  }

  .product-quote .button {
    width: 100%;
  }
}

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

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