:root {
  --ink: #18222f;
  --muted: #5c6775;
  --paper: #ffffff;
  --surface: #f3f6f8;
  --line: #dfe5ea;
  --blue: #079fe8;
  --blue-dark: #0078b8;
  --orange: #ff7a21;
  --header: #303a47;
  --shadow: 0 18px 45px rgba(24, 34, 47, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: 8px;
  color: white;
  background: var(--ink);
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  background: rgba(48, 58, 71, 0.97);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  flex: 0 0 auto;
  color: white;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-weight: 850;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand span {
  color: var(--blue);
}

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

.site-nav a {
  padding: 10px 13px;
  border-radius: 8px;
  color: #e7ebef;
  font-size: 0.9rem;
  font-weight: 720;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.site-nav .nav-cta {
  margin-left: 6px;
  color: white;
  background: var(--blue);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible,
.site-nav .nav-cta[aria-current="page"] {
  background: var(--blue-dark);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 9px;
  border: 0;
  border-radius: 8px;
  color: white;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 660px;
  place-items: center;
  overflow: hidden;
  color: white;
  background: #171e29;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(10, 15, 23, 0.93) 0%, rgba(10, 15, 23, 0.72) 47%, rgba(10, 15, 23, 0.2) 100%);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 100px;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.12;
}

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(2.55rem, 7vw, 5.8rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 4vw, 3.15rem);
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.hero-lead {
  max-width: 610px;
  margin: 0 0 32px;
  color: #e7edf3;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 2px solid transparent;
  border-radius: 10px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

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

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--blue-dark);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.6);
  color: white;
  background: rgba(255, 255, 255, 0.05);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.13);
}

.section {
  padding-block: 88px;
}

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

.section-dark {
  color: white;
  background: var(--header);
}

.section-intro {
  max-width: 740px;
  margin-bottom: 40px;
}

.section-intro p:last-child,
.prose p:last-child {
  margin-bottom: 0;
}

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

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

.card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 8px 28px rgba(24, 34, 47, 0.06);
}

.card-number {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--blue);
  font-size: 0.82rem;
  font-weight: 850;
}

.vehicle-list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
}

.vehicle-list li {
  position: relative;
  padding: 18px 18px 18px 50px;
  border-radius: 12px;
  background: white;
  box-shadow: 0 5px 20px rgba(24, 34, 47, 0.06);
}

.vehicle-list li::before {
  position: absolute;
  top: 20px;
  left: 20px;
  content: "✓";
  color: var(--blue-dark);
  font-weight: 900;
}

.split {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(36px, 8vw, 90px);
}

.photo-frame {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.photo-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 380px;
  place-items: end start;
  overflow: hidden;
  color: white;
  background: #171e29;
}

.page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(10, 15, 23, 0.9), rgba(10, 15, 23, 0.35));
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 47%;
}

.page-hero .container {
  position: relative;
  z-index: 1;
  padding-block: 75px;
}

.page-hero h1 {
  margin-bottom: 10px;
  font-size: clamp(2.5rem, 6vw, 4.7rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 670px;
  margin: 0;
  color: #e8edf2;
  font-size: 1.15rem;
}

.facts {
  display: grid;
  margin-top: 34px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.fact {
  padding: 20px;
  border-left: 3px solid var(--blue);
  background: var(--surface);
}

.fact strong {
  display: block;
  margin-bottom: 4px;
}

.contact-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.65fr);
  gap: 36px;
}

.form-card,
.contact-card {
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

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

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

label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.9rem;
  font-weight: 780;
}

input,
select,
textarea {
  width: 100%;
  min-height: 49px;
  padding: 11px 13px;
  border: 1px solid #bdc8d1;
  border-radius: 8px;
  color: var(--ink);
  background: white;
  font: inherit;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(7, 159, 232, 0.18);
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.form-note,
.form-status {
  color: var(--muted);
  font-size: 0.88rem;
}

.form-status {
  min-height: 1.5em;
  margin: 14px 0 0;
  font-weight: 700;
}

.form-status.success {
  color: #157f3b;
}

.form-status.error {
  color: #b42318;
}

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list li:last-child {
  border-bottom: 0;
}

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

.contact-list a {
  font-weight: 760;
  text-decoration-color: rgba(7, 159, 232, 0.5);
  text-underline-offset: 3px;
}

.map {
  width: 100%;
  margin-top: 28px;
  border-radius: 14px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-band h2 {
  margin-bottom: 8px;
}

.cta-band p {
  margin: 0;
  color: #dce2e8;
}

.site-footer {
  color: #dbe1e7;
  background: #1c242e;
}

.footer-grid {
  display: grid;
  padding-block: 48px;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 35px;
}

.site-footer h2,
.site-footer h3 {
  color: white;
}

.site-footer h2 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.site-footer h3 {
  margin-bottom: 10px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a {
  color: white;
}

.footer-bottom {
  padding-block: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #aeb8c2;
  font-size: 0.84rem;
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 82px;
    right: 0;
    left: 0;
    display: none;
    padding: 14px 20px 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--header);
  }

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

  .site-nav a {
    padding: 12px;
  }

  .site-nav .nav-cta {
    margin: 5px 0 0;
    text-align: center;
  }

  .hero {
    min-height: 610px;
  }

  .hero::after {
    background: rgba(10, 15, 23, 0.72);
  }

  .grid-3,
  .split,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    gap: 28px;
  }
}

@media (max-width: 580px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(100% - 28px, 1120px);
  }

  .nav-wrap {
    min-height: 72px;
  }

  .site-nav {
    top: 72px;
  }

  .hero {
    min-height: 560px;
  }

  .hero-content {
    padding-block: 74px;
  }

  .hero-image {
    object-position: 58% center;
  }

  .section {
    padding-block: 64px;
  }

  .grid-2,
  .vehicle-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-band {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button,
  .cta-band .button {
    width: 100%;
  }
}

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