:root {
  --ink: #202124;
  --text: #3f444a;
  --muted: #7f8387;
  --line: #e5e7eb;
  --soft: #f7f6f3;
  --white: #ffffff;
  --primary: #b28a55;
  --primary-dark: #8f6d42;
  --navy: #202124;
  --navy-2: #373a3d;
  --gold: #b28a55;
  --gold-soft: #f5efe6;
  --graphite: #85878a;
  --font-main: "Manrope", Arial, Helvetica, sans-serif;
  --text-xs: 12px;
  --text-sm: 13px;
  --text-base: 15px;
  --text-md: 16px;
  --text-lg: 18px;
  --text-xl: 22px;
  --text-2xl: 30px;
  --text-3xl: 40px;
  --text-hero: 62px;
  --shadow-xs: 0 1px 2px rgba(16, 24, 40, .06);
  --shadow-sm: 0 8px 22px rgba(16, 24, 40, .08);
  --shadow-md: 0 18px 50px rgba(16, 24, 40, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #fbfaf8;
  font-family: var(--font-main);
  font-size: var(--text-base);
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.fa-solid {
  line-height: 1;
}

.topbar {
  background: #202124;
  color: rgba(255, 255, 255, .78);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 8px 0;
}

.topbar a {
  color: rgba(255, 255, 255, .86);
}

.topbar i {
  color: var(--gold);
  font-size: 11px;
  margin-right: 7px;
}

.navbar {
  min-height: 78px;
  background: rgba(255, 255, 255, .94) !important;
  box-shadow: 0 1px 0 rgba(16, 24, 40, .08), 0 12px 28px rgba(16, 24, 40, .04);
  backdrop-filter: blur(16px);
}

.navbar-toggler {
  width: 42px;
  height: 42px;
  border: 1px solid #d0d5dd;
  border-radius: 7px;
  padding: 0;
  box-shadow: none !important;
}

.mobile-call {
  display: none;
}

.navbar-toggler-icon {
  width: 1.25em;
  height: 1.25em;
}

.navbar-brand {
  min-width: 190px;
}

.navbar-brand strong,
.footer-brand {
  display: block;
  color: var(--ink);
  font-size: var(--text-md);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: .04em;
}

.navbar-brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 3px;
  letter-spacing: .01em;
}

.brand-mark {
  display: grid;
  position: relative;
  width: 46px;
  height: 42px;
  place-items: center;
  border-radius: 7px;
  background: #f8f8f7;
  color: #fff;
  border: 1px solid #e6e2da;
  color: var(--graphite);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.04em;
  box-shadow: 0 10px 22px rgba(32, 33, 36, .08);
}

.brand-mark::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 8px;
  height: 10px;
  border-top: 2px solid var(--gold);
  border-radius: 50% 50% 0 0;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #344054;
  font-size: var(--text-sm);
  font-weight: 700;
  padding: 11px 12px !important;
  border-radius: 7px;
  transition: background-color .18s ease, color .18s ease;
}

.nav-link i {
  display: none;
  color: #98a2b3;
  font-size: 13px;
}

.nav-link:not(.dropdown-toggle)::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 3px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), #d0b07a);
  opacity: 0;
  transform: scaleX(.6);
  transition: opacity .18s ease, transform .18s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--ink);
  background: #f8fafc;
}

.nav-link.active {
  color: var(--primary);
}

.nav-link:not(.dropdown-toggle):hover::after,
.nav-link:not(.dropdown-toggle).active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-link.dropdown-toggle::after {
  margin-left: 6px;
  vertical-align: middle;
  border-top-color: #98a2b3;
  transition: transform .18s ease, border-top-color .18s ease;
}

.nav-link.dropdown-toggle.show::after {
  transform: rotate(180deg);
  border-top-color: var(--primary);
}

