@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@600;700;800&display=swap");

:root {
  --ink: #101211;
  --muted: #6c716d;
  --line: #e5e7e4;
  --paper: #f7f7f3;
  --card: #fff;
  --accent: #c9f15b;
  --dark: #151815;
  --radius: 22px;
  --button-font-size: clamp(12px, 1.1vw, 14px);
  --button-padding-block: clamp(10px, 1.1vw, 12px);
  --button-padding-inline: clamp(12px, 1.4vw, 16px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar {
  display: none;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: var(--dark);
  color: white;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.page-loader-content {
  display: grid;
  justify-items: center;
  gap: 18px;
}
.page-loader-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: Manrope, sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -1px;
}
.page-loader-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: var(--accent);
  color: var(--ink);
  font-size: 17px;
}
.page-loader-line {
  width: 92px;
  height: 3px;
  overflow: hidden;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.18);
}
.page-loader-line::after {
  display: block;
  width: 42px;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
  content: "";
  animation: page-loader-progress 1.2s ease-in-out infinite;
}
@keyframes page-loader-progress {
  0% { transform: translateX(-42px); }
  50%, 100% { transform: translateX(92px); }
}
body.page-loading {
  overflow: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
.site-header {
  height: 78px;
  background: var(--paper);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(16, 18, 17, 0.06);
  position: sticky;
  top: 0;
  z-index: 20;
}
@media (min-width: 1101px) {
  .site-header {
    position: sticky;
    top: 0;
  }
}
.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: Manrope;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.8px;
}
.brand-mark {
  width: 29px;
  height: 29px;
  border-radius: 9px;
  background: var(--ink);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 15px;
}
.desktop-nav {
  display: flex;
  gap: 30px;
  margin-left: auto;
}
.desktop-nav a,
.mobile-nav a {
  font-size: 14px;
  color: #696e69;
  transition: 0.2s;
}
.desktop-nav a {
  position: relative;
  padding: 8px 0;
}
.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--ink);
}
.desktop-nav a.active {
  font-weight: 700;
}
.desktop-nav a.active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  border-radius: 3px;
  background: var(--accent);
}
.mobile-nav a.active {
  background: #eceee9;
}
.nav-button,
.primary-btn,
.search-btn {
  background: var(--dark);
  color: white;
  border-radius: 12px;
  padding: var(--button-padding-block) var(--button-padding-inline);
  font-weight: 600;
  font-size: var(--button-font-size);
  display: inline-flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
}
.nav-button span,
.primary-btn span,
.search-btn span {
  color: var(--accent);
}
.menu-btn {
  display: none;
  border: 0;
  background: none;
  font-size: 23px;
}

.hero {
  padding: 74px 0 54px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.eyebrow,
.kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-weight: 700;
  color: #737872;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #89b827;
  box-shadow: 0 0 0 5px #e6f2c7;
}
h1,
h2 {
  font-family: Manrope;
  margin: 0;
  letter-spacing: -3px;
  line-height: 0.96;
}
h1 {
  font-size: clamp(52px, 7vw, 88px);
  max-width: 680px;
  margin: 26px 0 24px;
}
.hero-copy h1 {
  font-size: clamp(44px, 5vw, 64px);
}
h1 em,
h2 em {
  font-style: normal;
  color: #71766f;
}
.hero-text {
  max-width: 510px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-top: 32px;
}
.text-btn {
  font-size: 14px;
  font-weight: 600;
}
.text-btn span {
  margin-left: 8px;
}
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 54px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}
.hero-stats div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hero-stats strong {
  font-family: Manrope;
  font-size: 19px;
}
.hero-stats span {
  font-size: 11px;
  color: var(--muted);
}

.hero-visual {
  position: relative;
}
.hero-image {
  width: 100%;
  height: auto;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background: #e9ebe7;
}
.hero-image.is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  animation: drivehaus-shimmer 1.35s ease-in-out infinite;
}
.hero-image.is-loading img {
  opacity: 0;
}
.hero-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.floating-card {
  position: absolute;
  bottom: 25px;
  left: -28px;
  background: white;
  border-radius: 18px;
  padding: 19px 20px;
  width: 265px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.13);
}
.mini-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #888;
}
.floating-card strong {
  display: block;
  font-family: Manrope;
  font-size: 15px;
  margin: 7px 0 12px;
}
.floating-card div {
  display: flex;
  gap: 10px;
  color: #737873;
  font-size: 10px;
}
.floating-card .hero-meta {
  align-items: baseline;
  justify-content: space-between;
}
.hero-featured-loading {
  display: grid;
  gap: 10px;
}
.hero-featured-loading .shimmer-line {
  background: #e9ebe7;
}
.hero-loading-label {
  width: 36%;
  height: 9px;
}
.hero-loading-title {
  width: 74%;
  height: 17px;
  margin: 3px 0 4px;
}
.hero-loading-meta {
  display: flex;
  gap: 10px;
}
.hero-loading-meta .shimmer-line {
  width: 23%;
  height: 9px;
}
.hero-loading-link {
  width: 42%;
  height: 10px;
  margin-top: 3px;
}
.floating-card .hero-meta b {
  display: inline;
  margin: 0;
  font-size: 16px;
}
.floating-card b {
  display: block;
  margin-top: 13px;
  font-family: Manrope;
  font-size: 18px;
}
.hero-listing-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--ink);
}

