:root {
  --bg: #050505;
  --surface: #0f0f0f;
  --surface-strong: #111111;
  --surface-soft: rgba(255, 255, 255, 0.04);
  --line: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.74);
  --soft-muted: rgba(255, 255, 255, 0.56);
  --accent: #76d532;
  --accent-strong: #8dff3f;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  --container: min(1460px, calc(100vw - 48px));
  --header-height: 92px;
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Montserrat", sans-serif;
  background:
    radial-gradient(circle at top, rgba(118, 213, 50, 0.08), transparent 26%),
    linear-gradient(180deg, #090909 0%, #040404 100%);
  color: var(--text);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

svg {
  display: block;
  width: 100%;
  height: 100%;
}

.page-shell {
  position: relative;
  isolation: isolate;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header.scrolled {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 42px;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.brand-image {
  width: 260px;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.nav-link {
  position: relative;
  font-size: 0.97rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  transition: color 180ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: transparent;
  transition: background 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  color: #ffffff;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after {
  background: var(--accent);
}

.header-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 9px;
  white-space: nowrap;
}

.header-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.header-location svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.header-phone {
  font-size: 1.02rem;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-section {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  background: #080808;
}

.hero-backdrop,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-backdrop {
  overflow: hidden;
  pointer-events: none;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.72) 0%, rgba(5, 5, 5, 0.48) 24%, rgba(5, 5, 5, 0.08) 52%, rgba(5, 5, 5, 0.02) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.14) 100%);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.035);
  transition:
    opacity 900ms ease,
    transform 6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  min-height: 780px;
  padding-top: calc(var(--header-height) + 82px);
  padding-bottom: 200px;
}

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

.hero-eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(118, 213, 50, 0.24);
  border-radius: 999px;
  background: rgba(9, 9, 9, 0.34);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero-copy h1 {
  margin: 0 0 28px;
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2.85rem, 3.45vw, 4.35rem);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.hero-copy p {
  max-width: 470px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: 286px;
  padding: 18px 20px 18px 22px;
  border: 1px solid rgba(118, 213, 50, 0.88);
  border-radius: 12px;
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(118, 213, 50, 0.16);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.outline-button svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
}

.outline-button:hover,
.outline-button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--accent-strong);
  background: rgba(118, 213, 50, 0.07);
  box-shadow: 0 16px 32px rgba(118, 213, 50, 0.12);
}

.outline-button.compact {
  min-width: 200px;
  padding-block: 15px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 118px;
  z-index: 1;
  display: inline-flex;
  gap: 10px;
  transform: translateX(-50%);
}

.dot {
  width: 34px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition:
    background 180ms ease,
    transform 180ms ease,
    opacity 180ms ease;
}

.dot:hover,
.dot:focus-visible {
  transform: scaleX(1.08);
  outline: none;
}

.dot.active {
  background: var(--accent);
}

.dot[aria-current="false"] {
  opacity: 0.8;
}

.hero-benefits {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(37, 28, 22, 0.58) 0%, rgba(23, 20, 18, 0.82) 100%);
  backdrop-filter: blur(20px);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding-block: 30px 26px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.benefit-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.benefit-icon svg {
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-item h3 {
  margin: 0 0 6px;
  font-size: 0.98rem;
  line-height: 1.2;
}

.benefit-item p {
  margin: 0;
  color: var(--soft-muted);
  font-size: 0.95rem;
}

.dealer-section,
.models-section,
.purchase-section,
.service-section,
.map-section,
.news-section,
.site-footer {
  background: #050505;
}

.dealer-section {
  padding: 26px 0 34px;
}

.dealer-grid {
  display: grid;
  grid-template-columns: minmax(290px, 1.12fr) minmax(300px, 1.45fr) minmax(260px, 0.72fr);
  gap: 34px;
  align-items: center;
}

.dealer-photo-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
}

.dealer-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 290px;
  object-fit: cover;
}

.dealer-photo-card picture,
.model-visual picture {
  display: block;
  width: 100%;
}

