/* ============================================================
   County Line Auto Group — styles.css  (DreamHost Edition)
   Southern dealership aesthetic — v3
   ============================================================ */

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

/* ── CSS Variables ── */
:root {
  --navy:       #0d1b2a;
  --navy-mid:   #1a2e42;
  --red:        #c0392b;
  --red-dark:   #96281b;
  --gold:       #c9922a;
  --gold-light: #e8b04b;
  --cream:      #f5f0e8;
  --white:      #ffffff;
  --gray-lt:    #e8e4dc;
  --gray-mid:   #9a9288;
  --gray-dk:    #3d3530;
  --text:       #1e1814;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Barlow', sans-serif;
  --ff-cond:    'Barlow Condensed', sans-serif;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.18);
  --shadow-md:  0 6px 24px rgba(0,0,0,.22);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.3);
  --radius:     6px;
  --ease:       .26s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--ff-body); color: var(--text); background: var(--cream); line-height: 1.65; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ── Layout helpers ── */
.container   { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.text-center { text-align: center; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--ff-cond);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--ease);
  border: 2px solid transparent;
  line-height: 1;
}
.btn-red         { background: var(--red);  color: var(--white); }
.btn-red:hover   { background: var(--red-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-gold        { background: var(--gold); color: var(--white); }
.btn-gold:hover  { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-navy        { background: var(--navy); color: var(--white); }
.btn-navy:hover  { background: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline     { border-color: var(--white); color: var(--white); background: transparent; }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-outline-dark { border: 2px solid var(--navy); color: var(--navy); background: transparent; }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }

/* ── Section typography ── */
.section-eyebrow {
  font-family: var(--ff-cond);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 18px;
}
.section-title.light { color: var(--white); }
.section-sub { font-size: 1.05rem; color: var(--gray-mid); max-width: 600px; margin: 0 auto 40px; }
.section-divider {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: 2px;
  margin: 0 auto 36px;
}
.section-divider.left { margin-left: 0; }

/* ============================================================
   TOP BAR
============================================================ */
.topbar {
  background: var(--navy);
  color: var(--gray-lt);
  font-size: .82rem;
  font-family: var(--ff-cond);
  letter-spacing: .04em;
  padding: 7px 0;
  border-bottom: 2px solid var(--red);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar a { color: var(--gold-light); }
.topbar a:hover { color: var(--white); }
.topbar-left,
.topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-item svg { flex-shrink: 0; }

/* ============================================================
   HEADER / NAV
============================================================ */
header {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,.12);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo-badge {
  width: 60px;
  height: 60px;
  background: var(--navy);
  border-radius: 50%;
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.logo-badge span {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
}
.logo-text-wrap { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--navy);
  line-height: 1.1;
}
.logo-tag {
  font-family: var(--ff-cond);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
}

nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-family: var(--ff-cond);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--ease);
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--red); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: var(--ease);
  transform-origin: left;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px); left: 0;
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-top: 3px solid var(--red);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 210px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: var(--ease);
  z-index: 999;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  font-family: var(--ff-cond);
  font-weight: 600;
  font-size: .9rem;
  padding: 10px 18px;
  color: var(--navy);
  border-bottom: 1px solid var(--gray-lt);
  transition: background var(--ease);
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: var(--cream); color: var(--red); }
.dropdown-arrow { font-size: .7rem; margin-left: 4px; }
.nav-cta { margin-left: 10px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  display: block;
  transition: var(--ease);
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(13,27,42,.92) 45%, rgba(13,27,42,.6) 100%),
    url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1600&q=80') center/cover no-repeat;
}
.hero-stripe {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--red) 33%, var(--white) 33% 66%, var(--navy) 66%);
}
.hero-content { position: relative; z-index: 2; padding: 100px 0 120px; }
.hero-eyebrow {
  font-family: var(--ff-cond);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--gold-light);
}
.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 22px;
  max-width: 680px;
}
.hero h1 em { color: var(--gold-light); font-style: normal; }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  max-width: 500px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges {
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-badge {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 16px 22px;
  text-align: center;
  color: var(--white);
  min-width: 140px;
}
.hero-badge-num {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}
.hero-badge-label {
  font-family: var(--ff-cond);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-top: 4px;
}

/* Marquee */
.marquee-strip { background: var(--red); overflow: hidden; padding: 10px 0; }
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--ff-cond);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 16px;
}
.marquee-track span::after { content: '★'; color: var(--gold-light); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   WHY CARDS
============================================================ */
.why-us { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.why-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  border-bottom: 4px solid transparent;
  transition: var(--ease);
  box-shadow: var(--shadow-sm);
}
.why-card:hover {
  border-bottom-color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-icon {
  width: 64px; height: 64px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
}
.why-card h3 { font-family: var(--ff-display); font-size: 1.2rem; color: var(--navy); margin-bottom: 10px; }
.why-card p  { font-size: .92rem; color: var(--gray-mid); }

/* ============================================================
   VEHICLE CARDS
============================================================ */
.featured { background: var(--cream); }
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 48px;
}
.vehicle-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
  border: 1px solid var(--gray-lt);
  cursor: pointer;
}
.vehicle-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.vc-img-wrap { position: relative; height: 210px; overflow: hidden; background: var(--gray-lt); }
.vc-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.vehicle-card:hover .vc-img-wrap img { transform: scale(1.05); }