.search-section {
  padding-bottom: 45px;
}
.search-box {
  background: var(--dark);
  color: white;
  border-radius: 22px;
  padding: 24px 26px;
  display: grid;
  grid-template-columns: 230px 1fr;
  align-items: center;
  gap: 30px;
}
.search-heading {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.search-heading span {
  font-family: Manrope;
  font-size: 17px;
}
.search-heading small {
  font-size: 11px;
  color: #a8ada7;
}
.search-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 145px;
  gap: 10px;
}
.search-fields label,
.filters select {
  background: #232823;
  border: 1px solid #343934;
  border-radius: 11px;
  padding: 9px 13px;
  color: #aaa;
  font-size: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.search-fields select,
.filters select {
  border: 0;
  background: transparent;
  color: white;
  font: 600 13px "DM Sans";
  outline: 0;
  padding: 0;
}
.search-btn {
  background: var(--accent);
  color: var(--ink);
  height: 52px;
}
.search-btn span {
  color: var(--ink);
}

.section {
  padding: 55px 0 100px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 27px;
}
.section-head h2 {
  font-size: 40px;
  margin-top: 8px;
}
.view-all {
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid #aeb2ad;
  padding-bottom: 4px;
}
.car-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.car-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.car-card:hover {
  transform: none;
  box-shadow: none;
}
.car-image {
  height: 225px;
  position: relative;
  background: #ddd;
  overflow: hidden;
}
.car-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.car-card:hover .car-image img {
  transform: scale(1.04);
}
.loading-card {
  pointer-events: none;
}
.shimmer-block,
.shimmer-line {
  position: relative;
  overflow: hidden;
  background: #e9ebe7;
}
.shimmer-block::after,
.shimmer-line::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  animation: drivehaus-shimmer 1.35s ease-in-out infinite;
}
.loading-card .car-image {
  background: #e9ebe7;
}
.loading-card .car-body {
  min-height: 130px;
}
.shimmer-line {
  display: block;
  height: 11px;
  border-radius: 5px;
}
.shimmer-price {
  width: 36%;
  height: 19px;
}
.shimmer-title {
  width: 72%;
  margin-top: 10px;
}
.shimmer-meta {
  display: flex;
  gap: 24px;
  margin-top: 19px;
}
.shimmer-meta span {
  display: block;
  width: 27%;
  height: 9px;
  border-radius: 5px;
  background: #e9ebe7;
  position: relative;
  overflow: hidden;
}
.shimmer-meta span::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  animation: drivehaus-shimmer 1.35s ease-in-out infinite;
}
@keyframes drivehaus-shimmer {
  100% { transform: translateX(100%); }
}
.details-loading {
  padding: 34px 0 90px;
}
.details-loading-main {
  aspect-ratio: 1 / 1;
  border-radius: 24px;
}
.details-loading-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}
.details-loading-thumbs span {
  aspect-ratio: 1;
  border-radius: 12px;
}
.details-loading-copy {
  padding-top: 0;
}
.details-loading-copy .shimmer-kicker {
  width: 25%;
}
.details-loading-copy .shimmer-heading {
  width: 88%;
  height: 38px;
  margin-top: 20px;
  border-radius: 8px;
}
.details-loading-copy .shimmer-heading.short {
  width: 58%;
  margin-top: 9px;
}
.details-loading-description {
  display: grid;
  gap: 11px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.details-loading-description .shimmer-kicker {
  width: 28%;
}
.details-loading-description .shimmer-subheading {
  width: 62%;
  height: 25px;
  margin: 5px 0 8px;
}
.details-loading-description .shimmer-line {
  width: 92%;
}
.details-loading-description .short {
  width: 65%;
}
.details-loading-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 32px;
}
.details-loading-summary span {
  height: 78px;
  border-radius: 12px;
}
.details-loading-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 18px;
}
.details-loading-meta span {
  height: 48px;
  border-radius: 10px;
}
.details-loading-actions {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 10px;
  margin-top: 22px;
}
.details-loading-actions span {
  height: 48px;
  border-radius: 12px;
}
.details-loading-lines {
  display: grid;
  gap: 11px;
  margin-top: 34px;
}
.details-loading-lines .shimmer-line {
  width: 92%;
}
.details-loading-lines .short {
  width: 66%;
}
.contact-loading-image {
  width: 100px;
  height: 86px;
  border-radius: 11px;
}
.contact-loading-copy {
  display: grid;
  gap: 10px;
  padding: 16px 2px 4px;
}
.contact-loading-copy .shimmer-line {
  width: 72%;
}
.contact-loading-copy .short {
  width: 45%;
}
.contact-page.is-loading > .container {
  display: none;
}
.contact-loading-state {
  padding: 30px 0 95px;
}
.contact-loading-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: 70px;
  align-items: start;
}
.contact-loading-intro,
.contact-loading-form {
  display: grid;
  gap: 12px;
}
.contact-loading-back {
  width: 35%;
  height: 10px;
  margin-bottom: 24px;
}
.contact-loading-eyebrow {
  width: 32%;
  height: 10px;
}
.contact-loading-title {
  width: 90%;
  height: 36px;
  margin-top: 3px;
  border-radius: 8px;
}
.contact-loading-title.short {
  width: 62%;
  margin-top: -3px;
}
.contact-loading-copy-line {
  width: 86%;
  height: 10px;
}
.contact-loading-vehicle {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 14px;
  margin-top: 22px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
}
.contact-loading-vehicle > span {
  height: 86px;
  border-radius: 11px;
}
.contact-loading-vehicle > div {
  display: grid;
  align-content: center;
  gap: 10px;
}
.contact-loading-vehicle .shimmer-line:first-child {
  width: 35%;
}
.contact-loading-vehicle .shimmer-line:nth-child(2) {
  width: 78%;
}
.contact-loading-vehicle .shimmer-line:last-child {
  width: 52%;
}
.contact-loading-form {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.contact-loading-form-title {
  width: 65%;
  height: 26px;
  margin: 5px 0;
  border-radius: 7px;
}
.contact-loading-form > .contact-loading-copy-line {
  width: 82%;
  margin-bottom: 10px;
}
.contact-loading-choice {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 7px 0 12px;
}
.contact-loading-choice span {
  height: 78px;
  border-radius: 12px;
}
.contact-loading-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.contact-loading-fields span {
  height: 48px;
  border-radius: 8px;
}
.contact-loading-fields .full {
  grid-column: 1 / -1;
}
.contact-loading-submit {
  width: 38%;
  height: 46px;
  margin-top: 20px;
  border-radius: 12px;
}
@media (max-width: 850px) {
  .details-loading .details-layout {
    display: flex;
    flex-direction: column;
    gap: 35px;
  }
  .details-loading .details-gallery {
    display: contents;
  }
  .details-loading-main {
    order: 1;
  }
  .details-loading-thumbs {
    order: 2;
  }
  .details-loading-copy {
    order: 3;
  }
  .details-loading-description {
    order: 4;
  }
}
@media (max-width: 560px) {
  .details-loading {
    padding: 24px 0 65px;
  }
  .details-loading-thumbs {
    display: none;
  }
  .details-loading-copy .shimmer-heading {
    height: 32px;
  }
  .contact-loading-image {
    width: 82px;
    height: 70px;
  }
  .contact-loading-state {
    padding: 24px 0 65px;
  }
  .contact-loading-layout {
    display: block;
  }
  .contact-loading-form {
    margin-top: 35px;
  }
}
@media (max-width: 900px) {
  .contact-loading-layout {
    display: block;
    padding: 22px 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
  }
  .contact-loading-form {
    margin-top: 32px;
    padding: 0;
    border: 0;
    background: transparent;
  }
}
@media (max-width: 850px) and (min-width: 561px) {
  .details-loading .details-gallery {
    display: grid;
    grid-template-columns: minmax(0, calc(75% - 2.5px)) minmax(0, calc(25% - 7.5px));
    gap: 10px;
    align-items: start;
  }
  .details-loading-main {
    grid-column: 1;
    grid-row: 1;
  }
  .details-loading-thumbs {
    grid-column: 2;
    grid-row: 1;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, minmax(0, 1fr));
    height: 100%;
    margin-top: 0;
  }
  .details-loading-description {
    grid-column: 1 / -1;
  }
}
@media (max-width: 560px) {
  .contact-loading-form {
    padding: 22px 0 0;
    border: 0;
    background: transparent;
  }
  .contact-loading-choice,
  .contact-loading-fields {
    grid-template-columns: 1fr;
  }
  .contact-loading-fields .full {
    grid-column: auto;
  }
  .contact-loading-vehicle {
    grid-template-columns: 82px 1fr;
    padding: 0;
    border: 0;
  }
  .contact-loading-vehicle > span {
    height: 70px;
  }
}
@media (max-width: 620px) {
  .contact-loading-state {
    padding: 0 0 65px;
  }
  .contact-loading-layout {
    position: relative;
    margin: 0 calc(-50vw + 50%);
    padding: 24px 16px;
    border: 0;
    border-radius: 0;
    background: var(--paper);
  }
  .contact-loading-form {
    margin-top: 32px;
  }
}
.tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  box-shadow: 0 3px 10px rgba(16, 18, 17, 0.1);
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1;
}
.car-body {
  padding: 17px;
  min-height: 130px;
  flex: 1;
}
.car-title-row {
  display: block;
}
.car-title {
  font-family: Manrope;
  font-size: 17px;
  letter-spacing: -0.5px;
  margin-top: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.car-price {
  font-family: Manrope;
  font-weight: 800;
  font-size: 20px;
  white-space: nowrap;
}
.car-meta {
  display: flex;
  gap: 0;
  margin-top: 15px;
  border-top: 1px solid var(--line);
  padding-top: 13px;
}
.car-meta span {
  font-size: 14px;
  color: #71766f;
  padding: 0 11px;
  border-right: 1px solid var(--line);
}
.car-meta span:first-child {
  padding-left: 0;
}
.car-meta span:last-child {
  border: 0;
}

.why-section {
  background: #eceee9;
  padding: 100px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.why-grid h2 {
  font-size: 52px;
  margin: 15px 0 22px;
}
.why-grid > div > p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
}
.benefit {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid #d8dbd5;
}
.benefit span {
  font-size: 11px;
  color: #8a8e88;
}
.benefit strong {
  font-family: Manrope;
  font-size: 15px;
}
.benefit p {
  font-size: 12px;
  color: var(--muted);
  margin: 7px 0 0;
  line-height: 1.5;
}

.faq-section {
  padding: 100px 0;
  background: var(--paper);
}
.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) 1.2fr;
  gap: 100px;
}
.faq-intro h2 {
  font-size: 52px;
  line-height: 0.98;
  margin: 15px 0 22px;
}
.faq-intro h2 em {
  color: #767b75;
}
.faq-intro p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 300px;
  margin: 0;
}
.faq-list {
  border-top: 1px solid var(--line);
  grid-template-columns: 1fr;
  gap: 0;
  border-bottom: 1px solid var(--line);
  padding: 0 4px;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  min-height: 0;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.spec-card:last-child {
  border-bottom: 0;
  font-family: Manrope;
  font-size: 15px;
  font-weight: 700;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 19px;
  color: #8a8e88;
  font-family: "DM Sans", sans-serif;
  font-size: 22px;
  font-weight: 400;
}
.faq-list details[open] summary::after {
  content: "−";
}
.faq-list details p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  margin: -5px 35px 22px 0;
  max-width: 560px;
}

