/* Global Cars India V2 — Dark Cinematic Luxury Design */

/* ─── Tokens ───────────────────────────────────────────────── */
:root {
  --bg:          #08080B;
  --bg-1:        #0E0E12;
  --bg-2:        #14141A;
  --border:      rgba(255,255,255,0.07);
  --border-gold: rgba(201,168,76,0.28);
  --gold:        #C9A84C;
  --gold-light:  #E2C26A;
  --gold-dim:    rgba(201,168,76,0.12);
  --text-1:      #F0ECE4;
  --text-2:      #9A9490;
  --text-3:      #4A4744;
  --font-d:      'Clash Display', 'Georgia', serif;
  --font-b:      'Satoshi', system-ui, sans-serif;
  --nav-h:       72px;
  --ease:        cubic-bezier(0.25,0.46,0.45,0.94);
}
[data-theme="light"] {
  --bg: #F4F1EC; --bg-1: #ECEAE5; --bg-2: #E2DFD8;
  --border: rgba(0,0,0,0.09);
  --text-1: #111010; --text-2: #5C5854; --text-3: #9A9490;
}

/* ─── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
  background: var(--bg); color: var(--text-1);
  font-family: var(--font-b); font-size: 16px; line-height: 1.65;
  overflow-x: hidden; cursor: none;
  transition: background .4s, color .4s;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: none; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }
ul { list-style: none; }

/* ─── Grain ─────────────────────────────────────────────────── */
.grain {
  position: fixed; inset: 0; z-index: 9998; pointer-events: none;
  opacity: .034;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* ─── Cursor ─────────────────────────────────────────────────── */
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(201,168,76,.55); border-radius: 50%;
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .3s var(--ease), height .3s var(--ease), border-color .3s, opacity .3s;
}
.cursor-dot {
  width: 6px; height: 6px; background: var(--gold); border-radius: 50%;
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 10000;
  transform: translate(-50%,-50%);
}
.cursor-ring.hovering { width: 54px; height: 54px; border-color: var(--gold); }
.cursor-ring.dragging { border-style: dashed; opacity: .7; }
@media (pointer: coarse) { .cursor-ring, .cursor-dot { display: none; } body { cursor: auto; } button { cursor: pointer; } }

/* ─── Utility ───────────────────────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.section-label::before {
  content: ''; display: inline-block;
  width: 20px; height: 1px; background: var(--gold);
}
.section-title {
  font-family: var(--font-d);
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  font-weight: 700; line-height: 1.08; letter-spacing: -.025em; color: var(--text-1);
}
.reveal-up  { opacity: 0; transform: translateY(36px); }
.reveal-fade { opacity: 0; transform: translateY(18px); }

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 8px;
  font-size: 14px; font-weight: 500;
  transition: all .25s var(--ease); white-space: nowrap; cursor: none;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-primary { background: var(--gold); color: #08080B; font-weight: 600; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-ghost { border: 1.5px solid var(--border); color: var(--text-1); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost-light { border: 1.5px solid rgba(255,255,255,.3); color: #fff; }
.btn-ghost-light:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-gold { background: var(--gold); color: #08080B; font-weight: 700; }
.btn-gold:hover { background: var(--gold-light); box-shadow: 0 0 32px rgba(201,168,76,.35); }
.btn-nav { padding: 9px 18px; font-size: 13px; background: var(--gold-dim); color: var(--gold); border: 1px solid var(--border-gold); border-radius: 6px; }
.btn-nav:hover { background: var(--gold); color: #08080B; }
.btn-sm { padding: 9px 18px; font-size: 13px; border-radius: 6px; }
.btn-full { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h);
  z-index: 900; display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px,5vw,60px);
  transition: background .4s, border-bottom .4s, box-shadow .4s;
}
#nav.scrolled {
  background: rgba(8,8,11,.9); backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 40px rgba(0,0,0,.4);
}
[data-theme="light"] #nav.scrolled { background: rgba(244,241,236,.92); }

.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-icon-img {
  width: 30px; height: 30px;
  filter: brightness(0) saturate(100%) invert(75%) sepia(40%) saturate(500%) hue-rotate(8deg) brightness(90%);
}
[data-theme="light"] .logo-icon-img {
  filter: brightness(0) saturate(100%) invert(52%) sepia(55%) saturate(430%) hue-rotate(8deg);
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-brand { font-family: var(--font-d); font-size: 15px; font-weight: 800; letter-spacing: .12em; color: var(--text-1); }
.logo-sub { font-size: 8.5px; font-weight: 500; letter-spacing: .22em; color: var(--gold); text-transform: uppercase; }

.nav-links { display: flex; gap: 34px; }
.nav-link {
  font-size: 13px; font-weight: 500; letter-spacing: .03em;
  color: var(--text-2); position: relative; transition: color .2s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1.5px; background: var(--gold); transition: width .25s var(--ease);
}
.nav-link:hover { color: var(--text-1); }
.nav-link:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-theme {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-2); transition: color .2s, background .2s; cursor: none;
}
.nav-theme:hover { color: var(--gold); background: var(--gold-dim); }
.nav-theme svg { width: 17px; height: 17px; }
[data-theme="dark"] .icon-sun { display: none; }
[data-theme="dark"] .icon-moon { display: block; }
[data-theme="light"] .icon-sun { display: block; }
[data-theme="light"] .icon-moon { display: none; }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; height: 36px; align-items: center; justify-content: center;
  border-radius: 8px; cursor: none; transition: background .2s;
}
.nav-hamburger:hover { background: var(--bg-1); }
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px; background: var(--text-1);
  transition: transform .3s, opacity .3s, width .3s; transform-origin: center;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed; inset: 0; z-index: 800; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .35s var(--ease);
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav-inner { display: flex; flex-direction: column; align-items: center; gap: 30px; }
.mobile-link {
  font-family: var(--font-d); font-size: clamp(2rem,8vw,3.5rem);
  font-weight: 700; color: var(--text-1); transition: color .2s;
}
.mobile-link:hover { color: var(--gold); }
.mobile-link--cta {
  font-size: 1rem; font-family: var(--font-b); color: var(--gold);
  border: 1px solid var(--border-gold); padding: 12px 32px;
  border-radius: 8px; margin-top: 8px;
}

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.s-hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden; padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,8,11,.97) 0%, rgba(8,8,11,.88) 45%, rgba(8,8,11,.65) 100%);
}
[data-theme="light"] .hero-overlay {
  background: linear-gradient(135deg, rgba(244,241,236,.97) 0%, rgba(244,241,236,.88) 45%, rgba(244,241,236,.65) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 52% 48%;
  align-items: center;
  min-height: calc(100svh - var(--nav-h) - 120px);
  padding: 60px clamp(24px,6vw,80px); gap: 40px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 500; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 22px;
  opacity: 0;
}
.eyebrow-dot {
  width: 6px; height: 6px; background: var(--gold);
  border-radius: 50%; display: inline-block;
  animation: pdot 2.5s ease-in-out infinite;
}
@keyframes pdot { 0%,100% { box-shadow: 0 0 0 0 rgba(201,168,76,.5); } 50% { box-shadow: 0 0 0 6px rgba(201,168,76,0); } }

.hero-title {
  font-family: var(--font-d);
  font-size: clamp(3rem,7.5vw,6.5rem);
  font-weight: 800; line-height: 1; letter-spacing: -.035em;
  color: var(--text-1); margin-bottom: 26px; overflow: hidden;
}
.hero-word { display: block; opacity: 0; transform: translateY(80px); }
.hero-word--accent { color: var(--gold); }

.hero-desc {
  font-size: clamp(.9rem,1.5vw,1.05rem); color: var(--text-2);
  line-height: 1.8; max-width: 430px; margin-bottom: 34px; opacity: 0;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; }

/* Visual */
.hero-visual {
  position: relative; display: flex;
  align-items: center; justify-content: flex-end;
}
.hero-glow {
  position: absolute; width: 540px; height: 320px;
  background: radial-gradient(ellipse, rgba(201,168,76,.2) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-40%,-50%);
  filter: blur(50px);
  animation: glow 4s ease-in-out infinite alternate;
}
@keyframes glow { from { opacity:.6; transform:translate(-40%,-50%) scale(.95); } to { opacity:1; transform:translate(-40%,-50%) scale(1.05); } }

