:root {
  --red: #d91f2d;
  --red-dark: #af1420;
  --ink: #17191d;
  --ink-soft: #292c31;
  --muted: #697078;
  --line: #e0e3e6;
  --soft: #f3f5f6;
  --paper: #ffffff;
  --green: #16845b;
  --gold: #b87818;
  --shell: min(1240px, calc(100% - 48px));
  --header-height: 76px;
  --radius: 6px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  cursor: pointer;
}

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

img {
  display: block;
  max-width: 100%;
}

svg {
  width: 1.1em;
  height: 1.1em;
  stroke-width: 1.8;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: #fff;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section-space {
  padding: 108px 0;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--red);
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-light {
  color: var(--ink);
  background: #fff;
}

.button-light:hover {
  color: #fff;
  background: var(--ink);
}

.button-dark {
  color: #fff;
  background: var(--ink);
}

.button-dark:hover {
  background: #363a41;
}

.button-outline {
  border-color: var(--ink);
  background: transparent;
}

.button-outline:hover {
  color: #fff;
  background: var(--ink);
}

.button-large {
  min-height: 52px;
  padding-inline: 24px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.prototype-ribbon {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 24px;
  color: #fff;
  background: var(--red);
  font-size: 11px;
}

.prototype-ribbon span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
}

.prototype-ribbon strong {
  font-size: 10px;
  font-weight: 500;
}

.utility-bar {
  min-height: 36px;
  color: #c8cbd0;
  background: var(--ink);
  font-size: 11px;
}

.utility-inner,
.utility-inner > div,
.utility-inner button,
.utility-inner a,
.utility-inner span {
  display: flex;
  align-items: center;
}

.utility-inner {
  min-height: 36px;
  justify-content: space-between;
}

.utility-inner > div {
  gap: 24px;
}

.utility-inner button {
  gap: 5px;
  padding: 0;
  border: 0;
  color: #fff;
  background: transparent;
}

.utility-inner a,
.utility-inner span {
  gap: 6px;
}

.utility-inner a {
  color: #fff;
  font-weight: 700;
}

.site-header {
  height: var(--header-height);
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid transparent;
  background: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 24px rgba(23, 25, 29, 0.08);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 4px;
}

.brand-mark svg {
  width: 23px;
  height: 23px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-size: 17px;
  font-weight: 900;
}

.brand-copy small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
}

.desktop-nav {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  margin-right: 28px;
}

.desktop-nav a {
  height: 100%;
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search,
.menu-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

.header-search:hover,
.menu-button:hover {
  border-color: var(--ink);
}

.menu-button {
  display: none;
}

.mobile-nav {
  display: none;
}

.hero {
  height: min(700px, calc(100vh - 100px));
  min-height: 590px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #31353a;
}

.hero-image {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
  animation: heroReveal 900ms ease both;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 15, 0.58);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 35px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}

.hero-kicker span {
  padding: 5px 8px;
  color: #fff;
  background: var(--red);
  border-radius: 3px;
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 900;
  line-height: 1.12;
}

.hero-offer {
  margin: 20px 0 12px;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.5;
}

.hero-offer strong {
  color: #ffca57;
}

.hero-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.hero-actions {
  display: flex;
  gap: 10px;
  margin-top: 34px;
}

.hero-proof {
  display: flex;
  gap: 0;
  margin-top: 46px;
}

.hero-proof > div {
  min-width: 145px;
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-proof > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-proof strong {
  font-size: 25px;
}

.hero-proof span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
}

.hero-scroll {
  position: absolute;
  right: 28px;
  bottom: 26px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
}

.quick-services {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.quick-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.quick-services button {
  min-height: 116px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  padding: 18px 24px;
  border: 0;
  border-right: 1px solid var(--line);
  background: #fff;
  text-align: left;
  transition: background-color 160ms ease, color 160ms ease;
}

.quick-services button:first-child {
  border-left: 1px solid var(--line);
}

.quick-services button:hover {
  color: #fff;
  background: var(--ink);
}

.quick-services button > span:first-child {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--red);
  background: #faedef;
  border-radius: 4px;
}

.quick-services button > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.quick-services button strong {
  font-size: 14px;
}

.quick-services button small {
  margin-top: 5px;
  overflow: hidden;
  color: var(--muted);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quick-services button:hover small {
  color: rgba(255, 255, 255, 0.6);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 44px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
}

.section-heading h2,
.store-info h2,
.inquiry-copy h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.18;
}

