:root {
  --ink: #050505;
  --muted: #b8b8b8;
  --line: #242424;
  --paper: #000000;
  --white: #ffffff;
  --accent: #ffffff;
  --accent-dark: #d8d8d8;
  --gold: #ffffff;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  width: calc(100% - 32px);
  max-width: 1280px;
  min-height: 88px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 22px 14px 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.78);
  color: var(--white);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.brand img {
  width: 108px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  min-height: 52px;
  display: grid;
  place-items: center;
  padding: 0 18px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 21px;
  font-weight: 850;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.11);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  padding: 190px 24px 92px;
  overflow: hidden;
  background: #080909;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.58) 42%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.08) 44%),
    url("./assets/image-2.webp") center / cover;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  width: min(100%, 1120px);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  width: min(900px, 100%);
  margin-bottom: 22px;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.1;
}

.hero-copy {
  width: min(620px, 100%);
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 7px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(255, 255, 255, 0.16);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

section {
  padding: 96px 24px;
  background: var(--paper);
}

.section-heading {
  width: min(1120px, 100%);
  margin: 0 auto 34px;
}

.section-heading h2 {
  width: min(720px, 100%);
}

.feature-grid,
.catalog-grid,
.faq-list {
  width: min(1120px, 100%);
  margin: 0 auto;
}

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

.feature-card {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #0d0d0d;
  box-shadow: none;
}

.feature-card img {
  width: 100%;
  height: clamp(220px, 24vw, 300px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-card h3,
.feature-card p {
  padding: 0 24px;
}

.feature-card h3 {
  margin-top: 24px;
}

.feature-card p {
  margin-bottom: 26px;
  color: var(--muted);
}

.timeline-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

.timeline-copy {
  align-self: auto;
  position: static;
  margin-bottom: 0;
}

.timeline-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  width: min(720px, 100%);
}

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

.timeline-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0d0d0d;
}

.timeline-item span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
}

.timeline-item h3 {
  margin-bottom: 6px;
}

.timeline-item p {
  grid-column: 2;
  margin-bottom: 0;
  color: var(--muted);
}

.catalog-section {
  background: var(--ink);
  color: var(--white);
}

.catalog-section .section-heading h2 {
  color: var(--white);
}

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

.car-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #0d0d0d;
}

.car-card img {
  width: 100%;
  height: clamp(210px, 24vw, 270px);
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
}

.car-card div {
  padding: 22px;
}

.car-card p {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.car-card a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  margin-top: 10px;
  padding: 0 14px;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.whatsapp-band {
  width: min(1120px, calc(100% - 48px));
  margin: 96px auto;
  padding: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.72)),
    url("./assets/image-9.webp") center / cover;
  color: var(--white);
  box-shadow: var(--shadow);
}

.whatsapp-band .button {
  min-width: 220px;
  min-height: 58px;
  padding: 0 34px;
  flex: 0 0 auto;
  border-radius: 8px;
  white-space: nowrap;
  letter-spacing: 0;
}

.whatsapp-band .button.primary {
  box-shadow: 0 16px 38px rgba(255, 255, 255, 0.12);
}

.whatsapp-copy h2 {
  width: min(620px, 100%);
  margin-bottom: 12px;
}

.whatsapp-copy p {
  width: min(620px, 100%);
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.faq-section {
  padding-top: 0;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0d0d0d;
  overflow: hidden;
}

summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 22px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
}

summary::after {
  content: "+";
  color: var(--white);
  font-size: 24px;
  transition: transform 220ms ease;
}

details[open] summary::after {
  content: "-";
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: grid-template-rows 260ms ease, max-height 260ms ease, opacity 220ms ease, transform 260ms ease;
}

details[open] .faq-answer {
  grid-template-rows: 1fr;
  max-height: 420px;
  opacity: 1;
  transform: translateY(0);
}

details.is-closing .faq-answer {
  grid-template-rows: 0fr;
  opacity: 0;
  transform: translateY(-6px);
}

.faq-answer p {
  min-height: 0;
  margin: -6px 0 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 34px 24px;
  background: #080909;
  color: var(--white);
}

.brands-page {
  background: #000;
}

.brands-main {
  padding-top: 170px;
}

.brands-section {
  min-height: 100vh;
}

.brands-section .section-heading h1 {
  margin-bottom: 14px;
  font-size: clamp(50px, 6vw, 88px);
}

.brands-section .section-heading p:not(.eyebrow) {
  width: min(780px, 100%);
  color: var(--muted);
  font-size: 22px;
}

.brands-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.brand-card {
  min-height: 220px;
  display: grid;
  place-items: center;
  padding: 30px;
  border: 1px solid #101010;
  border-radius: 8px;
  background: #0b0b0b;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.brand-card:hover,
.brand-card:focus-visible {
  transform: translateY(-2px);
  border-color: #ffffff;
  background: #111111;
}

.brand-card img {
  width: min(220px, 100%);
  height: auto;
  max-height: 150px;
  object-fit: contain;
}

.brand-model-page,
.car-detail-page {
  padding-top: 170px;
  background: #000;
}

.models-section {
  min-height: 100vh;
}

.models-section .brand-title {
  margin-bottom: 46px;
  text-align: left;
}

.models-section .brand-title h1 {
  width: 100%;
  margin: 0;
}

.models-section .section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 22px;
}