.listing-hero {
  padding: 70px 0 55px;
  border-bottom: 1px solid var(--line);
}
.listing-hero h1 {
  font-size: clamp(28px, 2.8vw, 42px);
  margin: 18px 0;
  line-height: 0.96;
}
.listing-hero p {
  font-size: 16px;
  color: var(--muted);
  margin: 0;
}
.listing-area {
  padding: 30px 0 100px;
}
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}
.filter-bar[hidden] {
  display: none !important;
}
.result-count {
  font-size: 13px;
  color: var(--muted);
}
.result-count strong {
  color: var(--ink);
  font-family: Manrope;
}
.filters {
  display: flex;
  gap: 8px;
}
.filters select {
  background: white;
  border: 1px solid var(--line);
  color: var(--ink);
  min-width: 140px;
  padding: 11px 13px;
  font-size: 12px;
}
.listings-grid {
  grid-template-columns: repeat(4, 1fr);
}
.empty-state {
  min-height: 310px;
  width: 100vw;
  margin: 10px 0 0 calc(50% - 50vw);
  padding: 54px max(30px, calc((100vw - 1180px) / 2));
  border: 1px solid var(--dark);
  background: var(--dark);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 430px);
  justify-content: center;
  justify-items: start;
  align-items: center;
  gap: 24px;
  text-align: left;
}
.empty-state[hidden] {
  display: none;
}
.home-collection-unavailable {
  grid-column: 1 / -1;
}
.home-collection-error .section-head {
  display: none;
}
.empty-state-mark {
  width: 58px;
  height: 58px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
}
.empty-state-mark::before,
.empty-state-mark::after,
.empty-state-mark span {
  content: "";
  position: absolute;
  display: block;
  background: #fff;
}
.empty-state-mark::before {
  width: 20px;
  height: 1px;
  transform: rotate(-45deg);
}
.empty-state-mark::after {
  width: 1px;
  height: 20px;
  transform: rotate(-45deg);
}
.empty-state-mark span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  transform: translate(11px, -11px);
}
.empty-state-kicker {
  display: block;
  color: #a7ada5;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.empty-state h2 {
  font-family: Manrope;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1;
  letter-spacing: -1px;
  margin: 10px 0 12px;
}
.empty-state p {
  color: #a7ada5;
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
  max-width: 360px;
}
.empty-state-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.empty-state-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 0 0 7px;
  border: 0;
  border-bottom: 1px solid #fff;
  background: transparent;
  color: #fff;
  font: 700 11px "DM Sans", sans-serif;
  cursor: pointer;
}
.empty-state-action span {
  color: var(--accent-dark);
  font-size: 15px;
  line-height: 0.8;
}
.empty-state-action:hover {
  border-color: var(--accent-dark);
}
@media (max-width: 600px) {
  .empty-state {
    min-height: 340px;
    padding: 42px 24px;
    grid-template-columns: 1fr;
    gap: 22px;
  }
}
}
.listing-hero {
  padding: 70px 0 55px;
  border-bottom: 1px solid var(--line);
}
.listing-hero h1 {
  font-size: clamp(28px, 2.8vw, 42px);
  margin: 18px 0;
  line-height: 0.96;
}
.listing-hero p {
  font-size: 16px;
  color: var(--muted);
  margin: 0;
}
.listing-area {
  padding: 30px 0 100px;
}
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}
.result-count {
  font-size: 13px;
  color: var(--muted);
}
.result-count strong {
  color: var(--ink);
  font-family: Manrope;
}
.filters {
  display: flex;
  gap: 8px;
}
.filters select {
  background: white;
  border: 1px solid var(--line);
  color: var(--ink);
  min-width: 140px;
  padding: 11px 13px;
  font-size: 12px;
}
.listings-grid {
  grid-template-columns: repeat(4, 1fr);
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.pagination button,
.pagination-ellipsis {
  min-width: clamp(30px, 2.5vw, 34px);
  height: clamp(30px, 2.5vw, 34px);
  padding: 0 clamp(8px, 1vw, 10px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.pagination .pagination-arrow {
  display: inline-flex;
  place-items: center;
  padding: 0;
}
.pagination .pagination-ellipsis {
  border: 0;
  background: transparent;
  width: auto;
  min-width: auto;
  padding: 0 4px;
  color: var(--muted);
  cursor: default;
}
.pagination-arrow svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pagination button[aria-current="page"] {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}
.pagination button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
@media (max-width: 1100px) {
  .car-grid,
  .listings-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1100px) {
  #featuredCars > :nth-child(n + 7) {
    display: none;
  }
}

footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  background: var(--paper);
}
.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #7a7e79;
  font-size: 11px;
}
.footer-wrap .brand {
  color: var(--ink);
  font-size: 17px;
}
.footer-wrap > a:last-child {
  color: var(--ink);
  font-weight: 600;
}

@media (max-width: 850px) {
  .desktop-nav,
  .nav-button {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .hero {
    padding-top: 48px;
  }
  .hero-grid,
  .why-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .hero-visual {
    display: none;
  }
  .floating-card {
    left: 15px;
  }
  .hero-stats {
    gap: 20px;
  }
  .search-box {
    grid-template-columns: 1fr;
  }
  .search-fields {
    grid-template-columns: 1fr 1fr;
  }
  .search-btn {
    grid-column: 1/-1;
  }
  .car-grid,
  .listings-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    gap: 30px;
  }
  .filter-bar {
    align-items: start;
    flex-direction: column;
  }
  .filters {
    width: 100%;
    flex-wrap: nowrap;
  }
  .filters select {
    flex: 1;
    min-width: 0;
    width: 0;
  }
}
@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1180px);
  }
  .site-header {
    height: 68px;
  }
  .hero {
    padding: 35px 0 40px;
  }
  .hero-visual {
    display: none;
  }
  h1 {
    font-size: 54px;
    letter-spacing: -2.5px;
  }
  .hero-text {
    font-size: 15px;
  }
  .hero-stats {
    margin-top: 40px;
    justify-content: space-between;
  }
  .hero-stats strong {
    font-size: 16px;
  }
  .hero-stats span {
    font-size: 9px;
  }
  .search-section {
    padding-bottom: 20px;
  }
  .search-box {
    padding: 20px;
  }
  .search-fields {
    grid-template-columns: 1fr;
  }
  .search-btn {
    grid-column: auto;
  }
  .section {
    padding: 45px 0 70px;
  }
  .section-head h2 {
    font-size: 32px;
  }
  .view-all {
    font-size: 11px;
  }
  .car-grid,
  .listings-grid {
    grid-template-columns: 1fr;
  }
  .car-image {
    height: 240px;
  }
  .why-section {
    padding: 65px 0;
  }
  .why-grid h2 {
    font-size: 40px;
  }
  .listing-hero {
    padding: 50px 0 42px;
  }
  .listing-hero h1 {
    font-size: 36px;
  }
  .filters select {
    flex-basis: 100%;
  }
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

.car-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.car-meta svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

.buy-section {
  padding: 95px 0 100px;
  background: var(--dark);
  color: white;
}
.buy-head {
  align-items: end;
  margin-bottom: 42px;
}
.buy-head h2 {
  font-size: 52px;
  margin-top: 12px;
}
.buy-head h2 em {
  color: #aeb4ad;
}
.buy-head > p {
  max-width: 390px;
  color: #9da39d;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}
.buy-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #343934;
}
.buy-step {
  position: relative;
  padding: 28px 24px 8px 0;
  border-right: 1px solid #343934;
}
.buy-step:not(:first-child) {
  padding-left: 24px;
}
.buy-step:last-child {
  border-right: 0;
}
.step-number {
  font-size: 10px;
  color: #858b84;
  letter-spacing: 1px;
}
.step-icon {
  width: 42px;
  height: 42px;
  border: 1px solid #3b403b;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin: 25px 0 22px;
  color: var(--accent);
  font-size: 19px;
}
.buy-step h3 {
  font-family: Manrope;
  font-size: 16px;
  letter-spacing: -0.4px;
  margin: 0 0 9px;
}
.buy-step p {
  font-size: 12px;
  line-height: 1.65;
  color: #969c95;
  margin: 0;
  max-width: 210px;
}
@media (max-width: 850px) {
  .buy-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .buy-step:nth-child(2) {
    border-right: 0;
  }
  .buy-step:nth-child(3),
  .buy-step:nth-child(4) {
    border-top: 1px solid #343934;
  }
  .buy-step:nth-child(3) {
    padding-left: 0;
  }
}
@media (max-width: 560px) {
  .buy-section {
    padding: 65px 0 70px;
  }
  .buy-head h2 {
    font-size: 40px;
  }
  .buy-head {
    display: block;
  }
  .buy-head > p {
    margin-top: 20px;
  }
  .buy-steps {
    grid-template-columns: 1fr;
  }
  .buy-step,
  .buy-step:not(:first-child),
  .buy-step:nth-child(3),
  .buy-step:nth-child(4) {
    padding: 22px 0;
    border-right: 0;
    border-top: 1px solid #343934;
  }
  .buy-step:first-child {
    border-top: 0;
  }
  .step-icon {
    margin: 18px 0 16px;
  }
}

.site-footer {
  background: #151815;
  color: #fff;
  padding: 68px 0 24px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 100px;
  padding-bottom: 58px;
}
.site-footer .brand {
  color: #fff;
}
.footer-brand p {
  color: #969c95;
  font-size: 13px;
  line-height: 1.75;
  max-width: 380px;
  margin: 20px 0 0;
}
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col h4 {
  font-family: Manrope;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: #fff;
  margin: 0 0 7px;
}
.footer-col a {
  font-size: 12px;
  color: #969c95;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid #343934;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #777d76;
  font-size: 10px;
}
@media (max-width: 700px) {
  .site-footer {
    padding: 55px 0 22px;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-bottom: 42px;
  }
  .footer-links {
    gap: 30px;
  }
}
@media (max-width: 450px) {
  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 7px;
  }
}

