/* ============================================================
   MIRZA AUTO SALES — Premium Redesign
   Aesthetic: Warm Dark Automotive · Crimson Edge · Editorial
   Fonts: Big Shoulders Display + Outfit + Bebas Neue
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@700;800;900&family=Outfit:wght@300;400;500;600&family=Bebas+Neue&family=Barlow+Condensed:wght@500;600;700&display=swap');

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --black:       #07060a;
  --black-mid:   #0d0c11;
  --black-light: #141219;
  --black-card:  #100f16;
  --off-white:   #f4f0ea;
  --gray-200:    #e4dfd8;
  --gray-400:    #a09890;
  --gray-600:    #685e56;
  --red:         #d42222;
  --red-dark:    #a81a1a;
  --red-light:   #f03838;
  --red-pale:    #fff0f0;
  --white:       #faf7f3;
  --text-dark:   #140f0e;

  --font-display: 'Big Shoulders Display', sans-serif;
  --font-cond:    'Barlow Condensed', sans-serif;
  --font-body:    'Outfit', sans-serif;

  --nav-h: 84px;
  --ease:  cubic-bezier(.22,1,.36,1);
  --ease-in: cubic-bezier(.36,0,1,.6);
  --spring: cubic-bezier(.34,1.56,.64,1);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Grain texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .032;
  pointer-events: none;
  z-index: 9999;
}

/* ── Layout ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}
.section     { padding: 80px 0; }
.section-sm  { padding: 52px 0; }

/* ── Typography ────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-cond);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: .875rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  flex-shrink: 0;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: .93;
  letter-spacing: -.01em;
  color: var(--black);
  text-transform: uppercase;
}
.section-heading.light { color: var(--white); }
.section-heading .accent { color: var(--red); }

.section-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-600);
  max-width: 520px;
  margin-top: 1.125rem;
}
.section-body.light { color: rgba(250,247,243,.6); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-cond);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .95rem 2.25rem;
  border-radius: 3px;
  transition: all .3s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-gold {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(212,34,34,0);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(212,34,34,.45);
  background: var(--red-light);
}

.btn-white {
  background: var(--white);
  color: var(--black);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(250,247,243,.2); }

.btn-outline-white {
  background: transparent;
  border: 1.5px solid rgba(250,247,243,.4);
  color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-outline-gold {
  background: transparent;
  border: 1.5px solid var(--red);
  color: var(--red);
}
.btn-outline-gold:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--black);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--black-mid);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(7,6,10,.4);
}

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 999;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  background: transparent;
  padding-top: 20px;
}
.nav.scrolled {
  background: rgba(7,6,10,.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 4px 30px rgba(0,0,0,.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 1.5rem;
}

.nav-logo img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: transform .3s var(--ease);
}
.nav-logo:hover img { transform: scale(1.04); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-family: var(--font-cond);
  font-size: .825rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(250,247,243,.72);
  padding: .6rem 1rem;
  border-radius: 2px;
  transition: all .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 1rem; right: 1rem;
  height: 1.5px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-phone-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-cond);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--red);
  white-space: nowrap;
  transition: color .2s;
}
.nav-phone:hover { color: var(--red-light); }
.nav-phone svg { width: 15px; height: 15px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all .3s var(--ease);
  border-radius: 1px;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(7,6,10,.97);
  backdrop-filter: blur(20px);
  padding: 1.5rem 1.5rem 2.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
  z-index: 998;
  border-top: 1.5px solid var(--red);
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-menu a {
  display: block;
  font-family: var(--font-cond);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(250,247,243,.8);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s, padding-left .2s;
}
.mobile-menu a:hover { color: var(--red); padding-left: .5rem; }
.mobile-phone-row {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(212,34,34,.1);
  border: 1px solid rgba(212,34,34,.25);
  border-radius: 3px;
  color: var(--red);
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: .05em;
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--black);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(7,6,10,.97) 38%, rgba(7,6,10,.62) 72%, rgba(7,6,10,.28) 100%),
    linear-gradient(to top, rgba(7,6,10,.95) 0%, transparent 55%);
  z-index: 1;
}
.hero-overlay::after {
  content: '';
  position: absolute;
  left: -10%;
  top: 20%;
  width: 70%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(212,34,34,.13) 0%, transparent 65%);
  filter: blur(80px);
}

.hero-stripe {
  position: absolute;
  top: 0; bottom: 0;
  left: 43%;
  width: 1px;
  background: linear-gradient(to bottom, transparent 5%, rgba(212,34,34,.45) 30%, rgba(212,34,34,.45) 70%, transparent 95%);
  transform: skewX(-5deg);
  z-index: 2;
  opacity: .5;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: calc(var(--nav-h) + 60px) 0 0;
  flex: 1;
  display: flex;
  align-items: center;
}

.hero-text { max-width: 720px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  font-family: var(--font-cond);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(212,34,34,.9);
  border: 1px solid rgba(212,34,34,.3);
  padding: .4rem 1rem .4rem .875rem;
  border-radius: 2px;
  margin-bottom: 1.75rem;
  background: rgba(212,34,34,.06);
  backdrop-filter: blur(4px);
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.7); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 10vw, 9.5rem);
  font-weight: 900;
  line-height: .88;
  color: var(--white);
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.hero-headline .gold-line {
  color: var(--red);
  display: block;
  text-shadow: 0 0 140px rgba(212,34,34,.3);
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(250,247,243,.62);
  line-height: 1.85;
  margin-bottom: 2.75rem;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-phone-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.hero-phone-label {
  font-family: var(--font-cond);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(250,247,243,.3);
}
.hero-phone-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--red);
  letter-spacing: .05em;
  line-height: 1;
  transition: color .2s;
}
.hero-phone-number:hover { color: var(--red-light); }

/* Stats bar */
.hero-stats {
  position: relative;
  z-index: 3;
  background: rgba(13,12,17,.94);
  border-top: 1px solid rgba(212,34,34,.2);
  backdrop-filter: blur(12px);
}
.stats-inner {
  display: flex;
  justify-content: center;
}
.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.875rem 3.75rem;
  position: relative;
}
.stat-block + .stat-block::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22%; bottom: 22%;
  width: 1px;
  background: rgba(255,255,255,.08);
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--red);
  line-height: 1;
  letter-spacing: .03em;
}
.stat-label {
  font-family: var(--font-cond);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(250,247,243,.38);
  margin-top: .375rem;
}

