@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800&family=DM+Sans:wght@400;500;600;700&display=swap");
:root {
  --red: #b71828;
  --yellow: #fac523;
  --ink: #202121;
  --muted: #70716f;
  --line: #e6e5e1;
  --paper: #f7f7f3;
  --font: "DM Sans", Arial, sans-serif;
  --heading: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font);
  font-size: 14px;
  background: #fff;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button,
a,
select {
  cursor: pointer;
}
button {
  color: inherit;
}
button:disabled {
  opacity: 0.5;
  cursor: wait;
}
a,
button {
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #d7a21a;
  outline-offset: 4px;
}
img {
  max-width: 100%;
  object-fit: cover;
  display: block;
}
.wrap {
  width: min(1240px, calc(100% - 96px));
  margin: auto;
}
.topbar {
  background: #242525;
  color: #e9e9e5;
  font-size: 11px;
  padding: 11px 0;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
}
.pin {
  color: var(--yellow);
  font-size: 17px;
  margin-right: 7px;
}
.top-divider {
  margin: 0 14px;
  color: #6e6e6c;
}
.header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
}
.nav {
  height: 94px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}
.brand {
  flex-shrink: 0;
}
.brand img {
  width: 217px;
  height: 58px;
  object-fit: contain;
}
.nav nav {
  display: flex;
  gap: 35px;
  height: 100%;
  align-items: center;
}
.nav nav a {
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  position: relative;
}
.nav nav a.active:after {
  position: absolute;
  content: "";
  bottom: 22px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
}
.nav-actions {
  display: flex;
  gap: 24px;
  align-items: center;
}
.language {
  border: 0;
  background: none;
  font-size: 11px;
  font-weight: 700;
  padding: 9px 0;
}
.language span {
  color: #8b8b88;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  padding: 17px 25px;
  font-size: 13px;
  font-weight: 700;
  border: 0;
  border-radius: 3px;
  min-height: 48px;
}
.button:hover {
  transform: translateY(-2px);
  filter: brightness(0.95);
}
.dark {
  background: var(--ink);
  color: #fff;
}
.small {
  padding: 13px 22px;
  min-height: 42px;
}
.yellow {
  background: var(--yellow);
  color: var(--ink);
}
.red-button {
  background: var(--red);
  color: white;
}
.hero {
  position: relative;
  min-height: 580px;
  color: #fff;
  overflow: hidden;
  background: #333e38;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background: url("/assets/hero.jpg") center 57% / cover;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(13, 23, 22, 0.9) 0%,
      rgba(13, 23, 22, 0.73) 36%,
      rgba(13, 23, 22, 0.08) 80%
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.24), transparent 50%);
}
.hero-content {
  position: relative;
  padding-top: 76px;
  padding-bottom: 75px;
}
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.eyebrow i {
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
}
.hero h1 {
  font-family: var(--heading);
  font-size: clamp(58px, 5.8vw, 82px);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -1px;
  margin: 24px 0;
}
.hero p {
  font-size: 14px;
  line-height: 1.8;
  color: #dedfd9;
  margin-bottom: 29px;
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  color: #d6d8d2;
  margin-top: 27px;
}
.check-circle {
  border: 1px solid #9b9f95;
  border-radius: 50%;
  height: 16px;
  width: 16px;
  text-align: center;
  font-size: 10px;
}
.hero-caption {
  position: absolute;
  right: 48px;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  letter-spacing: 1.7px;
}
.hero-caption > span:last-child {
  color: #c9ccc6;
  font-size: 8px;
}
.line {
  width: 28px;
  height: 1px;
  background: var(--yellow);
}
.trust-bar {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.trust-bar .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 24px 0;
}
.trust-bar .wrap > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  font-size: 12px;
  font-weight: 500;
  border-right: 1px solid #dcded7;
}
.trust-bar .wrap > div:last-child {
  border: 0;
}
.trust-icon {
  font-size: 23px;
  color: var(--red);
}
.inventory-section {
  padding-top: 79px;
  padding-bottom: 60px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 31px;
}
.red {
  color: var(--red);
}
h2 {
  font-family: var(--heading);
  font-size: 48px;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.4px;
  margin: 13px 0 14px;
}
.section-heading p,
.about-copy > p,
.visit-section > div > p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
}
.text-link {
  font-weight: 700;
  font-size: 12px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
  display: inline-block;
}
.filters {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr auto;
  border: 1px solid var(--line);
  padding: 19px;
  gap: 22px;
  align-items: center;
  border-radius: 4px;
}
.filters > label {
  border-right: 1px solid var(--line);
  padding-right: 18px;
}
.filters label > span {
  font-size: 9px;
  letter-spacing: 1.2px;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}