.testimonial-hero {
  padding: 70px 0 60px;
  border-bottom: 1px solid var(--line);
}
.testimonial-hero h1 {
  font-size: clamp(28px, 2.8vw, 42px);
  margin: 18px 0 22px;
  line-height: 0.96;
  letter-spacing: -1.5px;
}
.testimonial-hero p {
  font-size: 16px;
  color: var(--muted);
  margin: 0;
  max-width: 500px;
  line-height: 1.6;
}
.testimonials-section {
  padding: 45px 0 100px;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}
.testimonial-featured {
  background: var(--card);
  justify-content: flex-start;
}
.testimonial-loading-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.testimonial-loading-quote {
  width: 52px;
  height: 48px;
  border-radius: 10px;
}
.testimonial-loading-stars {
  width: 120px;
  height: 18px;
  margin-top: 10px;
  border-radius: 7px;
}
.testimonial-loading-copy {
  display: grid;
  gap: 12px;
  margin: 20px 0 18px;
}
.testimonial-loading-line {
  display: block;
  height: 12px;
  border-radius: 6px;
}
.testimonial-loading-line.short {
  width: 70%;
}
.testimonial-loading-button {
  width: 96px;
  height: 12px;
  margin: 0 0 18px;
  border-radius: 6px;
}
.testimonial-loading-person {
  margin-top: auto;
}
.testimonial-loading-avatar {
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  display: block !important;
}
.testimonial-loading-meta {
  display: grid;
  gap: 6px;
  width: 100%;
}
.testimonial-loading-name {
  width: 82px;
  height: 11px;
}
.testimonial-loading-detail {
  width: 130px;
  height: 10px;
}
.quote-mark {
  font-family: Georgia, serif;
  font-size: 58px;
  line-height: 0.7;
  color: #a2a69f;
  margin-bottom: 12px;
}
.stars {
  font-size: 17px;
  line-height: 1;
  letter-spacing: 4px;
  color: #757a73;
}
.testimonial-card blockquote {
  font-family: Manrope;
  font-size: 19px;
  line-height: 1.5;
  letter-spacing: -0.5px;
  margin: 22px 0 30px;
  max-width: 570px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.testimonial-card:not(.testimonial-featured) blockquote {
  font-family: Manrope;
  font-size: 19px;
  line-height: 1.5;
  letter-spacing: -0.5px;
  margin: 22px 0 30px;
}
.testimonial-more {
  align-self: flex-start;
  margin: -16px 0 22px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: 600 12px "DM Sans", sans-serif;
  cursor: pointer;
}
.testimonial-more span {
  color: #7da522;
  margin-left: 5px;
}
.testimonial-empty-state {
  margin-top: 20px;
  padding: 40px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
  text-align: center;
}
.testimonial-empty-state .kicker {
  display: inline-block;
  margin-bottom: 10px;
}
.testimonial-empty-state h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.8px;
}
.testimonial-empty-state p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.testimonial-modal-copy {
  font-family: Manrope;
  font-size: 20px;
  line-height: 1.6;
  color: var(--ink);
  max-width: none;
}
.testimonial-modal-person {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.person {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: auto;
}
.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 700;
}
.person strong,
.person span {
  display: block;
}
.person strong {
  font-family: Manrope;
  font-size: 12px;
}
.person span {
  font-size: 10px;
  color: var(--muted);
  margin-top: 3px;
}
.testimonial-cta {
  background: var(--dark);
  color: white;
  padding: 75px 0;
}
.testimonial-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.testimonial-cta h2 {
  font-size: 50px;
  margin-top: 12px;
}
.testimonial-cta h2 em {
  color: #aeb4ad;
}
@media (max-width: 900px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .testimonial-featured {
    grid-row: auto;
  }
  .testimonial-cta .container {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 640px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-section {
    padding-top: 32px;
    padding-bottom: 72px;
  }
  .testimonial-card,
  .testimonial-loading-card {
    min-height: 0;
  }
  .testimonial-modal .contact-choice-dialog {
    width: 100%;
    padding: 24px 20px;
    border-radius: 18px;
  }
  .testimonial-modal-copy {
    font-size: 17px;
    line-height: 1.55;
  }
}
@media (max-width: 560px) {
  .testimonial-hero {
    padding: 50px 0 42px;
  }
  .testimonial-hero h1 {
    font-size: 36px;
  }
  .testimonial-card {
    padding: 23px;
    min-height: 260px;
  }
  .testimonial-card blockquote {
    font-size: 17px;
  }
  .testimonial-cta {
    padding: 60px 0;
  }
  .testimonial-cta h2 {
    font-size: 40px;
  }
}

.legal-hero {
  padding: 70px 0 55px;
  border-bottom: 1px solid var(--line);
}
.legal-hero h1 {
  font-size: clamp(28px, 2.8vw, 42px);
  margin: 18px 0;
  line-height: 0.96;
  letter-spacing: -1.5px;
}
.legal-hero p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0;
}
.legal-section {
  padding: 55px 0 100px;
}
.legal-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 720px);
  gap: 70px;
  align-items: start;
}
.legal-nav {
  position: sticky;
  top: 105px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-nav a {
  font-size: 11px;
  color: var(--muted);
  padding: 8px 10px;
  border-left: 1px solid var(--line);
}
.legal-nav a:hover {
  color: var(--ink);
  border-color: var(--ink);
}
.legal-content h2 {
  font-family: Manrope;
  font-size: 24px;
  letter-spacing: -0.8px;
  margin: 0 0 13px;
  padding-top: 8px;
}
.legal-content h2:not(:first-child) {
  margin-top: 45px;
}
.legal-content p,
.legal-content li {
  font-size: 13px;
  line-height: 1.85;
  color: #626862;
}
.legal-content ul {
  padding-left: 20px;
}
.legal-updated {
  font-size: 10px !important;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #858a84 !important;
  margin-bottom: 35px;
}
.legal-updated:empty {
  display: none;
}
@media (max-width: 700px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .legal-nav {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .legal-nav a {
    border-left: 0;
    border-bottom: 1px solid var(--line);
    padding: 11px 4px;
  }
}

/* Car details */
.details-error-state,
.contact-not-found {
  padding: 110px 0 150px;
}
.details-error-state h1,
.contact-not-found h1 {
  font-size: clamp(28px, 2.8vw, 42px);
  max-width: 700px;
  margin: 16px 0 18px;
  line-height: 0.96;
  letter-spacing: -1.5px;
}
.details-error-state p,
.contact-not-found p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.details-error-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: var(--button-padding-block) var(--button-padding-inline);
  font-size: var(--button-font-size);
  font-weight: 600;
  background: #fff;
  color: var(--ink);
}
.details-hero {
  padding: 34px 0 90px;
}
.details-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 24px;
}
.details-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 54px;
  align-items: start;
}
.details-gallery {
  min-width: 0;
}
.gallery-main {
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  background: #e7e8e4;
  position: relative;
  touch-action: pan-y;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(16, 18, 17, 0.48);
  backdrop-filter: blur(10px);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 2;
  display: none;
}
.gallery-arrow.prev {
  left: 16px;
}
.gallery-arrow.next {
  right: 16px;
}
.gallery-counter {
  display: none;
  position: absolute;
  right: 16px;
  bottom: 16px;
  background: rgba(16, 18, 17, 0.62);
  color: #fff;
  padding: 8px 11px;
  border-radius: 8px;
  font-size: 10px;
  letter-spacing: 0.5px;
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 10px;
}
.gallery-thumb {
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #e7e8e4;
  cursor: pointer;
  padding: 0;
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-thumb.active {
  border: 2px solid var(--ink);
}
.gallery-secondary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}
.gallery-secondary .gallery-thumb {
  position: relative;
  border: 0;
}
.gallery-secondary .gallery-thumb-more::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 18, 17, 0.42);
}
.gallery-thumb-more span {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}
.details-info {
  position: sticky;
  top: 105px;
}
.details-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: #737872;
}
.details-info h1 {
  font-size: clamp(28px, 2.8vw, 42px);
  margin: 15px 0 12px;
  max-width: 650px;
  line-height: 0.96;
  letter-spacing: -1.5px;
}
.details-price {
  font-family: Manrope;
  font-weight: 800;
  font-size: 28px;
}
.details-monthly {
  display: inline-flex;
  margin-top: 15px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: 0 3px 10px rgba(16, 18, 17, 0.08);
  padding: 9px 12px;
  border-radius: 9px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.details-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 28px 0;
  padding: 4px 0;
}
.detail-stat {
  padding: 15px 12px;
  border-right: 1px solid var(--line);
}
.detail-stat:nth-child(2n) {
  border-right: 0;
}
.detail-stat strong {
  display: block;
  font-family: Manrope;
  font-size: 15px;
  margin-top: 4px;
}
.detail-stat span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}
.details-description {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  max-width: 620px;
}
.details-actions {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}
.details-actions .primary-btn {
  min-width: clamp(150px, 18vw, 180px);
}
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  border-radius: 12px;
  padding: var(--button-padding-block) var(--button-padding-inline);
  font-size: var(--button-font-size);
  font-weight: 600;
}
.details-specs {
  margin-top: 36px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}