.vc-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--red); color: var(--white);
  font-family: var(--ff-cond);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
}
.vc-body { padding: 20px; }
.vc-year-make {
  font-family: var(--ff-cond);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 4px;
}
.vc-name {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}
.vc-specs { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 14px; }
.vc-spec  { font-size: .8rem; color: var(--gray-mid); display: flex; align-items: center; gap: 4px; }
.vc-price {
  font-family: var(--ff-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 14px;
}
.vc-price sup { font-size: .9rem; vertical-align: super; }
.vc-actions { display: flex; gap: 10px; }
.vc-actions .btn { flex: 1; text-align: center; padding: 10px 12px; font-size: .82rem; }

/* ── Vehicle card owner contact line ── */
.vc-owner {
  font-family: var(--ff-cond);
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy-mid);
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 6px 10px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 12px;
}
.vc-owner a { color: var(--red); }
.vc-owner a:hover { color: var(--red-dark); }

/* ============================================================
   FINANCING BANNER
============================================================ */
.financing-banner {
  background: linear-gradient(135deg, var(--navy) 60%, var(--navy-mid));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.financing-banner::before {
  content: '';
  position: absolute; left: -40px; top: -40px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(192,57,43,.15);
}
.financing-banner::after {
  content: '';
  position: absolute; right: -60px; bottom: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(201,146,42,.1);
}
.fin-inner {
  position: relative; z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.fin-text { max-width: 560px; }
.fin-text p { color: rgba(255,255,255,.75); font-size: 1.05rem; margin-top: 14px; }
.fin-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   HOURS STRIP
============================================================ */
.hours-strip { background: var(--navy); padding: 48px 0; }
.hours-grid-v2 {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 460px;
  margin: 32px auto 0;
}
.hour-row-v2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--navy-mid);
  padding: 18px 28px;
  border-radius: 4px;
}
.hour-row-v2:first-child { border-radius: 6px 6px 4px 4px; }
.hour-row-v2:last-child  { border-radius: 4px 4px 6px 6px; }
.hr-day {
  font-family: var(--ff-cond);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.hr-time { font-weight: 600; font-size: 1rem; color: var(--white); }
.hour-row-v2.closed .hr-time { color: var(--gray-mid); }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials { background: var(--white); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.testi-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 30px;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
}
.testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text  { font-size: .95rem; color: var(--gray-dk); margin-bottom: 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold);
}
.testi-name { font-weight: 700; font-size: .9rem; color: var(--navy); }
.testi-loc  { font-size: .78rem; color: var(--gray-mid); }