.filters input,
.filters select {
  width: 100%;
  border: 0;
  background: white;
  padding: 0;
  height: 24px;
  font-size: 12px;
  color: #60615e;
  outline-offset: 1px;
}
.search-field {
  display: flex;
  align-items: center;
  gap: 10px;
}
.search-field > span {
  font-size: 24px;
}
.inventory-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 26px 0 16px;
  font-size: 11px;
  color: var(--muted);
}
.inventory-meta select {
  border: 0;
  background: none;
  font-size: 11px;
  color: var(--ink);
  padding: 5px;
}
.demo-notice {
  font-size: 10px;
  color: #746648;
  background: #faf7ed;
  padding: 10px 12px;
  margin-bottom: 18px;
  border-radius: 3px;
}
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vehicle-card {
  border: 1px solid var(--line);
  border-radius: 5px;
  overflow: hidden;
  background: white;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px #24252510;
}
.vehicle-image {
  height: 220px;
  position: relative;
  overflow: hidden;
  background: #e5e6e2;
}
.vehicle-image > a {
  display: block;
  height: 100%;
}
.vehicle-image img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s;
}
.vehicle-card:hover img {
  transform: scale(1.035);
}
.badge {
  display: inline-block;
  background: #fff;
  padding: 6px 9px;
  font-size: 9px;
  font-weight: 700;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.vehicle-image .badge {
  position: absolute;
  left: 14px;
  top: 14px;
  pointer-events: none;
}
.badge.featured {
  background: var(--yellow);
}
.save-car {
  position: absolute;
  right: 13px;
  top: 13px;
  width: 31px;
  height: 31px;
  border: 0;
  border-radius: 50%;
  background: #ffffffeb;
  font-size: 21px;
  display: grid;
  place-items: center;
}
.save-car.saved {
  background: var(--red);
  color: #fff;
}
.vehicle-content {
  padding: 22px;
}
.vehicle-year {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 1px;
}
.vehicle-content h3 {
  font-family: var(--heading);
  font-size: 29px;
  font-weight: 600;
  margin: 4px 0;
}
.vehicle-trim {
  font-size: 11px;
  color: var(--muted);
  margin: 5px 0 17px;
}
.specs {
  display: flex;
  gap: 13px;
  color: #62645f;
  font-size: 10px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 19px;
}
.specs span + span:before {
  content: "·";
  margin-right: 13px;
  color: #a4a69e;
}
.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
}
.price {
  font-size: 24px;
  letter-spacing: -0.7px;
  font-weight: 700;
}
.card-bottom a {
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
}
.inventory-bottom {
  border-top: 1px solid var(--line);
  margin-top: 31px;
  padding-top: 24px;
  display: flex;
  justify-content: center;
  gap: 13px;
  align-items: center;
  font-size: 12px;
}
.inventory-bottom p {
  color: var(--muted);
}
.about-section {
  background: var(--paper);
  padding: 72px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-photo {
  position: relative;
}
.about-photo > img {
  width: 100%;
  height: 455px;
  border-radius: 3px;
}
.photo-label {
  background: var(--yellow);
  padding: 20px;
  position: absolute;
  bottom: 24px;
  left: -15px;
  right: 55px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  display: flex;
  justify-content: space-between;
}
.about-copy h2 {
  font-size: 55px;
}
.about-copy > p {
  margin-bottom: 24px;
}
.about-feature {
  display: flex;
  gap: 17px;
  padding: 18px 0;
  border-top: 1px solid #dedfd8;
}
.about-feature > span {
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  margin-top: 3px;
}
.about-feature h3 {
  font-size: 14px;
  margin: 0 0 6px;
}
.about-feature p {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
.about-copy > .text-link {
  margin-top: 14px;
}
.visit-section {
  padding-top: 77px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.visit-section h2 {
  font-size: 58px;
}
.visit-section .button {
  margin-top: 14px;
}
.visit-card {
  padding: 34px 38px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  align-self: center;
}
.visit-card-title {
  display: flex;
  gap: 15px;
  align-items: center;
}
.visit-card-title > span {
  font-size: 31px;
  color: var(--red);
}
.visit-card-title h3 {
  font-family: var(--heading);
  font-size: 30px;
  margin: 0;
}
.visit-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}
.hours {
  border-top: 1px solid var(--line);
  margin-top: 25px;
  padding-top: 12px;
}
.hours h4 {
  font-size: 9px;
  letter-spacing: 1.5px;
}
.hours p {
  font-size: 12px;
  margin-bottom: 0;
}
footer {
  background: #f4f4f0;
  border-top: 1px solid var(--line);
  padding: 35px 0 25px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
}
.footer-top p {
  color: var(--muted);
  font-size: 12px;
}
.footer-top > a:last-child {
  font-size: 12px;
  font-weight: 600;
}
.footer-bottom {
  border-top: 1px solid #ddded8;
  padding-top: 23px;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: var(--muted);
}
.footer-bottom > div {
  display: flex;
  gap: 25px;
}
.footer-bottom button {
  border: 0;
  padding: 0;
  background: none;
  font-size: 9px;
  color: var(--muted);
}
.legal {
  font-size: 9px;
  line-height: 1.8;
  color: #84867d;
  margin-top: 20px;
}
dialog {
  border: 0;
  border-radius: 8px;
  width: min(800px, calc(100% - 32px));
  padding: 0;
  max-height: 90vh;
  box-shadow: 0 20px 90px #0005;
}
dialog::backdrop {
  background: #151918aa;
  backdrop-filter: blur(4px);
}
.modal-close {
  position: absolute;
  z-index: 3;
  right: 14px;
  top: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: white;
  font-size: 24px;
}
.detail-image {
  width: 100%;
  height: 340px;
  object-fit: cover;
}
.detail-body {
  padding: 32px;
}
.detail-body h2 {
  margin-top: 6px;
}
.detail-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.detail-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 20px 0;
}
.detail-specs small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  margin-bottom: 5px;
}
.detail-description {
  line-height: 1.8;
  color: var(--muted);
}
.gallery-thumbs {
  display: flex;
  gap: 7px;
  padding: 10px;
  overflow: auto;
}
.gallery-thumbs button {
  padding: 0;
  border: 2px solid transparent;
  background: transparent;
  flex-shrink: 0;
}
.gallery-thumbs img {
  width: 80px;
  height: 55px;
}
.gallery-thumbs button:hover {
  border-color: var(--red);
}
.toast {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: white;
  padding: 14px 22px;
  border-radius: 4px;
  z-index: 100;
  box-shadow: 0 4px 20px #0002;
  display: none;
  max-width: 90%;
  text-align: center;
}
.toast.visible {
  display: block;
}
.empty {
  grid-column: 1/-1;
  padding: 50px;
  text-align: center;
  background: var(--paper);
  border-radius: 4px;
}
.empty h3 {
  font-family: var(--heading);
  font-size: 30px;
  margin: 0 0 12px;
}
.empty p {
  color: var(--muted);
}
[hidden] {
  display: none !important;
}
@media (min-width: 1500px) {
  .hero {
    min-height: 640px;
  }
  .hero-content {
    padding-top: 100px;
  }
}
@media (max-width: 1000px) {
  .wrap {
    width: calc(100% - 48px);
  }
  .nav nav {
    gap: 20px;
  }
  .nav-actions {
    gap: 16px;
  }
  .brand img {
    width: 180px;
  }
  .hero h1 {
    font-size: 70px;
  }
  .vehicle-image {
    height: 180px;
  }
  .vehicle-content {
    padding: 17px;
  }
  .specs {
    gap: 6px;
    font-size: 9px;
  }
  .specs span + span:before {
    margin-right: 6px;
  }
  .about-grid {
    gap: 40px;
  }
  .visit-section {
    gap: 45px;
  }
  .filters {
    gap: 13px;
  }
  .hero-caption {
    right: 24px;
  }
}
@media (max-width: 700px) {
  .wrap {
    width: calc(100% - 36px);
  }
  .topbar {
    font-size: 9px;
  }
  .top-divider,
  .topbar .top-divider + span {
    display: none;
  }
  .nav {
    height: 76px;
    gap: 10px;
  }
  .brand img {
    width: 163px;
    height: 52px;
  }
  .nav nav {
    display: none;
  }
  .nav-actions {
    gap: 13px;
  }
  .nav-actions .button {
    padding: 10px 13px;
    font-size: 11px;
    min-height: 37px;
  }
  .hero {
    min-height: 565px;
  }
  .hero-photo {
    background-position: 65% center;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, #0d1717e8, #0d171750),
      linear-gradient(0deg, #0d171740, #0d171710);
  }
  .hero-content {
    padding-top: 64px;
    padding-bottom: 74px;
  }
  .hero h1 {
    font-size: 63px;
  }
  .hero p {
    font-size: 12px;
    max-width: 330px;
  }
  .eyebrow {
    font-size: 8px;
    letter-spacing: 1.4px;
  }
  .hero-caption {
    left: 18px;
    right: auto;
    bottom: 23px;
    font-size: 8px;
  }
  .hero-caption > span:last-child {
    display: none;
  }
  .trust-bar .wrap {
    gap: 15px;
    padding: 17px 0;
  }
  .trust-bar .wrap > div {
    gap: 6px;
    font-size: 9px;
    line-height: 1.5;
    justify-content: start;
    border: 0;
  }
  .trust-icon {
    font-size: 19px;
  }
  .inventory-section {
    padding-top: 48px;
  }
  .section-heading {
    gap: 12px;
    align-items: flex-end;
  }
  .section-heading h2 {
    font-size: 39px;
  }
  .section-heading p {
    font-size: 11px;
    max-width: 230px;
  }
  .section-heading > .text-link {
    white-space: nowrap;
    font-size: 10px;
    margin-bottom: 16px;
  }
  .filters {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 15px;
  }
  .filters > label {
    border: 0;
    padding: 0;
  }
  .filters > label:first-child {
    grid-column: 1/-1;
    border-bottom: 1px solid var(--line);
    padding-bottom: 12px;
  }
  .filters > .button {
    grid-column: 1/-1;
    padding: 12px;
    min-height: 42px;
  }
  .vehicle-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .vehicle-image {
    height: 250px;
  }
  .vehicle-content {
    padding: 22px;
  }
  .vehicle-content h3 {
    font-size: 31px;
  }
  .specs {
    font-size: 11px;
    gap: 14px;
  }
  .inventory-bottom {
    flex-direction: column;
    gap: 3px;
  }
  .about-section {
    padding: 45px 0;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .about-photo > img {
    height: 330px;
  }
  .photo-label {
    left: -8px;
  }
  .about-copy h2 {
    font-size: 47px;
  }
  .visit-section {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .visit-section h2 {
    font-size: 50px;
  }
  .visit-card {
    padding: 27px;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 18px;
  }
  .footer-top p {
    display: none;
  }
  .footer-top > a:last-child {
    font-size: 10px;
  }
  .footer-bottom {
    gap: 18px;
    line-height: 1.7;
  }
  .footer-bottom > div {
    gap: 15px;
    white-space: nowrap;
  }
  .detail-image {
    height: 240px;
  }
  .detail-body {
    padding: 24px;
  }
  .detail-title h2 {
    font-size: 36px;
  }
  .detail-title .price {
    font-size: 23px;
  }
  .detail-specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .detail-body .button {
    width: 100%;
    margin-top: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
  }
}

.intake-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding-top: 55px;
  padding-bottom: 45px;
  border-bottom: 1px solid var(--line);
}
.intake-banner h2 {
  font-size: 40px;
}
.intake-banner p,
.intake-copy {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}
.intake-banner > .button {
  white-space: nowrap;
}
.intake-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 24px 0;
}
.intake-fields label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
}
.intake-fields input,
.intake-fields select,
.intake-fields textarea {
  border: 1px solid #d9dcd1;
  border-radius: 3px;
  padding: 12px;
  background: white;
  width: 100%;
  font: inherit;
}
.intake-fields .full {
  grid-column: 1/-1;
}
.intake-fields .intake-consent {
  flex-direction: row;
  align-items: flex-start;
  line-height: 1.7;
  font-weight: 400;
}
.intake-consent input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.intake-error {
  color: var(--red);
  font-size: 12px;
  line-height: 1.8;
}
.inquiry-success {
  padding: 55px 32px;
}
.inquiry-success p {
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 25px;
}
@media (max-width: 700px) {
  .intake-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding-top: 40px;
    padding-bottom: 35px;
  }
  .intake-banner h2 {
    font-size: 37px;
  }
  .intake-fields {
    grid-template-columns: 1fr;
  }
  .intake-fields input,
  .intake-fields textarea,
  .intake-fields select {
    font-size: 16px;
  }
}
