:root {
  --ink: #11161f;
  --ink-soft: #1b222e;
  --paper: #f5f5f2;
  --white: #ffffff;
  --muted: #68707c;
  --line: #dfe1e3;
  --gold: #d6b15d;
  --gold-light: #ead394;
  --display: "Manrope", sans-serif;
  --body: "DM Sans", sans-serif;
  --radius: 3px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--body); font-size: 16px; line-height: 1.6; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.site-header {
  height: 82px; padding: 0 clamp(24px, 5vw, 80px); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: 28px; background: rgba(17, 22, 31, .96); color: var(--white); position: absolute; inset: 0 0 auto; z-index: 20;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.brand { display: inline-flex; align-items: center; gap: 12px; width: max-content; }
.brand-logo { width: 46px; height: 46px; object-fit: cover; border-radius: 2px; background: var(--white); }
.brand strong, .brand small { display: block; line-height: 1.15; }
.brand strong { font-family: var(--display); font-size: 15px; letter-spacing: -.01em; }
.brand small { margin-top: 4px; color: #aab0ba; font-size: 11px; text-transform: uppercase; letter-spacing: .16em; }
.site-header nav { display: flex; align-items: center; gap: clamp(20px, 3vw, 42px); font-size: 14px; font-weight: 600; }
.site-header nav a { position: relative; }
.site-header nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--gold); transition: right .25s ease; }
.site-header nav a:hover::after, .site-header nav a:focus-visible::after { right: 0; }
.header-call { justify-self: end; border-bottom: 1px solid var(--gold); padding: 6px 0; font-family: var(--display); font-size: 14px; font-weight: 700; }
.menu-toggle { display: none; }