.section-heading > div > span {
  display: block;
  margin-top: 11px;
  color: var(--muted);
  font-size: 13px;
}

.vehicle-section {
  background: var(--soft);
}

.vehicle-tools {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.vehicle-filters {
  display: flex;
  align-items: center;
  gap: 6px;
}

.vehicle-filters button {
  min-width: 62px;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 3px;
  color: var(--muted);
  background: transparent;
  font-size: 12px;
}

.vehicle-filters button:hover {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.vehicle-filters button.is-active {
  color: #fff;
  border-color: var(--ink);
  background: var(--ink);
}

.vehicle-search {
  width: 220px;
  height: 38px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

.vehicle-search svg {
  color: var(--muted);
}

.vehicle-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 11px;
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.vehicle-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.vehicle-card:hover {
  border-color: #b9bdc2;
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(23, 25, 29, 0.09);
}

.vehicle-image {
  aspect-ratio: 4 / 2.8;
  position: relative;
  display: block;
  overflow: hidden;
  background: #e7e9eb;
}

.vehicle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.vehicle-card:hover .vehicle-image img {
  transform: scale(1.025);
}

.vehicle-image > span {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 8px;
  color: #fff;
  background: rgba(23, 25, 29, 0.82);
  border-radius: 3px;
  font-size: 9px;
  font-weight: 700;
}

.vehicle-body {
  padding: 19px 19px 17px;
}

.vehicle-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.vehicle-title p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 9px;
}

.vehicle-title h3 {
  margin: 0;
  font-size: 20px;
}

.vehicle-title em {
  padding: 4px 6px;
  color: var(--red);
  border: 1px solid #f0b9be;
  border-radius: 3px;
  background: #fff5f6;
  font-size: 8px;
  font-style: normal;
}

.vehicle-spec {
  margin: 8px 0 18px;
  overflow: hidden;
  color: var(--muted);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vehicle-price {
  min-height: 42px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}

.vehicle-price span {
  color: var(--red);
  font-size: 12px;
}

.vehicle-price strong {
  font-size: 24px;
}

.vehicle-price del {
  padding-bottom: 4px;
  color: #989da3;
  font-size: 9px;
}

.vehicle-benefit {
  min-height: 24px;
  display: flex;
  gap: 5px;
  margin-top: 10px;
}

.vehicle-benefit span {
  height: 22px;
  display: inline-flex;
  align-items: center;
  padding: 0 7px;
  color: var(--gold);
  border: 1px solid #e8c999;
  background: #fffaf0;
  font-size: 8px;
}

.vehicle-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.vehicle-actions button {
  min-height: 37px;
  border: 1px solid var(--red);
  border-radius: 3px;
  color: var(--red);
  background: #fff;
  font-size: 11px;
  font-weight: 700;
}

.vehicle-actions button:first-child {
  color: #fff;
  background: var(--red);
}

.vehicle-actions button:hover {
  color: #fff;
  background: var(--red-dark);
}

.vehicle-empty {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}

.vehicle-empty svg {
  width: 34px;
  height: 34px;
}

.vehicle-empty strong {
  margin-top: 12px;
  color: var(--ink);
  font-size: 15px;
}

.vehicle-empty span {
  margin-top: 5px;
  font-size: 11px;
}

.promotion-section {
  color: #fff;
  background: var(--red);
}

.section-heading-light .eyebrow {
  color: #ffcf6d;
}

.section-heading-light > div > span {
  color: rgba(255, 255, 255, 0.72);
}

.promo-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.promo-controls button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: #fff;
  background: transparent;
}

.promo-controls button:hover {
  color: var(--ink);
  background: #fff;
}

.promo-controls span {
  min-width: 52px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  text-align: center;
}

.promo-controls strong {
  color: #fff;
  font-size: 14px;
}

.promo-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.65fr);
  background: #fff;
}

.promo-feature {
  min-height: 510px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  color: var(--ink);
  animation: panelIn 240ms ease both;
}

.promo-feature > img {
  width: 100%;
  height: 100%;
  min-height: 510px;
  object-fit: cover;
}

.promo-feature > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 48px;
}

.promo-feature > div > span {
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
}

.promo-feature h3 {
  margin: 12px 0 16px;
  font-size: 32px;
}