.models-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.model-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0d0d0d;
  transition: transform 160ms ease, border-color 160ms ease;
}

.model-card:hover,
.model-card:focus-visible {
  transform: translateY(-2px);
  border-color: #fff;
}

.model-card img {
  width: 100%;
  height: clamp(220px, 22vw, 280px);
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.model-card img[src$="porsche/911.jpg"],
.car-photo img[src$="porsche/911.jpg"] {
  object-position: 72% center;
}

.model-card img[src$="mercedesbenz/classe-g-amg.jpg"],
.car-photo img[src$="mercedesbenz/classe-g-amg.jpg"] {
  transform: scale(1.18);
  transform-origin: 46% 58%;
}

.model-card div {
  padding: 22px;
}

.model-card p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.model-card h2 {
  margin-bottom: 18px;
  font-size: 34px;
}

.spec-row {
  display: grid;
  grid-template-columns: minmax(100px, 0.45fr) 1fr;
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.spec-row span {
  color: var(--muted);
  font-size: 18px;
}

.spec-row strong {
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
}

.car-hero-detail {
  width: min(1280px, 100%);
  min-height: calc(100vh - 170px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 34px;
  align-items: start;
  padding-top: 28px;
}

.car-photo {
  position: sticky;
  top: 130px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0d0d0d;
}

.car-photo img {
  width: 100%;
  height: clamp(420px, 56vw, 650px);
  min-height: 520px;
  object-fit: cover;
}

.car-detail-copy {
  display: grid;
  gap: 18px;
}

.car-detail-copy h1 {
  margin-bottom: 0;
}

.car-detail-copy > p {
  color: var(--muted);
  font-size: 18px;
}

.spec-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0d0d0d;
}

.spec-panel h2 {
  margin-bottom: 16px;
  font-size: 30px;
}

.content-shell {
  background: #000;
}

.content-page {
  padding-top: 170px;
}

.content-hero {
  width: min(1180px, 100%);
  min-height: calc(100vh - 170px);
  margin: 0 auto;
  display: grid;
  gap: 42px;
  align-items: center;
}

.about-page .content-hero {
  min-height: auto;
  padding-bottom: 54px;
}

.about-page .founders-section {
  padding-top: 24px;
}

.content-hero.two-column {
  grid-template-columns: 0.92fr 1.08fr;
}

.content-hero.centered {
  align-items: start;
}

.content-copy {
  display: grid;
  gap: 20px;
}

.content-copy h1 {
  margin-bottom: 6px;
}

.content-copy h2 {
  margin: 12px 0 0;
  font-size: clamp(30px, 3vw, 44px);
}

.content-copy p {
  width: min(900px, 100%);
  color: var(--muted);
  font-size: 22px;
  line-height: 1.7;
}

.contact-page {
  min-height: 100vh;
}

.contact-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: min(1280px, calc(100% - 48px));
  min-height: calc(100vh - 210px);
  padding: 70px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050505;
}

.contact-hero::before,
.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.contact-hero::before {
  background: url("./assets/pages/contact.webp") center / cover no-repeat;
  filter: grayscale(1);
  opacity: 0.48;
  transform: scale(1.02);
}

.contact-hero::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.72) 44%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.08) 58%);
}

.contact-hero .content-copy {
  width: min(760px, 100%);
}

.content-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0d0d0d;
}

.content-image img {
  width: 100%;
  height: clamp(360px, 44vw, 560px);
  min-height: 460px;
  object-fit: cover;
}

.service-text .content-copy {
  width: min(980px, 100%);
  margin: 0 auto;
}

.founders-section {
  padding-top: 0;
}

