/* BIG ATTITUDE CARS LTD — Luxury Edition v2
   Palette: oxblood × cream × muted gold
   Display: Playfair Display (heavy)
   Body:    DM Sans
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;0,900;1,500;1,700;1,900&family=DM+Sans:wght@300;400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:     #F8F4ED;
  --cream-2:   #EFE7D8;
  --cream-3:   #E8DEC9;
  --white:     #FFFFFF;
  --ink:       #1A1612;
  --ink-2:     #2C2620;
  --grey:      #6B655E;
  --grey-l:    #9C958C;
  --grey-xl:   #D6CFC1;
  --red:       #C8102E;
  --red-l:     #E63946;
  --red-d:     #9A0B23;
  --gold:      #B89968;
  --gold-l:    #D4B884;
  --gold-d:    #8E7548;
  --gold-line: rgba(184,153,104,.35);
  --green:     #25D366;
  --green-d:   #1aab52;
  --font-display: 'Playfair Display', 'Times New Roman', serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --nav-h: 76px;
  --tr: all .3s cubic-bezier(.4,0,.2,1);
  --sh-sm:  0 2px 12px rgba(26,22,18,.06);
  --sh-md:  0 8px 28px rgba(26,22,18,.08);
  --sh-lg:  0 20px 60px rgba(26,22,18,.12);
  --sh-red: 0 12px 36px rgba(200,16,46,.18);
  --radius: 4px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--red); color: var(--cream); }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream-2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-d); }

img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.red { color: var(--red); }

.grain::before {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: .04; mix-blend-mode: multiply;
}

/* NAVBAR */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(248,244,237,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gold-line);
  height: var(--nav-h);
  transition: var(--tr);
}
.navbar.scrolled { box-shadow: var(--sh-sm); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); gap: 16px; }

.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-logo { width: 52px; height: 52px; flex: none; object-fit: contain; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav-brand-main {
  font-family: var(--font-display); font-weight: 900;
  font-size: 1.2rem; color: var(--red); letter-spacing: .5px;
}
.nav-brand-main .red { color: var(--red); }
.nav-brand-sub {
  font-size: .65rem; color: var(--grey); letter-spacing: 2px;
  text-transform: uppercase; font-weight: 600; margin-top: 4px;
}

.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: .85rem; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--ink-2); position: relative;
  padding: 6px 0; transition: var(--tr);
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--red);
  transition: var(--tr);
}
.nav-links a:hover, .nav-links a.active { color: var(--red); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 32px; padding: 6px; flex-direction: column;
  justify-content: space-between; z-index: 102;
}
.hamburger span {
  display: block; width: 100%; height: 2px; background: var(--ink);
  transition: var(--tr); transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-overlay {
  position: fixed; inset: 0; background: rgba(26,22,18,.6);
  z-index: 99; opacity: 0; pointer-events: none; transition: var(--tr);
}
.nav-overlay.active { opacity: 1; pointer-events: auto; }

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: var(--cream); flex-direction: column;
    padding: 100px 32px 32px; gap: 24px;
    border-left: 1px solid var(--gold-line);
    transition: right .35s cubic-bezier(.4,0,.2,1); z-index: 101;
  }
  .nav-links.active { right: 0; }
  .nav-links a { font-size: 1rem; }
  .nav-brand-main { font-size: 1rem; }
  .nav-brand-sub { font-size: .55rem; }
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; font-family: var(--font-body); font-weight: 600;
  font-size: .85rem; letter-spacing: 1.5px; text-transform: uppercase;
  border: none; border-radius: var(--radius); cursor: pointer;
  transition: var(--tr); position: relative; overflow: hidden;
  white-space: nowrap;
}
.btn-sm { padding: 10px 20px; font-size: .75rem; }
.btn-lg { padding: 18px 36px; font-size: .9rem; }

.btn-red { background: var(--red); color: var(--cream); box-shadow: var(--sh-red); }
.btn-red:hover { background: var(--red-d); transform: translateY(-2px); box-shadow: 0 16px 44px rgba(200,16,46,.28); }