.promo-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.promo-feature ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
  font-size: 11px;
}

.promo-feature li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.promo-feature li svg {
  color: var(--green);
}

.promo-feature > div > div {
  min-width: 220px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding: 12px 14px;
  border-left: 3px solid var(--red);
  background: var(--soft);
  font-size: 10px;
}

.promo-feature time {
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
}

.promo-list {
  display: flex;
  flex-direction: column;
  color: #fff;
  background: var(--ink);
}

.promo-list button {
  min-height: 126px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  text-align: left;
}

.promo-list button:last-child {
  border-bottom: 0;
}

.promo-list button:hover,
.promo-list button.is-active {
  color: #fff;
  background: #2b2e33;
}

.promo-list button.is-active {
  box-shadow: inset 4px 0 0 var(--red);
}

.promo-list button > span {
  font-size: 12px;
  font-weight: 800;
}

.promo-list button > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.promo-list strong {
  font-size: 13px;
}

.promo-list small {
  margin-top: 7px;
  overflow: hidden;
  font-size: 9px;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.online-label {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--green);
  font-size: 11px;
}

.online-label i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.advisor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.advisor-card {
  min-height: 370px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.advisor-card > img {
  width: 100%;
  height: 100%;
  min-height: 370px;
  object-fit: cover;
  object-position: center top;
}

.advisor-card > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 25px 20px;
}

.advisor-card > div > span {
  color: var(--red);
  font-size: 9px;
  font-weight: 700;
}

.advisor-card h3 {
  margin: 8px 0 6px;
  font-size: 24px;
}

.advisor-card p {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
}

.advisor-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.advisor-card li {
  padding: 4px 6px;
  color: var(--muted);
  background: var(--soft);
  font-size: 8px;
}

.advisor-card button {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  font-size: 11px;
  font-weight: 700;
}

.inquiry-section {
  color: #fff;
  background: var(--ink);
}

.inquiry-inner {
  min-height: 580px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.78fr);
  align-items: center;
  gap: 90px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.inquiry-copy .eyebrow {
  color: #ffcf6d;
}

.inquiry-copy h2 {
  max-width: 580px;
  font-size: 46px;
}

.inquiry-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 22px 0 38px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.9;
}

.inquiry-points {
  display: flex;
  gap: 28px;
}

.inquiry-points > span {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 8px;
}

.inquiry-points svg {
  grid-row: 1 / 3;
  color: #ffcf6d;
}

.inquiry-points strong {
  font-size: 10px;
}

.inquiry-points small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
}

.inquiry-form {
  padding: 28px;
  color: var(--ink);
  border-radius: var(--radius);
  background: #fff;
}

.form-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: -28px -28px 24px;
  border-bottom: 1px solid var(--line);
}

.form-tabs button {
  min-height: 58px;
  position: relative;
  border: 0;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
}

.form-tabs button::after {
  content: "";
  position: absolute;
  right: 20%;
  bottom: -1px;
  left: 20%;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
}

.form-tabs button.is-active {
  color: var(--red);
}

.form-tabs button.is-active::after {
  transform: scaleX(1);
}

.form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-fields label,
.lead-dialog form > label:not(.dialog-consent) {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-fields label > span,
.lead-dialog form label > span {
  color: var(--muted);
  font-size: 10px;
}

.form-fields input,
.form-fields select,
.lead-dialog input,
.lead-dialog select {
  width: 100%;
  height: 43px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 3px;
  outline: 0;
  color: var(--ink);
  background: #fff;
  font-size: 11px;
}

.form-fields input:focus,
.form-fields select:focus,
.lead-dialog input:focus,
.lead-dialog select:focus {
  border-color: var(--ink-soft);
}

.form-consent,
.dialog-consent {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 18px 0;
  color: var(--muted);
  font-size: 9px;
}

.form-consent input,
.dialog-consent input {
  width: 14px;
  height: 14px;
  accent-color: var(--red);
}

.button-submit {
  width: 100%;
}

.news-section {
  background: var(--soft);
}

.news-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
}

.news-feature {
  background: #fff;
}

.news-feature > a {
  display: block;
  overflow: hidden;
}

.news-feature img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 300ms ease;
}

.news-feature:hover img {
  transform: scale(1.02);
}

.news-feature > div {
  padding: 25px 26px 28px;
}

.news-feature span,
.news-list article span {
  color: var(--red);
  font-size: 9px;
  font-weight: 700;
}