.details-specs h2 {
  font-size: 26px;
  margin-bottom: 18px;
}
.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.spec-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 12px;
}
.spec-item span {
  color: var(--muted);
}
.spec-item strong {
  font-family: Manrope;
  text-align: right;
}
@media (max-width: 850px) {
  .details-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .details-info {
    position: static;
  }
}
@media (max-width: 850px) and (min-width: 561px) {
  .details-layout .details-gallery {
    display: grid;
    grid-template-columns: minmax(0, calc(75% - 2.5px)) minmax(0, calc(25% - 7.5px));
    gap: 10px;
    align-items: start;
  }
  .details-layout .gallery-main {
    grid-column: 1;
    grid-row: 1;
  }
  .details-layout .gallery-secondary {
    grid-column: 2;
    grid-row: 1;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, minmax(0, 1fr));
    height: 100%;
    margin-top: 0;
  }
  .details-layout .details-description-block {
    grid-column: 1 / -1;
  }
}
@media (max-width: 560px) {
  .details-hero {
    padding: 24px 0 65px;
  }
  .gallery-main {
    border-radius: 18px;
  }
  .gallery-secondary {
    display: none;
  }
  .gallery-counter {
    display: block;
  }
  .details-info h1 {
    font-size: 34px;
    letter-spacing: -1.5px;
  }
  .details-price {
    font-size: 24px;
  }
  .details-actions {
    flex-direction: column;
  }
  .details-actions a {
    width: 100%;
  }
}

/* Purchase summary */
.details-purchase-summary {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.details-purchase-summary > div {
  display: flex;
  flex-direction: column;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.details-purchase-summary > div:last-child {
  border-bottom: 0;
}
.details-purchase-summary strong {
  font-family: Manrope;
  font-weight: 800;
  color: var(--ink);
}
.details-purchase-summary span {
  font-size: 10px;
  color: var(--muted);
  margin-top: 4px;
}
.details-purchase-summary .details-price {
  font-size: 28px;
  margin: 0;
}
.purchase-down strong {
  font-size: 22px;
}
.purchase-monthly strong {
  font-size: 20px;
}

/* Refined vehicle details UI */
.details-specs {
  margin-top: 42px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.details-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 18px;
}
.details-section-eyebrow {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.details-specs h2 {
  margin: 0;
  font-size: 30px;
  letter-spacing: -0.7px;
}
.spec-list {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.48);
}
.spec-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.spec-row:last-child {
  border-bottom: 0;
}
.spec-row span {
  font-size: 12px;
  color: var(--muted);
}
.spec-row strong {
  font-family: Manrope;
  font-size: 13px;
  font-weight: 750;
  text-align: right;
  color: var(--ink);
}
@media (max-width: 560px) {
  .details-specs {
    margin-top: 34px;
    padding-top: 24px;
  }
  .details-specs h2 {
    font-size: 25px;
  }
  .spec-row {
    padding: 15px 0;
  }
  .spec-row strong {
    font-size: 13px;
  }
}

/* Details description + specification cards */
.details-description-block {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.details-description-block h2 {
  margin: 7px 0 12px;
  font-size: 28px;
  letter-spacing: -0.8px;
}
.details-description {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  max-width: 650px;
}
.spec-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}
.spec-card {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.spec-card:last-child {
  border-bottom: 0;
}
.spec-card span {
  font-size: 12px;
  color: var(--muted);
}
.spec-card strong {
  font-family: Manrope;
  font-size: 15px;
  font-weight: 750;
  color: var(--ink);
  text-align: right;
}
@media (max-width: 560px) {
  .details-description-block {
    margin-top: 30px;
    padding-top: 24px;
  }
  .details-description-block h2 {
    font-size: 25px;
  }
  .spec-list {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .spec-card {
    min-height: 0;
    padding: 15px 0;
  }
  .spec-card strong {
    font-size: 15px;
  }
}

/* Description sits directly below the image carousel on the left */
.details-gallery .details-description-block {
  margin-top: 30px;
  padding-top: 26px;
}
@media (max-width: 900px) {
  .details-gallery .details-description-block {
    margin-top: 26px;
  }
}

/* Responsive CARFAX vehicle-history card */
.carfax-card {
  position: relative;
  margin-top: 20px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  display: grid;
  grid-template-columns: minmax(105px, auto) minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(16, 18, 17, 0.045);
}
.carfax-card:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--ink);
  opacity: 0.9;
}
.carfax-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-width: 105px;
}
.carfax-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 7px 10px;
  border-radius: 7px;
  background: var(--ink);
  color: #fff;
  font-family: Manrope;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.6px;
  line-height: 1;
}
.carfax-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.15px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.2;
}
.carfax-copy {
  min-width: 0;
}
.carfax-copy h3 {
  margin: 0 0 7px;
  font-family: Manrope;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.35px;
  color: var(--ink);
}
.carfax-copy p {
  margin: 0;
  max-width: 520px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}
.carfax-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: clamp(38px, 3.8vw, 42px);
  padding: 0 clamp(12px, 1.3vw, 15px);
  border: 1px solid var(--ink);
  border-radius: 11px;
  color: var(--ink);
  font-size: clamp(10px, 0.9vw, 11px);
  font-weight: 800;
  text-decoration: none;
  background: var(--paper);
  white-space: nowrap;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}
.carfax-button span {
  font-size: 14px;
  line-height: 1;
}
.carfax-button:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: translateY(-1px);
}
@media (max-width: 760px) {
  .carfax-card {
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 16px;
    padding: 19px;
  }
  .carfax-brand {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 11px;
    min-width: 0;
  }
  .carfax-label {
    font-size: 9px;
  }
  .carfax-copy {
    grid-column: 1;
    align-self: center;
  }
  .carfax-button {
    grid-column: 2;
    grid-row: 2;
    align-self: center;
  }
}
@media (max-width: 480px) {
  .carfax-card {
    grid-template-columns: 1fr;
    padding: 17px;
    gap: 14px;
    border-radius: 16px;
  }
  .carfax-brand {
    grid-column: 1;
  }
  .carfax-copy {
    grid-column: 1;
  }

  /* Fluid typography across every page */
  body {
    font-size: clamp(14px, 1.05vw, 16px);
  }
  h1 {
    font-size: clamp(46px, 7vw, 88px);
  }
  h2 {
    font-size: clamp(30px, 4.4vw, 52px);
  }
  h3 {
    font-size: clamp(15px, 1.4vw, 19px);
  }
  h4 {
    font-size: clamp(10px, 1vw, 13px);
  }
  p,
  li {
    font-size: clamp(12px, 1.05vw, 17px);
  }
  a,
  button,
  input,
  select,
  textarea {
    font-size: clamp(12px, 1vw, 14px);
  }
  .listing-hero h1,
  .testimonial-hero h1,
  .legal-hero h1,
  .details-error-state h1,
  .contact-not-found h1,
  .contact-intro h1,
  .details-info h1 {
    font-size: clamp(28px, 2.8vw, 42px);
    line-height: 0.96;
    letter-spacing: -1.5px;
  }
  .eyebrow,
  .kicker,
  .details-kicker,
  .details-section-eyebrow,
  .legal-updated,
  .mini-label,
  .carfax-label,
  .step-number {
    font-size: clamp(9px, 0.8vw, 12px);
  }
  .brand {
    font-size: clamp(18px, 1.5vw, 20px);
  }
  .brand-mark {
    font-size: clamp(13px, 1.1vw, 15px);
  }
  .hero-text,
  .listing-hero p,
  .testimonial-hero p,
  .legal-hero p,
  .details-error-state p,
  .contact-not-found p,
  .contact-intro > p,
  .details-description {
    font-size: clamp(14px, 1.25vw, 17px);
  }
  .hero-stats strong,
  .floating-card b,
  .car-price,
  .details-price {
    font-size: clamp(18px, 1.8vw, 28px);
  }
  .hero-stats span,
  .floating-card div,
  .car-meta span,
  .person span,
  .details-purchase-summary span {
    font-size: clamp(13px, 0.8vw, 15px);
  }
  .floating-card strong,
  .car-title,
  .benefit strong,
  .buy-step h3,
  .carfax-copy h3 {
    font-size: clamp(15px, 1.4vw, 17px);
  }
  .benefit span,
  .benefit p,
  .buy-step p,
  .footer-brand p,
  .form-heading p,
  .carfax-copy p {
    font-size: clamp(12px, 1vw, 14px);
  }
  .view-all,
  .result-count,
  .details-back,
  .back-contact,
  .footer-col a,
  .person strong,
  .contact-vehicle-copy > strong,
  .contact-vehicle-copy b {
    font-size: clamp(11px, 0.95vw, 14px);
  }
  .tag,
  .details-monthly,
  .contact-vehicle-copy > span,
  .contact-vehicle-copy div span,
  .carfax-mark,
  .carfax-button,
  .legal-nav a {
    font-size: clamp(9px, 0.8vw, 11px);
  }
  .legal-content p,
  .legal-content li,
  .details-description-block h2,
  .details-specs h2 {
    font-size: clamp(13px, 1.2vw, 16px);
  }
  .testimonial-card blockquote {
    font-size: clamp(17px, 1.55vw, 19px);
  }
  .testimonial-cta h2,
  .buy-head h2 {
    font-size: clamp(40px, 4.4vw, 52px);
  }
  .footer-col h4 {
    font-size: clamp(10px, 0.8vw, 11px);
  }
  .footer-bottom {
    font-size: clamp(10px, 0.75vw, 11px);
  }
  .carfax-copy h3 {
    font-size: 15px;
    margin-bottom: 6px;
  }
  .carfax-copy p {
    font-size: 12px;
    line-height: 1.6;
  }
  .carfax-button {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    min-height: 44px;
  }
}