/* ── Trust Marquee ─────────────────────────────────────────── */
.trust-marquee {
  background: var(--red);
  overflow: hidden;
  padding: .875rem 0;
  position: relative;
  z-index: 2;
}
.trust-marquee-inner {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.trust-item {
  display: flex;
  align-items: center;
  padding: 0 2.25rem;
  font-family: var(--font-cond);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
  white-space: nowrap;
  gap: 2.25rem;
}
.trust-item::after {
  content: '✦';
  font-size: .55rem;
  color: rgba(255,255,255,.45);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Why Section ───────────────────────────────────────────── */
.why-section {
  background: var(--black-mid);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: 'MIRZA';
  position: absolute;
  right: -3%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(10rem, 20vw, 22rem);
  font-weight: 900;
  color: rgba(255,255,255,.022);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -.02em;
}

.why-header {
  max-width: 520px;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.why-card {
  background: rgba(255,255,255,.028);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 5px;
  padding: 2.5rem 2.25rem;
  position: relative;
  overflow: hidden;
  transition: all .4s var(--ease);
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), rgba(212,34,34,0));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.why-card::after {
  content: attr(data-num);
  position: absolute;
  bottom: -.5rem;
  right: 1.25rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 7rem;
  color: rgba(255,255,255,.035);
  line-height: 1;
  pointer-events: none;
  transition: color .4s;
}
.why-card:hover {
  background: rgba(212,34,34,.045);
  border-color: rgba(212,34,34,.2);
  transform: translateY(-8px);
  box-shadow: 0 28px 64px rgba(0,0,0,.4), 0 0 0 1px rgba(212,34,34,.12);
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover::after { color: rgba(212,34,34,.055); }

.why-card-icon {
  width: 54px;
  height: 54px;
  border: 1.5px solid rgba(212,34,34,.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.625rem;
  background: rgba(212,34,34,.05);
  transition: all .3s var(--ease);
}
.why-card:hover .why-card-icon { border-color: var(--red); background: rgba(212,34,34,.1); }
.why-card-icon svg { width: 24px; height: 24px; color: var(--red); }

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: .875rem;
}
.why-card p {
  font-size: .9rem;
  color: rgba(250,247,243,.48);
  line-height: 1.85;
}

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials-section {
  background: var(--off-white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '"';
  position: absolute;
  left: -2%;
  top: -8%;
  font-family: var(--font-display);
  font-size: clamp(18rem, 32vw, 38rem);
  font-weight: 900;
  color: rgba(212,34,34,.048);
  line-height: 1;
  pointer-events: none;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}
.testimonials-header .eyebrow { justify-content: center; }
.testimonials-header .section-body { margin: .875rem auto 0; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.review-card {
  background: var(--white);
  border-radius: 5px;
  padding: 2.5rem;
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
  transition: all .4s var(--ease);
}
.review-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2.5px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 64px rgba(20,15,12,.13);
  border-color: rgba(212,34,34,.15);
}
.review-card:hover::after { transform: scaleX(1); }

.review-quote-icon {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  line-height: .7;
  color: var(--red);
  opacity: .16;
  margin-bottom: .5rem;
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.125rem;
}
.review-stars svg { width: 16px; height: 16px; fill: var(--red); color: var(--red); }
.review-text {
  font-size: .925rem;
  font-weight: 400;
  color: var(--gray-600);
  line-height: 1.9;
  font-style: italic;
  margin-bottom: 1.75rem;
}
.review-author {
  display: flex;
  align-items: center;
  gap: .875rem;
}
.review-avatar {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
}
.review-name {
  font-family: var(--font-cond);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--black);
  text-transform: uppercase;
}
.review-source {
  font-size: .75rem;
  color: var(--gray-400);
  margin-top: .1rem;
}

/* ── Services ──────────────────────────────────────────────── */
.services-section {
  background: var(--black-mid);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(212,34,34,.07) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 50%, rgba(212,34,34,.05) 0%, transparent 55%);
}

.services-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.service-card {
  background: rgba(255,255,255,.028);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 5px;
  padding: 3.25rem;
  position: relative;
  overflow: hidden;
  transition: all .4s var(--ease);
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,34,34,.12), transparent 70%);
  transition: transform .6s var(--ease);
}
.service-card:hover {
  border-color: rgba(212,34,34,.22);
  background: rgba(212,34,34,.04);
  transform: translateY(-5px);
}
.service-card:hover::after { transform: scale(1.6); }

