:root {
  --ink: #0b0c0d;
  --ink-2: #151719;
  --charcoal: #222426;
  --ivory: #f1efe9;
  --paper: #faf9f5;
  --stone: #b7b2a8;
  --champagne: #bba777;
  --white: #ffffff;
  --line-dark: rgba(255, 255, 255, .16);
  --line-light: rgba(11, 12, 13, .16);
  --display: "Bodoni 72", Didot, "Iowan Old Style", "Times New Roman", serif;
  --body: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --pad: clamp(24px, 5.5vw, 92px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}
body.menu-open, body.dialog-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--champagne); color: var(--ink); }

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 30px;
  background: var(--ink);
  color: var(--white);
  transition: opacity .75s ease, visibility .75s ease;
}
.page-loader.is-hidden { opacity: 0; visibility: hidden; }
.loader-mark { font-family: var(--display); font-size: 43px; letter-spacing: -.08em; }
.page-loader > span { width: 120px; height: 1px; background: rgba(255,255,255,.22); overflow: hidden; }
.page-loader > span::after { content: ""; display: block; width: 45%; height: 100%; background: var(--white); animation: load-line 1.2s ease-in-out infinite; }
@keyframes load-line { from { transform: translateX(-120%); } to { transform: translateX(260%); } }

.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  width: 100%;
  height: 98px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(20px, 3.4vw, 56px);
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: height .4s ease, background .4s ease, border-color .4s ease;
}
.site-header.is-scrolled { height: 76px; background: rgba(11, 12, 13, .94); border-color: var(--line-dark); backdrop-filter: blur(12px); }
.menu-toggle, .header-contact, .menu-close, .dialog-close {
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle {
  width: max-content;
  display: grid;
  grid-template-columns: 26px auto;
  grid-template-rows: 1fr 1fr;
  column-gap: 14px;
  align-items: center;
  color: inherit;
  padding: 12px 0;
}
.menu-toggle span { width: 26px; height: 1px; background: currentColor; transition: width .25s ease; }
.menu-toggle span:nth-child(1) { align-self: end; margin-bottom: 3px; }
.menu-toggle span:nth-child(2) { align-self: start; margin-top: 3px; width: 17px; }
.menu-toggle em { grid-column: 2; grid-row: 1 / 3; font-style: normal; text-transform: uppercase; font-size: 10px; letter-spacing: .18em; }
.menu-toggle:hover span:nth-child(2) { width: 26px; }

.brand, .footer-brand { display: inline-flex; align-items: center; gap: 12px; }
.brand { justify-self: center; }
.brand svg, .footer-brand svg { width: 46px; height: 46px; fill: none; stroke: currentColor; stroke-width: 1.05; }
.brand svg path, .footer-brand svg path { stroke-width: 1.2; }
.brand span, .footer-brand span { display: flex; flex-direction: column; line-height: 1; text-transform: uppercase; }
.brand strong, .footer-brand strong { font-family: var(--display); font-weight: 400; font-size: 19px; letter-spacing: .12em; }
.brand small, .footer-brand small { margin-top: 6px; font-size: 8px; letter-spacing: .35em; }

.header-contact {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 11px 0;
  color: inherit;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: .18em;
}
.header-contact svg, .button svg { width: 18px; fill: none; stroke: currentColor; }

.site-menu {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: grid;
  grid-template-columns: 43% 57%;
  background: var(--ink);
  color: var(--white);
  visibility: hidden;
  opacity: 0;
  transition: opacity .5s ease, visibility .5s ease;
}
.site-menu.is-open { opacity: 1; visibility: visible; }
.menu-image { background: url("assets/hero-night.jpg") center / cover; transform: scale(1.06); transition: transform .9s cubic-bezier(.22,.61,.36,1); }
.site-menu.is-open .menu-image { transform: scale(1); }
.menu-panel { position: relative; padding: clamp(90px, 11vh, 140px) clamp(36px, 8vw, 140px) 48px; display: flex; flex-direction: column; }
.menu-close { position: absolute; top: 35px; right: 45px; width: 40px; height: 40px; color: var(--white); }
.menu-close span { position: absolute; left: 7px; top: 20px; width: 27px; height: 1px; background: currentColor; transform: rotate(45deg); }
.menu-close span:last-child { transform: rotate(-45deg); }
.eyebrow { margin: 0 0 22px; text-transform: uppercase; font-size: 10px; font-weight: 600; letter-spacing: .24em; color: #64625c; }
.eyebrow.light { color: rgba(255,255,255,.66); }
.menu-panel nav { display: flex; flex-direction: column; }
.menu-panel nav a { display: flex; align-items: center; gap: 24px; padding: 13px 0; font-family: var(--display); font-size: clamp(36px, 4vw, 66px); font-weight: 400; line-height: 1.08; border-bottom: 1px solid var(--line-dark); transition: color .25s ease, padding-left .25s ease; }
.menu-panel nav a:hover { color: var(--champagne); padding-left: 10px; }
.menu-panel nav span { font-family: var(--body); font-size: 9px; letter-spacing: .15em; color: rgba(255,255,255,.4); }
.menu-meta { margin-top: auto; display: flex; flex-wrap: wrap; gap: 20px 40px; font-size: 12px; color: rgba(255,255,255,.6); }
.menu-meta a { color: var(--white); }

.hero { position: relative; height: max(720px, 100svh); min-height: 720px; color: var(--white); background: var(--ink); overflow: hidden; }
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; animation: hero-in 1.6s cubic-bezier(.22,.61,.36,1) both; }
@keyframes hero-in { from { transform: scale(1.06); opacity: .5; } to { transform: scale(1); opacity: 1; } }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,7,11,.7) 0%, rgba(3,7,11,.28) 50%, rgba(3,7,11,.2) 100%), linear-gradient(0deg, rgba(3,7,11,.62) 0%, transparent 45%); }
.hero-copy { position: absolute; z-index: 2; left: var(--pad); top: 49%; width: min(720px, calc(100% - 48px)); transform: translateY(-42%); }
.hero-copy h1 { margin: 0; font-family: var(--display); font-size: clamp(62px, 7.6vw, 128px); font-weight: 400; letter-spacing: -.045em; line-height: .83; text-wrap: balance; }
.hero-intro { max-width: 500px; margin: 30px 0 34px; font-size: 16px; line-height: 1.7; color: rgba(255,255,255,.78); }
.button { position: relative; min-height: 53px; display: inline-flex; align-items: center; justify-content: space-between; gap: 34px; padding: 0 22px; border: 1px solid transparent; cursor: pointer; text-transform: uppercase; font-size: 10px; font-weight: 600; letter-spacing: .17em; transition: background .25s ease, color .25s ease, border-color .25s ease; }
.button-light { background: var(--white); color: var(--ink); }
.button-light:hover { background: var(--champagne); }
.button-outline { border-color: rgba(255,255,255,.5); background: transparent; color: var(--white); }
.button-outline:hover { background: var(--white); color: var(--ink); }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover { background: var(--charcoal); }
.hero-facts { position: absolute; z-index: 2; right: var(--pad); bottom: 38px; display: grid; grid-template-columns: repeat(3, minmax(110px, 160px)); border-top: 1px solid var(--line-dark); }
.hero-facts > * { padding: 15px 18px 0; border-left: 1px solid var(--line-dark); display: flex; flex-direction: column; }
.hero-facts strong { font-family: var(--display); font-size: 24px; font-weight: 400; }
.hero-facts span { margin-top: 3px; color: rgba(255,255,255,.58); font-size: 9px; letter-spacing: .06em; text-transform: uppercase; }
.scroll-cue { position: absolute; z-index: 2; left: var(--pad); bottom: 32px; display: flex; align-items: center; gap: 15px; text-transform: uppercase; font-size: 9px; letter-spacing: .2em; }
.scroll-cue i { position: relative; width: 66px; height: 1px; background: rgba(255,255,255,.38); overflow: hidden; }
.scroll-cue i::after { content: ""; position: absolute; inset: 0; width: 30%; background: var(--white); animation: scroll-line 2s ease-in-out infinite; }
@keyframes scroll-line { from { transform: translateX(-100%); } to { transform: translateX(340%); } }