/* Contact choice modal */
body.modal-open {
  overflow: hidden;
}
.image-viewer {
  position: fixed;
  inset: 0;
  z-index: 1100;
  height: 100dvh;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.image-viewer.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.image-viewer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 18, 17, 0.9);
  backdrop-filter: blur(10px);
}
.image-viewer-content {
  position: relative;
  width: min(92vw, 1280px);
  height: min(calc(100dvh - 48px), 900px);
  min-width: 0;
  min-height: 0;
  display: grid;
  place-items: center;
  transform: translateY(10px) scale(0.98);
  transition: transform 0.2s ease;
}
.image-viewer.open .image-viewer-content {
  transform: none;
}
.image-viewer-content img {
  max-width: calc(100vw - 96px);
  max-height: calc(100dvh - 96px);
  min-width: 0;
  min-height: 0;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}
.image-viewer-close,
.image-viewer-arrow {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(16, 18, 17, 0.56);
  backdrop-filter: blur(10px);
  cursor: pointer;
}
.image-viewer-close {
  top: 0;
  right: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 25px;
  line-height: 1;
}
.image-viewer-arrow {
  top: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 22px;
  transform: translateY(-50%);
}
.image-viewer-arrow.prev {
  left: 12px;
}
.image-viewer-arrow.next {
  right: 12px;
}
.image-viewer-counter {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 11px;
  border-radius: 8px;
  color: #fff;
  background: rgba(16, 18, 17, 0.62);
  font-size: 11px;
  letter-spacing: 0.5px;
}
.contact-choice-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: max(12px, env(safe-area-inset-top))
    max(12px, env(safe-area-inset-right))
    max(12px, env(safe-area-inset-bottom))
    max(12px, env(safe-area-inset-left));
  overflow-y: auto;
  overscroll-behavior: contain;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}
.contact-choice-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.contact-choice-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 18, 17, 0.58);
  backdrop-filter: blur(7px);
}
.contact-choice-dialog {
  position: relative;
  box-sizing: border-box;
  width: min(680px, 100%);
  max-height: 100%;
  overflow: auto;
  overscroll-behavior: contain;
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  padding: clamp(22px, 4vw, 34px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.2);
  transform: translateY(10px) scale(0.98);
  transition: transform 0.2s ease;
}
.contact-choice-modal.open .contact-choice-dialog {
  transform: none;
}
.contact-choice-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 50%;
  font-size: 23px;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
}
.contact-choice-dialog h2 {
  margin: 8px 50px 8px 0;
  font-size: clamp(30px, 5vw, 44px);
  letter-spacing: -1.6px;
  line-height: 1.02;
  overflow-wrap: anywhere;
}
.contact-choice-dialog > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  max-width: 520px;
}
.form-success-dialog {
  text-align: center;
}
.form-success-dialog .success-icon {
  margin: 0 auto 12px;
}
.form-success-dialog .details-section-eyebrow {
  margin-bottom: 8px;
}
.form-success-dialog h2 {
  margin-left: auto;
  margin-right: auto;
}
.form-success-dialog > p {
  margin-left: auto;
  margin-right: auto;
}
.form-success-dialog .secondary-btn {
  margin-top: 20px;
}
.contact-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}
.contact-choice-card {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 0;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.contact-choice-card:hover {
  border-color: #cbd0ca;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(16, 18, 17, 0.07);
}
.choice-icon {
  display: none;
}
.contact-choice-card strong {
  display: block;
  font-family: Manrope;
  font-size: 13px;
}
.contact-choice-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}
.contact-choice-card b {
  display: none;
}

/* Contact page */
.form-field.form-consent {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
}
.form-field.form-consent input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin: 0;
  accent-color: var(--dark);
}
.form-field.form-consent span {
  font-size: 10px;
  line-height: 1.4;
  color: var(--muted);
  margin: 0;
}
.form-note a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-heading h2,
.form-heading p {
  display: none;
}
.contact-page {
  padding: 30px 0 95px;
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: 70px;
  align-items: start;
}
.contact-intro {
  position: sticky;
  top: 105px;
  padding-top: 8px;
}
.contact-intro h1 {
  font-size: clamp(28px, 2.8vw, 42px);
  line-height: 0.96;
  letter-spacing: -1.5px;
  margin: 12px 0 18px;
  max-width: 560px;
}
.contact-intro > p {
  max-width: 500px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}
.contact-vehicle {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 14px;
  margin-top: 34px;
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.contact-vehicle-image {
  height: 86px;
  border-radius: 11px;
  overflow: hidden;
  background: #e7e8e4;
}
.contact-vehicle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-vehicle-copy {
  padding: 4px 4px 3px;
  min-width: 0;
}
.contact-vehicle-copy > span {
  display: block;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  margin-bottom: 6px;
}
.contact-vehicle-copy > strong {
  display: block;
  font-family: Manrope;
  font-size: 14px;
  line-height: 1.25;
}
.contact-vehicle-copy > div {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 8px;
}
.contact-vehicle-copy b {
  font-family: Manrope;
  font-size: 12px;
}
.contact-vehicle-copy div span {
  font-size: 10px;
  color: var(--muted);
}
.back-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 28px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(16, 18, 17, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.back-contact:hover {
  color: var(--ink);
  border-color: #cfd3ce;
  transform: translateY(-1px);
  box-shadow: 0 7px 16px rgba(16, 18, 17, 0.08);
}
.contact-form-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  padding: 32px;
  box-shadow: 0 12px 40px rgba(16, 18, 17, 0.045);
}
.contact-flow-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 5px;
  border-radius: 13px;
  background: var(--paper);
}
.contact-flow-tab {
  border: 0;
  border-radius: 9px;
  padding: 11px 10px;
  background: transparent;
  color: var(--muted);
  font: 700 11px "DM Sans", sans-serif;
  cursor: default;
}
.contact-flow-tab span {
  margin-right: 5px;
  color: #969c95;
  font-size: 9px;
}
.contact-flow-tab.active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 2px 7px rgba(16, 18, 17, 0.06);
}
.contact-flow-tab:disabled {
  opacity: 0.6;
}
.auth-gate {
  order: 2;
  padding: 42px 8px 12px;
  text-align: center;
}
#authenticatedContent {
  order: 1;
}
.auth-gate h2 {
  font-family: Manrope;
  font-size: 30px;
  letter-spacing: -1px;
  margin: 8px 0;
}
.auth-gate > p {
  max-width: 390px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}
.google-auth-btn,
.email-auth-form .secondary-btn {
  width: 100%;
  min-height: clamp(42px, 4vw, 45px);
  border-radius: 11px;
  font: 700 clamp(11px, 1vw, 12px) "DM Sans", sans-serif;
  cursor: pointer;
}
.google-auth-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}
.google-auth-btn:disabled,
.email-auth-form .secondary-btn:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}
.google-mark {
  font-family: Manrope;
  font-size: 16px;
  font-weight: 800;
}
.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 0;
  color: #969c95;
  font-size: 10px;
}
.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--line);
}
.email-auth-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 11px;
  margin-top: 14px;
  text-align: left;
}
.contact-form-card .email-auth-form {
  grid-template-columns: 1fr;
}
.email-auth-form .auth-email-field,
.email-auth-form .secondary-btn {
  grid-column: 1;
  width: 100%;
}
.auth-email-field > span {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.auth-email-field input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 12px 13px;
  background: var(--paper);
  color: var(--ink);
  font: 500 12px "DM Sans", sans-serif;
  outline: none;
}
.auth-email-field input:focus {
  border-color: #aeb4ae;
  box-shadow: 0 0 0 3px rgba(201, 241, 91, 0.18);
}
.auth-status {
  min-height: 18px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}