.hero-car-img {
  position: relative; z-index: 2; width: 100%; max-width: 640px;
  object-fit: contain; opacity: 0;
  filter: drop-shadow(0 24px 64px rgba(0,0,0,.8));
  animation: hfloat 4s ease-in-out infinite alternate;
  transform-origin: center;
}
@keyframes hfloat { from { transform: translateY(0); } to { transform: translateY(-14px); } }

/* Trust Bar */
.hero-trust {
  position: relative; z-index: 2;
  display: flex; align-items: center;
  padding: 26px clamp(24px,6vw,80px);
  border-top: 1px solid var(--border);
  background: rgba(8,8,11,.65);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  flex-wrap: wrap; row-gap: 18px;
}
[data-theme="light"] .hero-trust { background: rgba(244,241,236,.75); }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 0 clamp(18px,4vw,48px); flex: 1; min-width: 110px; }
.trust-num-wrap { display: flex; align-items: baseline; gap: 1px; }
.trust-num { font-family: var(--font-d); font-size: clamp(1.7rem,3vw,2.5rem); font-weight: 800; color: var(--text-1); line-height: 1; }
.trust-suf { font-family: var(--font-d); font-size: clamp(.9rem,1.4vw,1.3rem); font-weight: 700; color: var(--gold); }
.trust-label { font-size: 11px; color: var(--text-2); letter-spacing: .07em; text-transform: uppercase; font-weight: 500; }
.trust-sep { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute; left: clamp(24px,5vw,60px); bottom: 138px;
  display: flex; align-items: center; gap: 12px;
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-3); z-index: 3; writing-mode: vertical-rl;
}
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--border), transparent); animation: sline 1.8s ease-in-out infinite; }
@keyframes sline { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ══════════════════════════════════════════════════════════════
   BRAND MARQUEE
══════════════════════════════════════════════════════════════ */
.s-brands { overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-1); }
.brand-track-wrap { padding: 20px 0; overflow: hidden; }
.brand-track { display: flex; }
.brand-inner {
  display: flex; align-items: center; white-space: nowrap;
  animation: marquee 30s linear infinite; will-change: transform;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.brand-inner:hover { animation-play-state: paused; }
.brand-inner span {
  font-family: var(--font-d); font-size: 11px; font-weight: 700;
  letter-spacing: .22em; color: var(--text-3); padding: 0 26px; transition: color .2s;
}
.brand-inner span:hover { color: var(--gold); }
.bdot { font-size: 16px !important; padding: 0 !important; letter-spacing: 0 !important; color: var(--border) !important; }

/* ══════════════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════════════ */
.s-about { display: grid; grid-template-columns: 42% 58%; min-height: 72vh; }
.about-visual { position: relative; overflow: hidden; background: var(--bg-1); }
.about-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .6s var(--ease); }
.about-visual:hover .about-img { transform: scale(1.04); }
.about-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(8,8,11,.05) 0%, rgba(8,8,11,.55) 100%);
}
[data-theme="light"] .about-img-overlay { background: linear-gradient(to right, rgba(244,241,236,.05), rgba(244,241,236,.55)); }
.about-ghost {
  position: absolute; bottom: 28px; left: 20px;
  font-family: var(--font-d); font-size: clamp(3rem,8vw,6.5rem);
  font-weight: 800; line-height: .88; letter-spacing: -.04em;
  color: rgba(255,255,255,.06); pointer-events: none; user-select: none;
}
[data-theme="light"] .about-ghost { color: rgba(0,0,0,.05); }
.about-pill {
  position: absolute; top: 28px; left: 20px;
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(8,8,11,.75); backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold); color: var(--gold);
  font-size: 12px; font-weight: 500; padding: 7px 15px; border-radius: 100px;
}
.about-pill svg { width: 13px; height: 13px; }
[data-theme="light"] .about-pill { background: rgba(244,241,236,.8); }