/* ============================================================
   PAGE HEROES
============================================================ */
.page-hero {
  background: linear-gradient(105deg, var(--navy) 55%, var(--navy-mid));
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 45%;
  background: url('hero-truck.png') center/cover;
  opacity: .22;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.05rem; }
.breadcrumb {
  font-family: var(--ff-cond);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.breadcrumb a { color: rgba(255,255,255,.5); }
.breadcrumb a:hover { color: var(--gold-light); }

/* ============================================================
   FILTER BAR + TABS
============================================================ */
.filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-lt);
  padding: 18px 0;
  position: sticky;
  top: 77px;
  z-index: 90;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.filter-inner { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.filter-select {
  font-family: var(--ff-cond);
  font-weight: 600;
  font-size: .88rem;
  padding: 9px 14px;
  border: 1.5px solid var(--gray-lt);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  transition: border-color var(--ease);
}
.filter-select:focus { outline: none; border-color: var(--navy); }
.filter-label {
  font-family: var(--ff-cond);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-mid);
}
.filter-count { margin-left: auto; font-family: var(--ff-cond); font-size: .88rem; color: var(--gray-mid); }

.cat-tabs { display: flex; gap: 8px; flex-wrap: wrap; padding: 32px 0 0; }
.cat-tab {
  font-family: var(--ff-cond);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 30px;
  border: 2px solid var(--gray-lt);
  color: var(--gray-dk);
  cursor: pointer;
  transition: var(--ease);
  background: var(--white);
}
.cat-tab:hover, .cat-tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ============================================================
   VEHICLE DETAIL — GALLERY / SLIDER
============================================================ */
.vd-gallery-wrap { background: #111; }

.vd-slider {
  position: relative;
  width: 100%;
  height: 520px;
  background: #000;
  overflow: hidden;
}

.vd-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.vd-slide.active { opacity: 1; pointer-events: auto; }

.vd-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #111;
}

.vd-slide-count {
  position: absolute;
  bottom: 14px; right: 18px;
  background: rgba(0,0,0,.6);
  color: var(--white);
  font-family: var(--ff-cond);
  font-size: .82rem;
  padding: 4px 14px;
  border-radius: 20px;
  z-index: 4;
}

.vd-prev, .vd-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.5);
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  z-index: 5;
}
.vd-prev { left: 14px; }
.vd-next { right: 14px; }
.vd-prev:hover, .vd-next:hover { background: var(--red); }

.vd-thumbs {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  overflow-x: auto;
  background: #1a1a1a;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) #111;
}
.vd-thumb {
  width: 96px; height: 64px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  opacity: .45;
  border: 2px solid transparent;
  flex-shrink: 0;
  transition: opacity .2s, border-color .2s;
}
.vd-thumb.active { opacity: 1; border-color: var(--gold); }
.vd-thumb:hover  { opacity: .8; }

.vd-body {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 36px;
  padding: 40px 0 80px;
  align-items: start;
}
.vd-main-title { font-family: var(--ff-display); font-size: 2.2rem; color: var(--navy); margin-bottom: 6px; }
.vd-sub {
  font-family: var(--ff-cond);
  font-size: .88rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 20px;
}
.vd-specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 20px 0; }
.vd-spec-item { background: var(--cream); border-radius: var(--radius); padding: 14px 16px; }
.vd-spec-label {
  font-family: var(--ff-cond);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-mid);
  font-weight: 700;
  margin-bottom: 3px;
}
.vd-spec-val { font-weight: 700; font-size: .97rem; color: var(--navy); }
.vd-description {
  font-size: .97rem;
  color: var(--gray-dk);
  line-height: 1.8;
  margin-top: 20px;
  border-top: 1px solid var(--gray-lt);
  padding-top: 20px;
}
.vd-sidebar {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: sticky;
  top: 90px;
}
.vd-price-box { background: var(--navy); padding: 28px 28px 20px; text-align: center; }
.vd-big-price {
  font-family: var(--ff-display);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}