.auth-gate .auth-status {
  margin: 12px auto 0;
}
.auth-status.error {
  color: #a34c43;
}
.form-heading h2 {
  font-family: Manrope;
  font-size: 30px;
  letter-spacing: -1px;
  margin: 7px 0 8px;
}
.form-heading p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
  margin: 0;
}
.contact-form-card form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  margin-top: 26px;
}
.financing-form-fields {
  display: contents;
}
.payment-choice-step {
  grid-column: 1 / -1;
  min-width: 0;
  margin: 0 0 6px;
  padding: 0;
  border: 0;
}
.payment-choice-step legend {
  padding: 0;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.payment-choice-step > p {
  margin: 6px 0 14px;
  color: var(--muted);
  font-size: 12px;
}
.payment-empty-state {
  min-height: 150px;
  display: grid;
  place-items: center;
  margin-top: 16px;
  padding: 16px;
  border: 1px dashed #cfd4cc;
  border-radius: 12px;
  background: #fbfcf9;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}
.payment-empty-state[hidden] {
  display: none;
}
.payment-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.payment-choice-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 0;
  min-width: 0;
  padding: 15px;
  border: 2px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
}
.payment-choice-card:hover {
  border-color: #b7bdb6;
}
.payment-choice-card:focus-within {
  border-color: var(--ink);
  outline: 2px solid rgba(201, 241, 91, 0.5);
  outline-offset: 2px;
}
.payment-choice-card:has(input:checked) {
  border-color: var(--ink);
  background: #f1f7df;
}
.payment-choice-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.payment-choice-icon {
  display: none;
}
.payment-choice-card strong {
  display: block;
  font-family: Manrope;
  font-size: 13px;
}
.payment-choice-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}
.payment-choice-card b {
  display: none;
}
.form-field {
  display: block;
}
.form-field[hidden] {
  display: none;
}
.form-field.full,
.form-field.full-name {
  grid-column: 1/-1;
}
.form-field > span {
  display: block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 7px;
  color: var(--ink);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 11px;
  padding: 12px 13px;
  font:
    500 12px "DM Sans",
    sans-serif;
  color: var(--ink);
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.form-field textarea {
  resize: vertical;
  min-height: 118px;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #aeb4ae;
  box-shadow: 0 0 0 3px rgba(201, 241, 91, 0.18);
}
.form-submit {
  grid-column: 1/-1;
  width: 100%;
  margin-top: 3px;
  border: 0;
  cursor: pointer;
}
.form-note {
  grid-column: 1/-1;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.6;
  margin: 0;
}
.form-success {
  text-align: center;
  padding: 50px 15px;
}
.success-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--accent);
  font-weight: 800;
}
.form-success h2 {
  font-family: Manrope;
  font-size: 28px;
  letter-spacing: -0.8px;
  margin: 0 0 8px;
}
.form-success p {
  max-width: 420px;
  margin: 0 auto 22px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}
@media (max-width: 900px) {
  .contact-layout {
    display: block;
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 22px 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(16, 18, 17, 0.045);
  }
  .contact-intro {
    position: static;
  }
  .contact-intro h1 {
    max-width: 700px;
  }
  .contact-vehicle {
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .contact-form-card {
    margin-top: 32px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
}
@media (max-width: 620px) {
  .payment-choice-card {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px;
  }
  .payment-choice-icon {
    display: none;
  }
  .payment-choice-card strong {
    font-size: 11px;
    line-height: 1.25;
  }
  .payment-choice-card small {
    font-size: 9px;
    line-height: 1.3;
  }
  .payment-choice-card b {
    display: none;
  }
  .contact-choice-dialog {
    width: 100%;
    padding: 28px 18px 18px;
    border-radius: 19px;
  }
  .contact-choice-grid {
    grid-template-columns: 1fr;
  }
  .contact-choice-card {
    grid-template-columns: 1fr;
    padding: 15px;
  }
  .choice-icon {
    display: none;
  }
  .contact-page {
    padding: 0 0 65px;
  }
  .contact-layout {
    position: relative;
    display: block;
    margin: 0 calc(-50vw + 50%);
    padding: 24px 16px;
    background: var(--paper);
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .contact-intro {
    padding: 0;
  }
  .contact-intro h1 {
    font-size: 34px;
    letter-spacing: -1.5px;
  }
  .contact-vehicle {
    grid-template-columns: 82px minmax(0, 1fr);
    margin-top: 18px;
  }
  .back-contact {
    float: none;
    margin-bottom: 24px;
  }
  .contact-form-card {
    margin-top: 32px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .form-heading h2,
  .form-heading p {
    display: none;
  }
  .contact-form-card form {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .form-field.full {
    grid-column: auto;
  }
  .form-submit,
  .form-note {
    grid-column: auto;
  }
  .form-heading h2 {
    font-size: 26px;
  }
}

/* Shared viewport guardrails */
img,
svg {
  max-width: 100%;
}
button,
input,
select,
textarea {
  font: inherit;
  max-width: 100%;
}
.menu-btn {
  position: relative;
  display: none;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  color: var(--ink);
  font-size: 0;
}
.menu-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 18px;
}
.menu-icon span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}
.menu-icon span:first-child,
.menu-icon span:last-child {
  align-self: center;
  width: 14px;
}
.menu-btn[aria-expanded="true"] .menu-icon span:first-child {
  transform: translateY(7px) rotate(45deg);
}
.menu-btn[aria-expanded="true"] .menu-icon span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-btn[aria-expanded="true"] .menu-icon span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 1100px) {
  .menu-btn {
    display: inline-flex;
  }
}
.mobile-nav {
  display: none;
}
body.menu-open {
  overflow: hidden;
}

@media (min-width: 851px) and (max-width: 1100px) {
  .site-header {
    backdrop-filter: none;
  }
  body.menu-open .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
  }
  body::before {
    content: "";
    position: fixed;
    inset: 78px 0 0;
    background: rgba(16, 18, 17, 0.42);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 10;
    transition:
      opacity 0.2s ease,
      visibility 0.2s ease;
  }
  body.menu-open::before {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .desktop-nav,
  .nav-button {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .nav-wrap {
    position: relative;
  }
  .mobile-nav {
    position: fixed;
    top: 78px;
    right: 0;
    width: min(380px, 88vw);
    height: calc(100dvh - 78px);
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 24px;
    background: var(--paper);
    backdrop-filter: blur(14px);
    z-index: 19;
    border-left: 1px solid var(--line);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease,
      visibility 0.2s ease;
  }
  .mobile-nav.open,
  .menu-btn[aria-expanded="true"] + .mobile-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }
  .mobile-nav a {
    padding: 15px 12px;
    border-radius: 9px;
    font-size: 15px;
    color: var(--muted);
  }
  .mobile-nav a:hover,
  .mobile-nav a:focus-visible {
    background: #eceee9;
    color: var(--ink);
  }
  .mobile-nav a:last-child {
    margin-top: auto;
    background: var(--dark);
    color: #fff;
    padding: 13px 16px;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mobile-nav a:last-child span {
    color: var(--accent);
    margin-left: 14px;
  }
  .mobile-nav a:last-child:hover,
  .mobile-nav a:last-child:focus-visible {
    background: var(--dark);
    color: #fff;
  }
  .menu-btn[aria-expanded="true"] {
    background: transparent;
  }
}

@media (max-width: 850px) {
  .site-header {
    backdrop-filter: none;
  }
  body.menu-open .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
  }
  body::before {
    content: "";
    position: fixed;
    inset: 72px 0 0;
    background: rgba(16, 18, 17, 0.42);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 10;
    transition:
      opacity 0.2s ease,
      visibility 0.2s ease;
  }
  body.menu-open::before {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .site-header {
    height: 72px;
  }
  .nav-wrap {
    position: relative;
  }
  .menu-btn {
    position: relative;
    z-index: 23;
  }
  .mobile-nav {
    position: fixed;
    top: 72px;
    right: 0;
    width: min(380px, 88vw);
    height: calc(100dvh - 72px);
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 24px;
    background: var(--paper);
    backdrop-filter: blur(14px);
    z-index: 19;
    border-left: 1px solid var(--line);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease,
      visibility 0.2s ease;
  }
  .mobile-nav.open,
  .menu-btn[aria-expanded="true"] + .mobile-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }
  .mobile-nav a {
    padding: 15px 12px;
    border-radius: 9px;
    font-size: 15px;
    color: var(--muted);
  }
  .mobile-nav a:hover,
  .mobile-nav a:focus-visible {
    background: #eceee9;
    color: var(--ink);
  }
  .mobile-nav a:last-child {
    background: var(--dark);
    color: #fff;
    padding: 13px 16px;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
  }
  .mobile-nav a:last-child span {
    color: var(--accent);
    margin-left: 14px;
  }
  .mobile-nav a:last-child:hover,
  .mobile-nav a:last-child:focus-visible {
    background: var(--dark);
    color: #fff;
  }
  .menu-btn[aria-expanded="true"] {
    background: transparent;
  }
  .hero-grid {
    gap: 42px;
  }
  .search-box {
    gap: 22px;
  }
  .car-card {
    min-width: 0;
  }
  .car-meta {
    flex-wrap: wrap;
    row-gap: 8px;
  }
  .car-meta span {
    white-space: nowrap;
  }
  .details-layout,
  .contact-layout,
  .legal-layout {
    min-width: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    height: 68px;
  }
  .mobile-nav {
    top: 68px;
    height: calc(100dvh - 68px);
  }
  body::before {
    top: 68px;
  }
}

@media (max-width: 850px) and (orientation: portrait) {
  .mobile-nav {
    width: 100vw;
  }
}

@media (max-width: 560px) {
  .container {
    width: calc(100% - 28px);
  }
  .legal-layout {
    display: block;
  }
  .legal-section {
    padding-top: 30px;
    padding-bottom: 55px;
  }
  .legal-content h2:not(:first-child) {
    margin-top: 32px;
  }
  h1 {
    line-height: 1.02;
  }
  .hero-actions,
  .details-error-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }
  .hero-actions a,
  .details-error-actions a {
    width: 100%;
  }
  .hero-stats {
    gap: 10px;
  }
  .hero-stats strong {
    white-space: nowrap;
  }
  .section-head {
    align-items: flex-start;
    gap: 18px;
  }
  .section-head h2 {
    line-height: 1.05;
  }
  .view-all {
    white-space: nowrap;
    margin-top: 8px;
  }
  .buy-step p {
    max-width: none;
  }
  .filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }
  .filters select {
    width: 100%;
    min-width: 0;
  }
  .listing-area {
    padding-bottom: 70px;
  }
  .gallery-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }
  .details-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .details-actions .primary-btn,
  .details-actions .secondary-btn {
    width: 100%;
  }
  .spec-list {
    min-width: 0;
  }
  .spec-card {
    min-width: 0;
  }
  .spec-card strong {
    overflow-wrap: anywhere;
  }
  .legal-nav {
    display: none !important;
  }
  .legal-content p,
  .legal-content li {
    overflow-wrap: anywhere;
  }
  .footer-links {
    width: 100%;
  }
  .footer-col {
    min-width: 0;
  }
}