.about-content {
  padding: clamp(48px,7vw,96px) clamp(32px,6vw,80px);
  display: flex; flex-direction: column; justify-content: center; background: var(--bg);
}
.about-desc { color: var(--text-2); font-size: 15px; line-height: 1.82; max-width: 490px; margin-bottom: 16px; }
.about-stats { display: flex; align-items: center; gap: 40px; margin: 36px 0; padding: 28px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.about-stat { display: flex; flex-direction: column; gap: 5px; }
.stat-big { font-family: var(--font-d); font-size: clamp(2.6rem,5vw,3.8rem); font-weight: 800; color: var(--text-1); line-height: 1; display: inline-block; }
.stat-plus { font-family: var(--font-d); color: var(--gold); font-size: 55%; font-weight: 700; vertical-align: super; }
.stat-label { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); font-weight: 500; }
.about-stat-divider { width: 1px; height: 56px; background: var(--border); }
.about-meta { display: flex; flex-direction: column; gap: 12px; }
.meta-pill { display: inline-flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--text-2); }
.meta-pill svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }
.meta-pill a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════════════
   SERVICES — Expanding Panels
══════════════════════════════════════════════════════════════ */
.s-services { padding: clamp(60px,8vw,100px) 0 0; background: var(--bg-1); }
.services-header { padding: 0 clamp(24px,6vw,80px) 44px; }
.services-panels { display: flex; min-height: 540px; border-top: 1px solid var(--border); }
.service-panel {
  flex: 1; min-width: 0; position: relative; overflow: hidden;
  border-right: 1px solid var(--border);
  transition: flex .6s cubic-bezier(.4,0,.2,1), background .3s;
  cursor: none; background: var(--bg-1); outline: none;
}
.service-panel:last-child { border-right: none; }
.service-panel:hover, .service-panel:focus-visible { background: var(--bg-2); }
.sp-num {
  position: absolute; top: 22px; right: 18px;
  font-family: var(--font-d); font-size: clamp(3rem,5.5vw,5rem);
  font-weight: 800; color: rgba(255,255,255,.025);
  line-height: 1; letter-spacing: -.04em; pointer-events: none; user-select: none;
  transition: color .4s;
}
[data-theme="light"] .sp-num { color: rgba(0,0,0,.025); }
.service-panel:hover .sp-num { color: rgba(201,168,76,.06); }
.sp-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 26px; display: flex; flex-direction: column; gap: 10px; }
.sp-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--gold-dim); border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 4px; transition: background .3s, color .3s; flex-shrink: 0;
}
.sp-icon svg { width: 18px; height: 18px; }
.service-panel:hover .sp-icon { background: var(--gold); color: #08080B; }
.sp-title { font-family: var(--font-d); font-size: clamp(1.1rem,1.8vw,1.4rem); font-weight: 700; color: var(--text-1); letter-spacing: -.01em; line-height: 1.15; }
.sp-desc { font-size: 13px; color: var(--text-2); line-height: 1.72; opacity: .82; max-height: 200px; overflow: hidden; transition: opacity .4s .1s, color .4s; margin-top: 8px; }
.service-panel:hover .sp-desc { opacity: 1; color: var(--text-1); }
.sp-cta { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; color: var(--gold); opacity: 1; transform: translateY(0); transition: gap .3s; margin-top: 14px; }
.sp-cta svg { width: 14px; height: 14px; transition: transform .2s; }
.sp-cta:hover svg { transform: translateX(4px); }
.service-panel:hover .sp-cta { gap: 10px; }
.service-panel:hover .sp-cta svg { transform: translateX(4px); }

/* ══════════════════════════════════════════════════════════════
   INVENTORY
══════════════════════════════════════════════════════════════ */
.s-inventory { padding: clamp(60px,8vw,100px) 0; background: var(--bg); overflow: hidden; }
.inventory-header { display: flex; align-items: flex-end; justify-content: space-between; padding: 0 clamp(24px,6vw,80px) 40px; gap: 20px; flex-wrap: wrap; }
.inventory-hint-wrap { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.drag-hint { display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--text-3); letter-spacing: .06em; }
.drag-hint svg { width: 14px; height: 14px; }
.inventory-scroll { overflow-x: auto; overflow-y: visible; padding: 4px clamp(24px,6vw,80px) 36px; scrollbar-width: none; cursor: grab; -webkit-overflow-scrolling: touch; }
.inventory-scroll::-webkit-scrollbar { display: none; }
.inventory-scroll.grabbing { cursor: grabbing; }
.inventory-track { display: flex; gap: 20px; width: max-content; user-select: none; }

.car-card {
  width: 340px; border-radius: 18px; overflow: hidden;
  background: var(--bg-1); border: 1px solid var(--border); flex-shrink: 0;
  transition: border-color .3s, transform .35s var(--ease), box-shadow .35s;
  opacity: 0; transform: translateY(40px);
}
.car-card:hover { border-color: var(--border-gold); transform: translateY(-6px); box-shadow: 0 24px 64px rgba(0,0,0,.5); }

.car-card-img {
  height: 220px; background-size: cover; background-position: center;
  background-color: var(--bg-2); position: relative; overflow: hidden;
  transition: transform .5s var(--ease);
}
.car-card:hover .car-card-img { transform: scale(1.04); }
.car-card-img--light { background-size: contain; background-repeat: no-repeat; background-color: #0D0D12; }
[data-theme="light"] .car-card-img--light { background-color: #E0DDD8; }
.car-card-img--grad { background: linear-gradient(145deg, #0E0E16 0%, #161620 55%, #0C0C14 100%); }
[data-theme="light"] .car-card-img--grad { background: linear-gradient(145deg, #D8D5CE, #E0DDD6, #CCC9C2); }

.car-ghost-label { position: absolute; bottom: 10px; left: 14px; font-family: var(--font-d); font-size: 4rem; font-weight: 800; color: rgba(255,255,255,.04); letter-spacing: -.04em; pointer-events: none; user-select: none; }
[data-theme="light"] .car-ghost-label { color: rgba(0,0,0,.05); }

.car-tag {
  position: absolute; top: 13px; left: 13px;
  font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 100px;
  background: rgba(34,197,94,.14); color: #22c55e; border: 1px solid rgba(34,197,94,.3);
  backdrop-filter: blur(8px);
}
.car-tag--sold { background: rgba(239,68,68,.14); color: #ef4444; border-color: rgba(239,68,68,.3); }
.car-tag--soon { background: var(--gold-dim); color: var(--gold); border-color: var(--border-gold); }

.car-card-body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 14px; }
.car-card-top { display: flex; justify-content: space-between; align-items: flex-start; }
.car-make { display: block; font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.car-model { font-family: var(--font-d); font-size: 1.05rem; font-weight: 700; color: var(--text-1); letter-spacing: -.01em; line-height: 1.25; }
.car-year { font-family: var(--font-d); font-size: .82rem; font-weight: 600; color: var(--text-3); flex-shrink: 0; margin-top: 2px; }
.car-specs { display: flex; gap: 14px; flex-wrap: wrap; }
.car-specs span { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--text-2); }
.car-specs svg { width: 13px; height: 13px; color: var(--text-3); }
.car-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border); }
.car-price { display: flex; flex-direction: column; gap: 2px; }
.price-label { font-size: 10px; color: var(--text-3); text-transform: uppercase; letter-spacing: .08em; }
.price-val { font-family: var(--font-d); font-size: 1rem; font-weight: 700; color: var(--text-1); }

/* ══════════════════════════════════════════════════════════════
   WHY US
══════════════════════════════════════════════════════════════ */
.s-why { position: relative; padding: clamp(64px,9vw,120px) clamp(24px,6vw,80px); overflow: hidden; background: var(--bg-1); }
.why-ghost { position: absolute; top: 50%; left: -16px; transform: translateY(-50%); font-family: var(--font-d); font-size: clamp(6rem,17vw,15rem); font-weight: 800; line-height: .85; color: rgba(255,255,255,.02); letter-spacing: -.05em; pointer-events: none; user-select: none; }
[data-theme="light"] .why-ghost { color: rgba(0,0,0,.035); }
.why-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 36% 64%; gap: clamp(28px,6vw,80px); align-items: start; }
.why-left { padding-top: 4px; }
.why-intro { font-size: 15px; color: var(--text-2); line-height: 1.8; max-width: 300px; margin-top: 22px; }
.why-right { display: flex; flex-direction: column; }
.why-item { display: grid; grid-template-columns: 48px 1fr; gap: 18px; align-items: start; padding: 28px 0; border-bottom: 1px solid var(--border); transition: border-color .25s; }
.why-item:first-child { border-top: 1px solid var(--border); }
.why-item:hover { border-color: var(--border-gold); }
.why-num { font-family: var(--font-d); font-size: .78rem; font-weight: 700; letter-spacing: .06em; color: var(--gold); padding-top: 3px; }
.why-content h3 { font-family: var(--font-d); font-size: clamp(.95rem,1.8vw,1.2rem); font-weight: 700; color: var(--text-1); margin-bottom: 8px; letter-spacing: -.01em; }
.why-content p { font-size: 14px; color: var(--text-2); line-height: 1.78; }

/* ══════════════════════════════════════════════════════════════
   CTA
══════════════════════════════════════════════════════════════ */
.s-cta { padding: clamp(72px,10vw,128px) clamp(24px,6vw,80px); text-align: center; background: var(--bg); position: relative; overflow: hidden; }
.s-cta::before { content: ''; position: absolute; width: 700px; height: 400px; background: radial-gradient(ellipse, rgba(201,168,76,.09) 0%, transparent 68%); top: 50%; left: 50%; transform: translate(-50%,-50%); filter: blur(70px); pointer-events: none; }
.cta-inner { position: relative; z-index: 1; max-width: 660px; margin: 0 auto; }
.cta-eyebrow { display: block; font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.cta-title { font-family: var(--font-d); font-size: clamp(2.2rem,5vw,4rem); font-weight: 800; line-height: 1.1; letter-spacing: -.03em; color: var(--text-1); margin-bottom: 18px; }
.cta-desc { font-size: 16px; color: var(--text-2); line-height: 1.75; margin-bottom: 38px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════════ */
.s-contact { display: grid; grid-template-columns: 42% 58%; border-top: 1px solid var(--border); }
.contact-info { padding: clamp(48px,7vw,88px) clamp(24px,5vw,64px); background: var(--bg-1); display: flex; flex-direction: column; justify-content: center; }
.contact-cards { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.contact-card { display: flex; align-items: flex-start; gap: 14px; padding: 17px; border-radius: 12px; background: var(--bg-2); border: 1px solid var(--border); transition: border-color .25s; }
.contact-card:hover { border-color: var(--border-gold); }
.cc-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--gold-dim); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.cc-icon svg { width: 16px; height: 16px; }
.cc-label { display: block; font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 4px; }
.cc-val { display: block; font-size: 13px; color: var(--text-1); line-height: 1.65; }
.cc-val a { color: var(--text-1); transition: color .2s; }
.cc-val a:hover { color: var(--gold); }

.contact-form-wrap { padding: clamp(48px,7vw,88px) clamp(24px,5vw,72px); background: var(--bg); display: flex; flex-direction: column; justify-content: center; }
.form-heading { font-family: var(--font-d); font-size: clamp(1.3rem,2.5vw,2rem); font-weight: 700; color: var(--text-1); margin-bottom: 26px; letter-spacing: -.02em; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 14px; background: var(--bg-1); border: 1.5px solid var(--border);
  border-radius: 10px; color: var(--text-1); font-size: 14px; outline: none;
  transition: border-color .2s, box-shadow .2s; -webkit-appearance: none; resize: vertical;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-3); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-dim); }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234A4744' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; cursor: none; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.site-footer { background: var(--bg-1); border-top: 1px solid var(--border); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: clamp(28px,4vw,56px); padding: clamp(48px,6vw,80px) clamp(24px,6vw,80px); }
.footer-col--brand { padding-right: 16px; }
.footer-logo-link { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; width: fit-content; }
.footer-logo-img { width: 26px; height: 26px; filter: brightness(0) saturate(100%) invert(75%) sepia(40%) saturate(500%) hue-rotate(8deg) brightness(90%); }
.footer-tagline { font-size: 13px; color: var(--text-2); line-height: 1.72; margin-bottom: 22px; max-width: 270px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a { width: 34px; height: 34px; border-radius: 8px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-2); transition: border-color .2s, color .2s, background .2s; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
.footer-social a svg { width: 15px; height: 15px; }
.footer-col-title { font-family: var(--font-d); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--text-3); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 13.5px; color: var(--text-2); transition: color .2s, transform .2s; display: inline-block; }
.footer-links a:hover { color: var(--gold); transform: translateX(4px); }
.footer-contact-list { display: flex; flex-direction: column; gap: 11px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: var(--text-2); line-height: 1.5; }
.footer-contact-list li svg { width: 13px; height: 13px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-list a { color: var(--text-2); transition: color .2s; }
.footer-contact-list a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding: 18px clamp(24px,6vw,80px); display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--text-3); flex-wrap: wrap; gap: 8px; }
.footer-credit { color: var(--text-2); letter-spacing: 0.04em; }
.footer-credit a { color: var(--gold); font-weight: 600; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .25s ease, color .25s ease; }
.footer-credit a:hover { color: var(--gold-light); border-bottom-color: var(--gold); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .s-about { grid-template-columns: 1fr; }
  .about-visual { height: 320px; }
  .s-contact { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-col--brand { grid-column: 1 / -1; }
  .why-inner { grid-template-columns: 1fr; }
  .why-ghost { display: none; }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions .btn-nav { display: none; }
  .nav-hamburger { display: flex; }
  /* Hero on mobile */
  .hero-inner { padding-top: 100px; }
  .hero-text { padding-right: 0; }
  .hero-title { font-size: clamp(2.6rem, 12vw, 4.5rem); }
  .hero-desc { font-size: 1rem; max-width: 100%; }
  /* Trust bar on mobile - 2x2 grid instead of 4 row */
  .hero-trust { padding: 16px 14px; flex-wrap: wrap; gap: 10px; justify-content: space-around; bottom: 24px; left: 16px; right: 16px; }
  .trust-item { padding: 8px 6px; min-width: 38%; flex: 1 1 38%; }
  .trust-sep { display: none; }
  .trust-num { font-size: 1.6rem !important; }
  /* Services */
  .services-panels { flex-direction: column; min-height: auto; }
  .service-panel { min-height: 200px; border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 6px; }
  .sp-body { position: relative; padding: 28px 24px 32px; gap: 8px; }
  .sp-num { font-size: 4.5rem; top: 14px; right: 14px; color: rgba(201,168,76,.08); }
  /* Cinema break */
  .cinema-quote { font-size: clamp(1.6rem, 7vw, 2.4rem); line-height: 1.15; }
  .cinema-tag { font-size: 0.7rem; padding: 6px 14px; }
  .cinema-meta { font-size: 0.78rem; padding: 12px 18px; gap: 10px; }
  .cinema-meta .dot { display: none; }
  .cinema-meta span { flex-basis: 100%; text-align: center; }
  .cinema-meta strong { display: inline; }
  .s-cinema { height: clamp(440px, 80vh, 600px); }
  /* Experience */
  .exp-img-wrap { aspect-ratio: 1/1; }
  .exp-step-num { font-size: 2.4rem; top: 18px; left: 18px; }
  .exp-content h3 { font-size: 1.4rem; }
  .exp-content p { font-size: 0.95rem; }
  /* Form */
  .form-row { grid-template-columns: 1fr; }
  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  /* About */
  .about-stats { flex-wrap: wrap; gap: 24px; }
  .about-content { padding: clamp(32px, 7vw, 60px) 24px; }
  .section-title { font-size: clamp(1.8rem, 7vw, 2.6rem) !important; }
  /* Why Us */
  .why-item { gap: 14px; }
  .why-num { font-size: 2rem; }
  .why-content h3 { font-size: 1.2rem; }
  .why-content p { font-size: 0.94rem; }
  /* Testimonials */
  .t-card { padding: 32px 26px 28px; }
  .t-quote-mark { font-size: 4rem; }
  .t-card blockquote { font-size: 1rem; }
  .t-rating { top: 22px; right: 22px; }
  /* Contact */
  .s-contact { grid-template-columns: 1fr; }
  .contact-info { padding: clamp(40px,8vw,72px) 24px; }
  .contact-form-wrap { padding: clamp(40px,8vw,72px) 24px; }
  /* CTA */
  .cta-title { font-size: clamp(2rem, 9vw, 3rem); }
  .cta-desc { font-size: 1rem; }
  /* Inventory drag hint smaller */
  .inventory-header { flex-direction: column; align-items: flex-start; gap: 14px; }
  .car-card { width: 80vw; max-width: 340px; }
  /* Brand marquee speed */
  .brand-inner { font-size: 0.96rem; }
  /* Sections padding */
  .s-services, .s-experience, .s-testimonials, .s-why { padding-left: 20px; padding-right: 20px; }
}
@media (max-width: 480px) {
  :root { --nav-h: 60px; }
  .hero-inner { padding-top: 90px; }
  .hero-title { font-size: clamp(2.4rem, 13vw, 3.6rem); line-height: 1.04; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-actions .btn { justify-content: center; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { justify-content: center; }
  .hero-scroll-hint { display: none; }
  .hero-trust { padding: 14px 10px; bottom: 16px; left: 10px; right: 10px; }
  .trust-item { min-width: 42%; padding: 6px 4px; }
  .trust-num { font-size: 1.4rem !important; }
  .trust-label { font-size: 0.62rem; letter-spacing: 0.1em; }
  /* Section labels & titles */
  .section-label { font-size: 0.72rem; }
  /* Cinema */
  .cinema-quote em { display: inline; }
  /* Footer bottom stack */
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }
  /* Hero buttons full width */
  .btn { font-size: 0.94rem; padding: 13px 20px; }
}

/* ── Form success state ─────────────────────────────────────── */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 64px 32px;
  text-align: center;
}
.form-success h3 { font-family: var(--font-d); font-size: 1.6rem; color: var(--text-1); }
.form-success p  { color: var(--text-2); font-size: 0.97rem; line-height: 1.7; max-width: 320px; }

/* ── Inventory dragging ──────────────────────────────────────── */
#inventoryScroll.dragging { cursor: grabbing; }
#inventoryScroll.dragging .car-card { pointer-events: none; }

/* ════════════════════════════════════════════════════════════════
   CINEMATIC BREAKER — full-bleed parallax
═══════════════════════════════════════════════════════════════ */
.s-cinema {
  position: relative;
  height: clamp(520px, 75vh, 760px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
.cinema-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.cinema-img-wrap img,
.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  will-change: transform;
}
.cinema-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(8,8,11,.15) 0%, rgba(8,8,11,.65) 75%),
    linear-gradient(180deg, rgba(8,8,11,.55) 0%, rgba(8,8,11,.2) 45%, rgba(8,8,11,.7) 100%);
  z-index: 1;
}
.cinema-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 clamp(20px, 5vw, 80px);
  max-width: 1100px;
}
.cinema-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  background: rgba(201,168,76,.06);
  backdrop-filter: blur(10px);
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 28px;
}
.cinema-tag svg { width: 14px; height: 14px; }
.cinema-quote {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(2rem, 5.4vw, 4.4rem);
  line-height: 1.05;
  color: var(--text-1);
  letter-spacing: -0.02em;
  margin-bottom: 40px;
  text-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.cinema-quote em {
  font-style: italic;
  color: var(--gold);
  font-weight: 600;
}
.cinema-meta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 14px 28px;
  background: rgba(14,14,18,.55);
  border: 1px solid var(--border);
  border-radius: 100px;
  backdrop-filter: blur(14px);
  font-size: 0.86rem;
  color: var(--text-2);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
  justify-content: center;
}
.cinema-meta strong { color: var(--text-1); font-weight: 700; margin-right: 6px; font-family: var(--font-d); }
.cinema-meta .dot { color: var(--gold); opacity: .5; }

/* ════════════════════════════════════════════════════════════════
   THE EXPERIENCE — 3 step process
═══════════════════════════════════════════════════════════════ */
.s-experience {
  padding: clamp(80px, 11vw, 140px) clamp(24px, 5vw, 80px);
  background: var(--bg);
  position: relative;
}
.s-experience::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 80% at 100% 0%, rgba(201,168,76,.04) 0%, transparent 60%),
    radial-gradient(50% 60% at 0% 100%, rgba(201,168,76,.03) 0%, transparent 60%);
  pointer-events: none;
}
.exp-header {
  max-width: 720px;
  margin: 0 auto clamp(56px, 8vw, 96px);
  text-align: center;
  position: relative;
}
.exp-intro {
  color: var(--text-2);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.7;
  margin-top: 24px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.exp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.exp-step {
  position: relative;
}
.exp-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 28px;
  background: var(--bg-2);
  border: 1px solid var(--border);
}
.exp-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1), filter .8s ease;
  filter: brightness(.85) saturate(1.05);
}
.exp-step:hover .exp-img-wrap img { transform: scale(1.06); filter: brightness(1) saturate(1.15); }
.exp-step-num {
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  color: var(--gold);
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
  z-index: 2;
  letter-spacing: -0.02em;
}
.exp-content h3 {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: var(--text-1);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.exp-content p {
  color: var(--text-2);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════════════════
   HORIZONTAL GALLERY — pinned scroll
═══════════════════════════════════════════════════════════════ */
.h-gallery {
  height: 100vh;
  overflow: hidden;
  background: var(--bg);
  position: relative;
}
.h-gallery-track {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(40px, 6vw, 100px);
  height: 100%;
  width: max-content;
  will-change: transform;
}
.h-gallery-intro {
  flex-shrink: 0;
  width: clamp(360px, 32vw, 480px);
  padding: 0 32px;
}
.h-gallery-intro .section-label { display: block; margin-bottom: 16px; }
.h-gallery-intro .section-title {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  color: var(--text-1);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.h-gallery-intro p {
  color: var(--gold);
  font-size: 0.84rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
}
.h-gallery-card {
  flex-shrink: 0;
  position: relative;
  width: clamp(360px, 30vw, 460px);
  height: 70vh;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--border);
}
.h-gallery-card--tall { height: 80vh; }
.h-gallery-card--wide { width: clamp(580px, 50vw, 760px); }
.h-gallery-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.5s cubic-bezier(.2,.7,.2,1);
}
.h-gallery-card:hover img { transform: scale(1.05); }
.h-gallery-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 80px 24px 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(8,8,11,.92) 100%);
  color: var(--text-1);
  font-family: var(--font-d);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 14px;
}
.h-gallery-card figcaption span {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  padding-right: 14px;
  border-right: 1px solid var(--border-gold);
}