.section-pad { padding: clamp(88px, 11vw, 170px) var(--pad); }
.intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: minmax(150px, .7fr) 2.5fr; gap: 6vw; align-items: start; }
.intro-statement h2 { max-width: 1120px; margin: -10px 0 0; font-family: var(--display); font-size: clamp(44px, 6.2vw, 98px); line-height: .98; font-weight: 400; letter-spacing: -.04em; }
.intro-statement h2 em { font-weight: 400; color: #89857c; }
.intro-body { margin: 55px 0 0 auto; max-width: 530px; }
.intro-body p { margin: 0 0 28px; color: #4d4d49; line-height: 1.8; }
.text-link { display: inline-flex; align-items: center; gap: 18px; padding: 9px 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; cursor: pointer; text-transform: uppercase; font-size: 10px; letter-spacing: .16em; }

.inventory { color: var(--white); background: var(--ink); overflow: hidden; }
.section-head { display: grid; grid-template-columns: 1.25fr .75fr; gap: 8vw; align-items: end; }
.section-head h2, .journey-intro h2, .location-copy h2 { margin: 0; font-family: var(--display); font-size: clamp(52px, 6.1vw, 94px); line-height: .95; font-weight: 400; letter-spacing: -.04em; }
.section-head > p { max-width: 440px; margin: 0 0 8px; color: rgba(255,255,255,.58); line-height: 1.75; }
.inventory-toolbar { margin-top: 70px; display: flex; justify-content: space-between; align-items: end; padding-bottom: 18px; border-bottom: 1px solid var(--line-dark); }
.filters { display: flex; flex-wrap: wrap; gap: 6px; }
.filter { padding: 9px 16px; border: 1px solid var(--line-dark); border-radius: 999px; background: transparent; color: rgba(255,255,255,.62); cursor: pointer; text-transform: uppercase; font-size: 9px; letter-spacing: .16em; transition: all .25s ease; }
.filter:hover, .filter.active { background: var(--white); border-color: var(--white); color: var(--ink); }
.slider-controls { display: flex; }
.slider-controls button { width: 44px; height: 44px; border: 1px solid var(--line-dark); background: transparent; color: var(--white); cursor: pointer; }
.slider-controls button + button { border-left: 0; }
.slider-controls button:hover { background: var(--white); color: var(--ink); }
.vehicle-track { display: grid; grid-auto-columns: minmax(380px, 42vw); grid-auto-flow: column; gap: 22px; margin: 34px calc(var(--pad) * -1) 0; padding: 0 var(--pad) 20px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: inline mandatory; scrollbar-width: none; scroll-behavior: smooth; }
.vehicle-track::-webkit-scrollbar { display: none; }
.vehicle-card { min-width: 0; scroll-snap-align: start; border-bottom: 1px solid var(--line-dark); transition: opacity .35s ease, transform .35s ease; }
.vehicle-card.is-hidden { display: none; }
.vehicle-image { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--ink-2); }
.vehicle-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.22,.61,.36,1), filter .5s ease; }
.vehicle-card:hover img { transform: scale(1.035); filter: brightness(1.05); }
.vehicle-tag { position: absolute; left: 16px; top: 16px; padding: 7px 10px; background: rgba(11,12,13,.72); backdrop-filter: blur(7px); text-transform: uppercase; font-size: 8px; letter-spacing: .15em; }
.vehicle-info { min-height: 150px; padding: 20px 2px; display: grid; grid-template-columns: 1fr auto auto; gap: 28px; align-items: center; }
.vehicle-info p { margin: 0 0 3px; color: rgba(255,255,255,.48); text-transform: uppercase; font-size: 9px; letter-spacing: .18em; }
.vehicle-info h3 { margin: 0; font-family: var(--display); font-size: clamp(28px, 2.7vw, 42px); font-weight: 400; }
.vehicle-info dl { display: flex; gap: 25px; margin: 0; }
.vehicle-info dl div { display: flex; flex-direction: column; }
.vehicle-info dt { color: rgba(255,255,255,.4); text-transform: uppercase; font-size: 7px; letter-spacing: .12em; }
.vehicle-info dd { margin: 5px 0 0; font-size: 11px; }
.round-link { width: 52px; height: 52px; display: inline-grid; place-items: center; flex: 0 0 auto; border: 1px solid currentColor; border-radius: 50%; background: transparent; color: inherit; cursor: pointer; font-size: 20px; transition: background .25s ease, color .25s ease, transform .25s ease; }
.round-link:hover { background: var(--white); color: var(--ink); transform: rotate(45deg); }
.inventory-bottom { margin-top: 40px; display: flex; align-items: center; justify-content: space-between; }
.inventory-bottom p { color: rgba(255,255,255,.42); font-size: 12px; }