.dealer-copy h2,
.section-heading h2 {
  margin: 0 0 22px;
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2rem, 2.8vw, 3rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.dealer-copy h2 span,
.eyebrow {
  color: var(--accent);
}

.dealer-copy p,
.section-heading p,
.model-card p,
.step-card p,
.service-card p,
.footer-note,
.footer-contact span,
.news-card span {
  color: var(--muted);
  line-height: 1.7;
}

.dealer-copy p {
  margin: 0 0 12px;
  font-size: 1.04rem;
}

.dealer-brand-card {
  display: grid;
  gap: 20px;
  justify-items: start;
  padding-left: 12px;
}

.dm-logo {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
  font-family: "Exo 2", sans-serif;
  font-weight: 800;
  font-style: italic;
  line-height: 0.88;
  letter-spacing: 0.04em;
}

.dm-logo-primary {
  font-size: clamp(3.2rem, 4.6vw, 5rem);
  color: #ffffff;
}

.dm-logo-accent {
  margin-left: 38px;
  font-size: clamp(1.2rem, 1.8vw, 1.9rem);
  color: var(--accent);
}

.dealer-brand-card p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--muted);
}

.models-section,
.purchase-section,
.service-section,
.map-section,
.news-section {
  padding: 82px 0;
}

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

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.model-grid,
.service-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.models-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.models-heading {
  margin-bottom: 0;
}

.model-header-link {
  min-width: 290px;
}

.model-grid-showcase {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.model-showcase-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 100%;
  padding: 22px 20px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(31, 31, 31, 0.98), rgba(16, 16, 16, 0.98)),
    rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.model-showcase-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(118, 213, 50, 0.75), transparent);
}

.model-showcase-card::after {
  content: "";
  position: absolute;
  right: -80px;
  top: 108px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(118, 213, 50, 0.04), transparent 68%);
  filter: blur(12px);
  pointer-events: none;
}

.model-showcase-card:hover,
.model-showcase-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(118, 213, 50, 0.38);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.5);
}

.model-showcase-top {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.model-showcase-top h3 {
  margin: 0;
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.7rem, 1.7vw, 2.15rem);
  line-height: 1;
  text-transform: uppercase;
}

.model-subtitle {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.45;
}

.model-price {
  margin: 0;
  display: grid;
  gap: 4px;
}

.model-price strong {
  color: var(--accent);
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.45rem, 1.5vw, 1.85rem);
  line-height: 1.05;
}

.model-price span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.model-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  overflow: hidden;
  min-height: 0;
  border-radius: 18px;
  background: #171717;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.model-visual img {
  width: 100%;
  max-width: none;
  height: auto;
  object-fit: cover;
  display: block;
}

.model-specs {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 16px 0 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.model-specs li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}

.model-specs svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 1px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.model-specs strong {
  display: block;
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.2;
}

.model-specs span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  line-height: 1.4;
}

.model-cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin-top: auto;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.model-cta svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
}

.model-cta:hover,
.model-cta:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(118, 213, 50, 0.44);
  background: rgba(118, 213, 50, 0.08);
}

.model-card,
.step-card,
.service-card,
.news-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
}

.model-card::before,
.step-card::before,
.service-card::before,
.news-card::before {
  content: "";
  position: absolute;
  inset: auto auto -30px -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(118, 213, 50, 0.2), transparent 66%);
  filter: blur(10px);
}

.model-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(118, 213, 50, 0.08);
  color: var(--accent);
  font-weight: 700;
}

.model-card h3,
.step-card h3,
.service-card h3,
.news-card h3,
.footer-contact h3 {
  margin: 0 0 12px;
  font-size: 1.28rem;
}

.model-card ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.model-card li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.8;
}

.model-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.purchase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: start;
}

.purchase-steps {
  display: grid;
  gap: 22px;
}

.step-card {
  display: grid;
  gap: 8px;
}

.step-card strong {
  font-size: 1rem;
  color: var(--accent);
}

.news-card {
  min-height: 190px;
}

.news-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: 30px;
  align-items: stretch;
}

.map-copy {
  display: grid;
  align-content: start;
  gap: 22px;
}

.map-copy h2 {
  margin: 0;
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2rem, 2.8vw, 3rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.map-copy p {
  margin: 0;
  max-width: 520px;
  color: var(--muted);
  line-height: 1.7;
}

.location-card,
.map-embed-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
}

.location-card {
  padding: 26px;
}

.location-row {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px 0;
}

