/* =========================================================
   Exciting Cars — Pre-Owned Perfection
   Black & gold premium theme (matches brand logo)
   ========================================================= */
:root {
  --gold: #f5b400;
  --gold-light: #ffd23f;
  --gold-deep: #a87500;
  --ink: #050505;
  --ink-2: #0b0b0c;
  --ink-3: #121214;
  --line: rgba(255, 255, 255, 0.08);
  --header-h: 84px;
}
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; max-width: 100%; }
body { background: var(--ink); }
img { display: block; max-width: 100%; }
::selection { background: var(--gold); color: #000; }

.skip-link { position: absolute; left: -999px; top: 8px; background: var(--gold); color: #000; padding: 8px 14px; border-radius: 6px; z-index: 100; font-weight: 700; }
.skip-link:focus { left: 8px; }

/* ---------- Typography helpers ---------- */
.text-gold-gradient {
  background: linear-gradient(100deg, #ffe27a 0%, #f5b400 45%, #d99a00 70%, #ffd23f 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.eyebrow {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .72rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); display: inline-flex; align-items: center; gap: .4rem; margin-bottom: .9rem;
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); }
.section-heading { max-width: 46rem; }
.section-title { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: clamp(1.9rem, 3.4vw, 2.8rem); line-height: 1.12; letter-spacing: -.01em; color: #fff; }
.section-text { color: #a1a1aa; margin-top: 1rem; line-height: 1.75; font-size: 1.02rem; max-width: 46rem; }
.hero-title { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.05; color: #fff; letter-spacing: -.02em; }
.hero-text { color: #b4b4bb; margin-top: 1.1rem; max-width: 44rem; line-height: 1.75; font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem; padding: .8rem 1.45rem; border-radius: 999px;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .9rem; letter-spacing: .02em; transition: all .25s ease; white-space: nowrap; border: 1px solid transparent; cursor: pointer;
}
.btn-sm { padding: .55rem 1.05rem; font-size: .8rem; }
.btn-lg { padding: 1rem 1.9rem; font-size: .95rem; }
.btn-gold { background: linear-gradient(135deg, #ffd23f, #f5b400 55%, #d99a00); color: #0a0a0a; box-shadow: 0 8px 26px -8px rgba(245, 180, 0, .65); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -8px rgba(245, 180, 0, .8); filter: brightness(1.05); }
.btn-outline { border-color: rgba(245, 180, 0, .55); color: var(--gold-light); background: rgba(245, 180, 0, .06); }
.btn-outline:hover { background: rgba(245, 180, 0, .14); border-color: var(--gold); transform: translateY(-2px); }
.btn-ghost { color: #e4e4e7; border-color: var(--line); background: rgba(255, 255, 255, .03); }
.btn-ghost:hover { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .2); }

.badge-gold {
  display: inline-flex; align-items: center; gap: .35rem; background: rgba(245, 180, 0, .14); border: 1px solid rgba(245, 180, 0, .45); color: var(--gold-light);
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; padding: .3rem .7rem; border-radius: 999px;
}

/* ---------- Header ---------- */
.site-header { transition: background .35s ease; }
.social-link { color: #9ca3af; transition: color .2s; }
.social-link:hover { color: var(--gold); }
.navbar { background: rgba(5, 5, 5, .72); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); padding: .7rem 0; }
.site-header.scrolled .navbar { background: rgba(5, 5, 5, .95); box-shadow: 0 10px 40px -20px rgba(0, 0, 0, .9); }
.brand-logo img { height: 52px; width: auto; filter: drop-shadow(0 0 14px rgba(245, 180, 0, .35)); transition: transform .3s; }
.brand-logo:hover img { transform: scale(1.03); }
@media (min-width: 1024px) { .brand-logo img { height: 58px; } }
.nav-link { position: relative; padding: .6rem .9rem; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: #d4d4d8; transition: color .2s; }
.nav-link::after { content: ''; position: absolute; left: .9rem; right: .9rem; bottom: .25rem; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.nav-link:hover, .nav-link.is-active { color: var(--gold-light); }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }

@keyframes fadeDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* ---------- Brands strip ---------- */
.brands-strip { background: #000; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 1.1rem 0; overflow: hidden; }
.brands-marquee { display: flex; list-style: none; padding: 0; margin: 0; white-space: nowrap; animation: marquee 28s linear infinite; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.05rem; letter-spacing: .12em; text-transform: uppercase; color: #52525b; width: max-content; }
.brands-marquee li { position: relative; padding-right: 3rem; margin-right: 3rem; }
.brands-marquee li::after { content: '◆'; position: absolute; right: 0; color: var(--gold-deep); font-size: .55rem; top: 50%; transform: translateY(-50%); }
.brands-strip:hover .brands-marquee { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: 5.5rem 0; position: relative; }
.section-alt { background: linear-gradient(180deg, var(--ink-2), var(--ink)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.premium-section { background: radial-gradient(ellipse at 80% 20%, rgba(245, 180, 0, .12), transparent 55%), var(--ink); }

.tick-list { list-style: none; padding: 0; display: grid; gap: .6rem; }
.tick-list li { position: relative; padding-left: 1.8rem; color: #d4d4d8; line-height: 1.6; }
.tick-list li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; top: .1rem; color: var(--gold); font-size: .85rem; }

/* Collage */
.collage { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); grid-template-rows: repeat(6, 60px); gap: .8rem; }
.collage-item { border-radius: 18px; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .9); margin: 0; }
.collage-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.collage-item:hover img { transform: scale(1.06); }
.c1 { grid-column: 1 / 5; grid-row: 1 / 5; }
.c2 { grid-column: 5 / 7; grid-row: 1 / 4; }
.c3 { grid-column: 3 / 7; grid-row: 4 / 7; }
.collage-badge { grid-column: 1 / 3; grid-row: 5 / 7; align-self: end; background: #000; border: 1px solid rgba(245, 180, 0, .4); border-radius: 18px; padding: 1rem 1.2rem; box-shadow: 0 0 40px -10px rgba(245, 180, 0, .4); }

/* ---------- Vehicle cards ---------- */
.vehicle-card { background: var(--ink-3); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; transition: transform .35s, border-color .35s, box-shadow .35s; }
.vehicle-card:hover { transform: translateY(-6px); border-color: rgba(245, 180, 0, .45); box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 1), 0 0 40px -20px rgba(245, 180, 0, .45); }
.vehicle-media { position: relative; display: block; aspect-ratio: 4 / 3; overflow: hidden; background: #000; }
.vehicle-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2, .7, .2, 1); }
.vehicle-card:hover .vehicle-media img { transform: scale(1.07); }
.vehicle-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, .55)); }
.vehicle-badge { position: absolute; top: .9rem; left: .9rem; z-index: 2; background: rgba(0, 0, 0, .7); backdrop-filter: blur(8px); border: 1px solid var(--line); color: #e4e4e7; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; padding: .35rem .7rem; border-radius: 999px; display: inline-flex; gap: .3rem; align-items: center; }
.vehicle-badge.is-premium { background: linear-gradient(135deg, #ffd23f, #d99a00); color: #000; border-color: transparent; }
.vehicle-play { position: absolute; right: .9rem; bottom: .9rem; z-index: 2; color: #fff; font-size: .72rem; font-weight: 600; display: inline-flex; align-items: center; gap: .35rem; background: rgba(0, 0, 0, .55); padding: .3rem .6rem; border-radius: 999px; }
.vehicle-play i { color: #ff0033; }
.vehicle-body { padding: 1.2rem 1.25rem 1.3rem; display: flex; flex-direction: column; flex: 1; }
.vehicle-brand { font-family: 'Montserrat', sans-serif; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.vehicle-name { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.2rem; color: #fff; margin-top: .25rem; line-height: 1.25; }
.vehicle-name a:hover { color: var(--gold-light); }
.vehicle-specs { list-style: none; padding: 0; margin: .9rem 0 0; display: flex; flex-wrap: wrap; gap: .4rem; }
.spec-chip { display: inline-flex; align-items: center; gap: .35rem; font-size: .72rem; color: #c4c4cc; background: rgba(255, 255, 255, .04); border: 1px solid var(--line); padding: .3rem .6rem; border-radius: 8px; }
.spec-chip i { color: var(--gold-deep); font-size: .65rem; }
.vehicle-actions { display: flex; gap: .5rem; margin-top: auto; padding-top: 1.1rem; }
.vehicle-actions .btn { flex: 1; }

/* Availability / filters */
.availability-note { display: flex; gap: .9rem; align-items: flex-start; background: rgba(245, 180, 0, .07); border: 1px solid rgba(245, 180, 0, .3); border-radius: 14px; padding: 1rem 1.2rem; color: #d4d4d8; font-size: .92rem; line-height: 1.6; }
.availability-note i { color: var(--gold); margin-top: .2rem; }
.filter-bar { display: grid; gap: 1rem; grid-template-columns: 1fr; margin-top: 1.5rem; background: var(--ink-3); border: 1px solid var(--line); border-radius: 18px; padding: 1.2rem; align-items: end; }
@media (min-width: 768px) { .filter-bar { grid-template-columns: 1fr 1fr 1.4fr auto; } }
.filter-group label { display: block; font-family: 'Montserrat', sans-serif; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: #a1a1aa; margin-bottom: .4rem; font-weight: 700; }
.filter-select { width: 100%; background: #000; border: 1px solid var(--line); color: #fff; border-radius: 10px; padding: .7rem .9rem; font-size: .92rem; outline: none; transition: border-color .2s; }
.filter-select:focus { border-color: var(--gold); }
.filter-count { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--gold); white-space: nowrap; padding-bottom: .6rem; }
.no-results { text-align: center; color: #a1a1aa; padding: 4rem 1rem; line-height: 1.9; }
.vehicle-card.is-hidden { display: none; }

/* ---------- Value / service cards ---------- */
.value-card, .service-card { background: var(--ink-3); border: 1px solid var(--line); border-radius: 18px; padding: 1.6rem; transition: transform .3s, border-color .3s; position: relative; overflow: hidden; }
.value-card::before, .service-card::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); opacity: 0; transition: opacity .3s; }
.value-card:hover, .service-card:hover { transform: translateY(-5px); border-color: rgba(245, 180, 0, .4); }
.value-card:hover::before, .service-card:hover::before { opacity: 1; }
.value-card h3, .service-card h2 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: #fff; font-size: 1.05rem; margin-top: 1rem; }
.value-card p, .service-card p { color: #a1a1aa; font-size: .9rem; line-height: 1.65; margin-top: .5rem; }
.value-icon { width: 50px; height: 50px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; background: rgba(245, 180, 0, .12); border: 1px solid rgba(245, 180, 0, .35); color: var(--gold); font-size: 1.15rem; flex-shrink: 0; }
.value-card-cta { background: linear-gradient(160deg, rgba(245, 180, 0, .18), var(--ink-3) 60%); border-color: rgba(245, 180, 0, .4); display: flex; flex-direction: column; justify-content: center; }
.value-card-cta h3 { font-size: 1.4rem; margin-top: 0; }

/* ---------- Trust band ---------- */
.trust-band { padding: 5.5rem 0; background: radial-gradient(ellipse at 50% 0%, rgba(245, 180, 0, .14), transparent 60%), #000; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-quote { font-family: 'Montserrat', sans-serif; font-weight: 800; font-style: italic; font-size: clamp(1.5rem, 3vw, 2.4rem); color: #fff; line-height: 1.3; margin: 1rem auto 0; max-width: 44rem; }

/* ---------- Deliveries / social ---------- */
.delivery-card { position: relative; display: block; border-radius: 20px; overflow: hidden; aspect-ratio: 9 / 13; border: 1px solid var(--line); background: #000; transition: transform .35s, border-color .35s; }
.delivery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.delivery-card:hover { transform: translateY(-6px); border-color: rgba(245, 180, 0, .5); }
.delivery-card:hover img { transform: scale(1.06); }
.delivery-caption { position: absolute; inset: auto 0 0 0; padding: 1.2rem; background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .95)); }
.delivery-caption p { color: #fff; font-weight: 600; margin-top: .6rem; font-size: .95rem; }
.social-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-top: 2.5rem; }
.social-card { display: flex; flex-direction: column; align-items: center; gap: .2rem; background: var(--ink-3); border: 1px solid var(--line); border-radius: 16px; padding: 1.3rem; transition: all .3s; color: #fff; }
.social-card i { font-size: 1.7rem; color: var(--gold); margin-bottom: .3rem; }
.social-card span { font-family: 'Montserrat', sans-serif; font-weight: 700; }
.social-card small { color: #71717a; font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; }
.social-card:hover { border-color: rgba(245, 180, 0, .5); transform: translateY(-4px); }
.social-pill { width: 40px; height: 40px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(245, 180, 0, .35); color: var(--gold); background: rgba(245, 180, 0, .06); transition: all .25s; }
.social-pill:hover { background: var(--gold); color: #000; transform: translateY(-2px); }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: .8rem; }
.faq-item { background: var(--ink-3); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: border-color .3s; }
.faq-item[open] { border-color: rgba(245, 180, 0, .45); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.1rem 1.3rem; font-family: 'Montserrat', sans-serif; font-weight: 700; color: #fff; font-size: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { color: var(--gold); transition: transform .3s; flex-shrink: 0; }
.faq-item[open] summary i { transform: rotate(45deg); }
.faq-item p { padding: 0 1.3rem 1.2rem; color: #a1a1aa; line-height: 1.7; }

/* ---------- Map ---------- */
.map-frame { border-radius: 20px; overflow: hidden; border: 1px solid rgba(245, 180, 0, .35); min-height: 380px; box-shadow: 0 0 60px -20px rgba(245, 180, 0, .3); background: #000; }
.map-frame iframe { width: 100%; height: 100%; min-height: 380px; border: 0; filter: grayscale(.2) contrast(1.05); }
.map-frame-wide { min-height: 440px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: #000; border-top: 1px solid rgba(245, 180, 0, .3); }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 120%, rgba(245, 180, 0, .3), transparent 60%); }
.cta-band::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px); background-size: 60px 60px; -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%); mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%); }
.cta-band > div { position: relative; z-index: 1; }

/* ---------- Page hero ---------- */
.page-hero { position: relative; padding: calc(var(--header-h) + 5.5rem) 0 4rem; background: #000; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: var(--hero-img, none); background-size: cover; background-position: center; opacity: .28; filter: blur(2px) saturate(1.1); transform: scale(1.05); }
.page-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5, 5, 5, .5), rgba(5, 5, 5, .85) 60%, var(--ink)); }
.page-hero > div { position: relative; z-index: 1; }
.page-hero-compact { padding: calc(var(--header-h) + 2.5rem) 0 1rem; }
.breadcrumb { font-size: .78rem; color: #71717a; margin-bottom: 1.5rem; display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; letter-spacing: .04em; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gold-deep); }
.breadcrumb [aria-current] { color: #d4d4d8; }

/* ---------- Detail page ---------- */
.detail-media { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .detail-media { grid-template-columns: 1.1fr .9fr; } }
.detail-video { position: relative; border-radius: 20px; overflow: hidden; border: 1px solid rgba(245, 180, 0, .35); background: #000; aspect-ratio: 9 / 16; box-shadow: 0 0 60px -20px rgba(245, 180, 0, .3); }
.detail-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.detail-still { border-radius: 20px; overflow: hidden; border: 1px solid var(--line); background: #000; aspect-ratio: 9 / 16; position: relative; margin: 0; }
.detail-still img { width: 100%; height: 100%; object-fit: cover; }
.detail-still figcaption { position: absolute; inset: auto 0 0 0; padding: .9rem 1rem; font-size: .72rem; color: #a1a1aa; background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .9)); }
.detail-panel, .confirm-panel, .side-panel { background: var(--ink-3); border: 1px solid var(--line); border-radius: 20px; padding: 1.6rem; min-width: 0; max-width: 100%; }
/* Grid children must be allowed to shrink, otherwise horizontal scrollers (thumbs) blow the page width on mobile */
#vehicle-detail ~ .section .grid > * , .grid > .reveal, .grid > [class*='col-span'] { min-width: 0; }
@media (max-width: 639px) {
  .detail-panel, .confirm-panel, .side-panel { padding: 1.15rem 1rem; border-radius: 16px; }
  .detail-title { font-size: 1.55rem; overflow-wrap: anywhere; }
  .spec-table > div { padding: .65rem .8rem; gap: .6rem; }
  .spec-table dt { font-size: .78rem; flex: 0 0 42%; }
  .spec-table dd { font-size: .82rem; overflow-wrap: anywhere; }
  .price-box p:nth-child(2) { font-size: 1.7rem; }
  .confirm-panel ul { grid-template-columns: 1fr; }
  .breadcrumb { margin-bottom: 1rem; }
  .breadcrumb [aria-current] { max-width: 100%; overflow-wrap: anywhere; }
}
.detail-title { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(1.7rem, 3vw, 2.4rem); color: #fff; line-height: 1.1; margin-top: .3rem; }
.spec-table { display: grid; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.spec-table > div { display: flex; justify-content: space-between; gap: 1rem; padding: .75rem 1rem; border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, .015); }
.spec-table > div:nth-child(even) { background: rgba(255, 255, 255, .04); }
.spec-table > div:last-child { border-bottom: 0; }
.spec-table dt { color: #a1a1aa; font-size: .85rem; }
.spec-table dd { color: #fff; font-weight: 600; font-size: .9rem; text-align: right; margin: 0; }
.price-box { background: linear-gradient(135deg, rgba(245, 180, 0, .16), rgba(245, 180, 0, .04)); border: 1px solid rgba(245, 180, 0, .4); border-radius: 14px; padding: 1rem 1.2rem; }
.confirm-panel h2, .side-panel h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: #fff; font-size: 1.05rem; }
.confirm-panel p { color: #a1a1aa; font-size: .88rem; margin-top: .5rem; line-height: 1.6; }
.confirm-panel ul { margin-top: .8rem; display: grid; grid-template-columns: 1fr 1fr; gap: .4rem .8rem; list-style: none; padding: 0; }
.confirm-panel li { font-size: .8rem; color: #d4d4d8; padding-left: 1.1rem; position: relative; }
.confirm-panel li::before { content: '•'; color: var(--gold); position: absolute; left: 0; }
.side-panel .tick-list { margin-top: 1rem; }

/* ---------- Prose / misc ---------- */
.prose-dark { margin-top: 1.2rem; display: grid; gap: 1rem; color: #b4b4bb; line-height: 1.8; font-size: 1.02rem; }
.framed-img { border-radius: 22px; overflow: hidden; border: 1px solid rgba(245, 180, 0, .3); box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 1), 0 0 60px -25px rgba(245, 180, 0, .35); margin: 0; }
.framed-img img { width: 100%; height: 100%; object-fit: cover; }
.doc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: .8rem; }
.doc-chip { display: flex; align-items: center; gap: .8rem; background: var(--ink-3); border: 1px solid var(--line); border-radius: 12px; padding: .95rem 1.1rem; color: #e4e4e7; font-size: .9rem; font-weight: 500; transition: border-color .3s; }
.doc-chip i { color: var(--gold); }
.doc-chip:hover { border-color: rgba(245, 180, 0, .45); }

/* Contact */
.contact-card { display: flex; gap: 1.1rem; align-items: flex-start; background: var(--ink-3); border: 1px solid var(--line); border-radius: 18px; padding: 1.3rem; transition: all .3s; }
.contact-card:hover { border-color: rgba(245, 180, 0, .45); transform: translateY(-3px); }
.contact-label { font-family: 'Montserrat', sans-serif; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.contact-value { color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.15rem; margin-top: .2rem; }
.contact-sub { color: #a1a1aa; font-size: .85rem; margin-top: .15rem; }
.enquiry-form { background: var(--ink-3); border: 1px solid rgba(245, 180, 0, .3); border-radius: 22px; padding: 2rem; box-shadow: 0 0 60px -25px rgba(245, 180, 0, .3); }
.field span { display: block; font-family: 'Montserrat', sans-serif; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: #a1a1aa; margin-bottom: .45rem; font-weight: 700; }
.field input, .field select, .field textarea { width: 100%; background: #000; border: 1px solid var(--line); color: #fff; border-radius: 10px; padding: .8rem 1rem; font-size: .95rem; outline: none; transition: border-color .2s; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.field input.invalid { border-color: #ef4444; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.2, .7, .2, 1), transform .8s cubic-bezier(.2, .7, .2, 1); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .fade-up { opacity: 1; transform: none; animation: none; transition: none; }
  .hero-bg, .hero-card, .brands-marquee, .wa-float::before { animation: none; }
}

/* =========================================================
   v2 additions — hero slider, tab bar, gallery, why/journey
   ========================================================= */

/* Logo (transparent PNG) */
.brand-logo img { height: 46px; filter: drop-shadow(0 0 10px rgba(245, 180, 0, .35)); }
@media (min-width: 1024px) { .brand-logo img { height: 54px; } }

/* Scroll progress bar */
.progress-bar { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--gold-deep), var(--gold-light)); z-index: 70; transition: width .15s linear; box-shadow: 0 0 12px rgba(245, 180, 0, .7); }

/* ---------- Quick actions ---------- */
.quick-actions { padding: 1.25rem 0 0; }
.qa { display: flex; flex-direction: column; align-items: flex-start; gap: .15rem; background: var(--ink-3); border: 1px solid var(--line); border-radius: 16px; padding: 1rem 1.1rem; transition: all .3s; position: relative; overflow: hidden; }
.qa::after { content: '\f061'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; right: 1rem; top: 1rem; color: var(--gold-deep); font-size: .8rem; transition: transform .3s; }
.qa i { color: var(--gold); font-size: 1.3rem; margin-bottom: .4rem; }
.qa span { font-family: 'Montserrat', sans-serif; font-weight: 700; color: #fff; font-size: .95rem; }
.qa small { color: #71717a; font-size: .72rem; }
.qa:hover { border-color: rgba(245, 180, 0, .5); transform: translateY(-3px); background: #16161a; }
.qa:hover::after { transform: translateX(4px); color: var(--gold); }

/* ---------- Showroom stack (replaces collage) ---------- */
.showroom-stack { position: relative; padding: 0 0 4.5rem 0; }
.stack-main { border-radius: 22px; overflow: hidden; border: 1px solid rgba(245, 180, 0, .35); box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 1), 0 0 60px -20px rgba(245, 180, 0, .35); margin: 0; position: relative; aspect-ratio: 3 / 2; }
.stack-main img { width: 100%; height: 100%; object-fit: cover; }
.stack-main figcaption { position: absolute; top: 1rem; left: 1rem; }
.stack-a, .stack-b { position: absolute; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 1); margin: 0; background: #000; }
.stack-a { width: 38%; aspect-ratio: 3 / 2; right: -4%; bottom: 0; animation: floatA 7s ease-in-out infinite; }
.stack-b { width: 30%; aspect-ratio: 3 / 2; left: -3%; bottom: 1.5rem; animation: floatB 8s ease-in-out infinite; }
.stack-a img, .stack-b img { width: 100%; height: 100%; object-fit: cover; }
.showroom-stack .collage-badge { position: absolute; left: 50%; transform: translateX(-50%); bottom: .2rem; text-align: center; white-space: nowrap; }
@keyframes floatA { 0%, 100% { transform: translateY(0) rotate(1.5deg); } 50% { transform: translateY(-10px) rotate(1.5deg); } }
@keyframes floatB { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(8px) rotate(-2deg); } }
@media (max-width: 640px) { .stack-a { right: 0; } .stack-b { left: 0; } .showroom-stack .collage-badge { display: none; } .showroom-stack { padding-bottom: 3.5rem; } }
.tilt { transition: transform .5s ease; transform-style: preserve-3d; }

/* ---------- Vehicle card additions ---------- */
.vehicle-price { position: absolute; right: .9rem; top: .9rem; z-index: 2; background: linear-gradient(135deg, #ffd23f, #d99a00); color: #000; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: .78rem; padding: .35rem .7rem; border-radius: 999px; box-shadow: 0 6px 18px -6px rgba(245, 180, 0, .8); }
.chip-row { display: flex; gap: .5rem; overflow-x: auto; padding: 1rem 0 .25rem; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.chip-row::-webkit-scrollbar { display: none; }
.chip { flex: 0 0 auto; padding: .5rem 1rem; border-radius: 999px; border: 1px solid var(--line); background: var(--ink-3); color: #d4d4d8; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: .78rem; letter-spacing: .04em; cursor: pointer; transition: all .25s; }
.chip.is-active, .chip:hover { background: var(--gold); color: #000; border-color: var(--gold); }

/* ---------- Photo marquee (stock strip) ---------- */
.stock-strip { padding: 4rem 0 3rem; background: #000; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.marquee-track { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.photo-marquee { display: flex; gap: 1rem; list-style: none; padding: 0; margin: 0; width: max-content; animation: marquee 70s linear infinite; }
.stock-strip:hover .photo-marquee { animation-play-state: paused; }
.photo-marquee li { flex: 0 0 auto; width: 300px; aspect-ratio: 3 / 2; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); background: #111; }
.photo-marquee img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; transition: transform .6s; }
.photo-marquee li:hover img { transform: scale(1.06); }
@media (max-width: 640px) { .photo-marquee li { width: 220px; } }

/* ---------- Why section ---------- */
.why-section { background: radial-gradient(ellipse at 0% 30%, rgba(245, 180, 0, .09), transparent 55%), var(--ink); }
.why-figure { border-radius: 22px; overflow: hidden; border: 1px solid rgba(245, 180, 0, .35); position: relative; margin: 0; box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 1), 0 0 60px -25px rgba(245, 180, 0, .3); }
.why-figure img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.why-figure figcaption { position: absolute; inset: auto 0 0 0; padding: 1.2rem; background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .92)); }
.why-figure figcaption p { color: #e4e4e7; font-size: .9rem; margin-top: .6rem; }
.why-list { list-style: none; padding: 0; display: grid; gap: .9rem; }
.why-item { display: grid; grid-template-columns: auto auto 1fr; gap: 1.1rem; align-items: start; background: var(--ink-3); border: 1px solid var(--line); border-radius: 18px; padding: 1.35rem 1.4rem; position: relative; overflow: hidden; transition: transform .35s, border-color .35s, background .35s; }
.why-item::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(180deg, var(--gold-light), var(--gold-deep)); transform: scaleY(0); transform-origin: top; transition: transform .45s ease; }
.why-item:hover, .why-item.in-view { border-color: rgba(245, 180, 0, .4); background: #15151a; transform: translateX(6px); }
.why-item:hover::before, .why-item.in-view::before { transform: scaleY(1); }
.why-num { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.6rem; color: rgba(245, 180, 0, .3); line-height: 1; padding-top: .2rem; min-width: 2ch; }
.why-icon { width: 46px; height: 46px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; background: rgba(245, 180, 0, .12); border: 1px solid rgba(245, 180, 0, .35); color: var(--gold); font-size: 1.05rem; flex-shrink: 0; }
.why-item h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: #fff; font-size: 1.05rem; }
.why-item p { color: #a1a1aa; font-size: .9rem; line-height: 1.65; margin-top: .35rem; }
@media (max-width: 640px) { .why-item { grid-template-columns: auto 1fr; } .why-num { display: none; } }

/* ---------- Journey timeline ---------- */
.journey-section { overflow: hidden; }
.journey-wrap { position: relative; }
.journey-track { position: absolute; left: 0; right: 0; top: 30px; height: 2px; background: rgba(255, 255, 255, .08); display: none; }
.journey-progress { position: absolute; left: 0; top: 0; bottom: 0; width: 0; background: linear-gradient(90deg, var(--gold-deep), var(--gold-light)); box-shadow: 0 0 14px rgba(245, 180, 0, .6); transition: width 1.6s cubic-bezier(.2, .7, .2, 1); }
.journey-wrap.in .journey-progress { width: 100%; }
@media (min-width: 1024px) { .journey-track { display: block; } }
.journey { list-style: none; padding: 0; display: grid; gap: 1rem; grid-template-columns: 1fr; position: relative; }
@media (min-width: 640px) { .journey { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .journey { grid-template-columns: repeat(7, 1fr); gap: .75rem; } }
.journey-step { position: relative; text-align: left; padding: 0 0 0 4.4rem; min-height: 64px; }
@media (min-width: 1024px) { .journey-step { text-align: center; padding: 4.6rem .4rem 0; } }
.journey-dot { position: absolute; left: 0; top: 0; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: #0b0b0c; border: 2px solid rgba(245, 180, 0, .45); color: var(--gold-light); font-size: 1.25rem; box-shadow: 0 0 0 6px var(--ink), 0 0 30px -6px rgba(245, 180, 0, .5); transition: all .4s; }
@media (min-width: 1024px) { .journey-dot { left: 50%; transform: translateX(-50%); } }
.journey-step:hover .journey-dot { background: var(--gold); color: #000; border-color: var(--gold); transform: translateX(0) scale(1.08); }
@media (min-width: 1024px) { .journey-step:hover .journey-dot { transform: translateX(-50%) scale(1.08); } }
.journey-num { display: block; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .65rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }
.journey-step h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; color: #fff; font-size: 1.05rem; margin-top: .25rem; }
.journey-step p { color: #a1a1aa; font-size: .82rem; line-height: 1.6; margin-top: .4rem; }
.journey-cta { margin-top: 3.5rem; display: flex; flex-wrap: wrap; gap: 1.2rem; align-items: center; justify-content: space-between; background: linear-gradient(135deg, rgba(245, 180, 0, .14), var(--ink-3) 60%); border: 1px solid rgba(245, 180, 0, .35); border-radius: 20px; padding: 1.4rem 1.6rem; }

/* ---------- Reels scroller ---------- */
.reel-scroller { display: grid; grid-auto-flow: column; grid-auto-columns: 78%; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 1rem; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.reel-scroller::-webkit-scrollbar { display: none; }
.reel-scroller > * { scroll-snap-align: start; }
@media (min-width: 640px) { .reel-scroller { grid-auto-columns: 42%; } }
@media (min-width: 1024px) { .reel-scroller { grid-auto-columns: 23.5%; } }
.reel-kind { position: absolute; top: .9rem; left: .9rem; z-index: 2; background: rgba(0, 0, 0, .65); backdrop-filter: blur(8px); border: 1px solid var(--line); color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; padding: .3rem .65rem; border-radius: 999px; }
.delivery-card { aspect-ratio: 9 / 14; }
.delivery-card::after { content: '\f04b'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 50%; top: 45%; transform: translate(-50%, -50%) scale(.9); width: 58px; height: 58px; border-radius: 50%; background: rgba(0, 0, 0, .55); border: 1px solid rgba(255, 255, 255, .4); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; padding-left: 3px; opacity: 0; transition: all .35s; backdrop-filter: blur(6px); }
.delivery-card:hover::after { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* ---------- Gallery ---------- */
.gallery-main { position: relative; border-radius: 22px; overflow: hidden; border: 1px solid rgba(245, 180, 0, .35); background: #000; aspect-ratio: 3 / 2; margin: 0; box-shadow: 0 0 60px -20px rgba(245, 180, 0, .3); }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; transition: opacity .35s; }
.gallery-main img.swapping { opacity: 0; }
.gallery-counter { position: absolute; left: 1rem; bottom: 1rem; background: rgba(0, 0, 0, .65); backdrop-filter: blur(8px); border: 1px solid var(--line); color: #fff; font-size: .78rem; padding: .35rem .7rem; border-radius: 999px; }
.gallery-counter b { color: var(--gold-light); }
.gallery-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(245, 180, 0, .5); background: rgba(0, 0, 0, .55); color: #fff; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: all .25s; backdrop-filter: blur(6px); }
.gallery-nav:hover { background: var(--gold); color: #000; }
.gallery-nav.prev { left: 1rem; } .gallery-nav.next { right: 1rem; }
.gallery { min-width: 0; max-width: 100%; }
.gallery-thumbs { display: flex; gap: .5rem; overflow-x: auto; margin-top: .75rem; padding-bottom: .4rem; scrollbar-width: thin; scrollbar-color: var(--gold-deep) transparent; max-width: 100%; -webkit-overflow-scrolling: touch; }
.thumb { flex: 0 0 auto; width: 96px; aspect-ratio: 3 / 2; border-radius: 10px; overflow: hidden; border: 2px solid transparent; padding: 0; background: #000; cursor: pointer; opacity: .6; transition: all .25s; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.is-active, .thumb:hover { opacity: 1; border-color: var(--gold); }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(0, 0, 0, .94); display: flex; align-items: center; justify-content: center; animation: fadeIn .25s ease; }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 94vw; max-height: 86vh; border-radius: 12px; box-shadow: 0 40px 100px rgba(0, 0, 0, .9); object-fit: contain; }
.lightbox button { position: absolute; width: 48px; height: 48px; border-radius: 50%; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .2); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .2s; }
.lightbox button:hover { background: var(--gold); color: #000; }
.lightbox-close { top: 1rem; right: 1rem; } .lightbox-prev { left: 1rem; top: 50%; transform: translateY(-50%); } .lightbox-next { right: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-count { position: absolute; bottom: 1.2rem; left: 50%; transform: translateX(-50%); color: #a1a1aa; font-size: .85rem; letter-spacing: .1em; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---------- CTA band with storefront ---------- */
.cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .22; filter: saturate(1.1); }
.cta-band::before { z-index: 1; }
.cta-band::after { z-index: 1; }

/* ---------- Misc polish ---------- */
.eyebrow.justify-center { justify-content: center; display: flex; }
.section-alt .vehicle-card { background: #0f0f11; }
.btn { will-change: transform; }
.btn-gold:active { transform: translateY(0) scale(.98); }
img { -webkit-user-drag: none; }

/* ---------- Hero slider (v3: image-first, text in bottom panel) ---------- */
.hero-slider { position: relative; height: 100svh; min-height: 720px; max-height: 1000px; overflow: hidden; background: #050505; }
.slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 1.1s ease, visibility 1.1s; }
.slide.is-active { opacity: 1; visibility: visible; z-index: 1; }
/* Image is lifted: it occupies the upper part of the hero so the car sits above the text zone */
.slide-bg { position: absolute; left: 0; right: 0; top: 0; bottom: 30%; display: block; }
.slide-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 68%; transform: scale(1.06); transform-origin: center 70%; transition: transform 8s ease-out; }
.slide[data-index="0"] .slide-bg img { object-position: center 62%; }

/* ---------- Desktop hero: full-screen. The 16:9 photo box is shifted right (left 18% / right -12%) so the photo
   renders at native ratio with NO vertical crop and the car lands in the clear right zone; text owns the left column. ---------- */
@media (min-width: 1024px) {
  .hero-slider { height: 100svh; min-height: 680px; max-height: 1080px; }
  .slide-bg { top: 0; bottom: 0; left: 18%; right: -12%;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .55) 12%, #000 24%);
            mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .55) 12%, #000 24%); }
  .slide-bg img { object-fit: cover; object-position: center center; transform: scale(1.03); transform-origin: 50% 50%; }
  .slide.is-active .slide-bg img { transform: scale(1); }
  .slide[data-index="0"] .slide-bg img { object-position: center 45%; }
  /* Subtle gold glow behind the text + slim bottom fade just for the controls strip. */
  .slide-overlay { background:
    radial-gradient(ellipse at 12% 55%, rgba(245, 180, 0, .10), transparent 45%),
    linear-gradient(180deg, rgba(5, 5, 5, .35) 0%, rgba(5, 5, 5, 0) 16%, rgba(5, 5, 5, 0) 90%, rgba(5, 5, 5, .75) 100%); }
  .slide-overlay::after { content: none; }
  .hero-slider::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(245, 180, 0, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(245, 180, 0, .045) 1px, transparent 1px); background-size: 64px 64px; -webkit-mask-image: radial-gradient(ellipse at 15% 50%, #000 10%, transparent 60%); mask-image: radial-gradient(ellipse at 15% 50%, #000 10%, transparent 60%); pointer-events: none; z-index: 0; }
  .slide-content { bottom: auto; top: calc(50% + 1.2rem); transform: translateY(-50%); }
  .slide-content > * { max-width: 36%; }
  .slide-content .eyebrow { white-space: normal; line-height: 1.5; }
  .hero-headline { font-size: clamp(2.5rem, 3.6vw, 3.8rem); text-shadow: 0 10px 40px rgba(0, 0, 0, .9); }
  .hero-headline span { display: block !important; }
  .hero-headline span + span::before { content: none; }
  .hero-sub { font-size: 1.1rem; }
  .hero-desc { font-size: .98rem; max-width: 26rem; text-shadow: 0 2px 14px rgba(0, 0, 0, .9); }
  .slider-ui { bottom: 3.4rem; }
  .slider-arrows { margin-right: 11rem; }
  .slide-caption { position: absolute; right: 2rem; bottom: 6.6rem; z-index: 3; display: inline-flex; align-items: center; gap: .5rem; background: rgba(0, 0, 0, .55); border: 1px solid rgba(245, 180, 0, .4); color: #fff; font-family: 'Montserrat', sans-serif; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .5rem .9rem; border-radius: 999px; backdrop-filter: blur(8px); }
  .slide-caption i { color: var(--gold); }
}
@media (max-width: 1023px) { .slide-caption { display: none; } }
.slide.is-active .slide-bg img { transform: scale(1); }
/* Overlay: only darken bottom third so the car stays visible */
.slide-overlay { position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(5, 5, 5, .15) 0%, rgba(5, 5, 5, 0) 50%, rgba(5, 5, 5, .25) 75%, rgba(5, 5, 5, .45) 90%, rgba(5, 5, 5, .7) 95%, #000 100%); }
.slide-overlay::after { content: ''; position: absolute; left: -10%; right: 40%; bottom: 0; height: 55%; background: radial-gradient(ellipse at 20% 80%, rgba(245, 180, 0, .09), transparent 60%); pointer-events: none; }
.slide-content { position: absolute; left: 0; right: 0; bottom: 8.5rem; width: 100%; max-width: 100%; }
.slide-content > * { max-width: 44rem; }
.slide-badge { margin-bottom: .6rem; }
.hero-headline { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(2.1rem, 5vw, 4rem); line-height: .98; letter-spacing: -.02em; color: #fff; text-shadow: 0 8px 30px rgba(0, 0, 0, .7); }
.hero-headline span { display: inline !important; }
.hero-headline span + span::before { content: ' '; }
.hero-sub { font-family: 'Montserrat', sans-serif; font-weight: 700; font-style: italic; color: var(--gold-light); font-size: clamp(.95rem, 1.6vw, 1.25rem); margin-top: .6rem; }
.hero-desc { color: #d4d4d8; font-size: 1rem; line-height: 1.65; max-width: 34rem; margin-top: .6rem; text-shadow: 0 2px 12px rgba(0, 0, 0, .7); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.1rem; }
.slide-el { opacity: 0; transform: translateY(22px); transition: opacity .8s cubic-bezier(.2, .7, .2, 1), transform .8s cubic-bezier(.2, .7, .2, 1); transition-delay: var(--d, 0s); }
.slide.is-active .slide-el { opacity: 1; transform: none; }
.slide-badge { opacity: 0; transform: translateX(-20px); transition: all .7s ease; }
.slide.is-active .slide-badge { opacity: 1; transform: none; }
.slider-ui { position: absolute; left: 0; right: 0; bottom: 3.1rem; z-index: 3; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.slider-dots { display: flex; gap: .5rem; }
.dot { width: 44px; height: 4px; border-radius: 2px; background: rgba(255, 255, 255, .25); position: relative; overflow: hidden; padding: 0; border: 0; cursor: pointer; }
.dot span { position: absolute; inset: 0; background: var(--gold); transform: scaleX(0); transform-origin: left; }
.dot.is-active span { animation: dotfill var(--slide-ms, 6500ms) linear forwards; }
@keyframes dotfill { to { transform: scaleX(1); } }
.slider-arrows { display: flex; align-items: center; gap: .6rem; }
.arrow { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(245, 180, 0, .5); background: rgba(0, 0, 0, .45); color: var(--gold-light); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: all .25s; backdrop-filter: blur(6px); }
.arrow:hover { background: var(--gold); color: #000; transform: scale(1.06); }
.slider-count { font-family: 'Montserrat', sans-serif; font-size: .8rem; color: #a1a1aa; letter-spacing: .15em; }
.slider-count b { color: #fff; font-size: 1rem; }
.hero-points { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; display: flex; justify-content: center; gap: 1.6rem; padding: .65rem 1rem; background: rgba(0, 0, 0, .6); border-top: 1px solid var(--line); backdrop-filter: blur(8px); font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: #d4d4d8; list-style: none; margin: 0; }
.hero-points i { color: var(--gold); margin-right: .35rem; }
@media (min-width: 1024px) { .slider-arrows { margin-right: 11rem; } }
@media (max-width: 767px) {
  .hero-slider { height: 92svh; min-height: 620px; }
  .slide-bg { bottom: 34%; }
  .slide-bg img { object-position: center 72%; }
  .slide[data-index="0"] .slide-bg img { object-position: center 55%; }
  .slide-overlay { background: linear-gradient(180deg, rgba(5, 5, 5, .55) 0%, rgba(5, 5, 5, 0) 14%, rgba(5, 5, 5, 0) 36%, rgba(5, 5, 5, .5) 50%, rgba(5, 5, 5, .94) 62%, #050505 68%, #050505 100%); }
  .slide-overlay::after { right: -10%; }
  .slide-content { bottom: 7.4rem; }
  .hero-headline { font-size: clamp(1.9rem, 9vw, 2.6rem); }
  .hero-headline span { display: block !important; }
  .hero-headline span + span::before { content: none; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; padding: .8rem .9rem; font-size: .82rem; }
  .slider-ui { bottom: 2.7rem; }
  .dot { width: 26px; }
  .slider-count { display: none; }
  .hero-points { gap: .8rem; font-size: .6rem; }
}
.fade-up { opacity: 0; transform: translateY(24px); animation: fadeUp .8s cubic-bezier(.2, .7, .2, 1) forwards; animation-delay: var(--d, 0s); }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

/* ---------- Bottom tab bar (mobile) ---------- */
.tabbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 65; display: grid; grid-template-columns: repeat(6, 1fr); background: rgba(6, 6, 7, .96); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-top: 1px solid rgba(245, 180, 0, .25); padding: .35rem .25rem calc(.35rem + env(safe-area-inset-bottom)); box-shadow: 0 -10px 40px -10px rgba(0, 0, 0, .9); }
.tab { display: flex; flex-direction: column; align-items: center; gap: .2rem; padding: .35rem .2rem; color: #8b8b93; font-family: 'Montserrat', sans-serif; font-size: .58rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; border-radius: 12px; transition: color .2s; position: relative; }
.tab i { font-size: 1.15rem; transition: transform .25s; }
.tab.is-active { color: var(--gold-light); }
.tab.is-active::before { content: ''; position: absolute; top: -.4rem; left: 30%; right: 30%; height: 2px; background: var(--gold); border-radius: 2px; box-shadow: 0 0 10px var(--gold); }
.tab:active i { transform: scale(.9); }
@media (max-width: 1023px) { body.has-tabbar { padding-bottom: 66px; } }
@media (min-width: 1024px) { .tabbar { display: none; } }

/* ---------- Compact footer ---------- */
.site-footer { position: relative; background: #000; border-top: 1px solid var(--line); overflow: hidden; }
.footer-glow { position: absolute; left: 50%; top: -220px; width: 800px; height: 400px; transform: translateX(-50%); background: radial-gradient(ellipse, rgba(245, 180, 0, .12), transparent 70%); pointer-events: none; }
.footer-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.2fr 1.4fr 1.1fr; gap: 2rem; } }
.footer-brand img { width: 180px; height: auto; }
.footer-tag { color: #a1a1aa; font-size: .82rem; line-height: 1.5; margin-top: .6rem; }
.footer-tag-gold { color: var(--gold-light); font-family: 'Montserrat', sans-serif; font-weight: 700; margin-top: .15rem; letter-spacing: .02em; }
.footer-nav { display: flex; flex-wrap: nowrap; gap: 0 1rem; justify-content: flex-start; white-space: nowrap; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; margin: 0 -1rem; padding: 0 1rem; }
.footer-nav::-webkit-scrollbar { display: none; }
@media (min-width: 768px) { .footer-nav { justify-content: center; margin: 0; padding: 0; gap: 0 1.1rem; } }
.footer-nav a { font-family: 'Montserrat', sans-serif; font-size: .7rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: #a1a1aa; padding: .3rem 0; transition: color .2s; flex: 0 0 auto; }
@media (max-width: 767px) { .footer-nav { justify-content: space-between; gap: 0 .5rem; margin: 0; padding: 0; overflow: visible; } .footer-nav a { font-size: .6rem; letter-spacing: .03em; } }
@media (max-width: 360px) { .footer-nav a { font-size: .54rem; letter-spacing: .01em; } }
.footer-nav a:hover { color: var(--gold-light); }
.footer-contact { display: flex; flex-direction: column; gap: .35rem; align-items: flex-start; }
@media (min-width: 768px) { .footer-contact { align-items: flex-end; text-align: right; } }
.footer-phone { color: var(--gold-light); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem; }
.footer-phone i { margin-right: .35rem; font-size: .8rem; }
.footer-addr { color: #a1a1aa; font-size: .8rem; line-height: 1.4; }
.footer-addr i { color: var(--gold); margin-right: .3rem; }
.footer-addr:hover { color: #e4e4e7; }
.social-pill-sm { width: 34px; height: 34px; font-size: .85rem; }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 1.25rem; padding-top: .9rem; display: flex; flex-direction: column; gap: .4rem; align-items: center; text-align: center; }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
@media (min-width: 1024px) { .footer-bottom { padding-right: 12.5rem; } } /* keep clear of the WhatsApp pill */
.footer-legal { font-size: .7rem; color: #71717a; line-height: 1.5; }
.footer-credit { font-size: .7rem; color: #71717a; white-space: nowrap; }
.footer-credit a { color: #a1a1aa; font-weight: 600; border-bottom: 1px dotted rgba(245, 180, 0, .5); transition: color .2s; }
.footer-credit a:hover { color: var(--gold-light); }

/* ---------- Header call icon (mobile + desktop) ---------- */
.header-call { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(245, 180, 0, .55); background: rgba(245, 180, 0, .08); color: var(--gold-light); display: inline-flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; transition: all .25s; position: relative; }
.header-call::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 1px solid rgba(245, 180, 0, .35); animation: callring 2.4s ease-out infinite; }
@keyframes callring { 0% { transform: scale(.85); opacity: .9; } 70% { transform: scale(1.25); opacity: 0; } 100% { opacity: 0; } }
.header-call:hover { background: var(--gold); color: #000; }
@media (max-width: 1023px) { .header-call { width: 40px; height: 40px; } }

/* ---------- Opening splash ---------- */
.intro { position: fixed; inset: 0; z-index: 200; background: #050505; display: flex; align-items: center; justify-content: center; transition: opacity .7s ease, visibility .7s; }
.intro.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.intro-inner { text-align: center; padding: 1rem; }
.intro-logo { width: min(72vw, 420px); height: auto; opacity: 0; transform: scale(.82); filter: drop-shadow(0 0 0 rgba(245, 180, 0, 0)); animation: introLogo 1.4s cubic-bezier(.2, .7, .2, 1) forwards; }
@keyframes introLogo { 40% { opacity: 1; transform: scale(1.02); filter: drop-shadow(0 0 30px rgba(245, 180, 0, .55)); } 100% { opacity: 1; transform: scale(1); filter: drop-shadow(0 0 16px rgba(245, 180, 0, .35)); } }
.intro-line { width: min(60vw, 320px); height: 2px; margin: 1.4rem auto .9rem; background: rgba(255, 255, 255, .08); overflow: hidden; border-radius: 2px; }
.intro-line span { display: block; height: 100%; width: 100%; background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light)); transform: translateX(-100%); animation: introLine 1.5s .5s cubic-bezier(.65, 0, .35, 1) forwards; }
@keyframes introLine { to { transform: translateX(0); } }
.intro-tag { font-family: 'Montserrat', sans-serif; font-weight: 700; letter-spacing: .32em; text-transform: uppercase; font-size: .72rem; color: var(--gold-light); opacity: 0; animation: fadeUp .8s 1s forwards; }
.intro-start { position: relative; margin-top: 2rem; display: inline-flex; align-items: center; gap: .7rem; padding: .9rem 1.6rem .9rem 1.2rem; border-radius: 999px; border: 1px solid rgba(245, 180, 0, .6); background: rgba(245, 180, 0, .08); color: var(--gold-light); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; opacity: 0; animation: fadeUp .7s 1.3s forwards; transition: background .25s, color .25s, transform .25s; }
.intro-start i { font-size: 1.1rem; }
.intro-start:hover { background: var(--gold); color: #000; transform: translateY(-2px); }
.intro-start-ring { position: absolute; inset: -6px; border-radius: 999px; border: 1px solid rgba(245, 180, 0, .5); animation: callring 2s ease-out infinite; pointer-events: none; }
.intro-start.is-on { background: var(--gold); color: #000; }
.intro-start.is-on .intro-start-ring { animation: none; opacity: 0; }
.intro.is-revving .intro-logo { animation: introRev .35s ease-in-out 4; }
@keyframes introRev { 0%, 100% { transform: translateX(0) scale(1); } 25% { transform: translateX(-2px) scale(1.01); } 75% { transform: translateX(2px) scale(1.01); } }
.intro-skip { display: block; margin: 1rem auto 0; background: none; border: 0; color: #71717a; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; opacity: 0; animation: fadeUp .7s 1.8s forwards; }
.intro-skip:hover { color: #d4d4d8; }
body.intro-lock { overflow: hidden; }
@media (prefers-reduced-motion: reduce) { .intro { display: none; } }

/* ---------- WhatsApp float (desktop always; mobile appears on scroll, hides near footer) ---------- */
.wa-float { position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 60; display: inline-flex; align-items: center; gap: .6rem; background: #25d366; color: #fff; padding: .8rem 1.1rem .8rem .9rem; border-radius: 999px; font-weight: 700; font-family: 'Montserrat', sans-serif; font-size: .85rem; box-shadow: 0 12px 30px -8px rgba(37, 211, 102, .7); transition: transform .35s cubic-bezier(.2, .7, .2, 1), opacity .35s; }
.wa-float i { font-size: 1.5rem; }
.wa-float:hover { transform: translateY(-3px) scale(1.03); }
.wa-float::before { content: ''; position: absolute; inset: -6px; border-radius: 999px; border: 2px solid rgba(37, 211, 102, .6); animation: pulse 2s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(.9); opacity: 1; } 100% { transform: scale(1.25); opacity: 0; } }
@media (max-width: 1023px) {
  .wa-float { bottom: calc(76px + env(safe-area-inset-bottom)); right: 1rem; width: 54px; height: 54px; padding: 0; justify-content: center; opacity: 0; transform: translateY(24px) scale(.8); pointer-events: none; }
  .wa-float .wa-label { display: none; }
  .wa-float.is-visible { opacity: 1; transform: none; pointer-events: auto; }
}

/* ---------- Sold state ---------- */
.sold-ribbon { position: absolute; top: 14px; left: -34px; z-index: 3; transform: rotate(-35deg); background: #dc2626; color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; padding: .3rem 2.6rem; box-shadow: 0 6px 16px -6px rgba(0, 0, 0, .8); }
.vehicle-card.is-sold .vehicle-media img { filter: grayscale(.35) brightness(.8); }
.btn.is-disabled { opacity: .6; cursor: default; pointer-events: none; }
.sold-banner { display: flex; align-items: center; gap: .8rem; background: rgba(220, 38, 38, .12); border: 1px solid rgba(220, 38, 38, .45); color: #fecaca; border-radius: 14px; padding: .9rem 1.1rem; font-size: .9rem; margin-top: 1.2rem; }
.sold-banner i { color: #f87171; font-size: 1.2rem; }