.dropdown-menu {
  border-color: var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.dropdown-item {
  color: #344054;
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 9px 16px;
}

.nav-drawer .offcanvas-header,
.drawer-contact {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border-radius: 6px;
  padding: 10px 18px;
  font-size: var(--text-sm);
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-lg {
  min-height: 46px;
  padding: 12px 22px;
  font-size: var(--text-sm);
}

.btn i {
  font-size: .92em;
}

.btn-primary {
  --bs-btn-bg: var(--primary);
  --bs-btn-border-color: var(--primary);
  --bs-btn-hover-bg: var(--primary-dark);
  --bs-btn-hover-border-color: var(--primary-dark);
  color: #fff;
  background-image: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 10px 22px rgba(178, 138, 85, .22);
}

.btn-dark {
  --bs-btn-bg: var(--navy);
  --bs-btn-border-color: var(--navy);
  --bs-btn-hover-bg: #0b111d;
  --bs-btn-hover-border-color: #0b111d;
  box-shadow: 0 10px 22px rgba(17, 24, 39, .16);
}

.btn-light {
  --bs-btn-bg: #ffffff;
  --bs-btn-border-color: #ffffff;
  --bs-btn-color: var(--navy);
  --bs-btn-hover-bg: #f3f4f6;
  --bs-btn-hover-border-color: #f3f4f6;
}

.btn-outline-dark {
  --bs-btn-color: var(--navy);
  --bs-btn-border-color: #d0d5dd;
  --bs-btn-hover-bg: var(--navy);
  --bs-btn-hover-border-color: var(--navy);
  --bs-btn-hover-color: #ffffff;
}

.nav-cta {
  min-height: 40px;
  padding-inline: 16px;
  font-size: var(--text-xs);
}

.nav-tools {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 16px;
  padding-left: 16px;
  border-left: 1px solid #eaecf0;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid #e4e7ec;
  border-radius: 7px;
  background: #fff;
  color: #344054;
  font-size: var(--text-xs);
  font-weight: 700;
  transition: border-color .18s ease, color .18s ease, background-color .18s ease;
}

.nav-phone i {
  color: var(--gold);
  font-size: 12px;
}

.nav-phone:hover {
  border-color: rgba(185, 138, 59, .45);
  background: #f9fafb;
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 660px;
  padding: 86px 0 70px;
  overflow: hidden;
  background: #202124;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(32, 33, 36, .94) 0%, rgba(45, 47, 50, .82) 50%, rgba(45, 47, 50, .48) 100%),
    url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=2100&q=80") center/cover;
}

.hero-copy .eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  margin-right: 10px;
  background: var(--gold);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(32, 33, 36, .16) 58%, rgba(255, 255, 255, .94) 100%);
}

.hero > .container-xl {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 700px;
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  color: #d6b26e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero h1 {
  max-width: 700px;
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(42px, 5.2vw, var(--text-hero));
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.03em;
}

.hero p {
  max-width: 590px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .78);
  font-size: var(--text-md);
  font-weight: 400;
  line-height: 1.72;
}

.hero-actions {
  align-items: center;
  margin-bottom: 34px;
}

.hero-actions .btn {
  min-width: 184px;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-metrics div {
  min-width: 136px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 7px;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(10px);
}

.hero-metrics strong {
  display: block;
  color: #fff;
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.02em;
}

.hero-metrics span {
  display: block;
  color: rgba(255, 255, 255, .68);
  font-size: var(--text-xs);
  font-weight: 600;
  margin-top: 7px;
}

.search-panel {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 8px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 22px 60px rgba(32, 33, 36, .16);
}

.search-panel h2 {
  margin: 0;
  color: var(--ink);
  font-size: var(--text-xl);
  font-weight: 800;
  letter-spacing: -.02em;
}

.search-panel .d-flex span {
  color: var(--primary);
  background: var(--gold-soft);
  border: 1px solid #eadfce;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: var(--text-xs);
  font-weight: 700;
}

.form-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 7px;
  color: #344054;
  font-size: var(--text-xs);
  font-weight: 700;
}

.form-label i {
  color: #98a2b3;
  font-size: 11px;
}

.form-select,
.form-control {
  min-height: 46px;
  border-color: #d0d5dd;
  border-radius: 6px;
  color: #1f2937;
  font-size: var(--text-sm);
  font-weight: 600;
  box-shadow: none;
}

.form-select:focus,
.form-control:focus {
  border-color: rgba(178, 138, 85, .55);
  box-shadow: 0 0 0 .2rem rgba(178, 138, 85, .12);
}

.search-note {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}

