:root {
  --ink: #111111;
  --muted: #66676b;
  --paper: #f5f3ef;
  --panel: #ffffff;
  --line: rgba(17, 17, 17, 0.12);
  --red: #cf1725;
  --red-dark: #9f101b;
  --charcoal: #171717;
  --charcoal-2: #242424;
  --silver: #d8d8d8;
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 100;
  background: white;
  padding: 0.6rem 0.9rem;
}

.skip-link:focus {
  left: 1rem;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.12));
  transition: background 0.25s ease, padding 0.25s ease;
}

.site-header.is-solid {
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  background: rgba(16, 16, 16, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  width: 118px;
  background: rgba(255, 255, 255, 0.96);
  padding: 0.35rem;
  text-decoration: none;
}

.brand img {
  width: 100%;
}

.nav {
  display: flex;
  gap: clamp(0.75rem, 2.2vw, 1.8rem);
  align-items: center;
}

.nav a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.nav a:last-child {
  background: var(--red);
  padding: 0.58rem 0.82rem;
  border-radius: 999px;
  text-shadow: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 8rem clamp(1rem, 4vw, 3rem) 7rem;
  overflow: hidden;
  color: white;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.36) 45%, rgba(0, 0, 0, 0.1)),
    url("assets/images/veo-showroom-hero.jpg") center / cover no-repeat;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: #f1f1f1;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--red);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  max-width: 900px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.3rem, 8.3vw, 8.6rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 5vw, 5.1rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 1.25rem 0 0;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.85rem 1.15rem;
  border: 0;
  border-radius: 999px;
  font: 900 0.74rem/1 Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  background: var(--red);
  color: white;
}

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

.hero-strip {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 3;
  width: min(1120px, calc(100% - 2rem));
  transform: translate(-50%, 50%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: white;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hero-strip div {
  padding: 1.15rem 1rem;
  border-right: 1px solid var(--line);
}

.hero-strip div:last-child {
  border-right: 0;
}

.hero-strip strong,
.hero-strip span {
  display: block;
}

.hero-strip strong {
  font-size: 1.25rem;
}

.hero-strip span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
}

.intro-section {
  padding: 8rem clamp(1rem, 4vw, 3rem) 5rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.intro-copy {
  font-size: 1.12rem;
  color: var(--charcoal-2);
}

.placeholder {
  color: var(--muted);
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  max-width: 1180px;
  margin: 0 auto 2rem;
  background: var(--charcoal);
  color: white;
  box-shadow: var(--shadow);
}

.split-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.split-copy {
  padding: clamp(2rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.check-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.4rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  background: var(--red);
}

.section {
  padding: 5rem clamp(1rem, 4vw, 3rem);
}

.section-heading {
  max-width: 850px;
  margin: 0 auto 2.4rem;
  text-align: center;
}

.section-heading.left {
  margin: 0;
  text-align: left;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.range-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.range-card,
.news-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.45rem;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 14px 42px rgba(17, 17, 17, 0.08);
}

.range-card span,
.news-card p {
  margin: 0;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.range-card p {
  color: var(--muted);
}

.range-card a,
.news-card a {
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.range-card a::after,
.news-card a::after {
  content: " ->";
  color: var(--red);
}

.dark-section {
  background: linear-gradient(135deg, #111, #252525);
  color: white;
}

.dark-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.dealer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.dealer-panel {
  display: grid;
  gap: 0.8rem;
}

.dealer-row {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.dealer-row strong {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
}

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

.contact-section {
  background: var(--charcoal);
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.contact-grid p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  background: white;
  color: var(--ink);
}

label {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  min-width: 0;
  padding: 0.88rem;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: #f8f8f8;
  font: 1rem/1.4 Inter, ui-sans-serif, system-ui, sans-serif;
  text-transform: none;
  letter-spacing: 0;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.site-footer {
  padding: 2rem clamp(1rem, 4vw, 3rem);
  background: #050505;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 1rem;
  align-items: center;
}

.footer-grid img {
  background: white;
  padding: 0.28rem;
}

.footer-grid p {
  margin: 0;
}

.footer-grid a {
  color: white;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 920px) {
  .site-header {
    display: grid;
    justify-items: center;
    gap: 0.65rem;
  }

  .brand {
    width: 100px;
  }

  .hero {
    padding-top: 9rem;
  }

  .hero-strip,
  .intro-grid,
  .split-band,
  .dealer-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-strip {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    transform: none;
    margin: 0;
  }

  .range-grid,
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split-image img {
    min-height: 360px;
  }

  .intro-section {
    padding-top: 5rem;
  }

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

@media (max-width: 620px) {
  .site-header {
    background: rgba(16, 16, 16, 0.92);
  }

  .nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.55rem 0.8rem;
  }

  .nav a {
    font-size: 0.68rem;
  }

  .nav a:nth-child(2),
  .nav a:nth-child(3) {
    display: none;
  }

  .hero {
    min-height: 86vh;
    padding: 8.75rem 1rem 3rem;
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4rem);
  }

  h2 {
    font-size: clamp(2.05rem, 11vw, 3.3rem);
  }

  .button {
    width: 100%;
  }

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

  .hero-strip div {
    border-bottom: 1px solid var(--line);
  }

  .range-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .intro-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