.btn-gold { background: var(--ink); color: var(--gold-l); border: 1px solid var(--gold); }
.btn-gold:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }

.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-d); transform: translateY(-2px); }

.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; position: relative;
  padding: calc(var(--nav-h) + 60px) 0 80px;
  background: var(--cream);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(184,153,104,.12), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(200,16,46,.05), transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; right: -200px; top: -100px;
  width: 600px; height: 600px; border: 1px solid var(--gold-line);
  border-radius: 50%; pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 920px; margin: 0 auto; text-align: center; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: .72rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--red); font-weight: 600; margin-bottom: 28px;
  opacity: 0; animation: fadeUp .8s .2s forwards;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; width: 32px; height: 1px; background: var(--gold);
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900; line-height: .95;
  color: var(--ink); letter-spacing: -1px;
  margin-bottom: 24px;
  opacity: 0; animation: fadeUp .9s .35s forwards;
}
.hero-brand .accent { color: var(--red); font-style: italic; }
.hero-brand.all-red { color: var(--red); }
.hero-brand .italic { font-style: italic; }

.hero-divider-top {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin: 24px 0 28px;
  opacity: 0; animation: fadeUp .9s .5s forwards;
}
.hero-divider-top .line { width: 60px; height: 1px; background: var(--gold); }
.hero-divider-top .diamond {
  width: 8px; height: 8px; background: var(--red); transform: rotate(45deg);
}

.hero-tagline {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem); color: var(--ink-2);
  margin-bottom: 16px;
  opacity: 0; animation: fadeUp .9s .6s forwards;
}

.hero-sub {
  font-size: 1rem; color: var(--grey); max-width: 640px;
  margin: 0 auto 40px; line-height: 1.7;
  opacity: 0; animation: fadeUp .9s .75s forwards;
}

.hero-btns {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
  margin-bottom: 60px;
  opacity: 0; animation: fadeUp .9s .9s forwards;
}

.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  max-width: 760px; margin: 0 auto;
  padding-top: 40px; border-top: 1px solid var(--gold-line);
  opacity: 0; animation: fadeUp .9s 1.05s forwards;
}
.hstat { text-align: center; padding: 8px; }
.hstat-num {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2rem, 4vw, 2.8rem); color: var(--red); line-height: 1;
}
.hstat-num span { color: var(--gold); font-weight: 700; }
.hstat-label {
  font-size: .68rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--grey); margin-top: 8px; font-weight: 600;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* MARQUEE */
.marquee-strip {
  background: var(--ink); color: var(--gold-l); padding: 18px 0;
  overflow: hidden; border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}
.marquee-track {
  display: flex; gap: 60px; white-space: nowrap;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 16px;
  font-size: .82rem; letter-spacing: 3px; text-transform: uppercase;
  font-weight: 600;
}
.marquee-dot {
  width: 6px; height: 6px; background: var(--red); border-radius: 50%;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* SECTIONS */
.section { padding: 100px 0; position: relative; }
.section-panel { background: var(--cream-2); }
.section-white { background: var(--white); }
.section-ink { background: var(--ink); color: var(--cream); }
.section-ink .sec-head p { color: var(--grey-xl); }
.section-ink h2, .section-ink h3 { color: var(--cream); }

.sec-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.eyebrow {
  display: inline-block; font-size: .7rem; letter-spacing: 4px;
  text-transform: uppercase; color: var(--red); font-weight: 700;
  margin-bottom: 16px;
}
.section-ink .eyebrow { color: var(--gold-l); }

.sec-head h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.4rem); line-height: 1.1;
  color: var(--ink); margin-bottom: 20px;
}
.sec-head h2 em { color: var(--red); font-style: italic; font-weight: 700; }
.sec-head h2 strong { color: var(--ink); font-weight: 900; }
.sec-head p { color: var(--grey); font-size: 1.05rem; }

.gold-rule {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin-top: 28px;
}
.gold-rule::before, .gold-rule::after {
  content: ''; width: 60px; height: 1px; background: var(--gold);
}
.gold-rule .diamond {
  width: 9px; height: 9px; background: var(--red); transform: rotate(45deg);
}