.search-note span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #475467;
  background: #f9fafb;
  border: 1px solid #eaecf0;
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 11px;
  font-weight: 700;
}

.search-note i {
  color: var(--gold);
  font-size: 11px;
}

.quick-strip {
  position: relative;
  z-index: 2;
  margin-top: -34px;
}

.quick-strip .container-xl {
  overflow: hidden;
  border: 1px solid #eaecf0;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.quick-card {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 16px;
  row-gap: 4px;
  align-items: center;
  min-height: 112px;
  padding: 24px 42px 24px 24px;
  border-right: 1px solid #eaecf0;
  transition: background-color .18s ease, box-shadow .18s ease;
}

.quick-card span {
  display: grid;
  grid-row: 1 / 3;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 7px;
  background: var(--gold-soft);
  color: var(--gold);
  font-size: 18px;
}

.quick-card strong {
  display: block;
  color: var(--ink);
  font-size: var(--text-md);
  font-weight: 700;
  line-height: 1.22;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.quick-card small {
  display: block;
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 500;
  line-height: 1.35;
  margin-top: 0;
}

.quick-card:hover {
  background: #fbfcfe;
  box-shadow: inset 0 3px 0 var(--gold);
}

.quick-card::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #c5cbd5;
  border-right: 2px solid #c5cbd5;
  transform: translateY(-50%) rotate(45deg);
  opacity: .75;
}

.section-pad {
  padding: 82px 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3.2vw, var(--text-3xl));
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -.025em;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: var(--text-sm);
  font-weight: 700;
}

.category-tile {
  position: relative;
  display: block;
  height: 190px;
  overflow: hidden;
  border-radius: 8px;
  background: #101828;
  box-shadow: var(--shadow-xs);
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 24, 40, .05) 0%, rgba(16, 24, 40, .82) 100%);
}

.category-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .78;
  transition: transform .24s ease, opacity .24s ease;
}

.category-tile span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  color: #fff;
  font-size: var(--text-lg);
  font-weight: 800;
  line-height: 1.2;
}

.category-tile:hover img {
  transform: scale(1.04);
  opacity: .9;
}

.brand-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.brand-cloud a,
.filter-pill {
  border: 1px solid #d0d5dd;
  border-radius: 999px;
  background: #fff;
  color: #344054;
  font-size: var(--text-sm);
  font-weight: 700;
  padding: 8px 13px;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}

.brand-cloud a:hover {
  border-color: rgba(178, 138, 85, .45);
  color: var(--primary);
}

.brand-cloud span {
  color: var(--primary);
}

.inventory-section {
  background: #f5f7fa;
}

.filter-pill.active,
.filter-pill:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.vehicle-card {
  overflow: hidden;
  height: 100%;
  border: 1px solid #eaecf0;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-xs);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.vehicle-card:hover {
  transform: translateY(-3px);
  border-color: rgba(178, 138, 85, .45);
  box-shadow: var(--shadow-sm);
}

.vehicle-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #eef2f6;
}

.vehicle-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.year-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 6px 14px rgba(16, 24, 40, .1);
}

.vehicle-body {
  padding: 18px;
}

.price {
  display: block;
  color: var(--primary);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.vehicle-body h3 {
  margin: 10px 0 4px;
  color: var(--ink);
  font-size: var(--text-lg);
  font-weight: 800;
  line-height: 1.25;
}

.vehicle-body p {
  min-height: 42px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.5;
}

.specs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 16px;
  padding-top: 14px;
  border-top: 1px solid #eaecf0;
}

.specs span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid #eaecf0;
  border-radius: 999px;
  background: #f9fafb;
  color: #475467;
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 700;
}

.specs i {
  color: var(--gold);
  font-size: 10px;
}

.valuation-band {
  background: linear-gradient(135deg, #202124 0%, #383a3d 100%);
  color: #fff;
  padding: 72px 0;
}

.valuation-band h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -.025em;
}

.valuation-band p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: var(--text-md);
  line-height: 1.68;
}

.valuation-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.site-footer {
  background: #202124;
  color: rgba(255, 255, 255, .68);
  padding: 62px 0 26px;
}

.footer-brand {
  color: #fff;
  font-size: 22px;
  margin-bottom: 13px;
}