.service-icon-wrap {
  width: 60px; height: 60px;
  border: 1.5px solid rgba(212,34,34,.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  background: rgba(212,34,34,.055);
  transition: all .3s;
}
.service-card:hover .service-icon-wrap { border-color: var(--red); background: rgba(212,34,34,.12); }
.service-icon-wrap svg { width: 28px; height: 28px; color: var(--red); }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.service-card p {
  font-size: .925rem;
  color: rgba(250,247,243,.48);
  line-height: 1.88;
  margin-bottom: 2.25rem;
}

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-section {
  background: var(--red);
  padding: 84px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, var(--red-light) 100%);
}
.cta-section::after {
  content: 'GO';
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(10rem, 20vw, 24rem);
  font-weight: 900;
  color: rgba(255,255,255,.055);
  line-height: 1;
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}
.cta-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.75rem);
  font-weight: 900;
  line-height: .9;
  color: var(--white);
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin-bottom: .625rem;
}
.cta-copy p {
  font-size: 1rem;
  color: rgba(255,255,255,.7);
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cta-section .btn-gold {
  background: var(--white);
  color: var(--red);
  box-shadow: 0 6px 30px rgba(0,0,0,.18);
}
.cta-section .btn-gold:hover {
  background: var(--off-white);
  color: var(--red-dark);
  box-shadow: 0 14px 44px rgba(0,0,0,.28);
}

/* ── Visit Section ─────────────────────────────────────────── */
.visit-section {
  background: var(--off-white);
  padding: 100px 0 80px;
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.visit-heading { margin-bottom: 2.75rem; }
.visit-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.visit-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.visit-info-icon {
  width: 46px; height: 46px;
  background: var(--black);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.visit-info-icon svg { width: 20px; height: 20px; color: var(--red); }
.visit-info-label {
  font-family: var(--font-cond);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: .3rem;
}
.visit-info-value {
  font-size: .975rem;
  font-weight: 500;
  color: var(--black);
  line-height: 1.6;
}
.visit-info-value a { color: var(--black); transition: color .2s; }
.visit-info-value a:hover { color: var(--red); }

.map-wrap {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(14,11,9,.17);
  height: 440px;
  border: 1px solid var(--gray-200);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--black);
  padding: 0;
}
.footer::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, rgba(212,34,34,.15) 100%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 4.5rem;
  padding: 60px 0 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,.055);
}
.footer-brand-logo {
  height: 40px;
  filter: brightness(0) invert(1);
  margin-bottom: 1.375rem;
}
.footer-brand p {
  font-size: .875rem;
  color: rgba(250,247,243,.42);
  line-height: 1.85;
  max-width: 290px;
}
.footer-social {
  display: flex;
  gap: .5rem;
  margin-top: 1.75rem;
}
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.06);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250,247,243,.42);
  transition: all .25s;
}
.social-btn:hover { background: var(--red); color: var(--white); transform: translateY(-3px); }
.social-btn svg { width: 16px; height: 16px; }