.location-row + .location-row {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.location-icon {
  width: 46px;
  height: 46px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(118, 213, 50, 0.08);
}

.location-icon svg {
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.location-row strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.location-row span,
.location-row a {
  display: block;
  color: var(--muted);
  line-height: 1.7;
}

.location-row a {
  font-weight: 600;
}

.map-link {
  width: min(100%, 360px);
}

.map-link svg {
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
}

.map-embed-card {
  min-height: 560px;
}

.map-embed-card iframe {
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
  display: block;
}

.site-footer {
  padding: 34px 0 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.7fr) minmax(220px, 0.7fr);
  gap: 28px;
  align-items: start;
}

.footer-logo {
  margin-bottom: 12px;
}

.footer-note {
  max-width: 360px;
}

.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-contact a {
  font-weight: 600;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 520ms ease,
    transform 520ms cubic-bezier(0.2, 0.72, 0.16, 1);
  will-change: opacity, transform;
}

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

@media (max-width: 1280px) {
  .header-row {
    gap: 24px;
  }

  .site-nav {
    gap: 22px;
  }

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

  .dealer-grid,
  .purchase-grid,
  .map-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .models-header {
    flex-direction: column;
    align-items: stretch;
  }

  .model-header-link {
    min-width: 0;
    width: min(100%, 360px);
  }

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

  .dealer-brand-card {
    padding-left: 0;
  }
}

@media (max-width: 1040px) {
  :root {
    --container: min(100vw - 32px, 1460px);
  }

  .menu-toggle {
    display: inline-block;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 16px auto;
    display: grid;
    gap: 16px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    background: rgba(10, 10, 10, 0.98);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  body.menu-open .site-nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .header-row {
    display: flex;
    justify-content: space-between;
  }

  .header-meta {
    display: none;
  }

  .hero-section {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .hero-inner {
    min-height: 550px;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 40px;
    flex: 1;
  }

  .hero-copy h1 {
    max-width: 540px;
  }

  .hero-dots {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin: 0 auto 40px;
  }

  .hero-benefits {
    position: relative;
    bottom: auto;
  }

  .hero-slide img {
    object-position: 68% center;
  }

  .model-grid,
  .service-grid,
  .news-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --container: calc(100vw - 24px);
    --header-height: 78px;
  }

  .brand-image {
    width: 228px;
  }

  .hero-inner {
    min-height: 480px;
    padding-top: calc(var(--header-height) + 30px);
    padding-bottom: 30px;
  }

  .hero-copy h1 {
    font-size: clamp(2.3rem, 12vw, 3.15rem);
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .hero-eyebrow {
    margin-bottom: 16px;
    padding: 7px 12px;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .outline-button,
  .outline-button.compact {
    min-width: 100%;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.74) 0%, rgba(5, 5, 5, 0.42) 34%, rgba(5, 5, 5, 0.18) 100%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.36) 52%, rgba(5, 5, 5, 0.18) 100%);
  }

  .hero-slide img {
    object-position: 72% center;
  }

  .benefits-grid {
    gap: 18px;
    padding-block: 22px;
  }

  .benefit-item {
    align-items: flex-start;
  }

  .dealer-section {
    padding-top: 20px;
  }

  .dealer-copy h2,
  .section-heading h2 {
    font-size: 1.9rem;
  }

  .models-section,
  .purchase-section,
  .service-section,
  .map-section,
  .news-section {
    padding: 64px 0;
  }

  .model-card,
  .step-card,
  .service-card,
  .news-card {
    padding: 22px;
    border-radius: 20px;
  }

  .model-showcase-card {
    gap: 18px;
  }

  .model-header-link {
    width: 100%;
  }

  .model-visual {
    min-height: 0;
  }

  .model-visual img {
    max-width: none;
  }

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

  .location-card {
    padding: 22px;
  }

  .location-row {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding: 16px 0;
  }

  .location-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .map-embed-card,
  .map-embed-card iframe {
    min-height: 340px;
  }

  .dm-logo-primary {
    font-size: 3rem;
  }

  .dm-logo-accent {
    margin-left: 30px;
  }

  .site-footer {
    text-align: center;
    padding: 40px 0;
  }

  .footer-grid {
    gap: 32px;
  }

  .dm-logo {
    align-items: center;
  }

  .footer-note {
    margin: 16px auto 0;
  }

  .footer-contact {
    justify-items: center;
  }
}

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

  .hero-slide,
  .outline-button,
  .model-showcase-card,
  .model-cta,
  .reveal,
  .nav-link,
  .nav-link::after,
  .dot {
    transition: none;
  }

  .reveal,
  .js .reveal,
  .js .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}