/* ════════════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════════ */
.s-testimonials {
  padding: clamp(80px, 11vw, 140px) clamp(24px, 5vw, 80px);
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.t-header {
  text-align: center;
  margin-bottom: clamp(48px, 7vw, 80px);
}
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}
.t-card {
  position: relative;
  padding: 40px 32px 32px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  transition: transform .5s cubic-bezier(.2,.7,.2,1), border-color .5s, background .5s;
}
.t-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  background: var(--bg-2);
}
.t-quote-mark {
  font-family: 'Georgia', serif;
  font-size: 5rem;
  line-height: .8;
  color: var(--gold);
  opacity: .55;
  margin-bottom: 8px;
  font-weight: 700;
}
.t-card blockquote {
  font-family: var(--font-d);
  font-weight: 600;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.5;
  color: var(--text-1);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  flex: 1;
}
.t-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.t-card figcaption strong {
  font-weight: 700;
  color: var(--text-1);
  font-size: 0.96rem;
}
.t-card figcaption span {
  color: var(--text-2);
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}
.t-card--featured {
  background: linear-gradient(160deg, rgba(201,168,76,.07) 0%, var(--bg-2) 70%);
  border-color: var(--border-gold);
}
.t-rating {
  position: absolute;
  top: 28px; right: 28px;
  display: inline-flex;
  gap: 2px;
  color: var(--gold);
}
.t-rating svg { width: 14px; height: 14px; fill: currentColor; }