.footer-col-title {
  font-family: var(--font-cond);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.footer-links a {
  font-size: .875rem;
  color: rgba(250,247,243,.42);
  transition: all .2s;
}
.footer-links a:hover { color: var(--white); padding-left: .375rem; }

.footer-contact-rows {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  font-size: .875rem;
  color: rgba(250,247,243,.42);
}
.footer-contact-row svg { width: 14px; height: 14px; color: var(--red); flex-shrink: 0; margin-top: 3px; }
.footer-contact-row a { color: rgba(250,247,243,.42); transition: color .2s; }
.footer-contact-row a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-family: var(--font-cond);
  font-size: .75rem;
  letter-spacing: .07em;
  color: rgba(250,247,243,.22);
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(250,247,243,.22); transition: color .2s; }
.footer-bottom-links a:hover { color: rgba(250,247,243,.55); }

/* ── Scroll Reveal ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }
.reveal[data-delay="5"] { transition-delay: .5s; }

/* ── Page Hero (inner pages) ───────────────────────────────── */
.page-hero {
  background: var(--black);
  padding: calc(var(--nav-h) + 48px) 0 80px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 52px), 0 100%);
  position: relative;
  overflow: hidden;
}
.page-hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 55%, rgba(212,34,34,.11) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 25%, rgba(212,34,34,.065) 0%, transparent 50%);
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: .88;
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(250,247,243,.52);
  max-width: 500px;
  line-height: 1.78;
}

/* ── Forms ─────────────────────────────────────────────────── */
.form-section { background: var(--off-white); padding: 56px 0 80px; }

