/* ============================================================
   VELOR VEHICLE RENTALS — Core stylesheet
   Palette: obsidian black / champagne gold / brushed silver
   ============================================================ */

:root {
  --black:        #08080a;
  --black-soft:   #0e0e11;
  --panel:        #131317;
  --panel-2:      #1a1a20;
  --line:         #2a2a32;

  --gold:         #d4af37;
  --gold-bright:  #f2d675;
  --gold-deep:    #9c7c1c;
  --gold-grad:    linear-gradient(135deg, #9c7c1c 0%, #d4af37 35%, #f7e7a8 55%, #d4af37 75%, #8a6c14 100%);

  --silver:       #c8ccd2;
  --silver-dim:   #8a8f98;

  --text:         #edeef1;
  --text-dim:     #a4a8b0;

  --radius:       4px;
  --radius-lg:    10px;
  --maxw:         1200px;
  --nav-h:        94px;

  --ff-display: "Cormorant Garamond", "Times New Roman", serif;
  --ff-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--gold-bright); }
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 600; line-height: 1.15; margin: 0 0 .5em; letter-spacing: .01em; }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
p  { margin: 0 0 1.1em; color: var(--text-dim); }
ul, ol { color: var(--text-dim); }
hr { border: 0; height: 1px; background: var(--line); margin: 3rem 0; }
::selection { background: var(--gold); color: #000; }

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--alt { background: var(--black-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.center { text-align: center; }
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* ---------- gold accents ---------- */
.gold { color: var(--gold); }
.gold-text {
  background: linear-gradient(100deg, #c9a227 0%, #e8c96a 30%, #f7e7a8 50%, #e0bf55 72%, #c9a227 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.eyebrow {
  font-family: var(--ff-body);
  font-size: .74rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
  font-weight: 500;
}
.rule {
  width: 64px; height: 2px; border: 0;
  background: var(--gold-grad);
  margin: 0 0 1.75rem;
}
.center .rule { margin-left: auto; margin-right: auto; }
.lead { font-size: 1.1rem; color: var(--silver-dim); max-width: 68ch; }
.center .lead, .lead.center, .cta-band .lead { margin-left: auto; margin-right: auto; }
.cta-band .rule, .page-hero .rule { margin-left: auto; margin-right: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: 15px 34px;
  font-size: .78rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .3s var(--ease);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold-grad);
  color: #14100a;
  box-shadow: 0 6px 24px rgba(212,175,55,.16);
}
.btn-gold:hover {
  color: #14100a;
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(212,175,55,.3);
}
.btn-ghost {
  background: transparent;
  color: var(--silver);
  border-color: var(--line);
}
.btn-ghost:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(212,175,55,.06);
}
.btn-sm { padding: 11px 24px; font-size: .7rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 16px; }
.center .btn-row, .btn-row.center, .cta-band .btn-row, .page-hero .btn-row { justify-content: center; }

/* ---------- header / nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(8,8,10,.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), border-color .35s var(--ease);
}
.site-header.scrolled {
  background: rgba(8,8,10,.96);
  border-bottom-color: var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { height: 56px; width: auto; display: block; transition: opacity .3s var(--ease); }
.brand:hover .brand__logo { opacity: .85; }
.brand--footer { display: inline-block; margin-bottom: 20px; }
.brand--footer .brand__logo { height: 84px; }
.brand__mark {
  width: 38px; height: 38px; flex: none;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--ff-display);
  font-size: 1.15rem; font-weight: 700;
  color: var(--gold);
  background: radial-gradient(circle at 30% 25%, rgba(212,175,55,.22), transparent 70%);
}
.brand__name {
  font-family: var(--ff-display);
  font-size: 1.5rem; font-weight: 700; line-height: 1;
  color: var(--text); letter-spacing: .04em;
}
.brand__sub {
  display: block;
  font-family: var(--ff-body);
  font-size: .54rem; letter-spacing: .34em; text-transform: uppercase;
  color: var(--gold); margin-top: 4px;
}
.nav__links { display: flex; align-items: center; gap: 34px; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  color: var(--silver);
  font-size: .78rem; font-weight: 500;
  letter-spacing: .13em; text-transform: uppercase;
  position: relative; padding: 6px 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .3s var(--ease);
}
.nav__links a:hover, .nav__links a.active { color: var(--gold); }
.nav__links a.active::after, .nav__links a:hover::after { width: 100%; }
.nav__cta { margin-left: 8px; }
.nav__links .nav__cta a.btn-gold { color: #14100a; letter-spacing: .16em; }
.nav__links .nav__cta a.btn-gold:hover { color: #14100a; }
.nav__links .nav__cta a::after { display: none; }

.burger {
  display: none; width: 44px; height: 44px;
  background: none; border: 1px solid var(--line); border-radius: var(--radius);
  cursor: pointer; padding: 0; position: relative;
}
.burger span {
  position: absolute; left: 12px; width: 20px; height: 1.5px;
  background: var(--gold); transition: all .3s var(--ease);
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 27px; }
.burger.open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

@media (max-width: 940px) {
  .burger { display: block; }
  .nav__links {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--black-soft);
    border-bottom: 1px solid var(--line);
    padding: 8px 24px 28px;
    transform: translateY(-120%);
    transition: transform .38s var(--ease);
    max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links li { border-bottom: 1px solid var(--line); }
  .nav__links li:last-child { border-bottom: 0; }
  .nav__links a { display: block; padding: 18px 0; font-size: .85rem; }
  .nav__links a::after { display: none; }
  .nav__cta { margin: 20px 0 0; border-bottom: 0 !important; }
  .nav__links .nav__cta a.btn { display: flex; width: 100%; padding: 16px 24px; justify-content: center; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  padding: 165px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(212,175,55,.10), transparent 60%),
    radial-gradient(ellipse 70% 70% at 15% 85%, rgba(200,204,210,.05), transparent 60%),
    var(--black);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(212,175,55,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,.05) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: radial-gradient(ellipse at center, #000 10%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 10%, transparent 72%);
}
.hero .wrap { position: relative; z-index: 2; }
.hero h1 { margin-bottom: .3em; }
.hero__sub { font-size: 1.15rem; max-width: 56ch; color: var(--silver-dim); margin-bottom: 2.2rem; }

/* page banner (inner pages) */
.page-hero {
  position: relative;
  padding: 210px 0 84px;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 100% at 50% 0%, rgba(212,175,55,.11), transparent 65%),
    var(--black-soft);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { margin-bottom: .25em; }
.page-hero p { max-width: 62ch; margin-left: auto; margin-right: auto; }

/* ---------- cards ---------- */
.card {
  background: linear-gradient(160deg, var(--panel) 0%, var(--black-soft) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
  position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--gold-grad); opacity: 0; transition: opacity .35s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,.4);
  box-shadow: 0 18px 44px rgba(0,0,0,.55);
}
.card:hover::before { opacity: 1; }
.card h3 { color: var(--text); }
.card p:last-child { margin-bottom: 0; }
.card__icon {
  width: 50px; height: 50px; margin-bottom: 20px;
  border: 1px solid rgba(212,175,55,.4); border-radius: var(--radius);
  display: grid; place-items: center;
  color: var(--gold); font-size: 1.3rem;
  background: rgba(212,175,55,.06);
}

/* ---------- vehicle cards ---------- */
.vehicle {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.vehicle:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,.45);
  box-shadow: 0 20px 48px rgba(0,0,0,.6);
}
.vehicle__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(ellipse at 50% 115%, rgba(212,175,55,.20), transparent 60%),
    linear-gradient(150deg, #1c1c22 0%, #101014 100%);
  display: grid; place-items: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.vehicle__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vehicle__media svg { width: 68%; height: auto; opacity: .92; }
.vehicle__tag {
  position: absolute; top: 14px; left: 14px;
  font-size: .6rem; letter-spacing: .18em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 100px;
  background: rgba(8,8,10,.82); border: 1px solid rgba(212,175,55,.5);
  color: var(--gold); backdrop-filter: blur(6px);
}
.vehicle__body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.vehicle__body h3 { margin-bottom: .15em; }
.vehicle__class {
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--silver-dim); margin-bottom: 18px;
}
.spec-list {
  list-style: none; margin: 0 0 22px; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px;
  font-size: .84rem;
}
.spec-list li { display: flex; align-items: center; gap: 9px; color: var(--text-dim); }
.spec-list li::before { content: "◆"; color: var(--gold); font-size: .55rem; }
.vehicle__foot {
  margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 14px;
}
.price { line-height: 1.2; }
.price strong {
  display: block; font-family: var(--ff-display);
  font-size: 1.85rem; color: var(--gold); font-weight: 600;
}
.price--poa strong { font-size: 1.2rem; letter-spacing: .01em; }
.price span { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--silver-dim); }