.site-footer p {
  max-width: 420px;
  font-size: var(--text-sm);
  line-height: 1.65;
}

.footer-phone {
  display: inline-flex !important;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: var(--text-lg);
  font-weight: 800;
}

.footer-phone i {
  color: var(--gold);
}

.site-footer h3 {
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 800;
  margin-bottom: 14px;
}

.site-footer a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .68);
  font-size: var(--text-sm);
  margin-bottom: 9px;
}

.site-footer .footer-brand {
  display: block;
}

.site-footer a i,
.site-footer p i {
  color: var(--gold);
  font-size: 10px;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  margin-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 13px;
}

@media (max-width: 991.98px) {
  .navbar {
    min-height: 68px;
  }

  .navbar .container-xl {
    gap: 10px;
  }

  .navbar-brand {
    min-width: auto;
  }

  .navbar-brand strong {
    font-size: 16px;
  }

  .navbar-brand small {
    font-size: 10px;
  }

  .mobile-call {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    margin-left: auto;
    border: 1px solid #eaecf0;
    border-radius: 7px;
    background: #fff;
    color: var(--primary);
    box-shadow: 0 8px 18px rgba(16, 24, 40, .06);
  }

  .nav-drawer {
    width: min(86vw, 360px) !important;
    border-left: 0;
    background: #fff;
    box-shadow: -20px 0 60px rgba(15, 23, 42, .22);
  }

  .nav-drawer .offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
    padding: 18px 18px 16px;
    border-bottom: 1px solid #eaecf0;
  }

  .drawer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
  }

  .drawer-logo {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--graphite), var(--gold));
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(178, 138, 85, .2);
  }

  .drawer-kicker {
    display: block;
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    margin-bottom: 4px;
  }

  .offcanvas-title {
    color: var(--ink);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -.02em;
  }

  .btn-close {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    margin: 0 !important;
    border: 1px solid #eaecf0;
    border-radius: 7px;
    background-size: 12px;
    opacity: 1;
  }

  .nav-drawer .offcanvas-body {
    display: flex;
    flex-direction: column;
    padding: 14px 16px 18px;
  }

  .navbar-nav {
    gap: 2px;
    width: 100%;
  }

  .nav-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 46px;
    padding: 0 10px !important;
    border-radius: 6px;
    color: #1f2937;
    font-size: 14px;
    font-weight: 700;
    background: transparent;
    transition: background-color .18s ease, color .18s ease, transform .18s ease;
  }

  .nav-link span {
    flex: 1;
  }

  .nav-link i {
    display: inline-flex;
    width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    background: transparent;
    color: #98a2b3;
    font-size: 12px;
    margin-right: 10px;
  }

  .nav-link:not(.dropdown-toggle)::before {
    content: "";
    order: 3;
    width: 6px;
    height: 6px;
    border-top: 2px solid #c7ced8;
    border-right: 2px solid #c7ced8;
    transform: rotate(45deg);
  }

  .nav-link.dropdown-toggle::after {
    display: block;
    order: 3;
    margin-left: auto;
    border-top-color: #c5cbd5;
    transition: transform .18s ease, border-top-color .18s ease;
  }

  .nav-link.dropdown-toggle.show::after {
    transform: rotate(180deg);
    border-top-color: var(--primary);
  }

  .nav-link:not(.dropdown-toggle)::after {
    display: none;
  }

  .nav-link.active,
  .nav-link:hover {
    background: #f9fafb;
    color: var(--primary);
    transform: translateX(2px);
  }

  .nav-link.active i,
  .nav-link:hover i {
    background: transparent;
    color: var(--primary);
  }

  .dropdown-menu {
    position: static !important;
    width: 100%;
    transform: none !important;
    margin: 6px 0 8px;
    padding: 8px;
    border: 1px solid #eaecf0;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(16, 24, 40, .06);
  }

  .dropdown-item {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 34px 0 12px;
    border-radius: 6px;
    color: #475467;
    font-size: 14px;
    font-weight: 600;
  }

  .dropdown-item::after {
    content: "";
    position: absolute;
    right: 14px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #c5cbd5;
    border-right: 2px solid #c5cbd5;
    transform: rotate(45deg);
  }

  .dropdown-item:hover,
  .dropdown-item:focus {
    background: #f9fafb;
    color: var(--ink);
  }

  .nav-tools {
    display: grid;
    gap: 9px;
    margin: 14px 0 0;
    padding: 14px 0 0;
    border-left: 0;
    border-top: 1px solid #eaecf0;
  }

  .nav-phone,
  .nav-cta {
    width: 100%;
    min-height: 44px;
    justify-content: center;
    font-size: 13px;
  }

  .nav-phone {
    background: #fff;
  }

  .nav-cta {
    box-shadow: 0 12px 24px rgba(178, 138, 85, .2);
  }

  .drawer-contact {
    display: grid;
    gap: 7px;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid #eaecf0;
    color: #667085;
    font-size: 12px;
    font-weight: 600;
  }

  .drawer-contact span {
    display: flex;
    align-items: center;
    gap: 9px;
  }

  .drawer-contact i {
    color: var(--gold);
  }

  .hero {
    min-height: auto;
    padding: 44px 0 34px;
  }

  .hero h1 {
    max-width: 520px;
    font-size: 38px;
    line-height: 1.06;
  }

  .hero p {
    font-size: 16px;
  }

  .search-panel {
    padding: 20px;
    box-shadow: 0 14px 34px rgba(16, 24, 40, .14);
  }

  .quick-strip {
    margin-top: 0;
  }

  .quick-strip .container-xl {
    border-radius: 0;
  }

  .section-pad {
    padding: 58px 0;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .valuation-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 575.98px) {
  body {
    font-size: 14px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .nav-drawer {
    width: min(90vw, 344px) !important;
  }

  .nav-drawer .offcanvas-header {
    min-height: 76px;
    padding: 16px;
  }

  .offcanvas-title {
    font-size: 19px;
  }

  .nav-drawer .offcanvas-body {
    padding: 12px 14px 16px;
  }

  .hero h1 {
    font-size: 31px;
    letter-spacing: -.025em;
  }

  .hero p {
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.62;
  }

  .eyebrow {
    font-size: 10px;
    margin-bottom: 10px;
  }

  .hero-actions .btn,
  .valuation-actions .btn {
    width: 100%;
  }

  .hero-actions .btn {
    min-width: 0;
  }

  .hero-metrics div {
    flex: 1 1 100%;
    padding: 12px 14px;
  }

  .hero-metrics strong {
    font-size: 22px;
  }

  .search-panel h2 {
    font-size: 20px;
  }

  .form-select,
  .form-control {
    min-height: 44px;
  }

  .search-note {
    gap: 6px;
  }

  .search-note span {
    font-size: 10px;
    padding: 6px 8px;
  }

  .section-head h2 {
    font-size: 27px;
  }

  .category-tile {
    height: 148px;
  }

  .category-tile span {
    font-size: 17px;
  }

  .quick-card {
    min-height: 106px;
    padding-right: 42px;
    border-right: 0;
    border-bottom: 1px solid #eaecf0;
  }

  .quick-card strong {
    white-space: normal;
    font-size: 16px;
  }

  .vehicle-body {
    padding: 16px;
  }

  .price {
    font-size: 19px;
  }

  .vehicle-body h3 {
    font-size: 17px;
  }

  .valuation-band {
    padding: 52px 0;
  }

  .valuation-band h2 {
    font-size: 28px;
  }

  .site-footer {
    padding-top: 48px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 991.98px) {
  .nav-drawer {
    width: min(88vw, 350px) !important;
    background: #fff;
  }

  .nav-drawer .offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 18px 16px;
    border-bottom: 1px solid #eaecf0;
  }

  .drawer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .drawer-logo {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--graphite), var(--gold));
    color: #fff;
    font-size: 14px;
    font-weight: 800;
  }

  .nav-drawer .offcanvas-body {
    display: flex;
    flex-direction: column;
    padding: 14px 16px 18px;
  }

  .nav-drawer .navbar-nav {
    width: 100%;
    align-items: stretch !important;
    gap: 4px;
  }

  .nav-drawer .nav-link {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 46px;
    padding: 0 12px !important;
    border-radius: 7px;
    background: transparent;
    color: #1f2937;
    font-size: 14px;
    font-weight: 700;
    transform: none;
  }

  .nav-drawer .nav-link::before,
  .nav-drawer .nav-link:not(.dropdown-toggle)::after {
    display: none !important;
    content: none !important;
  }

  .nav-drawer .nav-link i {
    display: inline-flex;
    width: 22px;
    min-width: 22px;
    justify-content: center;
    margin-right: 10px;
    background: transparent;
    color: #98a2b3;
    font-size: 12px;
  }

  .nav-drawer .nav-link span {
    flex: 1;
  }

  .nav-drawer .nav-link:hover,
  .nav-drawer .nav-link.active {
    background: #f9fafb;
    color: var(--primary);
  }

  .nav-drawer .nav-link:hover i,
  .nav-drawer .nav-link.active i {
    color: var(--primary);
  }

  .nav-drawer .dropdown-toggle::after {
    margin-left: auto;
    border-top-color: #98a2b3;
  }

  .nav-drawer .dropdown-toggle.show::after {
    transform: rotate(180deg);
    border-top-color: var(--primary);
  }

  .nav-drawer .dropdown-menu {
    position: static !important;
    transform: none !important;
    width: 100%;
    margin: 4px 0 8px;
    padding: 6px;
    border: 1px solid #eaecf0;
    border-radius: 8px;
    background: #fff;
    box-shadow: none;
  }

  .nav-drawer .dropdown-item {
    display: flex;
    align-items: center;
    min-height: 40px;
    padding: 0 12px;
    border-radius: 6px;
    color: #475467;
    font-size: 13px;
    font-weight: 600;
  }

  .nav-drawer .dropdown-item::after {
    display: none;
    content: none;
  }

  .nav-drawer .dropdown-item:hover,
  .nav-drawer .dropdown-item:focus {
    background: #f9fafb;
    color: var(--primary);
  }

  .nav-tools {
    display: grid;
    gap: 9px;
    margin: 14px 0 0;
    padding: 14px 0 0;
    border-top: 1px solid #eaecf0;
    border-left: 0;
  }

  .nav-phone,
  .nav-cta {
    width: 100%;
    min-height: 44px;
    justify-content: center;
    font-size: 13px;
  }

  .drawer-contact {
    display: grid;
    gap: 7px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #eaecf0;
    color: #667085;
    font-size: 12px;
    font-weight: 600;
  }
}