.vd-big-price sup { font-size: 1.2rem; vertical-align: super; }
.vd-price-sub {
  font-family: var(--ff-cond);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-top: 6px;
}
.vd-sidebar-actions { padding: 20px 24px 24px; display: flex; flex-direction: column; gap: 10px; }
.vd-sidebar-actions .btn { text-align: center; }
.vd-contact-mini {
  border-top: 1px solid var(--gray-lt);
  padding: 16px 24px;
  font-size: .88rem;
  color: var(--gray-mid);
  text-align: center;
}
.vd-contact-mini a { color: var(--red); font-weight: 700; }

/* ── Vehicle detail inquiry box ── */
.vd-inquiry-box { padding: 0; }
.vd-inquiry-inner { padding: 18px 22px 22px; border-top: 1px solid var(--gray-lt); }
.vd-inquiry-label {
  font-family: var(--ff-cond);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 4px;
}
.vd-inquiry-title {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 14px;
}
.vd-inq-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--ff-cond);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  padding: 12px 16px;
  border-radius: var(--radius);
  margin-bottom: 8px;
  transition: background var(--ease);
  text-decoration: none;
}
.vd-inq-btn:hover { background: var(--red); }
.vd-inq-btn-alt   { background: var(--navy-mid); }
.vd-inq-btn-alt:hover { background: var(--red); }
.vd-inq-hours { font-size: .78rem; color: var(--gray-mid); text-align: center; margin-top: 8px; }

/* ============================================================
   FINANCING PAGE
============================================================ */
.fin-steps { background: var(--white); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 48px;
}
.step-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.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: var(--ff-display);
  font-weight: 900;
  font-size: 1.3rem;
  margin: 0 auto 20px;
  box-shadow: 0 4px 14px rgba(192,57,43,.35);
}
.step-card h3 { font-family: var(--ff-display); font-size: 1.15rem; color: var(--navy); margin-bottom: 10px; }
.step-card p  { font-size: .9rem; color: var(--gray-mid); }

.fin-contact-box {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 60px;
}
.fin-contact-box h2 { font-family: var(--ff-display); color: var(--white); font-size: 2rem; margin-bottom: 14px; }
.fin-contact-box p  { color: rgba(255,255,255,.7); margin-bottom: 24px; }
.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item  { display: flex; align-items: center; gap: 14px; color: var(--white); }
.contact-item-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-family: var(--ff-cond);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.contact-item span { font-size: .95rem; }

/* ============================================================
   ABOUT
============================================================ */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img { width: 100%; height: 420px; object-fit: cover; }
.about-img-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  padding: 14px 20px;
  font-family: var(--ff-display);
}
.about-img-badge span { font-size: 2rem; font-weight: 900; display: block; line-height: 1; }
.about-img-badge small {
  font-family: var(--ff-cond);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.value-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-cond);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
}
.value-chip::before {
  content: '';
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   TEAM
============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
  text-align: center;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-photo {
  height: 240px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.team-photo::after {
  content: '';
  position: absolute; bottom: -20px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 40px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
}
.team-initials {
  font-family: var(--ff-display);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255,255,255,.15);
}
.team-monogram {
  position: absolute;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 3px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold-light);
}
.team-body { padding: 26px; }
.team-name  { font-family: var(--ff-display); font-size: 1.4rem; color: var(--navy); margin-bottom: 4px; }
.team-role  {
  font-family: var(--ff-cond);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.team-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-cond);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  background: var(--cream);
  padding: 8px 18px;
  border-radius: 30px;
  transition: var(--ease);
}
.team-phone:hover { background: var(--navy); color: var(--white); }