/* ---------- filter bar ---------- */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center; margin-bottom: 48px;
}
.filter-chip {
  padding: 11px 22px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--silver-dim);
  font-family: var(--ff-body);
  font-size: .72rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  cursor: pointer;
  transition: all .3s var(--ease);
}
.filter-chip:hover { color: var(--gold); border-color: rgba(212,175,55,.5); }
.filter-chip.active {
  background: var(--gold-grad);
  border-color: transparent;
  color: #14100a;
}

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.stat { background: var(--black-soft); padding: 36px 22px; text-align: center; }
.stat strong { display: block; font-family: var(--ff-display); font-size: 2.6rem; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.stat span { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--silver-dim); }

/* ---------- steps ---------- */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 78px; margin-bottom: 40px; }
.step:last-child { margin-bottom: 0; }
.step::before {
  counter-increment: step; content: "0" counter(step);
  position: absolute; left: 0; top: -6px;
  font-family: var(--ff-display); font-size: 2.4rem;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.step h3 { margin-bottom: .3em; }
.step p { margin-bottom: 0; }

/* ---------- social ---------- */
.social-card {
  display: flex; align-items: center; gap: 20px;
  padding: 26px 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all .3s var(--ease);
}
.social-card:hover { border-color: rgba(212,175,55,.45); transform: translateY(-4px); background: var(--panel-2); }
.social-card__icon {
  width: 52px; height: 52px; flex: none; border-radius: var(--radius);
  display: grid; place-items: center;
  background: rgba(212,175,55,.08); border: 1px solid rgba(212,175,55,.35);
  color: var(--gold);
}
.social-card__icon svg { width: 24px; height: 24px; fill: currentColor; }
.social-card h3 { margin: 0 0 2px; font-size: 1.15rem; color: var(--text); }
.social-card p { margin: 0; font-size: .86rem; color: var(--text-dim); }
.social-card__handle { color: var(--gold); font-size: .78rem; margin-bottom: 6px !important; letter-spacing: .04em; }
.social-card:hover h3 { color: var(--gold); }

/* ---------- forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--silver);
}
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px;
  background: var(--black-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--ff-body); font-size: .95rem;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,.12);
}
.field input::placeholder, .field textarea::placeholder { color: #5c606a; }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 20px) center, calc(100% - 14px) center; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; cursor: pointer; }
.field select option { background: var(--black-soft); color: var(--text); }
.form-note { font-size: .8rem; color: var(--silver-dim); }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }

/* ---------- info rows ---------- */
.info-row { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: 0; }
.info-row__icon { color: var(--gold); font-size: 1.15rem; flex: none; width: 26px; text-align: center; }
.info-row h4 { margin: 0 0 3px; font-family: var(--ff-body); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--silver); font-weight: 600; }
.info-row p { margin: 0; color: var(--text); }