@media (max-width: 380px) {
  .hero-stats {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .hero-stats div {
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
  }
  .contact-vehicle {
    grid-template-columns: 1fr;
  }
  .contact-vehicle-image {
    height: 150px;
  }
}

.details-info .details-purchase-summary {
  border-top: 0;
}
.details-info .details-meta {
  border-top: 0;
  border-bottom: 0;
}
.details-info .details-specs {
  border-top: 0;
}
.details-gallery .details-description-block {
  border-top: 0;
}
.details-actions .primary-btn {
  min-width: clamp(150px, 18vw, 180px);
  height: clamp(40px, 4.2vw, 43px);
  border: 0;
}
.gallery-thumb {
  height: auto;
  aspect-ratio: 1 / 1;
}
.carfax-card {
  grid-template-columns: minmax(0, 1fr) auto;
}
.carfax-copy .carfax-brand {
  flex-direction: row;
  align-items: center;
  gap: 11px;
  margin-top: 14px;
  min-width: 0;
}
@media (max-width: 760px) {
  .carfax-card {
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .carfax-copy {
    grid-column: 1;
    grid-row: 1;
  }
  .carfax-button {
    grid-column: 2;
    grid-row: 1;
  }
}
@media (max-width: 480px) {
  .carfax-card {
    grid-template-columns: 1fr;
  }
  .carfax-copy {
    grid-column: 1;
    grid-row: auto;
  }
  .carfax-button {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (max-width: 850px) {
  .details-layout {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .details-gallery,
  .details-info {
    display: contents;
  }
  .details-layout .gallery-main {
    order: 1;
  }
  .details-layout .gallery-thumbs {
    order: 2;
  }
  .details-layout .details-info h1 {
    order: 3;
  }
  .details-layout .details-purchase-summary {
    order: 4;
  }
  .details-layout .details-meta {
    order: 5;
  }
  .details-layout .details-actions {
    order: 6;
  }
  .details-layout .details-specs {
    order: 7;
  }
  .details-layout .details-description-block {
    order: 8;
  }
  .details-layout .carfax-card {
    order: 9;
  }
}

@media (max-width: 560px) {
  .carfax-card {
    width: 100%;
    margin-top: 18px;
  }
  .carfax-copy,
  .carfax-button {
    width: 100%;
  }
}

@media (max-width: 850px) {
  .details-layout .details-purchase-summary,
  .details-layout .details-meta,
  .details-layout .details-actions,
  .details-layout .details-specs {
    width: 100%;
  }
}

@media (min-width: 561px) and (max-width: 850px) {
  .details-layout .details-purchase-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 0;
    margin-top: 22px;
  }
  .details-layout .details-purchase-summary > div {
    min-width: 0;
    padding: 17px 0;
  }
  .details-layout .details-purchase-summary > div:first-child {
    grid-column: 1 / -1;
    padding-bottom: 15px;
  }
  .details-layout .details-purchase-summary > div:nth-child(2),
  .details-layout .details-purchase-summary > div:nth-child(3) {
    border-bottom: 0;
  }
  .details-layout .details-purchase-summary > div:nth-child(2) {
    padding-right: 24px;
  }
  .details-layout .details-purchase-summary > div:nth-child(3) {
    border-left: 1px solid var(--line);
    padding-left: 24px;
  }
  .details-layout .details-purchase-summary span {
    max-width: 230px;
    line-height: 1.4;
  }
}

@media (max-width: 560px) {
  .details-layout .details-actions {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
  }
  .details-layout .details-actions .primary-btn,
  .details-layout .details-actions .secondary-btn {
    width: auto;
    min-width: 0;
    flex: 1 1 0;
    white-space: nowrap;
  }
  .gallery-main {
    height: auto;
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 360px) {
  .details-layout .details-actions {
    flex-wrap: wrap;
  }
  .details-layout .details-actions .primary-btn,
  .details-layout .details-actions .secondary-btn {
    flex-basis: 100%;
  }
}


/* =========================================================
   Mobile viewport / horizontal overflow fix
   ========================================================= */
html {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

img,
svg,
video,
canvas,
iframe {
  max-width: 100%;
}

input,
select,
textarea,
button {
  max-width: 100%;
}

@media (max-width: 850px) {
  .mobile-nav {
    width: min(380px, 100%);
    max-width: 100%;
    right: 0;
  }
}

@media (max-width: 850px) and (orientation: portrait) {
  .mobile-nav {
    width: 100%;
    max-width: 100%;
  }
}


/* =========================================================
   Mobile form focus: prevent browser auto-zoom
   Keep normal page pinch-zoom enabled.
   ========================================================= */
@media (max-width: 850px) {
  input,
  select,
  textarea,
  [contenteditable="true"],
  [role="textbox"] {
    font-size: 16px !important;
  }

  input:focus,
  select:focus,
  textarea:focus,
  [contenteditable="true"]:focus,
  [role="textbox"]:focus {
    font-size: 16px !important;
  }
}


/* =========================================================
   Finance + Get in Touch modal card UI
   ========================================================= */
.finance-options,
.payment-options,
.financing-options,
.contact-options,
.get-in-touch-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}

.finance-option,
.payment-option,
.financing-option,
.contact-option,
.get-in-touch-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--border-color, #e5e7eb);
  border-radius: 14px;
  background: var(--card-bg, #fff);
  cursor: pointer;
  text-align: left;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.finance-option:hover,
.payment-option:hover,
.financing-option:hover,
.contact-option:hover,
.get-in-touch-option:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

.finance-option.is-selected,
.payment-option.is-selected,
.financing-option.is-selected,
.contact-option.is-selected,
.get-in-touch-option.is-selected,
.finance-option:has(input:checked),
.payment-option:has(input:checked),
.financing-option:has(input:checked),
.contact-option:has(input:checked),
.get-in-touch-option:has(input:checked) {
  border-color: var(--primary, #111827);
}

.finance-option-icon,
.payment-option-icon,
.financing-option-icon,
.contact-option-icon,
.get-in-touch-option-icon {
  display: none !important;
}

.finance-option-content,
.payment-option-content,
.financing-option-content,
.contact-option-content,
.get-in-touch-option-content {
  min-width: 0;
  flex: 1;
}

.finance-option-title,
.payment-option-title,
.financing-option-title,
.contact-option-title,
.get-in-touch-option-title {
  display: block;
  font-weight: 600;
}

.finance-option-description,
.payment-option-description,
.financing-option-description,
.contact-option-description,
.get-in-touch-option-description {
  display: block;
  margin-top: 4px;
  font-size: .875rem;
  opacity: .7;
}

@media (max-width: 600px) {
  .finance-options,
  .payment-options,
  .financing-options,
  .contact-options,
  .get-in-touch-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .mobile-nav a.active:not(:last-child) {
    background: var(--accent);
    box-shadow: inset 3px 0 var(--ink);
    color: var(--ink);
    font-weight: 700;
  }

  .mobile-nav a:last-child.active {
    background: var(--accent);
    box-shadow: inset 0 0 0 2px var(--ink);
    color: var(--ink);
  }

  .mobile-nav a:last-child.active span {
    color: var(--ink);
  }
}