.founders-grid {
  width: min(760px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.founder-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0d0d0d;
  text-align: center;
}

.founder-card img {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  object-fit: cover;
}

.founder-card .signature-img {
  width: min(260px, 100%);
  height: 78px;
  margin-top: 10px;
  border-radius: 0;
  object-fit: contain;
}

.founder-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.founder-card h3 {
  margin: 0;
}

.site-header,
.feature-card,
.timeline-item,
.car-card,
.whatsapp-band,
details,
.brand-card,
.model-card,
.car-photo,
.spec-panel,
.content-image,
.contact-hero,
.founder-card {
  border: 0;
  border-radius: 8px;
  box-shadow: none;
}

.site-header {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(18px);
}

.site-nav a,
.menu-button,
.button,
.car-card a {
  border: 0;
  border-radius: 7px;
  box-shadow: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: #151515;
}

.button.primary,
.car-card a {
  background: #fff;
  color: #000;
}

.button.secondary {
  background: #121212;
  color: #fff;
}

.feature-card,
.timeline-item,
.car-card,
.brand-card,
.model-card,
.spec-panel,
.content-image,
.founder-card,
details {
  background: #0a0a0a;
}

.brand-card:hover,
.brand-card:focus-visible,
.model-card:hover,
.model-card:focus-visible {
  background: #121212;
  border-color: transparent;
}

.spec-row {
  border-top: 1px solid #202020;
}

.whatsapp-band {
  background: #050505;
}

.contact-hero {
  background: #050505;
}

.site-footer img {
  width: 112px;
  height: auto;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

.floating-whatsapp {
  position: fixed;
  right: 26px;
  bottom: 100px;
  z-index: 9999;
  display: grid;
  place-items: center;
  width: 100px;
  height: 100px;
  padding: 0;
  border-radius: 50%;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-3px);
}

.floating-whatsapp img {
  width: 80px;
  height: 80px;
  border-radius: 0%;
  padding: 8px;
  object-fit: contain;
}

@media (max-width: 860px) {
  .site-header {
    top: 12px;
    min-height: 76px;
  }

  .brand img {
    width: 88px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    padding: 8px;
    border-radius: 8px;
    background: rgba(17, 19, 21, 0.96);
  }

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

  .site-nav a {
    justify-content: start;
    padding: 0 16px;
    font-size: 19px;
  }

  .hero {
    min-height: 680px;
    padding: 128px 18px 58px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .button {
    width: 100%;
  }

  section {
    padding: 72px 18px;
  }

  .feature-grid,
  .catalog-grid,
  .timeline-section {
    grid-template-columns: 1fr;
  }

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

  .timeline-section {
    width: min(100% - 36px, 1120px);
    gap: 22px;
  }

  .timeline-copy {
    position: static;
  }

  .timeline-item {
    grid-template-columns: 54px 1fr;
  }

  .whatsapp-band {
    width: min(100% - 36px, 1120px);
    margin: 72px auto;
    padding: 30px 22px;
    display: grid;
  }

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

  .site-footer nav {
    justify-content: flex-start;
  }

  .brands-main {
    padding-top: 118px;
  }

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

  .brand-card {
    min-height: 190px;
    padding: 26px;
  }

  .brand-card img {
    width: min(190px, 100%);
    max-height: 130px;
  }

  .brand-model-page,
  .car-detail-page {
    padding-top: 118px;
  }

  .content-page {
    padding-top: 118px;
  }

  .contact-hero {
    width: min(100% - 36px, 1280px);
    min-height: calc(100vh - 150px);
    padding: 42px 28px;
    align-items: end;
  }

  .content-hero.two-column,
  .founders-grid {
    grid-template-columns: 1fr;
  }

  .content-image img {
    height: 320px;
    min-height: 320px;
  }

  .models-grid,
  .car-hero-detail {
    grid-template-columns: 1fr;
  }

  .model-card img {
    height: clamp(210px, 58vw, 330px);
  }

  .car-photo {
    position: static;
  }

  .car-photo img {
    height: 320px;
    min-height: 320px;
  }

  .floating-whatsapp {
    right: 18px;
    bottom: 100px;
    width: 56px;
    height: 56px;
  }

  .floating-whatsapp img {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 620px) {
  html,
  body,
  main,
  section {
    max-width: 100vw;
  }

  .site-header {
    left: 16px;
    right: 16px;
    width: auto;
    transform: none;
  }

  .hero-content,
  .section-heading,
  .feature-grid,
  .catalog-grid,
  .faq-list,
  .brands-grid {
    max-width: calc(100vw - 36px);
  }

  .hero-content {
    justify-self: start;
    width: 100%;
    min-width: 0;
  }

  h1 {
    font-size: 32px;
    line-height: 1.02;
    width: calc(100vw - 36px) !important;
    max-width: calc(100vw - 36px);
  }

  h1 br {
    display: initial;
  }

  h2 {
    font-size: 32px;
    line-height: 1.08;
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
  }

  .hero-copy {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
  }

  .hero-actions {
    display: grid;
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
  }

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

  .feature-card h3,
  .feature-card p {
    padding: 0 18px;
    overflow-wrap: anywhere;
  }

  .catalog-grid {
    gap: 14px;
  }

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

  .brand-card {
    min-height: 164px;
  }

  .brand-card img {
    width: min(180px, 100%);
    max-height: 120px;
  }

  .brands-section .section-heading p:not(.eyebrow),
  .models-section .section-heading p:not(.eyebrow),
  .content-copy p {
    font-size: 19px;
  }

  .contact-hero {
    padding: 34px 22px;
  }

  .contact-hero .content-copy {
    width: min(100%, 310px);
    min-width: 0;
  }

  .contact-hero h1 {
    width: 100% !important;
    max-width: 310px;
    font-size: 30px;
    overflow-wrap: anywhere;
  }

  .contact-hero h2 {
    width: 100%;
    max-width: 310px;
    font-size: 27px;
    overflow-wrap: anywhere;
  }

  .contact-hero .button {
    min-width: 0;
    white-space: normal;
    text-align: center;
  }

  .models-grid {
    max-width: calc(100vw - 36px);
  }

  .model-card h2 {
    font-size: 25px;
  }

  .model-card img {
    height: 230px;
  }

  .feature-card img,
  .car-card img {
    height: 230px;
  }

  .spec-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