.news-feature h3 {
  margin: 10px 0;
  font-size: 22px;
  line-height: 1.45;
}

.news-feature p,
.news-list article p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}

.news-feature > div > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 11px;
  font-weight: 700;
}

.news-list {
  border-top: 1px solid var(--ink);
}

.news-list article {
  min-height: 160px;
  display: grid;
  grid-template-columns: 55px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.news-list time {
  align-self: start;
  padding-top: 34px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.news-list h3 {
  margin: 8px 0 6px;
  font-size: 15px;
  line-height: 1.5;
}

.news-list article > a {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
}

.store-section {
  background: #fff;
}

.store-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: stretch;
}

.store-image {
  min-height: 560px;
  position: relative;
  overflow: hidden;
}

.store-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-image > span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 13px;
  color: #fff;
  background: rgba(23, 25, 29, 0.82);
  border-radius: 3px;
  font-size: 10px;
}

.store-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 20px 48px 64px;
}

.store-info h2 {
  font-size: 42px;
}

.store-info > p:not(.eyebrow) {
  max-width: 470px;
  margin: 20px 0 28px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
}

.store-info dl {
  margin: 0;
}

.store-info dl > div {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.store-info dt {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 10px;
}

.store-info dd {
  margin: 0;
  font-size: 11px;
  line-height: 1.7;
}

.store-info dd a {
  color: var(--red);
  font-weight: 700;
}

.store-actions {
  display: flex;
  gap: 9px;
  margin-top: 28px;
}

.site-footer {
  color: #fff;
  background: var(--ink);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1fr;
  gap: 70px;
  padding-top: 72px;
  padding-bottom: 64px;
}

.brand-light .brand-copy small {
  color: rgba(255, 255, 255, 0.46);
}

.footer-main > div:first-child > p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.footer-main > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.footer-main > div > strong {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
}

.footer-main > div > a,
.footer-main > div > button {
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  font-size: 11px;
}

.footer-main > div > a:hover,
.footer-main > div > button:hover {
  color: #fff;
}

.footer-contact > a {
  color: #fff !important;
  font-size: 20px !important;
  font-weight: 800;
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
}

.footer-bottom {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
}

.footer-bottom > div {
  display: flex;
  gap: 18px;
}

.floating-tools {
  position: fixed;
  z-index: 40;
  right: 14px;
  top: 50%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  transform: translateY(-35%);
  box-shadow: 0 10px 30px rgba(23, 25, 29, 0.12);
}

.floating-tools button,
.floating-tools a {
  width: 64px;
  height: 62px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  background: #fff;
  font-size: 8px;
}

.floating-tools > :last-child {
  border-bottom: 0;
}

.floating-tools button:hover,
.floating-tools a:hover {
  color: #fff;
  background: var(--red);
}

.floating-tools svg {
  width: 19px;
  height: 19px;
}

.mobile-action-bar {
  display: none;
}

.lead-backdrop {
  position: fixed;
  z-index: 90;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  background: rgba(10, 12, 15, 0.62);
  transition: opacity 160ms ease, visibility 160ms ease;
}

.lead-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
}

.lead-dialog {
  width: min(430px, calc(100% - 28px));
  position: fixed;
  z-index: 100;
  top: 50%;
  left: 50%;
  padding: 26px;
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  transform: translate(-50%, -46%);
  transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
  box-shadow: 0 24px 80px rgba(10, 12, 15, 0.26);
}

.lead-dialog.is-open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}

.dialog-close {
  width: 34px;
  height: 34px;
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--soft);
}

.lead-dialog > header {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-right: 30px;
}

.lead-dialog > header > span {
  width: 46px;
  height: 46px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  border-radius: 4px;
  background: var(--red);
}

.lead-dialog header p,
.lead-dialog header h2,
.lead-dialog header small {
  margin: 0;
}

.lead-dialog header p {
  color: var(--muted);
  font-size: 9px;
}

.lead-dialog header h2 {
  margin: 3px 0;
  font-size: 20px;
}

.lead-dialog header small {
  color: var(--muted);
  font-size: 8px;
}

.lead-dialog form {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 22px;
}

.lead-dialog form .button {
  width: 100%;
}

.lead-dialog .dialog-consent {
  flex-direction: row;
  margin: 0;
}

