@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg: #101111;
  --bg-2: #171818;
  --panel: #1d1e1e;
  --panel-2: #242525;
  --gold: #d4af37;
  --gold-light: #efd47a;
  --white: #f7f7f2;
  --muted: #9a9c9b;
  --muted-2: #6e7270;
  --line: rgba(255,255,255,.12);
  --line-gold: rgba(212,175,55,.42);
  --radius: 18px;
  --radius-sm: 10px;
  --max: 1240px;
  --shadow: 0 24px 70px rgba(0,0,0,.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: Manrope, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }
::selection { background: var(--gold); color: #171717; }

.container { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-light);
  font: 500 .72rem/1 DM Mono, monospace;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2, h3, h4 { margin: 0; font-family: "Space Grotesk", sans-serif; letter-spacing: -.045em; line-height: 1.04; }
h1 { font-size: clamp(3.4rem, 8vw, 7.4rem); }
h2 { font-size: clamp(2.2rem, 5vw, 4.4rem); }
h3 { font-size: clamp(1.45rem, 2.5vw, 2.2rem); }
p { color: var(--muted); }
.lead { max-width: 640px; font-size: 1.08rem; }
.muted { color: var(--muted); }
.gold { color: var(--gold-light); }
.section { padding: 116px 0; position: relative; }
.section.compact { padding: 80px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 48px; }
.section-head > div { max-width: 700px; }
.section-head p { max-width: 500px; margin: 14px 0 0; }

.site-header {
  position: sticky; z-index: 20; top: 0; width: 100%;
  background: rgba(16,17,17,.58); border-bottom: 1px solid transparent;
  transition: .35s ease; backdrop-filter: blur(8px);
}
.site-header.scrolled { background: rgba(16,17,17,.9); border-color: var(--line); box-shadow: 0 8px 35px rgba(0,0,0,.2); }
.nav-wrap { height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 24px; transition: height .35s ease; }
.scrolled .nav-wrap { height: 70px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font: 700 1.18rem/1 "Space Grotesk", sans-serif; letter-spacing: -.05em; white-space: nowrap; }
.brand-mark { width: 29px; height: 29px; display: grid; place-items: center; border: 1px solid var(--gold); color: var(--gold); transform: rotate(45deg); }
.brand-mark span { transform: rotate(-45deg); font-size: .74rem; }
.brand em { color: var(--gold); font-style: normal; }
.nav-links { display: flex; align-items: center; gap: clamp(14px, 2.2vw, 30px); margin-left: auto; }
.nav-links a { color: var(--muted); font-size: .78rem; font-weight: 700; transition: color .2s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.menu-button { display: none; border: 0; background: transparent; color: var(--white); padding: 8px; }
.menu-button span { display: block; width: 25px; height: 2px; margin: 5px; background: currentColor; transition: .25s; }
.mobile-cta { display: none; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 48px; padding: 0 20px; border: 1px solid var(--gold);
  border-radius: 999px; background: var(--gold); color: #151515;
  font-size: .8rem; font-weight: 800; transition: .25s ease;
}
.button:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(212,175,55,.18); }
.button.ghost { background: transparent; color: var(--gold-light); }
.button.ghost:hover { background: var(--gold); color: #151515; }
.button.dark { background: var(--panel-2); border-color: var(--line); color: var(--white); }
.button.small { min-height: 40px; padding: 0 15px; font-size: .72rem; }
.button.full { width: 100%; }
.text-link { color: var(--gold-light); font-size: .82rem; font-weight: 800; }
.text-link:hover { color: var(--white); }

.hero { min-height: 720px; display: grid; align-items: end; padding: 90px 0 74px; position: relative; overflow: hidden; background: radial-gradient(circle at 72% 44%, rgba(212,175,55,.12), transparent 27%), linear-gradient(112deg, #0f1010 0%, #171918 52%, #0e0f0f 100%); }
.hero:after { content: ""; position: absolute; width: 560px; height: 560px; right: 7%; top: 17%; border: 1px solid rgba(212,175,55,.22); border-radius: 50%; box-shadow: 0 0 0 34px rgba(212,175,55,.025), 0 0 0 90px rgba(212,175,55,.018); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 4vw; position: relative; z-index: 1; }
.hero-copy { position: relative; z-index: 2; }
.hero h1 { max-width: 650px; }
.hero h1 span { color: var(--gold-light); }
.hero-copy .lead { margin: 25px 0 31px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-media { min-height: 510px; position: relative; display: grid; place-items: center; }
.hero-media img { width: min(100%, 740px); filter: drop-shadow(0 28px 32px rgba(0,0,0,.62)); position: relative; z-index: 1; animation: vehicleFloat 7s ease-in-out infinite; }
.media-kicker { position: absolute; bottom: 10%; right: 0; z-index: 2; padding: 14px 18px; background: rgba(30,31,31,.8); border: 1px solid var(--line-gold); border-radius: 999px; color: var(--gold-light); font: .68rem DM Mono, monospace; }
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; padding-top: 50px; border-top: 1px solid var(--line); position: relative; z-index: 2; }
.stat { padding: 0 24px; border-left: 1px solid var(--line); }
.stat:first-child { padding-left: 0; border-left: 0; }
.stat strong { display: block; color: var(--white); font: 600 clamp(1.25rem, 2.4vw, 2rem)/1 "Space Grotesk", sans-serif; }
.stat span { display: block; margin-top: 8px; color: var(--muted); font: .68rem DM Mono, monospace; letter-spacing: .08em; text-transform: uppercase; }

.page-hero { padding: 110px 0 95px; background: radial-gradient(circle at 80% 20%, rgba(212,175,55,.16), transparent 28%), var(--bg-2); border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 880px; font-size: clamp(3rem, 7vw, 6.2rem); }
.page-hero .lead { margin-top: 20px; }
.breadcrumb { display: flex; gap: 10px; margin-top: 25px; color: var(--muted-2); font: .68rem DM Mono, monospace; }
.breadcrumb a:hover { color: var(--gold-light); }

.vehicle-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.vehicle-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: .3s ease; position: relative; }
.vehicle-card:hover { transform: translateY(-7px); border-color: var(--line-gold); box-shadow: var(--shadow); }
.vehicle-visual { min-height: 240px; background: radial-gradient(circle at 50% 50%, rgba(212,175,55,.16), transparent 47%), #1a1b1b; position: relative; display: grid; place-items: center; overflow: hidden; }
.vehicle-visual img { width: 94%; height: 230px; object-fit: contain; transition: transform .5s ease; }
.vehicle-card:hover .vehicle-visual img { transform: scale(1.07); }
.badge { position: absolute; left: 14px; top: 14px; padding: 6px 9px; border: 1px solid var(--line-gold); border-radius: 999px; color: var(--gold-light); font: .61rem DM Mono, monospace; letter-spacing: .12em; }
.vehicle-body { padding: 22px; }
.vehicle-body h3 { font-size: 1.4rem; }
.vehicle-body > p { min-height: 48px; margin: 8px 0 20px; font-size: .82rem; }
.vehicle-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 14px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.fact strong { display: block; color: var(--white); font: 600 1rem "Space Grotesk", sans-serif; }
.fact span { color: var(--muted-2); font-size: .65rem; }
.price { margin: 19px 0; color: var(--gold-light); font: 600 1.2rem "Space Grotesk", sans-serif; }
.card-actions { display: flex; flex-wrap: wrap; gap: 8px; }

.filters { display: flex; flex-wrap: wrap; gap: 9px; margin: 0 0 34px; }
.filter-btn { padding: 10px 15px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--muted); font-size: .75rem; font-weight: 700; }
.filter-btn:hover, .filter-btn.active { border-color: var(--gold); background: rgba(212,175,55,.1); color: var(--gold-light); }
.empty-state { padding: 60px; border: 1px dashed var(--line); border-radius: var(--radius); text-align: center; color: var(--muted); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.reverse > :first-child { order: 2; }
.visual-panel { min-height: 430px; display: grid; place-items: center; padding: 24px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: radial-gradient(circle, rgba(212,175,55,.17), transparent 50%), var(--panel); }
.visual-panel img { width: 100%; max-height: 390px; object-fit: contain; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 30px; }
.feature-item { padding: 18px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--panel); }
.feature-item strong { display: block; color: var(--white); }
.feature-item p { margin: 5px 0 0; font-size: .8rem; }
.icon { color: var(--gold-light); font-size: 1.3rem; }

.dark-band { background: var(--bg-2); border-block: 1px solid var(--line); }
.gold-band { background: linear-gradient(110deg, #b98d24, #ebce6c 47%, #b98d24); color: #171717; }
.gold-band p, .gold-band .eyebrow { color: rgba(23,23,23,.72); }
.gold-band .button { background: #171717; border-color: #171717; color: var(--white); }
.quote { max-width: 820px; margin: 0 auto; text-align: center; }
.quote p { font: 500 clamp(1.5rem, 3vw, 2.6rem)/1.25 "Space Grotesk", sans-serif; color: var(--white); }

.detail-hero { padding: 140px 0 50px; background: var(--bg-2); }
.detail-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 45px; align-items: start; }
.gallery { min-width: 0; }
.gallery-main { height: 530px; position: relative; display: grid; place-items: center; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: radial-gradient(circle at 50% 45%, rgba(212,175,55,.2), transparent 50%), #1a1b1b; overflow: hidden; }
.gallery-main img { width: 100%; height: 100%; object-fit: contain; transition: opacity .2s ease; }
.gallery-main button { position: absolute; top: 50%; width: 38px; height: 38px; transform: translateY(-50%); border: 1px solid var(--line-gold); border-radius: 50%; background: rgba(16,17,17,.8); color: var(--gold-light); }
.gallery-main .prev { left: 15px; }
.gallery-main .next { right: 15px; }
.gallery-count { position: absolute; right: 18px; bottom: 16px; padding: 6px 9px; border-radius: 999px; background: rgba(16,17,17,.75); color: var(--gold-light); font: .65rem DM Mono, monospace; }
.thumbs { display: flex; gap: 10px; overflow-x: auto; padding: 14px 2px 4px; scrollbar-width: thin; }
.thumb { flex: 0 0 74px; height: 58px; padding: 3px; border: 1px solid var(--line); border-radius: 8px; background: var(--panel); opacity: .65; }
.thumb.active, .thumb:hover { border-color: var(--gold); opacity: 1; }
.thumb img { width: 100%; height: 100%; object-fit: contain; }
.detail-copy { position: sticky; top: 105px; }
.detail-copy h1 { font-size: clamp(2.8rem, 5vw, 5.3rem); }
.detail-copy .category { margin: 12px 0 19px; color: var(--muted); }
.rating { color: var(--gold-light); font-size: .84rem; }
.rating span { color: var(--muted); margin-left: 8px; }
.detail-price { margin: 24px 0; color: var(--gold-light); font: 600 1.9rem "Space Grotesk", sans-serif; }
.detail-price small { color: var(--muted); font: .72rem Manrope, sans-serif; }
.color-picker { margin: 28px 0; padding: 19px 0; border-block: 1px solid var(--line); }
.color-label { display: flex; justify-content: space-between; color: var(--muted); font-size: .76rem; }
.color-label strong { color: var(--white); }
.swatches { display: flex; gap: 10px; margin-top: 13px; }
.swatch { width: 28px; height: 28px; border: 3px solid transparent; border-radius: 50%; box-shadow: 0 0 0 1px var(--line); }
.swatch.active { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.quick-specs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 48px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.quick-spec { padding: 23px 18px; background: var(--panel); text-align: center; }
.quick-spec strong { display: block; color: var(--gold-light); font: 600 1.35rem "Space Grotesk", sans-serif; }
.quick-spec span { color: var(--muted); font: .63rem DM Mono, monospace; text-transform: uppercase; }
.detail-sticky { display: flex; gap: 10px; margin-top: 22px; }

.spec-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.spec-card { padding: 26px 20px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--panel); }
.spec-card strong { display: block; margin: 9px 0 4px; color: var(--gold-light); font: 600 1.8rem "Space Grotesk", sans-serif; }
.spec-card span { color: var(--muted); font-size: .76rem; }
.mode-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; }
.mode { padding: 18px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--panel); color: var(--muted); text-align: left; }
.mode.active, .mode:hover { border-color: var(--gold); color: var(--gold-light); background: rgba(212,175,55,.08); }
.mode strong { display: block; color: inherit; }
.mode-description { margin: 18px 0 0; color: var(--muted); }
.battery-meter { height: 12px; margin: 22px 0 14px; border-radius: 999px; background: #333; overflow: hidden; }
.battery-meter span { display: block; width: 90%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--gold), var(--gold-light)); animation: chargeIn 1.3s ease both; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
.spec-table { width: 100%; min-width: 650px; border-collapse: collapse; }
.spec-table th, .spec-table td { padding: 16px 20px; border-bottom: 1px solid var(--line); text-align: left; font-size: .82rem; }
.spec-table th { width: 30%; color: var(--muted); font-weight: 500; }
.spec-table tr:last-child td, .spec-table tr:last-child th { border-bottom: 0; }
.spec-table .group th { width: auto; color: var(--gold-light); background: rgba(212,175,55,.06); font: 500 .68rem DM Mono, monospace; letter-spacing: .1em; text-transform: uppercase; }

.form-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 34px; align-items: start; }
.form-card, .info-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.info-card + .info-card { margin-top: 15px; }
.info-card h3 { font-size: 1.5rem; }
.info-list { display: grid; gap: 16px; margin-top: 24px; }
.info-list div { display: flex; gap: 12px; align-items: start; }
.info-list p { margin: 0; font-size: .82rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--muted); font-size: .73rem; font-weight: 700; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 14px; border: 1px solid var(--line); border-radius: 8px; outline: none; background: #151616; color: var(--white); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,.12); }
.field textarea { resize: vertical; min-height: 132px; }
.check { display: flex; gap: 9px; align-items: start; margin: 20px 0; color: var(--muted); font-size: .74rem; }
.check input { margin-top: 4px; accent-color: var(--gold); }
.form-message { display: none; margin-top: 16px; padding: 13px; border: 1px solid rgba(84,190,135,.4); border-radius: 8px; color: #8ee1b2; background: rgba(84,190,135,.1); font-size: .78rem; }
.form-message.show { display: block; }
.map-placeholder { min-height: 260px; display: grid; place-items: center; margin-top: 30px; border: 1px dashed var(--line-gold); border-radius: var(--radius); background: radial-gradient(circle, rgba(212,175,55,.12), transparent 45%), repeating-linear-gradient(35deg, transparent 0 20px, rgba(255,255,255,.025) 21px 22px); color: var(--gold-light); text-align: center; }

.calculator { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.calc-panel { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.calc-panel h3 { margin-bottom: 22px; font-size: 1.35rem; }
.calc-results { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 22px; }
.result { padding: 15px; border: 1px solid var(--line); border-radius: 9px; background: #171818; }
.result span { display: block; color: var(--muted); font-size: .67rem; }
.result strong { display: block; margin-top: 6px; color: var(--gold-light); font: 600 1.2rem "Space Grotesk", sans-serif; }
.calc-highlight { padding: 23px; margin-top: 20px; border: 1px solid var(--line-gold); border-radius: var(--radius-sm); background: rgba(212,175,55,.08); }
.calc-highlight span { display: block; color: var(--muted); font-size: .7rem; }
.calc-highlight strong { display: block; margin: 7px 0 0; color: var(--gold-light); font: 600 2rem "Space Grotesk", sans-serif; }
.disclaimer { font-size: .69rem; color: var(--muted-2); }

.compare-select { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 25px; }
.compare-select select { min-width: 260px; padding: 12px; border: 1px solid var(--line); border-radius: 8px; background: var(--panel); color: var(--white); }
.compare-table { width: 100%; min-width: 730px; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 17px 16px; border-bottom: 1px solid var(--line); text-align: left; font-size: .78rem; }
.compare-table thead th { color: var(--gold-light); background: rgba(212,175,55,.05); }
.compare-table tbody th { color: var(--muted); font-weight: 500; }
.remove-compare { border: 0; background: transparent; color: var(--muted); font-size: 1rem; }
.remove-compare:hover { color: #f48b7e; }

.timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 40px; }
.timeline-step { position: relative; padding-top: 28px; text-align: center; }
.timeline-step:before { content: ""; position: absolute; left: 0; right: 0; top: 10px; height: 2px; background: var(--line-gold); }
.timeline-step:first-child:before { left: 50%; }
.timeline-step:last-child:before { right: 50%; }
.timeline-step i { position: absolute; top: 0; left: calc(50% - 10px); width: 20px; height: 20px; border: 4px solid var(--bg-2); border-radius: 50%; background: var(--gold); }
.timeline-step strong { display: block; color: var(--white); font: 1.1rem "Space Grotesk", sans-serif; }
.timeline-step span { color: var(--muted); font-size: .69rem; }
.offer-grid, .icon-grid, .review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.offer-card { min-height: 250px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, var(--panel), #171818); }
.offer-card:hover { border-color: var(--line-gold); }
.offer-card .offer-number { color: var(--gold); font: 2.5rem "Space Grotesk", sans-serif; }
.offer-card p { font-size: .83rem; }
.icon-grid { grid-template-columns: repeat(4, 1fr); }
.icon-card { padding: 24px 20px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--panel); }
.icon-card h3 { margin-top: 16px; font-size: 1.1rem; }
.icon-card p { margin-bottom: 0; font-size: .77rem; }
.gallery-grid { columns: 3 260px; column-gap: 15px; }
.gallery-item { break-inside: avoid; margin-bottom: 15px; position: relative; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; background: var(--panel); }
.gallery-item img { width: 100%; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item figcaption { position: absolute; left: 12px; bottom: 10px; color: var(--white); font-size: .72rem; text-shadow: 0 2px 10px #000; }
.lightbox { position: fixed; inset: 0; z-index: 40; display: none; place-items: center; padding: 35px; background: rgba(7,8,8,.95); }
.lightbox.open { display: grid; }
.lightbox img { max-width: min(1100px, 90vw); max-height: 82vh; object-fit: contain; }
.lightbox button { position: absolute; border: 0; background: transparent; color: var(--white); font-size: 2rem; }
.lightbox .close { top: 18px; right: 25px; }
.lightbox .lb-prev { left: 28px; }
.lightbox .lb-next { right: 28px; }
.lightbox-count { position: absolute; bottom: 25px; color: var(--gold-light); font: .7rem DM Mono, monospace; }

.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; display: flex; justify-content: space-between; gap: 20px; padding: 24px 0; border: 0; background: transparent; color: var(--white); text-align: left; font: 600 1rem "Space Grotesk", sans-serif; }
.faq-question span { color: var(--gold); font-size: 1.3rem; }
.faq-answer { display: none; max-width: 720px; padding: 0 0 24px; }
.faq-answer.open { display: block; }
.faq-answer p { margin: 0; font-size: .84rem; }
.success { max-width: 700px; margin: 0 auto; text-align: center; }
.success-icon { width: 90px; height: 90px; display: grid; place-items: center; margin: 0 auto 28px; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold-light); font-size: 2.3rem; }
.success-card { display: grid; gap: 1px; margin: 38px 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; text-align: left; }
.success-row { display: flex; justify-content: space-between; gap: 20px; padding: 15px 20px; background: var(--panel); }
.success-row span { color: var(--muted); font-size: .77rem; }
.success-row strong { font-size: .82rem; }

.site-footer { padding: 75px 0 25px; border-top: 1px solid var(--line); background: #0c0d0d; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; }
.footer-brand p { max-width: 220px; font-size: .8rem; }
.footer-col h4 { margin-bottom: 18px; color: var(--gold-light); font: 500 .7rem DM Mono, monospace; letter-spacing: .12em; text-transform: uppercase; }
.footer-col a { display: block; margin: 9px 0; color: var(--muted); font-size: .77rem; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 55px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: .68rem; }
.socials { display: flex; gap: 13px; }
.socials a { color: var(--muted); }
.socials a:hover { color: var(--gold-light); }
.toast { position: fixed; right: 22px; bottom: 22px; z-index: 50; max-width: 320px; padding: 14px 18px; border: 1px solid var(--line-gold); border-radius: 10px; background: #222424; color: var(--white); box-shadow: var(--shadow); transform: translateY(20px); opacity: 0; pointer-events: none; transition: .3s; font-size: .78rem; }
.toast.show { transform: translateY(0); opacity: 1; }
.reveal { opacity: 0; transform: translateY(20px); transition: .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .vehicle-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { gap: 15px; }
  .nav-links a { font-size: .7rem; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .spec-cards { grid-template-columns: repeat(2, 1fr); }
  .icon-grid { grid-template-columns: repeat(2, 1fr); }
}