/* ════════════════════════════════════════════════════════════════
   CINEMATIC CTA (full bleed)
═══════════════════════════════════════════════════════════════ */
.s-cta--cinematic {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(520px, 70vh, 720px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.s-cta--cinematic::before { display: none; }
.cta-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.cta-bg-img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 768px) {
  .cta-bg-wrap, .cinema-img-wrap { inset: -4% 0; }
}
.cta-bg-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(201,168,76,.10) 0%, rgba(8,8,11,.62) 65%),
    linear-gradient(180deg, rgba(8,8,11,.55) 0%, rgba(8,8,11,.3) 50%, rgba(8,8,11,.78) 100%);
  z-index: 1;
}
.s-cta--cinematic .cta-inner { position: relative; z-index: 2; }

/* ════════════════════════════════════════════════════════════════
   SCRUB title chars
═══════════════════════════════════════════════════════════════ */
.scrub-char { display: inline-block; }

/* ════════════════════════════════════════════════════════════════
   PERFORMANCE — promote layers for smoother scroll
═══════════════════════════════════════════════════════════════ */
.hero-bg, .about-img, .cinema-img-wrap img,
.showcase-img, .car-card-img, .exp-img-wrap img {
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* ════════════════════════════════════════════════════════════════
   V3 ADDITIONS — real-brand elements + premium micro-interactions
═══════════════════════════════════════════════════════════════ */

/* Hero rating stat (static 4.3★) */
.trust-num-static { font-family: var(--font-d); font-size: clamp(1.7rem,3vw,2.5rem); font-weight: 800; color: var(--text-1); line-height: 1; }
.trust-star { color: var(--gold) !important; }

/* Car card spec subtitle line */
.car-meta-line {
  font-size: 11.5px; color: var(--text-2); letter-spacing: .02em; line-height: 1.5;
  padding-bottom: 2px;
}

/* Inventory "more in stock" CTA card */
.car-card--cta {
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(201,168,76,.10) 0%, transparent 60%),
    var(--bg-1);
  border-color: var(--border-gold);
}
.car-cta-inner { padding: 40px 30px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.car-cta-num { font-family: var(--font-d); font-size: 3.4rem; font-weight: 800; color: var(--gold); line-height: .9; letter-spacing: -.03em; }
.car-cta-num span { font-size: 2rem; vertical-align: top; }
.car-cta-title { font-family: var(--font-d); font-size: 1.3rem; font-weight: 700; color: var(--text-1); }
.car-cta-text { font-size: .9rem; color: var(--text-2); line-height: 1.6; max-width: 240px; }
.car-card--cta:hover { transform: translateY(-6px); box-shadow: 0 24px 64px rgba(0,0,0,.5); }

/* Testimonials footer rating bar */
.t-foot {
  margin: 48px auto 0; max-width: 1320px; text-align: center;
  font-size: .95rem; color: var(--text-2); letter-spacing: .02em;
  display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap;
}
.t-foot strong { color: var(--text-1); font-weight: 700; }
.t-foot-stars { color: var(--gold); font-size: 1.15rem; letter-spacing: 2px; }
.t-foot-half { opacity: .45; }

/* ── PREMIUM: cursor spotlight glow that follows pointer in dark sections ── */
.spotlight {
  position: fixed; top: 0; left: 0; width: 480px; height: 480px;
  margin: -240px 0 0 -240px; border-radius: 50%; pointer-events: none; z-index: 1;
  background: radial-gradient(circle, rgba(201,168,76,.10) 0%, rgba(201,168,76,.04) 35%, transparent 70%);
  opacity: 0; transition: opacity .4s ease; mix-blend-mode: screen; will-change: transform;
}
.spotlight.on { opacity: 1; }
@media (pointer: coarse) { .spotlight { display: none; } }

/* ── PREMIUM: 3D tilt on inventory cards ── */
.inventory-track { perspective: 1400px; }
.car-card { transform-style: preserve-3d; }
.car-card .car-card-img,
.car-card .car-card-body { transform: translateZ(0.01px); }

/* ── PREMIUM: image clip-path reveal on scroll ── */
.exp-img-wrap img, .h-gallery-card img, .about-img {
  clip-path: inset(0 0 0 0);
}
.reveal-clip { clip-path: inset(0 100% 0 0); transition: clip-path 1.1s cubic-bezier(.22,.7,.2,1); }
.reveal-clip.in { clip-path: inset(0 0 0 0); }

/* gallery caption legibility — stronger scrim */
.h-gallery-card figcaption {
  background: linear-gradient(180deg, transparent, rgba(8,8,11,.55) 45%, rgba(8,8,11,.92) 100%);
}

/* RESPONSIVE — new sections */
@media (max-width: 1024px) {
  .exp-steps { grid-template-columns: repeat(2, 1fr); }
  .t-grid { grid-template-columns: repeat(2, 1fr); }
  .h-gallery { height: auto; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .h-gallery-track { padding: 80px clamp(24px, 5vw, 60px); width: max-content; }
}
@media (max-width: 768px) {
  .exp-steps { grid-template-columns: 1fr; gap: 40px; }
  .t-grid { grid-template-columns: 1fr; }
  .cinema-quote { font-size: clamp(1.6rem, 8vw, 2.4rem); }
  .h-gallery-card { width: 78vw; height: 60vh; }
  .h-gallery-card--wide { width: 88vw; }
  .h-gallery-card--tall { height: 65vh; }
  .h-gallery-intro { width: 78vw; padding: 0 16px; }
  .t-foot { font-size: .85rem; padding: 0 16px; }
  .car-meta-line { font-size: 11px; }
}