/* ---------- legal / prose ---------- */
.prose { max-width: 860px; margin-left: auto; margin-right: auto; }
.prose h2 { font-size: 1.7rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.prose h2:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }
.prose h3 { font-size: 1.15rem; margin-top: 2rem; color: var(--silver); }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: .5rem; }
.toc {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 32px; margin-bottom: 3rem;
}
.toc h3 { margin-top: 0; font-family: var(--ff-body); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.toc ol { columns: 2; column-gap: 40px; padding-left: 1.2rem; margin: 0; font-size: .92rem; }
.toc a { color: var(--text-dim); }
.toc a:hover { color: var(--gold); }
@media (max-width: 640px) { .toc ol { columns: 1; } }

/* ---------- accordion ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 22px 40px 22px 0;
  font-family: var(--ff-display); font-size: 1.2rem; color: var(--text);
  position: relative; transition: color .25s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  color: var(--gold); font-size: 1.5rem; font-family: var(--ff-body); transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq summary:hover { color: var(--gold); }
.faq details p { padding: 0 40px 22px 0; margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 60% 120% at 50% 100%, rgba(212,175,55,.14), transparent 65%),
    var(--black-soft);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 90px 0; text-align: center;
}

/* ---------- footer ---------- */
.site-footer { background: #050506; border-top: 1px solid var(--line); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 56px; }
.site-footer h4 {
  font-family: var(--ff-body); font-size: .7rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 20px; font-weight: 600;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 11px; }
.site-footer li a, .site-footer p { color: var(--text-dim); font-size: .9rem; }
.site-footer li a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border: 1px solid var(--line); border-radius: var(--radius);
  display: grid; place-items: center; color: var(--silver-dim); transition: all .3s var(--ease);
}
.footer-social a svg { width: 17px; height: 17px; fill: currentColor; }
.footer-social a:hover { color: var(--gold); border-color: var(--gold); background: rgba(212,175,55,.07); }
.footer-bottom {
  border-top: 1px solid var(--line); padding: 24px 0;
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between;
  font-size: .8rem; color: var(--silver-dim);
}
.footer-bottom a { color: var(--silver-dim); }
.footer-bottom a:hover { color: var(--gold); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  * { animation: none !important; }
}

/* ---------- misc ---------- */
.badge {
  display: inline-block; padding: 5px 13px; border-radius: 100px;
  font-size: .64rem; letter-spacing: .16em; text-transform: uppercase;
  border: 1px solid rgba(212,175,55,.4); color: var(--gold); background: rgba(212,175,55,.06);
}
.note-box {
  border-left: 2px solid var(--gold);
  background: var(--panel);
  padding: 22px 26px; border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
}
.note-box p:last-child { margin-bottom: 0; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--gold); color: #000; padding: 12px 20px;
}
.skip-link:focus { left: 12px; top: 12px; }
@media (max-width: 700px) {
  .section { padding: 68px 0; }
  .page-hero { padding: 160px 0 62px; }
  .brand__logo { height: 44px; }
  .brand--footer .brand__logo { height: 70px; }
  .step { padding-left: 60px; }
}