.form-card {
  background: var(--white);
  border-radius: 6px;
  padding: 3rem;
  box-shadow: 0 4px 50px rgba(14,11,9,.08);
  max-width: 840px;
  margin: 0 auto;
  border: 1px solid var(--gray-200);
}
.form-card-title {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--black);
  letter-spacing: .01em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.form-card-sub {
  font-size: .95rem;
  color: var(--gray-600);
  margin-bottom: 2.25rem;
  line-height: 1.72;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.375rem;
}
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-family: var(--font-cond);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-600);
}
.form-input, .form-select, .form-textarea {
  padding: .875rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(212,34,34,.11);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-submit { margin-top: 2rem; }

/* ── Inventory ─────────────────────────────────────────────── */
.filter-bar {
  background: var(--white);
  padding: 1rem 0;
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
  border-bottom: 2px solid var(--gray-200);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.filter-inner {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.filter-label {
  font-family: var(--font-cond);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gray-600);
}
.filter-select-dark {
  padding: .625rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 3px;
  font-family: var(--font-cond);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--text-dark);
  background: var(--white);
  cursor: pointer;
  transition: border-color .2s;
}
.filter-select-dark:focus { outline: none; border-color: var(--red); }

.inventory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 3.5rem 0 80px;
}
.car-card {
  background: var(--white);
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all .35s var(--ease);
}
.car-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 72px rgba(14,11,9,.15);
  border-color: transparent;
}
.car-img {
  position: relative;
  height: 215px;
  overflow: hidden;
  background: linear-gradient(135deg, #141219 0%, #0a080e 100%);
}
.car-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.car-card:hover .car-img img { transform: scale(1.08); }

.car-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}
.car-placeholder span {
  font-family: var(--font-cond);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.2);
}
.car-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--font-cond);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  padding: .3rem .75rem;
  border-radius: 2px;
}
.car-body { padding: 1.375rem 1.375rem 1.625rem; }
.car-year-make {
  font-family: var(--font-cond);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red-dark);
  margin-bottom: .2rem;
}
.car-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--black);
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.car-specs {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.car-spec {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-family: var(--font-cond);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--gray-400);
}
.car-spec svg { width: 13px; height: 13px; }
.car-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.125rem;
  border-top: 1px solid var(--gray-200);
}
.car-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--red-dark);
  letter-spacing: .03em;
  line-height: 1;
}
.car-price-mo {
  font-family: var(--font-cond);
  font-size: .72rem;
  font-weight: 500;
  color: var(--gray-400);
  margin-top: .2rem;
  letter-spacing: .04em;
}
.car-btns { display: flex; gap: .5rem; }
.btn-xs {
  font-family: var(--font-cond);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .5rem 1rem;
  border-radius: 2px;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
}
.btn-xs.navy { background: var(--black); color: var(--white); }
.btn-xs.navy:hover { background: var(--black-mid); }
.btn-xs.ghost { border: 1.5px solid var(--gray-200); color: var(--gray-600); }
.btn-xs.ghost:hover { border-color: var(--black); color: var(--black); }

/* ── Warranty ──────────────────────────────────────────────── */
.warranty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: center;
}
.tier-card {
  border-radius: 5px;
  padding: 2.75rem 2.25rem;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  text-align: center;
  position: relative;
  transition: all .35s var(--ease);
}
.tier-card:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(14,11,9,.1); }
.tier-card.featured {
  background: var(--black);
  border-color: var(--black);
  transform: scale(1.04);
  box-shadow: 0 28px 70px rgba(7,6,10,.45);
  z-index: 2;
}
.tier-card.featured:hover { transform: scale(1.04) translateY(-5px); }