/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 50px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.cinfo-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 16px;
}
.cinfo-icon {
  width: 48px; height: 48px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.cinfo-text h4 {
  font-family: var(--ff-cond);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.cinfo-text p, .cinfo-text a { font-size: .95rem; color: var(--gray-dk); }
.cinfo-text a:hover { color: var(--red); }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.hours-table tr { border-bottom: 1px solid var(--gray-lt); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 9px 4px; font-size: .93rem; color: var(--gray-dk); }
.hours-table td:first-child { font-weight: 700; color: var(--navy); }
.hours-table td:last-child  { text-align: right; color: var(--navy); font-weight: 600; }
.hours-table .closed-row td { color: var(--gray-mid); font-weight: 400; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 { font-family: var(--ff-display); font-size: 1.6rem; color: var(--navy); margin-bottom: 6px; }
.contact-form-wrap > p { color: var(--gray-mid); font-size: .9rem; margin-bottom: 28px; }

.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: var(--ff-cond);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-lt);
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: .92rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.map-placeholder {
  background: var(--gray-lt);
  border-radius: var(--radius);
  height: 240px;
  overflow: hidden;
  margin-top: 24px;
}
.map-placeholder iframe { width: 100%; height: 100%; border: none; }

.form-success {
  background: #d4edda; color: #155724; border: 1px solid #c3e6cb;
  border-radius: var(--radius); padding: 14px 18px; margin-bottom: 16px;
  font-family: var(--ff-cond); font-weight: 700; display: none;
}
.form-success.show { display: block; }
.form-error {
  background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb;
  border-radius: var(--radius); padding: 14px 18px; margin-bottom: 16px;
  font-family: var(--ff-cond); font-weight: 700; display: none;
}
.form-error.show { display: block; }

/* ============================================================
   FOOTER
============================================================ */
footer { background: var(--navy); color: rgba(255,255,255,.7); padding-top: 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand p { font-size: .9rem; line-height: 1.7; margin-bottom: 18px; }
.footer-brand .logo-badge { margin-bottom: 16px; }
.footer-col h4 {
  font-family: var(--ff-cond);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: .9rem; transition: color var(--ease); }
.footer-col ul li a:hover { color: var(--white); }
.footer-hours-list { display: flex; flex-direction: column; gap: 8px; }
.footer-hour-row { display: flex; justify-content: space-between; font-size: .88rem; }
.footer-hour-row span:last-child { color: var(--white); font-weight: 600; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .8rem;
}
.footer-bottom a { color: var(--gold-light); }
.footer-bottom a:hover { color: var(--white); }

.admin-trigger {
  background: none;
  border: none;
  color: rgba(255,255,255,.08);
  font-size: .6rem;
  cursor: pointer;
  padding: 2px 6px;
  transition: color .2s;
  user-select: none;
}
.admin-trigger:hover { color: rgba(255,255,255,.3); }

/* ============================================================
   ADMIN LOGIN MODAL
============================================================ */
.admin-login-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.72);
  z-index: 9998;
  align-items: center;
  justify-content: center;
}
.admin-login-overlay.open { display: flex; }
.admin-login-box {
  background: var(--white);
  border-radius: 10px;
  padding: 44px 40px;
  width: 100%;
  max-width: 400px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.admin-login-box h3 { font-family: var(--ff-display); font-size: 1.6rem; color: var(--navy); margin-bottom: 6px; }
.admin-login-box .login-sub { font-size: .85rem; color: var(--gray-mid); margin-bottom: 26px; }
.admin-login-close {
  position: absolute; top: 14px; right: 18px;
  font-size: 1.3rem;
  background: none; border: none;
  cursor: pointer;
  color: var(--gray-mid);
}
.login-error {
  background: #f8d7da; color: #721c24;
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: .85rem;
  margin-bottom: 14px;
  display: none;
}
.login-error.show { display: block; }

/* ============================================================
   ADMIN PANEL
============================================================ */
.admin-panel-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.72);
  z-index: 9999;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 30px 16px 60px;
}
.admin-panel-overlay.open { display: flex; }
.admin-panel-box {
  background: var(--white);
  border-radius: 10px;
  width: 100%;
  max-width: 860px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  margin: auto;
}
.admin-panel-header {
  background: var(--navy);
  padding: 22px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-panel-header h2 { font-family: var(--ff-display); color: var(--white); font-size: 1.4rem; }
.admin-panel-header .ap-sub {
  font-family: var(--ff-cond);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 2px;
}
.ap-close {
  background: rgba(255,255,255,.1);
  border: none;
  color: var(--white);
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: .2s;
}
.ap-close:hover { background: var(--red); }

.admin-tabs {
  display: flex;
  border-bottom: 2px solid var(--gray-lt);
  background: var(--cream);
}
.admin-tab {
  font-family: var(--ff-cond);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 14px 22px;
  cursor: pointer;
  border: none;
  background: none;
  color: var(--gray-mid);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: .2s;
}
.admin-tab.active { color: var(--navy); border-bottom-color: var(--red); }

.admin-content { padding: 28px 30px; }
.admin-tab-panel { display: none; }
.admin-tab-panel.active { display: block; }

/* PHOTO UPLOAD ZONE */
.img-upload-zone {
  border: 2px dashed var(--gray-lt);
  border-radius: 8px;
  padding: 28px;
  text-align: center;
  cursor: pointer;
  transition: .2s;
  background: var(--cream);
  position: relative;
}
.img-upload-zone:hover { border-color: var(--navy); background: #eeeae2; }
.img-upload-zone input[type=file] {
  position: absolute; inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%; height: 100%;
}
.upload-icon { font-size: 2rem; margin-bottom: 8px; }
.img-upload-zone p { font-family: var(--ff-cond); font-weight: 700; color: var(--gray-mid); margin: 0; }
.img-upload-zone small { font-weight: 400; font-size: .78rem; }

/* PHOTO PREVIEW STRIP */
.img-preview-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  padding: 14px;
  background: #f0ede6;
  border-radius: 8px;
  border: 2px dashed var(--gray-lt);
  min-height: 60px;
}
.img-preview-strip.drag-over { border-color: var(--gold); background: #ebe6db; }

.img-preview-item {
  position: relative;
  width: 110px;
  height: 82px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--gray-lt);
  cursor: grab;
  transition: transform .15s, box-shadow .15s, border-color .15s;
  user-select: none;
  background: var(--gray-lt);
}
.img-preview-item:active { cursor: grabbing; }
.img-preview-item.dragging {
  opacity: .4;
  transform: scale(.95);
}
.img-preview-item.drag-target {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,146,42,.4);
}
.img-preview-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
}
.img-preview-item .ph-num {
  position: absolute;
  bottom: 3px; left: 4px;
  background: rgba(0,0,0,.6);
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 3px;
  pointer-events: none;
}
.img-preview-item.first-photo {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px var(--gold);
}
.img-preview-item .ph-main-badge {
  position: absolute;
  top: 3px; left: 4px;
  background: var(--gold);
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 3px;
  pointer-events: none;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.img-preview-item .ph-rm {
  position: absolute;
  top: 3px; right: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  border: none;
  font-size: .7rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  transition: background .15s;
}
.img-preview-item .ph-rm:hover { background: var(--red-dark); }

.photo-drag-hint {
  width: 100%;
  font-family: var(--ff-cond);
  font-size: .75rem;
  color: var(--gray-mid);
  text-align: center;
  margin-top: 6px;
  letter-spacing: .06em;
}
.photo-drag-hint.hidden { display: none; }

/* STATUS MESSAGES */
.add-success {
  background: #d4edda; color: #155724; border: 1px solid #c3e6cb;
  border-radius: var(--radius); padding: 12px 16px;
  font-family: var(--ff-cond); font-weight: 700;
  margin-bottom: 16px; display: none;
}
.add-success.show { display: block; }
.add-error {
  background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb;
  border-radius: var(--radius); padding: 12px 16px;
  font-family: var(--ff-cond); font-weight: 700;
  margin-bottom: 16px; display: none;
}
.add-error.show { display: block; }

.save-status {
  font-family: var(--ff-cond);
  font-size: .82rem;
  color: var(--gray-mid);
  margin-top: 10px;
  text-align: center;
  min-height: 1.2em;
}
.save-status.ok  { color: #27ae60; }
.save-status.err { color: var(--red); }

/* ============================================================
   MANAGE INVENTORY LIST
============================================================ */
.inv-mgr {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 460px;
  overflow-y: auto;
  padding-right: 4px;
}
.inv-mgr-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  border-radius: 8px;
  padding: 12px 14px;
}
.inv-mgr-img {
  width: 82px; height: 56px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  background: var(--gray-lt);
}
.inv-mgr-info { flex: 1; min-width: 0; }
.inv-mgr-info strong {
  font-family: var(--ff-display);
  font-size: .98rem;
  color: var(--navy);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.inv-mgr-info span { font-size: .8rem; color: var(--gray-mid); }
.inv-mgr-price {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}

/* ★ FEATURED TOGGLE BUTTON */
.inv-feat-btn {
  background: none;
  border: 1.5px solid var(--gray-lt);
  border-radius: var(--radius);
  padding: 6px 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: .2s;
  flex-shrink: 0;
  opacity: .4;
  line-height: 1;
}
.inv-feat-btn:hover {
  opacity: 1;
  border-color: var(--gold);
}
.inv-feat-btn.on {
  opacity: 1;
  border-color: var(--gold);
  background: rgba(201,146,42,.12);
}

/* ✏️ EDIT BUTTON */
.inv-edit-btn {
  background: none;
  border: 1.5px solid var(--navy);
  border-radius: var(--radius);
  padding: 6px 12px;
  font-size: .78rem;
  font-family: var(--ff-cond);
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition: .2s;
  flex-shrink: 0;
}
.inv-edit-btn:hover { background: var(--navy); color: white; }

/* 🗑️ DELETE BUTTON */
.inv-del-btn {
  background: none;
  border: 1.5px solid var(--gray-lt);
  border-radius: var(--radius);
  padding: 6px 12px;
  font-size: .78rem;
  font-family: var(--ff-cond);
  font-weight: 700;
  color: var(--red);
  cursor: pointer;
  transition: .2s;
  flex-shrink: 0;
}
.inv-del-btn:hover { background: var(--red); color: white; border-color: var(--red); }
.inv-empty {
  text-align: center;
  color: var(--gray-mid);
  padding: 40px 0;
  font-family: var(--ff-cond);
  font-size: 1rem;
}

/* Loading spinner */
.loading-overlay {
  position: fixed; inset: 0;
  background: rgba(255,255,255,.85);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}
.spinner {
  width: 44px; height: 44px;
  border: 4px solid var(--gray-lt);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-overlay p {
  font-family: var(--ff-cond);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  letter-spacing: .08em;
}

/* ============================================================
   PAGE VISIBILITY
============================================================ */
.page { display: none; }
.page.active { display: block; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 960px) {
  .vd-body { grid-template-columns: 1fr; }
  .vd-sidebar { position: static; }
  .vd-slider { height: 340px; }
}
@media (max-width: 900px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav {
    display: none;
    position: fixed; inset: 0;
    background: var(--navy);
    z-index: 2000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav .nav-link { font-size: 1.5rem; color: var(--white); padding: 10px 0; }
  .mobile-nav .nav-link::after { display: none; }
  .mobile-close {
    position: absolute; top: 20px; right: 24px;
    background: none; border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
  }
  .about-split, .contact-grid, .fin-contact-box { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-badges { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .admin-panel-box { max-width: 100%; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .topbar .container { justify-content: center; }
  .topbar-right { display: none; }
  .section-pad { padding: 56px 0; }
  .vd-specs-grid { grid-template-columns: 1fr; }
  .vd-slider { height: 260px; }
}