/* ---------- vehicle detail page ---------- */
.page-hero--compact { padding-top: 170px; padding-bottom: 60px; text-align: left; }
.page-hero--compact p, .page-hero--compact .lead { margin-left: 0; margin-right: 0; }
.page-hero--compact .rule { margin-left: 0; }
.crumbs { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--silver-dim); margin-bottom: 40px; }
.crumbs a { color: var(--silver-dim); }
.crumbs a:hover { color: var(--gold); }
.crumbs span { margin: 0 8px; color: var(--line); }
.crumbs em { font-style: normal; color: var(--gold); }

.detail-grid { display: grid; grid-template-columns: minmax(0,1.75fr) minmax(300px,1fr); gap: 40px; align-items: start; }
@media (max-width: 940px) { .detail-grid { grid-template-columns: 1fr; } }

/* gallery */
.gallery__stage {
  position: relative;
  aspect-ratio: 1.9 / 1;
  background: linear-gradient(160deg, #16161b 0%, #0b0b0e 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid; place-items: center;
}
.gallery__stage img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity .25s var(--ease);
}
.gallery__stage img.is-fading { opacity: 0; }
.gallery__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: rgba(8,8,10,.62);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.7rem; line-height: 1; padding-bottom: 4px;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: all .28s var(--ease);
  opacity: 0;
}
.gallery:hover .gallery__nav, .gallery__nav:focus-visible { opacity: 1; }
.gallery__nav:hover { background: rgba(212,175,55,.16); border-color: var(--gold); }
.gallery__nav--prev { left: 16px; }
.gallery__nav--next { right: 16px; }
.gallery__caption {
  position: absolute; left: 16px; bottom: 16px;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 16px; border-radius: 100px;
  background: rgba(8,8,10,.72); border: 1px solid var(--line);
  backdrop-filter: blur(6px);
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--silver);
}
.gallery__caption em { font-style: normal; color: var(--gold); }

.gallery__thumbs {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; margin-top: 12px;
}
.gallery__thumb {
  padding: 0; cursor: pointer; overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .28s var(--ease), transform .28s var(--ease);
}
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; opacity: .58; transition: opacity .28s var(--ease); }
.gallery__thumb:hover img, .gallery__thumb.is-active img { opacity: 1; }
.gallery__thumb:hover { border-color: rgba(212,175,55,.5); transform: translateY(-2px); }
.gallery__thumb.is-active { border-color: var(--gold); }
@media (max-width: 620px) { .gallery__thumbs { grid-template-columns: repeat(3, 1fr); } .gallery__nav { opacity: 1; width: 40px; height: 40px; } }

/* booking panel */
.booking-panel {
  background: linear-gradient(160deg, var(--panel) 0%, var(--black-soft) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  position: sticky; top: calc(var(--nav-h) + 20px);
}
@media (max-width: 940px) { .booking-panel { position: static; } }
.booking-panel__price {
  font-family: var(--ff-display); font-size: 2.2rem; line-height: 1;
  color: var(--gold); margin: 0 0 .5rem;
}
.quick-specs { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.quick-specs li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 13px 0; border-bottom: 1px solid var(--line);
}
.quick-specs span { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--silver-dim); }
.quick-specs strong { font-weight: 500; color: var(--text); font-size: .95rem; text-align: right; }
.booking-panel .btn { width: 100%; }
.booking-panel .btn-row { gap: 10px; }
.booking-panel .btn-row .btn-ghost { flex: 1; min-width: 0; padding-left: 12px; padding-right: 12px; }

/* photo-count badge on cards */
.vehicle__count {
  position: absolute; right: 14px; bottom: 14px;
  font-size: .6rem; letter-spacing: .16em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 100px;
  background: rgba(8,8,10,.78); border: 1px solid var(--line);
  color: var(--silver); backdrop-filter: blur(6px);
}
.vehicle a.vehicle__link { display: block; }
.vehicle__body h3 a { color: var(--text); }
.vehicle:hover .vehicle__body h3 a { color: var(--gold); }