.lead-dialog > footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 18px -26px -26px;
  padding: 12px;
  color: var(--muted);
  background: var(--soft);
  border-radius: 0 0 6px 6px;
  font-size: 8px;
}

.lead-dialog > footer svg {
  color: var(--green);
}

.toast {
  min-width: 260px;
  min-height: 50px;
  position: fixed;
  z-index: 150;
  left: 50%;
  bottom: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 18px;
  color: #fff;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  background: var(--ink);
  transform: translate(-50%, 16px);
  transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
  box-shadow: 0 12px 34px rgba(23, 25, 29, 0.2);
  font-size: 11px;
}

.toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.toast svg {
  color: #59ce9a;
}

@keyframes heroReveal {
  from {
    opacity: 0.4;
    transform: scale(1.03);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  :root {
    --shell: min(100% - 40px, 1040px);
  }

  .desktop-nav {
    gap: 18px;
    margin-right: 18px;
  }

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

  .quick-services button {
    padding-inline: 16px;
  }

  .advisor-card {
    grid-template-columns: 1fr;
  }

  .advisor-card > img {
    height: 250px;
    min-height: 250px;
  }

  .advisor-card > div {
    min-height: 230px;
  }

  .inquiry-inner {
    gap: 50px;
  }

  .footer-main {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  .desktop-nav,
  .header-quote {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .menu-button {
    display: grid;
  }

  .mobile-nav {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 14px 20px 20px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    opacity: 0;
    visibility: hidden;
    background: #fff;
    transform: translateY(-8px);
    transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
    box-shadow: 0 18px 34px rgba(23, 25, 29, 0.1);
  }

  .mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-nav a {
    padding: 13px 10px;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    font-weight: 700;
  }

  .hero {
    height: 660px;
  }

  .hero-image {
    object-position: 60% center;
  }

  .quick-services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .quick-services button:nth-child(2) {
    border-right: 0;
  }

  .quick-services button:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .vehicle-grid {
    grid-template-columns: 1fr 1fr;
  }

  .promo-stage {
    grid-template-columns: 1fr;
  }

  .promo-list {
    flex-direction: row;
  }

  .promo-list button {
    min-width: 0;
    min-height: 100px;
    flex: 1;
    grid-template-columns: 24px minmax(0, 1fr);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 0;
  }

  .promo-list button > svg {
    display: none;
  }

  .advisor-grid {
    grid-template-columns: 1fr 1fr;
  }

  .advisor-card:last-child {
    grid-column: 1 / -1;
    grid-template-columns: 0.6fr 1.4fr;
  }

  .advisor-card:last-child > img {
    height: 100%;
  }

  .inquiry-inner {
    grid-template-columns: 1fr;
  }

  .news-layout {
    grid-template-columns: 1fr;
  }

  .store-grid {
    grid-template-columns: 1fr;
  }

  .store-image {
    min-height: 480px;
  }

  .store-info {
    padding: 54px 0 0;
  }

  .footer-main {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 28px);
  }

  body {
    padding-bottom: 64px;
  }

  .prototype-ribbon {
    padding-inline: 14px;
  }

  .prototype-ribbon strong {
    display: none;
  }

  .utility-bar {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .header-search {
    display: none;
  }

  .mobile-nav {
    grid-template-columns: 1fr;
  }

  .hero {
    height: calc(100svh - 210px);
    min-height: 460px;
    max-height: 620px;
    align-items: flex-end;
  }

  .hero-image {
    object-position: 63% center;
  }

  .hero-overlay {
    background: rgba(10, 12, 15, 0.62);
  }

  .hero-content {
    padding-bottom: 52px;
  }

  .hero-kicker {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 15px;
    font-size: 10px;
  }

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

  .hero-offer {
    margin-top: 14px;
    font-size: 20px;
  }

  .hero-note {
    font-size: 11px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 24px;
  }

  .hero-actions .button {
    min-width: 0;
    padding-inline: 9px;
    font-size: 11px;
  }

  .hero-proof {
    margin-top: 30px;
  }

  .hero-proof > div {
    min-width: 0;
    flex: 1;
    padding-left: 12px;
  }

  .hero-proof strong {
    font-size: 20px;
  }

  .hero-proof span {
    font-size: 8px;
  }

  .hero-scroll {
    display: none;
  }

  .quick-services-grid {
    width: 100%;
  }

  .quick-services button {
    min-height: 95px;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 9px;
    padding: 13px 12px;
  }

  .quick-services button > span:first-child {
    width: 34px;
    height: 34px;
  }

  .quick-services button > svg {
    display: none;
  }

  .quick-services button strong {
    font-size: 12px;
  }

  .quick-services button small {
    font-size: 8px;
  }

  .section-space {
    padding: 76px 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }

  .section-heading h2,
  .store-info h2,
  .inquiry-copy h2 {
    font-size: 31px;
  }

  .section-heading > div > span {
    max-width: 94%;
    font-size: 11px;
    line-height: 1.7;
  }

  .vehicle-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .vehicle-filters {
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .vehicle-filters button {
    flex: 0 0 auto;
  }

  .vehicle-search {
    width: 100%;
  }

  .vehicle-grid {
    grid-template-columns: 1fr;
  }

  .vehicle-card {
    display: block;
  }

  .vehicle-image {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 2.7;
  }

  .vehicle-image img {
    object-position: center;
  }

  .vehicle-body {
    min-width: 0;
    padding: 15px 13px;
  }

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

  .vehicle-price {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .vehicle-price strong {
    font-size: 21px;
  }

  .vehicle-benefit {
    flex-wrap: wrap;
  }

  .vehicle-actions {
    grid-template-columns: 1fr 1fr;
    margin-top: 12px;
    padding-top: 12px;
  }

  .vehicle-actions button {
    min-height: 34px;
  }

  .promo-feature {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .promo-feature > img {
    height: 250px;
    min-height: 250px;
  }

  .promo-feature > div {
    padding: 30px 22px;
  }

  .promo-feature h3 {
    font-size: 26px;
  }

  .promo-list {
    overflow-x: auto;
  }

  .promo-list button {
    min-width: 210px;
  }

  .advisor-grid {
    grid-template-columns: 1fr;
  }

  .advisor-card,
  .advisor-card:last-child {
    min-height: 300px;
    grid-column: auto;
    grid-template-columns: 42% 58%;
  }

  .advisor-card > img,
  .advisor-card:last-child > img {
    height: 100%;
    min-height: 300px;
  }

  .advisor-card > div {
    min-height: 300px;
    padding: 20px 16px;
  }

  .inquiry-inner {
    gap: 48px;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .inquiry-copy h2 {
    font-size: 34px;
  }

  .inquiry-points {
    flex-direction: column;
    gap: 16px;
  }

  .inquiry-form {
    padding: 20px 16px;
  }

  .form-tabs {
    margin: -20px -16px 20px;
  }

  .form-fields {
    grid-template-columns: 1fr;
  }

  .news-feature h3 {
    font-size: 19px;
  }

  .news-list article {
    min-height: 150px;
    grid-template-columns: 44px minmax(0, 1fr) 20px;
    gap: 10px;
  }

  .news-list article p {
    display: none;
  }

  .store-image {
    min-height: 330px;
  }

  .store-info {
    padding-top: 40px;
  }

  .store-info dl > div {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 12px;
  }

  .store-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .store-actions .button {
    min-width: 0;
    padding-inline: 9px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
    padding-top: 58px;
    padding-bottom: 48px;
  }

  .footer-main > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }

  .floating-tools {
    display: none;
  }

  .mobile-action-bar {
    height: 64px;
    position: fixed;
    z-index: 60;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 72px 72px 1fr;
    border-top: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 -8px 24px rgba(23, 25, 29, 0.08);
  }

  .mobile-action-bar a,
  .mobile-action-bar button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 0;
    border: 0;
    border-right: 1px solid var(--line);
    background: #fff;
    font-size: 9px;
  }

  .mobile-action-bar .mobile-primary {
    flex-direction: row;
    gap: 7px;
    color: #fff;
    background: var(--red);
    font-size: 13px;
    font-weight: 700;
  }

  .lead-dialog {
    max-height: calc(100vh - 28px);
    overflow-y: auto;
    padding: 20px;
  }

  .lead-dialog > footer {
    margin: 18px -20px -20px;
  }

  .toast {
    width: calc(100% - 28px);
    min-width: 0;
    bottom: 78px;
  }
}

@media (max-width: 400px) {
  .vehicle-title {
    gap: 5px;
  }

  .vehicle-title em {
    display: none;
  }

  .advisor-card,
  .advisor-card:last-child {
    grid-template-columns: 40% 60%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