.tier-popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-family: var(--font-cond);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem 1rem;
  border-radius: 2px;
  white-space: nowrap;
}
.tier-name {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: .5rem;
}
.tier-card.featured .tier-name { color: var(--white); }
.tier-desc { font-size: .875rem; color: var(--gray-400); margin-bottom: 1.375rem; }
.tier-card.featured .tier-desc { color: rgba(250,247,243,.42); }
.tier-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.75rem;
  color: var(--black);
  letter-spacing: .03em;
  margin-bottom: .25rem;
}
.tier-card.featured .tier-price { color: var(--red); }
.tier-duration { font-size: .825rem; color: var(--gray-400); margin-bottom: 2rem; }
.tier-card.featured .tier-duration { color: rgba(250,247,243,.32); }
.tier-features { display: flex; flex-direction: column; gap: .7rem; text-align: left; margin-bottom: 2rem; }
.tier-feature {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: var(--gray-600);
}
.tier-card.featured .tier-feature { color: rgba(250,247,243,.62); }
.tier-feature svg { width: 15px; height: 15px; color: var(--red); flex-shrink: 0; }

/* ── Trade Steps ───────────────────────────────────────────── */
.trade-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.trade-step {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 5px;
  padding: 2.25rem 1.625rem;
  text-align: center;
  position: relative;
  transition: all .35s var(--ease);
}
.trade-step:hover {
  border-color: var(--red);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(14,11,9,.1);
}
.step-num {
  width: 52px; height: 52px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  margin: 0 auto 1.375rem;
}
.trade-step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--black);
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.trade-step p { font-size: .875rem; color: var(--gray-400); line-height: 1.72; }

/* ── Contact ───────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-panel {
  background: var(--black);
  border-radius: 5px;
  padding: 3rem;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.contact-info-panel h3 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: 2.25rem;
}
.contact-row {
  display: flex;
  gap: 1rem;
  padding: 1.375rem 0;
  border-bottom: 1px solid rgba(255,255,255,.055);
}
.contact-row:last-of-type { border-bottom: none; }
.contact-row-icon {
  width: 40px; height: 40px;
  background: rgba(212,34,34,.1);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-row-icon svg { width: 18px; height: 18px; color: var(--red); }
.contact-row-label {
  font-family: var(--font-cond);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(250,247,243,.28);
  margin-bottom: .2rem;
}
.contact-row-value {
  font-size: .95rem;
  color: rgba(250,247,243,.78);
  line-height: 1.55;
}
.contact-row-value a { color: rgba(250,247,243,.78); }

/* Tab system */
.tab-bar {
  display: flex;
  gap: .375rem;
  background: var(--gray-200);
  padding: .3rem;
  border-radius: 4px;
  margin-bottom: 2rem;
}
.tab-btn {
  flex: 1;
  padding: .75rem 1rem;
  font-family: var(--font-cond);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-600);
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: all .2s;
  background: transparent;
}
.tab-btn.active {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 2px 10px rgba(14,11,9,.1);
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr; }
  .inventory-grid { grid-template-columns: repeat(2, 1fr); }
  .warranty-grid { grid-template-columns: 1fr; }
  .tier-card.featured { transform: none; }
  .trade-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-panel { position: relative; top: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  :root { --nav-h: 62px; }
  .section { padding: 60px 0; }

  .nav-links, .nav-phone-cta { display: none; }
  .hamburger { display: flex; }

  .hero-headline { font-size: clamp(4rem, 16vw, 5.5rem); }
  .hero-sub { font-size: .95rem; }

  .stats-inner { flex-wrap: wrap; }
  .stat-block { padding: 1.375rem 2rem; width: 50%; }
  .stat-block + .stat-block::before { display: none; }
  .stat-block:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08); }

  .reviews-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-buttons { justify-content: center; }
  .map-wrap { height: 300px; }

  .form-grid { grid-template-columns: 1fr; }
  .inventory-grid { grid-template-columns: 1fr; }
  .trade-steps-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .page-hero { padding-bottom: 72px; clip-path: none; }

  .why-section::before,
  .testimonials-section::before,
  .cta-section::after { display: none; }
}