/* FEATURE CARDS */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.feat-card {
  background: var(--white); padding: 40px 32px;
  border: 1px solid var(--cream-3); border-radius: var(--radius);
  position: relative; transition: var(--tr);
  box-shadow: var(--sh-sm);
}
.feat-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--red); opacity: 0; transition: var(--tr);
}
.feat-card:hover {
  transform: translateY(-6px); box-shadow: var(--sh-md);
  border-color: var(--gold);
}
.feat-card:hover::before { opacity: 1; }

.feat-num {
  font-family: var(--font-display); font-style: italic;
  font-size: 2.4rem; font-weight: 700; color: var(--gold);
  display: block; line-height: 1; margin-bottom: 14px;
}
.feat-icon { font-size: 1.8rem; display: block; margin-bottom: 18px; }
.feat-card h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.4rem; color: var(--ink); margin-bottom: 12px;
}
.feat-card p { color: var(--grey); font-size: .95rem; line-height: 1.7; }

/* CAR CARDS */
.cars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.car-card {
  background: var(--white); border: 1px solid var(--cream-3);
  border-radius: var(--radius); overflow: hidden;
  transition: var(--tr); box-shadow: var(--sh-sm);
  display: flex; flex-direction: column;
}
.car-card:hover {
  transform: translateY(-8px); box-shadow: var(--sh-lg);
  border-color: var(--gold);
}
.car-img-wrap {
  display: block; position: relative; overflow: hidden;
  background: var(--cream-2); aspect-ratio: 16/10;
}
.car-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.4,0,.2,1);
}
.car-card:hover .car-img-wrap img { transform: scale(1.06); }
.car-badges {
  position: absolute; top: 16px; left: 16px; right: 16px;
  display: flex; gap: 8px; flex-wrap: wrap;
}
.badge {
  display: inline-block; padding: 6px 12px; font-size: .65rem;
  font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  border-radius: 2px;
}
.badge-foreign { background: var(--ink); color: var(--gold-l); }
.badge-hot { background: var(--red); color: var(--cream); }
.badge-new { background: var(--gold); color: var(--ink); }
.price-badge {
  position: absolute; bottom: 16px; right: 16px;
  background: rgba(248,244,237,.95); color: var(--ink);
  padding: 8px 14px; font-size: .72rem; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  border: 1px solid var(--gold-line); backdrop-filter: blur(8px);
}

.car-body { padding: 28px 26px; display: flex; flex-direction: column; flex: 1; }
.car-name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.4rem; line-height: 1.2; margin-bottom: 16px;
}
.car-name a { color: var(--ink); transition: var(--tr); }
.car-name a:hover { color: var(--red); }

.car-specs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px;
  margin-bottom: 20px;
}
.spec { font-size: .82rem; color: var(--grey); display: flex; align-items: center; gap: 6px; }
.car-divider { height: 1px; background: var(--cream-3); margin-bottom: 20px; }
.car-btns { display: flex; gap: 10px; margin-top: auto; }
.car-btns .btn { flex: 1; padding: 12px 14px; font-size: .72rem; }

.car-card.placeholder {
  background: var(--cream-2);
  border: 2px dashed var(--gold);
  align-items: center; justify-content: center;
  padding: 60px 32px; text-align: center;
  min-height: 460px;
}
.car-card.placeholder:hover { transform: translateY(-4px); }
.placeholder-icon {
  font-size: 2.6rem; color: var(--red); margin-bottom: 20px;
}
.placeholder h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.4rem; color: var(--ink); margin-bottom: 12px;
}
.placeholder p { color: var(--grey); font-size: .9rem; margin-bottom: 24px; }