.hero { min-height: 760px; height: 95vh; max-height: 920px; position: relative; color: var(--white); overflow: hidden; display: flex; align-items: center; }
.hero-image { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: center 55%; transform: scale(1.03); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,12,18,.94) 0%, rgba(8,12,18,.72) 48%, rgba(8,12,18,.2) 100%), linear-gradient(0deg, rgba(8,12,18,.45), transparent 45%); }
.hero-content { position: relative; z-index: 2; width: min(760px, 72vw); margin-left: clamp(24px, 8vw, 132px); padding-top: 90px; }
.eyebrow { margin: 0 0 22px; display: flex; align-items: center; gap: 12px; color: #d5d8de; font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow span { width: 36px; height: 1px; background: var(--gold); }
.eyebrow.dark { color: #777e87; }
.eyebrow.light { color: #b9bec6; }
h1, h2, h3 { font-family: var(--display); margin-top: 0; }
h1 { margin-bottom: 24px; font-size: clamp(52px, 7vw, 98px); line-height: .98; letter-spacing: -.055em; font-weight: 700; }
h1 em { color: var(--gold-light); font-style: normal; }
.hero-copy { max-width: 610px; margin: 0 0 36px; color: #d5d8de; font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; padding: 0 24px; border: 1px solid transparent; font-weight: 700; font-size: 14px; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: #17140d; }
.button-gold:hover { background: var(--gold-light); }
.button-ghost { border-color: rgba(255,255,255,.45); color: var(--white); backdrop-filter: blur(4px); }
.button-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.hero-facts { position: absolute; z-index: 2; right: clamp(24px, 5vw, 80px); bottom: 0; display: grid; grid-template-columns: repeat(3, minmax(120px, 1fr)); background: var(--paper); color: var(--ink); }
.hero-facts div { padding: 24px 28px; border-right: 1px solid var(--line); }
.hero-facts div:last-child { border: 0; }
.hero-facts strong, .hero-facts span { display: block; }
.hero-facts strong { font: 800 24px/1 var(--display); }
.hero-facts span { margin-top: 8px; color: var(--muted); font-size: 12px; white-space: nowrap; }

.section { padding: 120px clamp(24px, 7vw, 116px); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 32px; margin-bottom: 46px; }
h2 { margin-bottom: 0; max-width: 760px; font-size: clamp(36px, 4.2vw, 62px); line-height: 1.08; letter-spacing: -.045em; }
.text-link { padding-bottom: 4px; border-bottom: 1px solid var(--ink); font-weight: 700; font-size: 14px; white-space: nowrap; }
.text-link span { margin-left: 8px; }
.vehicle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vehicle-card { background: var(--white); border: 1px solid #e7e7e3; transition: transform .25s ease, box-shadow .25s ease; }
.vehicle-card:hover { transform: translateY(-6px); box-shadow: 0 22px 46px rgba(17,22,31,.1); }
.vehicle-photo { display: block; height: 245px; position: relative; overflow: hidden; background: #d8dadd; }
.vehicle-photo img { height: 100%; object-fit: cover; transition: transform .45s ease; }
.vehicle-card:hover .vehicle-photo img { transform: scale(1.035); }
.vehicle-badge { position: absolute; left: 14px; top: 14px; background: rgba(17,22,31,.9); color: var(--white); padding: 6px 10px; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.vehicle-body { padding: 24px; }
.vehicle-brand { margin: 0 0 4px; color: #8a7350; font-size: 12px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.vehicle-body h3 { min-height: 52px; margin: 0 0 18px; font-size: 19px; line-height: 1.35; }
.vehicle-specs { display: flex; flex-wrap: wrap; gap: 6px 14px; min-height: 48px; padding-bottom: 18px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.vehicle-specs span { position: relative; }
.vehicle-specs span + span::before { content: "·"; position: absolute; left: -9px; }
.vehicle-footer { padding-top: 18px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.vehicle-footer strong { font: 800 22px/1 var(--display); }
.vehicle-footer a { font-size: 13px; font-weight: 700; }
.inventory-note { margin: 20px 0 0; color: var(--muted); font-size: 12px; }

.story { display: grid; grid-template-columns: 1.1fr .9fr; background: var(--ink); color: var(--white); }
.story-images { min-height: 700px; position: relative; background: #242b34; overflow: hidden; }
.story-main { height: 100%; object-fit: cover; filter: saturate(.78); }
.story-detail { width: 42%; aspect-ratio: 4/5; position: absolute; right: 0; bottom: 0; object-fit: cover; border: 12px solid var(--ink); border-right: 0; border-bottom: 0; }
.story-copy { padding: clamp(72px, 8vw, 130px) clamp(36px, 7vw, 112px); display: flex; flex-direction: column; justify-content: center; }
.story-copy > p:not(.eyebrow) { max-width: 650px; margin: 28px 0 36px; color: #b9bec6; font-size: 17px; }
.benefits { border-top: 1px solid #363e49; }
.benefits > div { display: grid; grid-template-columns: 45px 1fr; gap: 14px; padding: 20px 0; border-bottom: 1px solid #363e49; }
.benefits span { color: var(--gold); font: 700 12px/1.5 var(--display); }
.benefits p { margin: 0; color: #aeb4bd; font-size: 14px; }
.benefits strong { display: block; margin-bottom: 3px; color: var(--white); font: 700 16px/1.4 var(--display); }

.reviews { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(50px, 8vw, 120px); }
.reviews-intro { position: sticky; top: 40px; align-self: start; }
.rating { margin-top: 38px; display: flex; align-items: center; gap: 22px; }
.rating > strong { font: 800 58px/1 var(--display); }
.rating span { display: flex; flex-direction: column; color: var(--muted); font-size: 13px; }
.rating b { color: #b48b2e; letter-spacing: .08em; }
.review-list { border-top: 1px solid #cfd1d3; }
blockquote { margin: 0; padding: 36px 0; border-bottom: 1px solid #cfd1d3; }
blockquote p { margin: 0 0 18px; font: 600 clamp(20px, 2vw, 28px)/1.45 var(--display); letter-spacing: -.02em; }
blockquote footer { color: var(--muted); font-size: 13px; font-weight: 700; }

.contact { padding: 110px clamp(24px, 8vw, 132px); display: grid; grid-template-columns: 1fr .72fr; gap: clamp(50px, 9vw, 140px); background: var(--ink-soft); color: var(--white); }
.contact-info > p:not(.eyebrow) { max-width: 610px; margin: 24px 0 36px; color: #b8bec6; font-size: 17px; }
.contact-lines { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 32px; }
.contact-lines a { padding: 18px 0; border-top: 1px solid #424a55; }
.contact-lines span, .contact-lines strong { display: block; }
.contact-lines span { margin-bottom: 6px; color: #89919c; font-size: 11px; text-transform: uppercase; letter-spacing: .14em; }
.contact-lines strong { font-family: var(--display); font-size: 16px; }
.hours-card { align-self: center; padding: clamp(30px, 5vw, 56px); background: var(--white); color: var(--ink); }
.hours-card h3 { margin-bottom: 28px; font-size: 28px; }
.hours-card dl { margin: 0 0 30px; }
.hours-card dl div { padding: 13px 0; display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); }
.hours-card dt { color: var(--muted); }
.hours-card dd { margin: 0; font-weight: 700; }
.hours-card a { display: inline-block; border-bottom: 1px solid var(--ink); font-weight: 700; font-size: 13px; }

.site-footer { padding: 42px clamp(24px, 5vw, 80px); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; background: #0c1017; color: #a8afb8; font-size: 12px; }
.site-footer .brand strong { color: var(--white); }
.site-footer p { margin: 0; }
.site-footer p:nth-child(2) { text-align: center; }
.site-footer .legal-note { justify-self: end; max-width: 280px; text-align: right; color: #737b86; }
.site-footer a:hover { color: var(--white); }

.legal-page { min-height: 100vh; background: var(--paper); }
.legal-header { position: static; }
.legal-content { width: min(840px, calc(100% - 40px)); margin: 0 auto; padding: 90px 0 120px; }
.legal-content h1 { margin-bottom: 30px; color: var(--ink); font-size: clamp(42px, 7vw, 72px); }
.legal-content h2 { margin: 46px 0 14px; font-size: clamp(24px, 3vw, 34px); letter-spacing: -.03em; }
.legal-content p, .legal-content li { color: #424a55; }
.legal-content a { border-bottom: 1px solid var(--ink); font-weight: 700; }
.legal-back { display: inline-block; margin-bottom: 42px; }
.legal-box { padding: 28px; border: 1px solid var(--line); background: var(--white); }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { position: absolute; left: 0; right: 0; top: 82px; padding: 24px; display: none; flex-direction: column; align-items: stretch; gap: 0; background: var(--ink); }
  .site-header nav.is-open { display: flex; }
  .site-header nav a { padding: 14px; border-bottom: 1px solid #303742; }
  .header-call { display: none; }
  .menu-toggle { justify-self: end; width: 44px; height: 44px; display: grid; place-content: center; gap: 6px; border: 0; background: transparent; }
  .menu-toggle span { width: 24px; height: 1px; background: white; transition: transform .2s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .hero-facts { left: clamp(24px, 5vw, 80px); right: auto; }
  .vehicle-grid { grid-template-columns: repeat(2, 1fr); }
  .story { grid-template-columns: 1fr; }
  .story-images { min-height: 560px; }
  .reviews { grid-template-columns: 1fr; }
  .reviews-intro { position: static; }
  .contact { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer p:nth-child(2), .site-footer .legal-note { justify-self: start; text-align: left; }
}

@media (max-width: 680px) {
  .site-header { height: 72px; padding: 0 20px; }
  .site-header nav { top: 72px; }
  .brand-logo { width: 40px; height: 40px; }
  .hero { min-height: 760px; height: 100svh; max-height: none; align-items: end; padding-bottom: 175px; }
  .hero-shade { background: linear-gradient(0deg, rgba(8,12,18,.98) 8%, rgba(8,12,18,.7) 66%, rgba(8,12,18,.35)); }
  .hero-content { width: auto; margin: 0; padding: 110px 22px 0; }
  h1 { font-size: clamp(46px, 14vw, 68px); }
  .hero-copy { font-size: 16px; }
  .hero-actions { display: grid; }
  .hero-facts { left: 20px; right: 20px; grid-template-columns: repeat(3, 1fr); }
  .hero-facts div { padding: 18px 10px; text-align: center; }
  .hero-facts strong { font-size: 20px; }
  .hero-facts span { white-space: normal; font-size: 10px; line-height: 1.3; }
  .section { padding: 84px 20px; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .vehicle-grid { grid-template-columns: 1fr; }
  .vehicle-photo { height: 235px; }
  .story-images { min-height: 440px; }
  .story-detail { width: 48%; }
  .story-copy { padding: 72px 22px; }
  .contact { padding: 82px 20px; }
  .contact-lines { grid-template-columns: 1fr; }
  .hours-card { padding: 30px 22px; }
  .hours-card dl div { display: block; }
  .hours-card dd { margin-top: 3px; }
  .site-footer { padding: 36px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