/* Typography system override */
body {
  font-family: var(--font-main);
}

.navbar-brand strong,
.footer-brand {
  font-size: 16px;
  font-weight: 800;
}

.nav-link,
.dropdown-item,
.form-select,
.form-control,
.brand-cloud a,
.filter-pill,
.site-footer a,
.site-footer p {
  font-size: var(--text-sm);
}

.btn,
.btn-lg,
.nav-phone,
.nav-cta {
  font-size: var(--text-sm);
  font-weight: 800;
}

.hero h1 {
  font-size: clamp(42px, 5vw, 62px);
}

.hero p,
.valuation-band p {
  font-size: var(--text-md);
}

.section-head h2 {
  font-size: clamp(28px, 3vw, 40px);
}

.search-panel h2 {
  font-size: var(--text-xl);
}

.quick-card strong {
  font-size: var(--text-md);
}

.vehicle-body h3,
.category-tile span,
.footer-phone {
  font-size: var(--text-lg);
}

.price {
  font-size: 21px;
}

@media (max-width: 991.98px) {
  .navbar-brand strong {
    font-size: 15px;
  }

  .offcanvas-title {
    font-size: 19px;
  }

  .nav-drawer .nav-link,
  .nav-drawer .dropdown-item,
  .nav-phone,
  .nav-cta {
    font-size: var(--text-sm);
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: var(--text-base);
  }
}

@media (max-width: 575.98px) {
  body {
    font-size: var(--text-sm);
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero p,
  .vehicle-body p {
    font-size: var(--text-sm);
  }

  .search-panel h2 {
    font-size: 19px;
  }

  .section-head h2 {
    font-size: 26px;
  }

  .quick-card strong {
    font-size: var(--text-base);
  }

  .vehicle-body h3,
  .category-tile span {
    font-size: var(--text-md);
  }

  .price {
    font-size: var(--text-lg);
  }
}