/* SHOWCASE */
.showcase {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
@media (max-width: 900px) {
  .showcase { grid-template-columns: 1fr; gap: 40px; }
}
.showcase-text h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15;
  margin-bottom: 24px; color: var(--ink);
}
.showcase-text h2 em { color: var(--red); font-style: italic; }
.showcase-text p { color: var(--grey); margin-bottom: 18px; }
.showcase-text .btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.showcase-visual {
  position: relative; aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  border-radius: var(--radius); padding: 60px 48px;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
}
.showcase-visual::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(184,153,104,.18), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(200,16,46,.15), transparent 40%);
}
.showcase-visual > * { position: relative; z-index: 2; }
.showcase-mark {
  font-family: var(--font-display); font-weight: 900;
  font-size: 4rem; color: var(--gold-l); line-height: .9;
  letter-spacing: -1px;
}
.showcase-mark em { color: var(--red-l); font-style: italic; }
.showcase-detail {
  border-top: 1px solid var(--gold); padding-top: 24px;
  color: var(--cream);
}
.showcase-detail-label {
  font-size: .68rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-l); font-weight: 600; margin-bottom: 8px;
}
.showcase-detail-value {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.3rem; color: var(--cream);
}

/* FIND / CONTACT */
.find-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 56px; align-items: start;
}
@media (max-width: 900px) {
  .find-grid { grid-template-columns: 1fr; gap: 36px; }
}
.ci-list { display: flex; flex-direction: column; gap: 28px; }
.ci-item { display: flex; gap: 20px; align-items: flex-start; }
.ci-icon {
  width: 48px; height: 48px; flex: none;
  background: var(--white); border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.ci-item h4 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.05rem; color: var(--ink); margin-bottom: 4px;
}
.ci-item p { color: var(--grey); font-size: .95rem; line-height: 1.6; }
.ci-item a { color: var(--red); font-weight: 600; transition: var(--tr); }
.ci-item a:hover { color: var(--red-d); text-decoration: underline; }

.map-wrap {
  aspect-ratio: 1/1; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--gold-line);
  box-shadow: var(--sh-md);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; filter: saturate(.85); }

/* TESTIMONIALS */
.rev-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.rev-card {
  background: var(--white); border: 1px solid var(--cream-3);
  padding: 36px 32px; border-radius: var(--radius);
  position: relative; box-shadow: var(--sh-sm);
}
.rev-card::before {
  content: '\201C'; position: absolute; top: 8px; right: 24px;
  font-family: var(--font-display); font-size: 5rem; color: var(--gold);
  line-height: 1; font-weight: 900; opacity: .35;
}
.rev-stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.rev-text {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 1.05rem; color: var(--ink-2); line-height: 1.7; margin-bottom: 24px;
}
.rev-author { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--cream-3); }
.rev-av {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--red); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem; letter-spacing: 1px;
}
.rev-name { font-weight: 700; color: var(--ink); font-size: .95rem; }
.rev-loc { font-size: .78rem; color: var(--grey); margin-top: 2px; }

/* CTA BANNER */
.cta-banner {
  background: var(--ink); color: var(--cream);
  padding: 100px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(184,153,104,.12), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(200,16,46,.15), transparent 50%);
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner .big-text {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.05;
  margin-bottom: 24px; color: var(--cream);
}
.cta-banner .big-text em { color: var(--red-l); font-style: italic; }
.cta-banner p {
  max-width: 600px; margin: 0 auto 40px; color: var(--grey-xl);
  font-size: 1.05rem;
}
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* PAGE HERO */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  background: var(--cream-2); text-align: center;
  border-bottom: 1px solid var(--gold-line);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(184,153,104,.12), transparent 50%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 4rem); color: var(--ink);
  margin: 14px 0 18px; line-height: 1.05;
}
.page-hero p { color: var(--grey); font-size: 1.05rem; max-width: 640px; margin: 0 auto; }