.story-panel { position: relative; min-height: 850px; height: 100svh; color: var(--white); overflow: hidden; }
.story-panel > img { position: absolute; width: 100%; height: 100%; object-fit: cover; }
.story-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,9,10,.84), rgba(8,9,10,.12) 70%); }
.story-copy { position: absolute; left: var(--pad); bottom: clamp(70px, 10vw, 150px); max-width: 690px; }
.story-copy h2 { margin: 0; font-family: var(--display); font-size: clamp(56px, 7vw, 108px); font-weight: 400; line-height: .92; letter-spacing: -.045em; }
.story-copy > p:not(.eyebrow) { max-width: 520px; margin: 30px 0; color: rgba(255,255,255,.72); line-height: 1.8; }

.journey { display: grid; grid-template-columns: .8fr 1.4fr; gap: 10vw; background: var(--ivory); }
.journey-intro { position: sticky; top: 130px; align-self: start; }
.journey-intro > p:not(.eyebrow) { max-width: 420px; margin: 32px 0 0; color: #5e5d58; line-height: 1.75; }
.journey-steps { position: relative; padding-left: 70px; }
.journey-line { position: absolute; left: 9px; top: 13px; bottom: 13px; width: 1px; background: rgba(11,12,13,.16); }
.journey-line span { display: block; width: 1px; height: 0; background: var(--ink); transition: height .15s linear; }
.journey-step { position: relative; min-height: 260px; padding: 0 0 74px; border-bottom: 1px solid var(--line-light); }
.journey-step + .journey-step { padding-top: 68px; }
.step-dot { position: absolute; left: -67px; top: 6px; width: 13px; height: 13px; border: 1px solid var(--ink); border-radius: 50%; background: var(--ivory); }
.journey-step + .journey-step .step-dot { top: 75px; }
.journey-step small { text-transform: uppercase; font-size: 9px; letter-spacing: .18em; color: #79766d; }
.journey-step h3 { max-width: 530px; margin: 17px 0 15px; font-family: var(--display); font-size: clamp(34px, 3.7vw, 57px); line-height: 1; font-weight: 400; letter-spacing: -.025em; }
.journey-step p { max-width: 490px; margin: 0; color: #5d5b55; line-height: 1.7; }

.testimonial { position: relative; min-height: 600px; display: grid; grid-template-columns: .45fr 1.55fr; gap: 8vw; align-items: center; padding: 100px var(--pad); background: #17191a; color: var(--white); }
.review-score { padding-right: 5vw; border-right: 1px solid var(--line-dark); display: flex; flex-direction: column; }
.review-score > span { text-transform: uppercase; letter-spacing: .2em; font-size: 9px; color: rgba(255,255,255,.55); }
.review-score strong { margin: 18px 0 3px; font-family: var(--display); font-size: 94px; line-height: .9; font-weight: 400; }
.review-score div { color: var(--champagne); letter-spacing: .15em; }
.review-score small { margin-top: 10px; color: rgba(255,255,255,.45); }
.testimonial figure { margin: 0; max-width: 950px; }
.testimonial blockquote { margin: 0; font-family: var(--display); font-size: clamp(40px, 5.1vw, 76px); line-height: 1.05; font-weight: 400; letter-spacing: -.025em; }
.testimonial figcaption { margin-top: 28px; text-transform: uppercase; letter-spacing: .18em; font-size: 9px; color: rgba(255,255,255,.45); }
.review-link { position: absolute; right: var(--pad); bottom: 55px; }

.location { min-height: 720px; display: grid; grid-template-columns: 1fr 1fr; background: var(--paper); }
.location-map { position: relative; min-height: 620px; overflow: hidden; background: #d8d5ce; }
.map-grid { position: absolute; inset: 0; opacity: .24; background-image: linear-gradient(rgba(11,12,13,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(11,12,13,.16) 1px, transparent 1px); background-size: 80px 80px; transform: rotate(8deg) scale(1.2); }
.map-road { position: absolute; z-index: 2; height: 34px; background: var(--paper); border: 1px solid rgba(11,12,13,.1); transform-origin: left center; }
.road-a { width: 120%; left: -8%; top: 48%; transform: rotate(-14deg); }
.road-b { width: 90%; left: 24%; top: 8%; transform: rotate(64deg); }
.road-c { width: 60%; left: -5%; bottom: 15%; transform: rotate(31deg); }
.map-pin { position: absolute; z-index: 4; left: 54%; top: 47%; width: 72px; height: 72px; display: grid; place-items: center; border-radius: 50% 50% 50% 0; background: var(--ink); color: var(--white); transform: translate(-50%, -50%) rotate(-45deg); box-shadow: 0 12px 30px rgba(0,0,0,.18); }
.map-pin span { font-family: var(--display); font-size: 20px; transform: rotate(45deg); }
.location-map > small { position: absolute; z-index: 4; left: calc(54% + 50px); top: calc(47% + 32px); text-transform: uppercase; font-size: 9px; letter-spacing: .18em; }
.location-copy { align-self: center; }
.location-copy address { display: grid; gap: 14px; margin: 45px 0; font-style: normal; }
.location-copy address strong { text-transform: uppercase; font-size: 11px; letter-spacing: .16em; }
.location-copy address span { color: #5f5e59; }
.location-copy address a { width: max-content; font-family: var(--display); font-size: 30px; border-bottom: 1px solid; }
.location-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 26px; }

.site-footer { padding: 70px var(--pad) 26px; display: grid; grid-template-columns: 1.3fr .7fr 1fr; gap: 60px; background: var(--ink); color: var(--white); }
.footer-brand { align-self: start; }
.footer-brand svg { width: 56px; height: 56px; }
.footer-nav, .footer-contact { display: flex; flex-direction: column; gap: 13px; font-size: 12px; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--champagne); }
.footer-contact { color: rgba(255,255,255,.48); }
.footer-contact a { font-family: var(--display); font-size: 25px; color: var(--white); }
.footer-bottom { grid-column: 1 / -1; margin-top: 35px; padding-top: 22px; display: flex; flex-wrap: wrap; gap: 15px 35px; border-top: 1px solid var(--line-dark); color: rgba(255,255,255,.4); text-transform: uppercase; font-size: 8px; letter-spacing: .14em; }
.footer-bottom button { padding: 0; border: 0; background: transparent; color: inherit; cursor: pointer; text-transform: inherit; font: inherit; letter-spacing: inherit; }
.footer-bottom a { margin-left: auto; color: var(--white); }

.contact-dialog { width: min(1120px, calc(100% - 40px)); max-height: min(800px, calc(100svh - 40px)); padding: 0; border: 0; background: var(--paper); color: var(--ink); box-shadow: 0 30px 90px rgba(0,0,0,.35); }
.contact-dialog::backdrop { background: rgba(4,5,6,.8); backdrop-filter: blur(7px); }
.contact-dialog[open] { display: grid; grid-template-columns: .8fr 1.2fr; animation: dialog-in .4s ease both; }
@keyframes dialog-in { from { opacity: 0; transform: translateY(20px); } }
.dialog-close { position: absolute; z-index: 2; right: 20px; top: 16px; width: 42px; height: 42px; font-size: 30px; font-weight: 200; }
.dialog-intro { padding: 72px 55px; background: var(--ivory); }
.dialog-intro h2 { margin: 0; font-family: var(--display); font-size: clamp(48px, 5vw, 70px); font-weight: 400; line-height: .95; }
.dialog-intro > p:not(.eyebrow) { margin: 30px 0; color: #5c5b56; line-height: 1.75; }
.dialog-intro > a { font-size: 12px; }
.contact-form { padding: 72px 55px 50px; display: grid; grid-template-columns: 1fr 1fr; gap: 27px 20px; overflow-y: auto; }
.contact-form label { display: flex; flex-direction: column; gap: 7px; text-transform: uppercase; font-size: 8px; letter-spacing: .16em; color: #6b6962; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 10px 0; border: 0; border-bottom: 1px solid var(--line-light); border-radius: 0; outline: 0; background: transparent; color: var(--ink); text-transform: none; letter-spacing: normal; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--ink); }
.contact-form .full { grid-column: 1 / -1; }
.contact-form .consent { flex-direction: row; align-items: flex-start; gap: 10px; line-height: 1.5; text-transform: none; letter-spacing: normal; }
.consent input { width: 15px; margin: 2px 0 0; }
.contact-form .button { width: 100%; }
.form-success { display: none; padding: 80px 55px; place-content: center; text-align: center; }
.form-success.is-visible { display: grid; }
.form-success > span { font-size: 46px; }
.form-success h3 { margin: 20px 0 6px; font-family: var(--display); font-size: 48px; font-weight: 400; }
.form-success p { max-width: 440px; color: #5c5b56; }
.form-success .button { margin: 25px auto 0; }

.privacy-toast { position: fixed; z-index: 150; left: 24px; bottom: 24px; width: min(440px, calc(100% - 48px)); padding: 18px; display: flex; gap: 20px; align-items: center; background: var(--paper); border: 1px solid var(--line-light); box-shadow: 0 10px 40px rgba(0,0,0,.15); transform: translateY(calc(100% + 40px)); opacity: 0; transition: .35s ease; }
.privacy-toast.is-visible { transform: translateY(0); opacity: 1; }
.privacy-toast p { margin: 0; font-size: 11px; color: #5d5b55; }
.privacy-toast button { flex: 0 0 auto; border: 0; border-bottom: 1px solid; background: transparent; cursor: pointer; text-transform: uppercase; font-size: 9px; letter-spacing: .13em; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.22,.61,.36,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

:focus-visible { outline: 2px solid var(--champagne); outline-offset: 4px; }

@media (max-width: 1000px) {
  .hero-facts { grid-template-columns: repeat(3, 125px); }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-statement h2 { margin-top: 0; }
  .section-head { grid-template-columns: 1fr; }
  .section-head > p { margin-top: 15px; }
  .vehicle-track { grid-auto-columns: minmax(350px, 68vw); }
  .vehicle-info { grid-template-columns: 1fr auto; }
  .vehicle-info dl { display: none; }
  .journey { grid-template-columns: 1fr; }
  .journey-intro { position: static; }
  .testimonial { grid-template-columns: 1fr; }
  .review-score { padding: 0 0 35px; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .review-score strong { font-size: 70px; }
  .location { grid-template-columns: .85fr 1.15fr; }
}

@media (max-width: 760px) {
  .site-header { height: 78px; grid-template-columns: 1fr auto; }
  .menu-toggle em, .brand span, .header-contact span { display: none; }
  .menu-toggle { grid-template-columns: 26px; }
  .brand { justify-self: end; }
  .brand svg { width: 42px; height: 42px; }
  .header-contact { position: fixed; z-index: 70; right: 17px; bottom: 18px; width: 52px; height: 52px; justify-content: center; padding: 0; border-radius: 50%; background: var(--white); color: var(--ink); box-shadow: 0 8px 28px rgba(0,0,0,.25); }
  .site-menu { grid-template-columns: 1fr; }
  .menu-image { display: none; }
  .menu-panel { padding: 105px 26px 35px; }
  .menu-close { top: 23px; right: 20px; }
  .menu-panel nav a { font-size: 44px; }
  .hero { height: 100svh; min-height: 650px; }
  .hero-media { object-position: 63% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(3,7,11,.84) 0%, rgba(3,7,11,.12) 80%); }
  .hero-copy { left: 24px; top: auto; bottom: 118px; width: calc(100% - 48px); transform: none; }
  .hero-copy h1 { font-size: clamp(54px, 17vw, 78px); line-height: .86; }
  .hero-intro { margin: 23px 0 25px; font-size: 14px; line-height: 1.6; }
  .hero-facts { display: none; }
  .scroll-cue { left: auto; right: 24px; bottom: 35px; }
  .section-pad { padding-top: 88px; padding-bottom: 88px; }
  .intro-statement h2 { font-size: 46px; }
  .intro-body { margin-top: 36px; }
  .inventory-toolbar { margin-top: 38px; }
  .filters { flex-wrap: nowrap; overflow-x: auto; width: calc(100vw - 130px); scrollbar-width: none; }
  .filter { flex: 0 0 auto; }
  .vehicle-track { grid-auto-columns: 86vw; gap: 14px; }
  .vehicle-info { min-height: 124px; }
  .inventory-bottom { align-items: flex-start; flex-direction: column; gap: 18px; }
  .story-panel { min-height: 740px; }
  .story-panel > img { object-position: 60% center; }
  .story-overlay { background: linear-gradient(0deg, rgba(8,9,10,.9), rgba(8,9,10,.12) 80%); }
  .story-copy { left: 24px; right: 24px; bottom: 60px; }
  .story-copy h2 { font-size: 55px; }
  .journey-steps { padding-left: 45px; }
  .step-dot { left: -42px; }
  .testimonial { min-height: 680px; padding: 80px 24px 110px; }
  .testimonial blockquote { font-size: 40px; }
  .review-link { right: 24px; bottom: 38px; }
  .location { grid-template-columns: 1fr; }
  .location-map { min-height: 430px; }
  .site-footer { grid-template-columns: 1fr; padding-top: 60px; gap: 35px; }
  .footer-bottom { margin-top: 5px; }
  .footer-bottom a { margin-left: 0; }
  .contact-dialog { width: 100%; max-height: 100svh; height: 100svh; }
  .contact-dialog[open] { grid-template-columns: 1fr; overflow-y: auto; }
  .dialog-intro { padding: 70px 24px 36px; }
  .dialog-intro h2 { font-size: 53px; }
  .contact-form { padding: 38px 24px 70px; grid-template-columns: 1fr; overflow: visible; }
  .contact-form .full { grid-column: auto; }
  .form-success { padding: 60px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
