:root {
  --ink: #17212b;
  --muted: #5d6873;
  --paper: #ffffff;
  --surface: #f3f5f6;
  --line: #dfe4e7;
  --red: #d9362b;
  --red-dark: #a9251d;
  --orange: #ef7d20;
  --header: #202a34;
  --shadow: 0 20px 50px rgba(23, 33, 43, 0.14);
  --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,.1); color: white; background: rgba(32,42,52,.97); backdrop-filter: blur(12px); }
.nav-wrap { display: flex; min-height: 82px; align-items: center; justify-content: space-between; gap: 28px; }
.brand { flex: 0 0 auto; color: white; font-size: clamp(1.15rem,3vw,1.65rem); font-weight: 900; letter-spacing: -.05em; text-decoration: none; }
.brand span { color: var(--orange); }
.site-nav { display: flex; align-items: center; gap: 6px; }
.site-nav a { padding: 10px 13px; border-radius: 8px; color: #e8ecef; font-size: .9rem; font-weight: 750; 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,.1); }
.site-nav .nav-cta { margin-left: 6px; color: white; background: var(--red); }
.site-nav .nav-cta:hover,.site-nav .nav-cta:focus-visible,.site-nav .nav-cta[aria-current="page"] { background: var(--red-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: #141b22; }
.hero::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg,rgba(11,16,22,.95) 0%,rgba(11,16,22,.72) 50%,rgba(11,16,22,.18) 100%); }
.hero::before { position: absolute; z-index: 1; right: 0; bottom: 0; width: 34%; height: 8px; content: ""; background: var(--orange); }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.hero-content { position: relative; z-index: 2; padding-block: 100px; }
.hero-copy { max-width: 720px; }
.eyebrow { margin: 0 0 14px; color: var(--orange); font-size: .78rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
h1,h2,h3 { margin-top: 0; line-height: 1.12; }
h1 { max-width: 850px; margin-bottom: 20px; font-size: clamp(2.65rem,7vw,5.8rem); letter-spacing: -.06em; }
h2 { margin-bottom: 18px; font-size: clamp(1.9rem,4vw,3.15rem); letter-spacing: -.045em; }
h3 { margin-bottom: 10px; font-size: 1.18rem; }
.hero-lead { max-width: 635px; margin: 0 0 32px; color: #e8ecef; 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 21px; border: 2px solid transparent; border-radius: 10px; font-weight: 850; text-decoration: none; cursor: pointer; }
.button-primary { color: white; background: var(--red); }
.button-primary:hover,.button-primary:focus-visible { background: var(--red-dark); }
.button-secondary { border-color: rgba(255,255,255,.65); color: white; background: rgba(255,255,255,.05); }
.button-secondary:hover,.button-secondary:focus-visible { background: rgba(255,255,255,.14); }
.button-light { color: var(--red-dark); background: white; }
.button-light:hover,.button-light:focus-visible { background: #fff1e6; }

.trust-strip { color: white; background: var(--header); }
.trust-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); }
.trust-grid p { margin: 0; padding: 25px 28px; border-right: 1px solid rgba(255,255,255,.1); }
.trust-grid p:last-child { border-right: 0; }
.trust-grid strong,.trust-grid span { display: block; }
.trust-grid strong { color: white; }
.trust-grid span { color: #bfc7ce; font-size: .88rem; }
.section { padding-block: 88px; }
.section-muted { background: var(--surface); }
.section-accent { color: white; background: var(--red); }
.section-accent .eyebrow { color: #ffd2ae; }
.section-intro { max-width: 750px; margin-bottom: 40px; }
.section-intro p:last-child { margin-bottom: 0; }
.vehicle-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.vehicle-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 9px 30px rgba(23,33,43,.07); }
.vehicle-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.vehicle-card div { padding: 24px; }
.vehicle-card p { margin: 0; color: var(--muted); }
.process-layout { display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); gap: clamp(40px,8vw,100px); }
.steps { margin: 0; padding: 0; list-style: none; }
.steps li { display: grid; padding: 24px 0; border-bottom: 1px solid var(--line); grid-template-columns: 58px 1fr; gap: 18px; }
.steps li:first-child { padding-top: 0; }
.steps li:last-child { border-bottom: 0; }
.steps span { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 50%; color: white; background: var(--red); font-size: .8rem; font-weight: 900; }
.steps h3 { margin-bottom: 5px; }
.steps p { margin: 0; color: var(--muted); }
.cta-band { display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.cta-band h2 { margin-bottom: 8px; }
.cta-band p:last-child { margin: 0; color: #ffe4d0; }

.page-hero { position: relative; display: grid; min-height: 430px; place-items: end start; overflow: hidden; color: white; background: #141b22; }
.page-hero::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg,rgba(11,16,22,.94),rgba(11,16,22,.38)); }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 52%; }
.page-hero .container { position: relative; z-index: 1; padding-block: 78px; }
.page-hero h1 { max-width: 900px; margin-bottom: 12px; font-size: clamp(2.45rem,6vw,4.8rem); }
.page-hero p:not(.eyebrow) { max-width: 690px; margin: 0; color: #e8ecef; font-size: 1.15rem; }
.page-hero-compact { min-height: 370px; }
.split { display: grid; align-items: center; grid-template-columns: minmax(0,1.05fr) minmax(360px,.95fr); gap: clamp(38px,8vw,90px); }
.prose p { color: var(--muted); }
.facts { display: grid; margin-top: 34px; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 13px; }
.fact { padding: 19px; border-left: 3px solid var(--red); background: var(--surface); }
.fact strong,.fact span { display: block; }
.fact span { color: var(--muted); font-size: .88rem; }
.photo-frame { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.photo-frame img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.contact-layout { display: grid; align-items: start; grid-template-columns: minmax(0,1.35fr) minmax(290px,.65fr); gap: 34px; }
.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: .9rem; font-weight: 780; }
input,select,textarea { width: 100%; min-height: 49px; padding: 11px 13px; border: 1px solid #b9c3c9; 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(--red); outline: 3px solid rgba(217,54,43,.16); }
.honeypot { position: absolute; left: -10000px; }
.form-note,.form-status { color: var(--muted); font-size: .88rem; }
.form-status { min-height: 1.5em; margin: 14px 0 0; font-weight: 750; }
.form-status.success { color: #137a38; }
.form-status.error { color: #ad241c; }
.contact-list { margin: 0 0 28px; 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: .77rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.contact-list a { font-weight: 780; text-decoration-color: rgba(217,54,43,.45); text-underline-offset: 3px; }
.button-outline { border-color: var(--red); color: var(--red-dark); background: white; }
.button-outline:hover,.button-outline:focus-visible { color: white; background: var(--red); }
.tip { margin-top: 28px; padding: 20px; border-left: 4px solid var(--orange); background: var(--surface); }
.tip p { margin: 7px 0 0; color: var(--muted); font-size: .92rem; }

.site-footer { color: #d9e0e5; background: #151d24; }
.footer-grid { display: grid; padding-block: 48px; grid-template-columns: 1.4fr 1fr 1fr; gap: 35px; }
.site-footer h2,.site-footer h3 { color: white; }
.site-footer h2 { margin-bottom: 10px; font-size: 1.4rem; }
.site-footer h3 { margin-bottom: 10px; font-size: .84rem; letter-spacing: .09em; text-transform: uppercase; }
.site-footer p,.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer a { color: white; text-underline-offset: 3px; }
.footer-bottom { padding-block: 20px; border-top: 1px solid rgba(255,255,255,.1); color: #aab5bd; font-size: .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,.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(11,16,22,.76); }
  .vehicle-grid,.process-layout,.split,.contact-layout,.footer-grid { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr; }
  .vehicle-card { display: grid; grid-template-columns: 180px 1fr; }
  .vehicle-card img { height: 100%; aspect-ratio: auto; }
}

@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: 570px; }
  .hero-content { padding-block: 72px; }
  .hero-image { object-position: 58% center; }
  .section { padding-block: 64px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid p { padding: 16px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .trust-grid p:last-child { border-bottom: 0; }
  .vehicle-card { display: block; }
  .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; } }