/* FILTER BAR */
.filter-bar {
  background: var(--white); border: 1px solid var(--cream-3);
  border-radius: var(--radius); padding: 24px;
  margin-bottom: 36px; box-shadow: var(--sh-sm);
}
.filter-inner {
  display: flex; gap: 20px; flex-wrap: wrap; align-items: flex-end;
}
.fg { flex: 1; min-width: 160px; }
.fg label {
  display: block; font-size: .7rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--grey); font-weight: 600;
  margin-bottom: 8px;
}
.fg select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--cream-3);
  background: var(--cream); color: var(--ink); font-family: var(--font-body);
  font-size: .9rem; border-radius: var(--radius); cursor: pointer;
  transition: var(--tr);
}
.fg select:focus { outline: none; border-color: var(--red); }
.freset {
  padding: 12px 20px; background: var(--ink); color: var(--cream);
  border: none; border-radius: var(--radius); font-family: var(--font-body);
  font-size: .8rem; letter-spacing: 1px; text-transform: uppercase;
  font-weight: 600; cursor: pointer; transition: var(--tr);
}
.freset:hover { background: var(--red); }
.inv-count { color: var(--grey); font-size: .9rem; margin-bottom: 24px; text-align: center; }
.inv-count strong { color: var(--red); font-weight: 700; }

/* CAR DETAIL */
.det-grid {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 56px; align-items: start;
}
@media (max-width: 900px) {
  .det-grid { grid-template-columns: 1fr; gap: 36px; }
}
.det-imgs { display: flex; flex-direction: column; gap: 16px; }
.det-main, .det-int {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--cream-3); box-shadow: var(--sh-md);
  background: var(--white);
}
.det-int { position: relative; }
.int-cap {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(26,22,18,.85); color: var(--gold-l);
  padding: 8px 16px; font-size: .72rem; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 600;
}

.det-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem); line-height: 1.1;
  color: var(--ink); margin-bottom: 16px;
}
.det-badges { display: flex; gap: 8px; margin-bottom: 28px; }
.specs-tbl {
  width: 100%; border-collapse: collapse; margin-bottom: 32px;
  background: var(--white); border: 1px solid var(--cream-3);
  border-radius: var(--radius); overflow: hidden;
}
.specs-tbl tr { border-bottom: 1px solid var(--cream-3); }
.specs-tbl tr:last-child { border-bottom: none; }
.specs-tbl td {
  padding: 14px 20px; font-size: .9rem;
}
.specs-tbl td:first-child {
  color: var(--grey); font-weight: 600; letter-spacing: .5px;
  width: 40%; background: var(--cream);
  text-transform: uppercase; font-size: .75rem;
}
.specs-tbl td:last-child { color: var(--ink); font-weight: 600; }

.price-box {
  background: var(--cream-2); border: 1px solid var(--gold);
  padding: 24px; border-radius: var(--radius); margin-bottom: 24px;
}
.price-box h4 {
  font-family: var(--font-display); font-weight: 700;
  color: var(--red); font-size: 1.1rem; margin-bottom: 8px;
}
.price-box p { color: var(--grey); font-size: .9rem; line-height: 1.6; }
.det-btns { display: flex; flex-direction: column; gap: 12px; }
.det-btns .btn { width: 100%; }
.back-link {
  color: var(--red); font-size: .72rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 16px; transition: var(--tr);
}
.back-link:hover { color: var(--red-d); transform: translateX(-4px); }

/* FLOATING BUTTONS */
.floating-btns {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  display: flex; flex-direction: column; gap: 12px;
}
.float-btn {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--white); box-shadow: var(--sh-lg);
  position: relative; transition: var(--tr);
}
.float-call { background: var(--red); }
.float-call:hover { background: var(--red-d); transform: scale(1.1); }
.float-wa { background: var(--green); }
.float-wa:hover { background: var(--green-d); transform: scale(1.1); }
.float-tip {
  position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
  background: var(--ink); color: var(--cream);
  padding: 6px 12px; border-radius: var(--radius); font-size: .75rem;
  white-space: nowrap; opacity: 0; pointer-events: none; transition: var(--tr);
  letter-spacing: 1px; text-transform: uppercase; font-weight: 600;
}
.float-btn:hover .float-tip { opacity: 1; right: 76px; }

/* FOOTER */
.footer {
  background: var(--ink); color: var(--grey-xl);
  padding: 80px 0 0; position: relative;
}
.footer::before {
  content: ''; position: absolute; left: 0; right: 0; top: 0;
  height: 4px; background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1.4fr;
  gap: 56px; margin-bottom: 60px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}
.footer-brand-row { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.footer-logo { width: 60px; height: 60px; flex: none; object-fit: contain; }
.footer-brand {
  font-family: var(--font-display); font-weight: 900;
  font-size: 1.5rem; color: var(--cream); line-height: 1;
}
.footer-brand .red { color: var(--red-l); }
.footer-brand-sub {
  display: block; font-size: .65rem; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold-l);
  font-weight: 600; margin-top: 4px;
}
.footer-tag { color: var(--grey-xl); font-size: .9rem; line-height: 1.7; margin: 20px 0; }
.footer-social { display: flex; flex-direction: column; gap: 8px; }
.slink {
  font-size: .85rem; color: var(--grey-xl); transition: var(--tr);
  display: inline-flex; align-items: center; gap: 8px;
}
.slink:hover { color: var(--gold-l); }

.footer-col h4 {
  font-family: var(--font-display); font-weight: 700;
  color: var(--gold-l); font-size: 1rem; margin-bottom: 20px;
  letter-spacing: 1px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: var(--grey-xl); font-size: .9rem; transition: var(--tr);
}
.footer-links a:hover { color: var(--gold-l); padding-left: 6px; }

.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.fci {
  display: flex; gap: 10px; font-size: .85rem;
  color: var(--grey-xl); line-height: 1.6;
}
.fci a { color: var(--gold-l); transition: var(--tr); }
.fci a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid rgba(184,153,104,.2); padding: 28px 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .8rem; color: var(--grey-l); }

/* ANIMATIONS */
.anim {
  opacity: 0; transform: translateY(24px);
  transition: opacity .9s cubic-bezier(.4,0,.2,1), transform .9s cubic-bezier(.4,0,.2,1);
}
.anim.in { opacity: 1; transform: translateY(0); }

.mt-24 { margin-top: 24px; }

/* ABOUT */
.about-content { max-width: 820px; margin: 0 auto; }
.about-content p {
  color: var(--ink-2); font-size: 1.05rem; line-height: 1.85;
  margin-bottom: 24px;
}
.about-content p.lead {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 1.3rem; color: var(--ink); line-height: 1.6;
  border-left: 3px solid var(--red); padding-left: 24px; margin: 32px 0;
}
.about-content h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.5rem; color: var(--red); margin: 40px 0 16px;
}

/* CEO SECTION */
.ceo-grid {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 56px; align-items: center;
  max-width: 1080px; margin: 0 auto;
}
@media (max-width: 800px) {
  .ceo-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
}
.ceo-photo-wrap {
  position: relative; aspect-ratio: 4/5;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--gold-line);
}
.ceo-photo-wrap::before {
  content: ''; position: absolute; inset: -8px;
  border: 1px solid var(--gold); border-radius: var(--radius);
  pointer-events: none; z-index: -1;
}
.ceo-photo-wrap img {
  width: 100%; height: 100%; object-fit: cover;
}
.ceo-info .eyebrow { display: inline-block; }
.ceo-name {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem); color: var(--ink);
  line-height: 1.1; margin: 12px 0 8px;
}
.ceo-title {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.15rem; color: var(--red); margin-bottom: 24px;
  font-weight: 600;
}
.ceo-divider {
  width: 60px; height: 2px; background: var(--gold);
  margin-bottom: 24px;
}
@media (max-width: 800px) {
  .ceo-divider { margin-left: auto; margin-right: auto; }
  .ceo-photo-wrap { max-width: 360px; margin: 0 auto; }
}
.ceo-bio {
  color: var(--ink-2); font-size: 1rem; line-height: 1.75;
  margin-bottom: 16px;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .container { padding: 0 18px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .car-btns { flex-direction: column; }
  .floating-btns { bottom: 16px; right: 16px; }
  .float-btn { width: 50px; height: 50px; font-size: 1.2rem; }
}
