/* Hero — California coastal */
.hero-ca {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-ca > .container {
    position: relative;
    z-index: 1;
    width: 100%;
}
.hero-ca__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.28) 42%, rgba(0,0,0,0.12) 70%),
        url('/assets/images/hero-motorenn.webp') 62% center/cover no-repeat;
}
.hero-ca__content {
    max-width: 580px;
    padding: 4rem 0 4rem clamp(1.25rem, 3vw, 2.5rem);
    text-align: left;
}
.hero-ca__eyebrow {
    margin: 0 0 0.65rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--red);
}
.hero-ca__content h1 {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 600;
    line-height: 1.12;
    text-transform: none;
    letter-spacing: 0;
    color: #fff;
}
.hero-ca__content p {
    margin: 0 0 1.75rem;
    color: rgba(255,255,255,0.92);
    font-size: 1.02rem;
    max-width: 48ch;
}
.hero-ca__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.75rem;
}

/* Sections */
.section-ca { padding: 4rem 0; background: var(--white); }
.section-head-ca {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
}
.section-head-ca h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 3vw, 1.95rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.section-head-ca__line {
    display: block;
    width: 48px;
    height: 3px;
    background: var(--red);
    margin-top: 0.5rem;
}

/* Vehicle cards — California style */
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.vehicle-grid--ca {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.75rem;
}
.vehicle-grid--inventory {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 380px));
    justify-content: center;
    gap: 1.75rem;
}

.vehicle-card--ca {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.vehicle-card--ca:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}
.vehicle-card__media {
    display: block;
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #eee;
}
.vehicle-card__media--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
    background: linear-gradient(180deg, #f3f5f7 0%, #e7ebef 100%);
}
.vehicle-card__placeholder {
    width: min(42%, 120px);
    height: auto;
    object-fit: contain;
    opacity: 0.55;
}
.vehicle-card__no-photo {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.vehicle-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.vehicle-card--ca:hover .vehicle-card__media img { transform: scale(1.04); }
.vehicle-card__body {
    padding: 1.25rem 1.35rem 1.4rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.vehicle-card__row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
}
.vehicle-card__body h3 {
    margin: 0 0 0.25rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.25;
}
.vehicle-card__body h3 a:hover { color: var(--red); }
.vehicle-card__meta {
    margin: 0 0 0.75rem;
    font-size: 0.82rem;
    color: var(--text-muted);
}
.vehicle-card__price {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
    white-space: nowrap;
}
.vehicle-card__cta {
    display: block;
    margin-top: auto;
    padding: 0.8rem 1rem;
    border: 2px solid var(--black);
    border-radius: var(--radius);
    text-align: center;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.vehicle-card__cta:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}
.vehicle-card__cta-label--mobile { display: none; }
.vehicle-card__cta-label--desktop { display: inline; }

/* Inventory page */
.inventory-hero {
    position: relative;
    min-height: 280px;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}
.inventory-hero__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.5) 100%),
        url('/assets/images/hero-motorenn.webp') 55% 35%/cover no-repeat;
}
.inventory-hero__head,
.inventory-hero__body,
.inventory-hero__content {
    position: relative;
    z-index: 1;
}
.inventory-hero__content {
    padding: 3.5rem 0 3.25rem;
    text-align: center;
}
.inventory-hero__head {
    padding: 3rem 0 0;
}
.inventory-hero__head h1,
.inventory-hero__content h1 {
    margin: 0 0 0.65rem;
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 300;
    font-style: normal;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    line-height: 1.05;
    max-width: none;
    color: #fff;
    text-shadow: none;
}
.inventory-hero__body {
    padding: 0 0 3rem;
}
.inventory-hero__body p,
.inventory-hero__content p {
    margin: 0 auto;
    max-width: 520px;
    color: rgba(255,255,255,0.9);
    font-size: 0.98rem;
    font-weight: 500;
    line-height: 1.55;
    text-shadow: none;
}
.inventory-hero__content h1 {
    margin-bottom: 0.85rem;
}

.inventory-page {
    padding: 2rem 0 3.5rem;
    background: var(--bg-soft);
}
.inventory-page__layout {
    display: block;
}

.inventory-filters {
    position: sticky;
    top: 88px;
    padding: 1.25rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.inventory-filters__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.15rem;
}
.inventory-filters__head h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.inventory-filters__reset {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border: 0;
    background: none;
    padding: 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted);
    cursor: pointer;
}
.inventory-filters__reset:hover { color: var(--red); }
.inventory-filters__field {
    display: block;
    margin-bottom: 0.85rem;
}
.inventory-filters__field > span {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.inventory-filters__field select {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    font-size: 0.88rem;
}
.inventory-filters__field select:focus {
    outline: none;
    border-color: var(--red);
}
.inventory-filters__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}
.inventory-filters .btn { margin-top: 0.35rem; }

.inventory-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
    padding: 0.85rem 1rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.inventory-toolbar__count {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.inventory-toolbar__count strong { color: var(--black); }
.inventory-toolbar__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.inventory-toolbar__sort {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--text-muted);
}
.inventory-toolbar__sort select {
    padding: 0.45rem 0.65rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    font-size: 0.82rem;
    font-weight: 600;
}
.inventory-view-toggle {
    display: inline-flex;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.inventory-view-toggle button {
    width: 36px;
    height: 34px;
    border: 0;
    background: var(--white);
    color: var(--text-muted);
    cursor: pointer;
    display: grid;
    place-items: center;
}
.inventory-view-toggle button.is-active {
    background: var(--black);
    color: var(--white);
}

.inventory-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
}
.inventory-grid--list {
    grid-template-columns: 1fr;
}
.inventory-grid--list .inv-card {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
}
.inventory-grid--list .inv-card__media { aspect-ratio: auto; min-height: 180px; }
.inventory-grid--list .inv-card__body {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto auto auto;
    align-content: center;
    column-gap: 1rem;
}
.inventory-grid--list .inv-card__price { grid-column: 2; grid-row: 1; text-align: right; align-self: start; }
.inventory-grid--list .inv-card__stats { grid-column: 1; grid-row: 3; }
.inventory-grid--list .inv-card__cta { grid-column: 1 / -1; max-width: 220px; }

.inv-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}
.inv-card:hover {
    box-shadow: 0 10px 28px rgba(17, 17, 17, 0.08);
    transform: none;
    border-color: #d9d2c8;
}
.inv-card__media {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #eee;
}
.inv-card__media--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
    background: linear-gradient(180deg, #f3f5f7 0%, #e7ebef 100%);
}
.inv-card__media--empty a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    height: 100%;
}
.inv-card__placeholder {
    width: min(38%, 110px);
    height: auto;
    object-fit: contain;
    opacity: 0.55;
}
.inv-card__no-photo {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.inv-card__media a { display: block; height: 100%; }
.inv-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.inv-card:hover .inv-card__media img { transform: scale(1.03); }
.inv-card__body {
    padding: 1rem 1.05rem 1.1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.inv-card__body h3 {
    margin: 0 0 0.35rem;
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.25;
}
.inv-card__body h3 a:hover { color: var(--red); }
.inv-card__meta {
    margin: 0 0 0.65rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
}
.inv-card__price {
    margin: 0 0 0.75rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
}
.inv-card__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    margin-bottom: 0.85rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
}
.inv-card__stats span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.inv-card__stats svg {
    color: var(--gold);
    flex-shrink: 0;
}
.inv-card__cta {
    display: block;
    margin-top: auto;
    padding: 0.75rem 0.85rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--white);
}
.inv-card__cta:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(193, 154, 107, 0.06);
}

.inventory-empty,
.inventory-no-results {
    padding: 3rem 2rem;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.inventory-empty h2,
.inventory-no-results h2 {
    margin: 0 0 0.65rem;
    font-family: var(--font-display);
    font-size: 1.35rem;
    text-transform: uppercase;
}
.inventory-empty p,
.inventory-no-results p {
    margin: 0 0 1.25rem;
    color: var(--text-muted);
}

/* Features */
.features-ca {
    padding: 4rem 0;
    background: var(--bg-soft);
}
.features-ca__title {
    margin: 0 0 2rem;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 1.85rem);
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}
.features-ca__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.feature-ca {
    text-align: center;
    padding: 1rem;
}
.feature-ca__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: grid;
    place-items: center;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    background: rgba(193, 154, 107, 0.06);
}
.feature-ca__icon svg {
    width: 28px;
    height: 28px;
    display: block;
}
.feature-ca h3 {
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.feature-ca p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* Contact block */
.contact-ca {
    padding: 4rem 0;
    background: var(--white);
}
.contact-ca__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 0.8fr;
    gap: 2rem;
    align-items: start;
}
.contact-ca__photo {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.contact-ca__photo picture,
.contact-ca__photo img {
    width: 100%;
    height: 100%;
    display: block;
}
.contact-ca__photo img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}
.contact-ca__form-wrap h2,
.contact-ca__info h3 {
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.contact-ca__form-wrap h2 { margin: 0 0 1rem; font-size: 1.5rem; }
.contact-ca__info h3 { margin: 0 0 1rem; font-size: 1.1rem; }
.contact-ca__info ul {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
}
.contact-ca__info li {
    margin-bottom: 0.85rem;
}
.contact-ca__info strong {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.15rem;
}
.contact-ca__info ul a { color: var(--red); font-weight: 600; }

.contact-ca__map {
    align-self: start;
}
.contact-map--home .contact-map__embed {
    --map-h: clamp(210px, 52vw, 290px);
}

/* Lead form */
.lead-form-section { padding: 0; }
.lead-form-section--compact { padding: 2rem 0 4rem; }
.lead-form-card {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}
.lead-form-card h2 {
    font-family: var(--font-display);
    text-transform: uppercase;
    color: var(--black);
}
.lead-form-card__subtitle {
    margin: 0 0 1rem;
    color: var(--text-muted);
    font-size: 0.92rem;
}
.lead-form__fields {
    display: grid;
    gap: 0.65rem;
    margin-bottom: 0.75rem;
}
.field input,
.field textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    font: inherit;
}
.field--full { grid-column: 1 / -1; }
.field textarea {
    min-height: 5.5rem;
    resize: vertical;
}
.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--red);
}
.lead-form__status { margin-top: 0.65rem; font-weight: 600; font-size: 0.9rem; }
.lead-form__status.is-success { color: #0f7a45; }
.lead-form__status.is-error { color: var(--red); }

/* Inner pages */
.page-banner {
    position: relative;
    min-height: 240px;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}
.page-banner__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.28) 50%, rgba(0,0,0,0.18) 100%),
        url('/assets/images/hero-motorenn.webp') center/cover no-repeat;
}
.page-banner__head,
.page-banner__body {
    position: relative;
    z-index: 1;
}
.page-banner__head {
    padding: 3.5rem 0 0;
}
.page-banner__head h1 {
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    color: #fff;
    text-shadow: none;
}
.page-banner__body {
    padding: 0 0 3.5rem;
}
.page-banner__body p {
    margin: 0;
    color: rgba(255,255,255,0.92);
    font-weight: 500;
    max-width: 50ch;
    text-shadow: none;
}
.page-banner--financing .page-banner__bg,
.page-banner--shipping .page-banner__bg,
.page-banner--about .page-banner__bg,
.page-banner--contact .page-banner__bg {
    background:
        linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.28) 50%, rgba(0,0,0,0.18) 100%),
        url('/assets/images/hero-motorenn.webp') center/cover no-repeat;
}

.inner-intro {
    padding: 2.5rem 0 0;
    background: var(--white);
}
.inner-intro__content {
    max-width: 720px;
    text-align: center;
    margin: 0 auto;
}
.inner-intro__content h2 {
    margin: 0 0 0.65rem;
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 1.85rem);
    font-weight: 700;
    text-transform: uppercase;
}
.inner-intro__content p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.65;
    font-size: 1rem;
}

.inner-section { padding: 3.5rem 0; background: var(--white); }
.inner-section--muted { background: var(--bg-soft); }
.inner-section__title {
    margin: 0 0 1.75rem;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 3vw, 1.65rem);
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}
.inner-section__lead {
    margin: -1rem 0 1.5rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.55;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}
.process-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.process-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem 1.25rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    text-align: center;
}
.inner-section--muted .process-card { background: var(--white); }
.process-card__icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 0.85rem;
    display: grid;
    place-items: center;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    background: rgba(193, 154, 107, 0.06);
}
.process-card__icon svg {
    width: 24px;
    height: 24px;
    display: block;
}
.process-card__num {
    display: block;
    margin-bottom: 0.55rem;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--gold);
    line-height: 1;
}
.process-card h3 {
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.process-card p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}
.info-cards--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.info-cards--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.info-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 4px solid var(--red);
    border-radius: var(--radius);
    padding: 1.35rem 1.25rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
.inner-section--muted .info-card { background: var(--white); }
.info-card h3 {
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
}
.info-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.about-split {
    padding: 3rem 0;
    background: var(--white);
}
.about-split__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}
.about-split__photo {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.about-split__photo picture,
.about-split__photo img {
    width: 100%;
    display: block;
}
.about-split__photo img {
    aspect-ratio: 4/3;
    object-fit: cover;
}
.about-split__text h2 {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    text-transform: uppercase;
}
.about-split__text p {
    margin: 0 0 1rem;
    color: var(--text-muted);
    line-height: 1.65;
}
.about-list {
    margin: 1.25rem 0 0;
    padding: 0;
    list-style: none;
}
.about-list li {
    position: relative;
    padding-left: 1.35rem;
    margin-bottom: 0.55rem;
    font-weight: 600;
    font-size: 0.92rem;
}
.about-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    text-align: center;
}
.about-stats__item {
    padding: 1.5rem 1rem;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.about-stats__item strong {
    display: block;
    margin-bottom: 0.35rem;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gold);
}
.about-stats__item span {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.inner-cta {
    padding: 2.5rem 0;
    background: var(--black);
    color: var(--white);
}
.inner-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.inner-cta h2 {
    margin: 0 0 0.35rem;
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 700;
    text-transform: uppercase;
}
.inner-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    max-width: 42ch;
}
.inner-cta__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

.contact-ca__hours {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin: 1rem 0;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-muted);
}
.contact-ca__hours strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--black);
}
.contact-map--page { margin: 0; }

.section { padding: 3rem 0; }
.section--muted { background: var(--bg-soft); }
.narrow-content { max-width: 720px; }
.empty-state {
    text-align: center;
    padding: 3rem;
    border: 1px dashed var(--border);
    border-radius: var(--radius);
}
.split-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.info-panel {
    background: var(--bg-soft);
    border-radius: var(--radius);
    padding: 1.25rem;
}
.check-list { padding-left: 1.2rem; }
.steps-list { padding-left: 1.2rem; }
.stack-buttons { display: grid; gap: 0.65rem; margin-top: 1rem; }
.content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.content-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
}

/* Vehicle detail */
.vehicle-detail { padding: 1.25rem 0 3rem; background: var(--white); }
.vehicle-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1.5rem;
    font-size: 0.82rem;
    color: var(--text-muted);
}
.vehicle-breadcrumb a { color: var(--text-muted); }
.vehicle-breadcrumb a:hover { color: var(--red); }
.vehicle-breadcrumb span:last-child {
    color: var(--black);
    font-weight: 600;
}

.vehicle-detail__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    grid-template-areas:
        "main-top side"
        "trust side"
        "main-specs side"
        "main-bottom side";
    gap: 2rem 2.5rem;
    align-items: start;
    margin-bottom: 2.5rem;
}

.vehicle-detail__main--top { grid-area: main-top; }
.vehicle-detail__main--specs { grid-area: main-specs; }
.vehicle-detail__main--bottom { grid-area: main-bottom; }
.vehicle-detail__side { grid-area: side; }
.vehicle-trust { grid-area: trust; }

.vehicle-detail__side {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    position: sticky;
    top: 88px;
}

.vehicle-detail__heading {
    margin: 0;
}

.vehicle-detail__gallery { margin-bottom: 0; }

.vehicle-gallery__dots { display: none; }

.vehicle-detail__mobile-bar,
.vehicle-mobile-bar { display: none; }

.vehicle-detail__specs-list {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: #ffffff;
}

.vehicle-spec-row {
    display: grid;
    grid-template-columns: 24px 1fr auto;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.84rem;
}

.vehicle-spec-row:last-child {
    border-bottom: 0;
}

.vehicle-spec-row__icon {
    width: 20px;
    height: 20px;
    background: center/contain no-repeat;
    opacity: 0.75;
}

.vehicle-spec-row__icon--mileage { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23C19A6B' stroke-width='1.8'%3E%3Cpath d='M12 6v6l3 2'/%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3C/svg%3E"); }
.vehicle-spec-row__icon--engine { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23C19A6B' stroke-width='1.8'%3E%3Cpath d='M8 10h8v8H8z'/%3E%3Cpath d='M10 6h4v4h-4z'/%3E%3C/svg%3E"); }
.vehicle-spec-row__icon--horsepower { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23C19A6B' stroke-width='1.8'%3E%3Cpath d='M13 2L4 14h7l-1 8 9-12h-7l1-8z'/%3E%3C/svg%3E"); }
.vehicle-spec-row__icon--transmission { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23C19A6B' stroke-width='1.8'%3E%3Ccircle cx='7' cy='7' r='2'/%3E%3Ccircle cx='17' cy='17' r='2'/%3E%3Cpath d='M9 7h6M7 9v6M15 15V9'/%3E%3C/svg%3E"); }
.vehicle-spec-row__icon--drivetrain { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23C19A6B' stroke-width='1.8'%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M12 2v4M12 18v4M2 12h4M18 12h4'/%3E%3C/svg%3E"); }
.vehicle-spec-row__icon--fuel { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23C19A6B' stroke-width='1.8'%3E%3Cpath d='M6 20V6a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v14'/%3E%3Cpath d='M14 8h2a2 2 0 0 1 2 2v4l2 2v4'/%3E%3C/svg%3E"); }
.vehicle-spec-row__icon--color { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23C19A6B' stroke-width='1.8'%3E%3Cpath d='M12 2a10 10 0 0 0 0 20c4 0 5-3 5-6H9'/%3E%3C/svg%3E"); }

.vehicle-spec-row__label {
    font-weight: 600;
    color: var(--text-muted);
}

.vehicle-spec-row__value {
    font-weight: 700;
    color: var(--black);
    text-align: right;
}

.vehicle-detail__vin {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-soft);
    font-size: 0.84rem;
}

.vehicle-gallery__main {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16/10;
    background: #e8e8e8;
    border: 1px solid var(--border);
}
.vehicle-gallery__main > img,
.vehicle-gallery__photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.vehicle-gallery__photo {
    border: 0;
    padding: 0;
    background: none;
    cursor: zoom-in;
}
.vehicle-gallery__expand {
    position: absolute;
    right: 0.85rem;
    bottom: 0.85rem;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: var(--white);
    cursor: pointer;
}
.vehicle-gallery__expand:hover { background: rgba(0, 0, 0, 0.72); }
.vehicle-gallery__main--placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-height: 320px;
    color: var(--text-muted);
}
.vehicle-gallery__main--placeholder img { width: min(280px, 70%); height: auto; object-fit: contain; }
.vehicle-gallery__counter {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    z-index: 2;
    padding: 0.35rem 0.65rem;
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 2px;
}
.vehicle-gallery__nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--black);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}
.vehicle-gallery__nav:hover { background: var(--white); }
.vehicle-gallery__nav--prev { left: 0.85rem; }
.vehicle-gallery__nav--next { right: 0.85rem; }

.vehicle-gallery__thumbs {
    display: flex;
    gap: 0.55rem;
    margin-top: 0.65rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
}
.vehicle-gallery__thumbs--mobile { display: none; }
.vehicle-gallery__thumb {
    border: 2px solid transparent;
    border-radius: var(--radius);
    padding: 0;
    background: none;
    cursor: pointer;
    flex: 0 0 96px;
}
.vehicle-gallery__thumb.is-active { border-color: var(--red); }
.vehicle-gallery__thumb img {
    width: 96px;
    height: 68px;
    object-fit: cover;
    border-radius: 2px;
    display: block;
}

/* Fullscreen gallery */
.vehicle-lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.vehicle-lightbox[hidden] { display: none; }
html.lightbox-open,
body.lightbox-open {
    overflow: hidden !important;
    height: 100% !important;
    overscroll-behavior: none;
    touch-action: none;
}
body.lightbox-open {
    position: fixed !important;
    left: 0;
    right: 0;
    width: 100%;
}
body.lightbox-open .site-shell {
    overflow: hidden !important;
}
body.lightbox-open .vehicle-lightbox {
    touch-action: pan-x;
    overscroll-behavior: none;
}

.vehicle-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
}

.vehicle-lightbox__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 1200px);
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle-lightbox__img {
    max-width: 100%;
    max-height: calc(100dvh - 2rem);
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    user-select: none;
}

.vehicle-lightbox__close {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    cursor: pointer;
}
.vehicle-lightbox__close svg {
    width: 20px;
    height: 20px;
    display: block;
}
.vehicle-lightbox__close:hover { background: rgba(0, 0, 0, 0.5); }

.vehicle-lightbox__nav {
    position: fixed;
    top: 50%;
    z-index: 3;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
}
.vehicle-lightbox__nav:hover { background: rgba(255, 255, 255, 0.22); }
.vehicle-lightbox__nav--prev { left: 1rem; }
.vehicle-lightbox__nav--next { right: 1rem; }

.vehicle-lightbox__counter {
    position: fixed;
    left: 50%;
    bottom: 1.25rem;
    z-index: 3;
    transform: translateX(-50%);
    padding: 0.4rem 0.75rem;
    background: rgba(0, 0, 0, 0.55);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 999px;
}

.vehicle-detail__heading h1 {
    margin: 0 0 0.55rem;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.18;
}
.vehicle-detail__subtitle {
    margin: 0 0 0.5rem;
    color: var(--text-muted);
    font-size: 0.92rem;
}
.vehicle-detail__price-label {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: none;
    color: var(--black);
    line-height: 1;
}
.vehicle-detail__price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.4rem 0.55rem;
    margin: 0 0 0.15rem;
}
.vehicle-detail__price {
    margin: 0;
    font-family: var(--font-body);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--red);
    line-height: 1;
}
.vehicle-detail__down {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.3;
}
.vehicle-detail__carfax {
    margin-bottom: 1rem;
}

.carfax-btn {
    --carfax-blue: #c19a6b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: 0.85rem 1rem;
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    background: var(--white);
    cursor: pointer;
    box-shadow: none;
    animation: none;
    transition: background 0.15s ease, border-color 0.15s ease;
}
.carfax-btn:hover {
    filter: none;
    transform: none;
    background: rgba(193, 154, 107, 0.08);
}
.carfax-btn:focus-visible {
    outline: 2px solid var(--carfax-blue);
    outline-offset: 3px;
}
.carfax-btn__mark {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1.15rem;
    gap: 1px;
    padding: 1px;
    border: 1.5px solid #111;
    background: #fff;
    flex-shrink: 0;
}
.carfax-btn__mark > span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1.15rem;
    background: #000;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.62rem;
    font-weight: 800;
    line-height: 1;
}
.carfax-btn__mark > span.is-x {
    background: #fff;
    color: #000;
}
.carfax-btn__text {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--black);
    white-space: nowrap;
}
.lead-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.lead-modal[hidden] { display: none; }
.lead-modal-open { overflow: hidden; }
.lead-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}
.lead-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 440px);
    max-height: calc(100vh - 2rem);
    overflow: auto;
}
.lead-modal__close {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    z-index: 2;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    color: var(--black);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
}
.lead-modal__close:hover { background: rgba(0, 0, 0, 0.12); }
.lead-form-card--modal {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem 1.35rem 1.35rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}
.lead-form-card--modal h2 {
    margin: 0 0 0.35rem;
    padding-right: 2rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
}
.lead-form-card--modal .lead-form-card__subtitle {
    margin: 0 0 1rem;
    font-size: 0.88rem;
    color: var(--text-muted);
}
.lead-form__fields--carfax {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}
.lead-form__fields--carfax .field:nth-child(3),
.lead-form__fields--carfax .field:nth-child(4) {
    grid-column: 1 / -1;
}
.lead-form-card--modal [data-lead-submit-btn] {
    margin-top: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.vehicle-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-soft);
    overflow: hidden;
}
.vehicle-trust__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.45rem;
    padding: 0.9rem 0.55rem;
    text-align: center;
    min-height: 100%;
}
.vehicle-trust__item + .vehicle-trust__item {
    border-left: 1px solid var(--border);
}
.vehicle-trust__icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    background: center/contain no-repeat;
}
.vehicle-trust__icon--title {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23C19A6B' stroke-width='1.8'%3E%3Cpath d='M12 3l7 3v6c0 4.2-3 7.4-7 9-4-1.6-7-4.8-7-9V6l7-3z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E");
}
.vehicle-trust__icon--history {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23C19A6B' stroke-width='1.8'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M8 12l2.5 2.5L16 9'/%3E%3C/svg%3E");
}
.vehicle-trust__icon--delivery {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23C19A6B' stroke-width='1.8'%3E%3Cpath d='M3 7h11v8H3z'/%3E%3Cpath d='M14 10h4l2 2v3h-6v-5z'/%3E%3Ccircle cx='7' cy='17' r='1.5'/%3E%3Ccircle cx='17' cy='17' r='1.5'/%3E%3Cpath d='M1 7h2M19 12h2'/%3E%3C/svg%3E");
}
.vehicle-trust__copy {
    display: grid;
    gap: 0.1rem;
}
.vehicle-trust__copy strong {
    font-size: 0.72rem;
    line-height: 1.3;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--black);
    font-family: var(--font-display);
    font-weight: 700;
}
.vehicle-trust__copy span {
    font-size: 0.7rem;
    line-height: 1.3;
    color: var(--text-muted);
}
.vehicle-detail__form-inline {
    display: none;
}

.vehicle-highlights {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.vehicle-highlights__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
}
.vehicle-highlights__icon {
    width: 26px;
    height: 26px;
    background: center/contain no-repeat;
    opacity: 0.75;
}
.vehicle-highlights__icon--mileage { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23C19A6B' stroke-width='1.8'%3E%3Cpath d='M12 6v6l3 2'/%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3C/svg%3E"); }
.vehicle-highlights__icon--fuel { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23C19A6B' stroke-width='1.8'%3E%3Cpath d='M6 20V6a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v14'/%3E%3Cpath d='M14 8h2a2 2 0 0 1 2 2v4l2 2v4'/%3E%3C/svg%3E"); }
.vehicle-highlights__icon--transmission { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23C19A6B' stroke-width='1.8'%3E%3Ccircle cx='7' cy='7' r='2'/%3E%3Ccircle cx='17' cy='17' r='2'/%3E%3Cpath d='M9 7h6M7 9v6M15 15V9'/%3E%3C/svg%3E"); }
.vehicle-highlights__icon--drivetrain { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23C19A6B' stroke-width='1.8'%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M12 2v4M12 18v4M2 12h4M18 12h4'/%3E%3C/svg%3E"); }
.vehicle-highlights__icon--title { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23C19A6B' stroke-width='1.8'%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3Crect x='4' y='4' width='16' height='16' rx='2'/%3E%3C/svg%3E"); }
.vehicle-highlights__icon--stock { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23C19A6B' stroke-width='1.8'%3E%3Cpath d='M7 7h10v10H7z'/%3E%3Cpath d='M7 11h10M11 7v10'/%3E%3C/svg%3E"); }
.vehicle-highlights__value {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.25;
}

.vehicle-description { margin-bottom: 2rem; }
.vehicle-description h2,
.vehicle-features h2 {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.vehicle-description__text {
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 0.92rem;
}

.vehicle-features { margin-bottom: 1rem; }
.vehicle-features__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.65rem 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.vehicle-features__grid li {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.35;
}
.vehicle-features__icon {
    flex-shrink: 0;
    color: var(--red);
    font-weight: 700;
}
.vehicle-features__empty {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.vehicle-video {
    margin-bottom: 1rem;
}
.vehicle-video h2 {
    margin: 0 0 0.65rem;
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: 1.05rem;
}
.vehicle-video__link {
    color: var(--red);
    word-break: break-all;
    font-size: 0.75rem;
    margin-top: 0.1rem;
}

.vehicle-detail__sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.vehicle-detail__btn {
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.78rem;
}
.lead-form-section--sidebar { padding: 0; }
.lead-form-card--sidebar {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.35rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}
.lead-form-card--sidebar h2 {
    margin: 0 0 0.35rem;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
}
.lead-form-card--sidebar .lead-form-card__subtitle {
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.lead-form-card--sidebar [data-lead-submit-btn] {
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.vehicle-specs-panel {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.vehicle-specs-panel h3 {
    margin: 0;
    padding: 0.85rem 1rem;
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border);
}
.vehicle-specs-panel__list { margin: 0; }
.vehicle-specs-panel__row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.65rem 1rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.82rem;
}
.vehicle-specs-panel__row:last-child { border-bottom: 0; }
.vehicle-specs-panel__row dt {
    margin: 0;
    color: var(--text-muted);
    font-weight: 600;
}
.vehicle-specs-panel__row dd {
    margin: 0;
    font-weight: 700;
    text-align: right;
    word-break: break-word;
}

.vehicle-detail__map { margin: 0 0 1.5rem; }
.contact-map {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #ffffff;
}
.contact-map__embed {
    overflow: hidden;
    --map-h: clamp(210px, 52vw, 290px);
    --map-pin-x: 48.4%;
    --map-pin-y: 48%;
    height: var(--map-h);
    background: #e8ecef;
    line-height: 0;
}
.contact-map__link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}
.contact-map__img {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    object-fit: cover;
    object-position: var(--map-pin-x) var(--map-pin-y);
}
.contact-map__pin {
    position: absolute;
    left: var(--map-pin-x);
    top: var(--map-pin-y);
    z-index: 2;
    width: 42px;
    height: 56px;
    transform: translate(-50%, -100%);
    pointer-events: none;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.28));
}
.contact-map__pin img {
    display: block;
    width: 100%;
    height: 100%;
}
.contact-map__card {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
    max-width: calc(100% - 20px);
    padding: 10px 12px 9px;
    background: #ffffff;
    border-radius: 2px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.28);
    line-height: 1.35;
}
.contact-map__card-line {
    display: block;
    font-size: 0.82rem;
    color: #202124;
}
.contact-map__card-cta {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.82rem;
    color: var(--gold);
    font-weight: 600;
}
.contact-map__caption {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1.25rem;
    padding: 1rem 1.15rem;
    background: var(--bg-soft);
    font-size: 0.9rem;
}
.contact-map__caption--compact {
    justify-content: center;
    padding: 0.75rem 1rem;
}
.contact-map__caption strong {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.contact-map__caption a { color: var(--red); font-weight: 700; }

@media (max-width: 1200px) {
    .inventory-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .vehicle-grid--ca { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 960px) {
    .vehicle-grid:not(.vehicle-grid--ca),
    .features-ca__grid,
    .contact-ca__grid,
    .vehicle-detail__layout,
    .split-grid,
    .contact-grid,
    .content-grid { grid-template-columns: 1fr; }
    .vehicle-detail__layout {
        grid-template-areas:
            "main-top"
            "heading"
            "trust"
            "sidebar"
            "main-specs"
            "main-bottom";
        gap: 0;
    }
    .vehicle-detail__layout,
    .vehicle-detail__main--top,
    .vehicle-detail__main--specs,
    .vehicle-detail__main--bottom,
    .vehicle-detail__side,
    .vehicle-detail__heading,
    .vehicle-detail__sidebar,
    .vehicle-trust {
        min-width: 0;
    }
    .vehicle-detail__side {
        display: contents;
        position: static;
    }
    .vehicle-detail__heading { grid-area: heading; }
    .vehicle-detail__sidebar { grid-area: sidebar; position: static; }
    .page-vehicle .vehicle-detail__specs-list { display: flex; }
    .page-vehicle .vehicle-detail__vin { display: flex; }
    .page-vehicle .vehicle-mobile-bar { display: grid; }
    .page-vehicle .vehicle-highlights { display: none; }
    .vehicle-highlights { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .vehicle-features__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .contact-ca__photo { order: -1; }
    .inventory-page__layout { grid-template-columns: 1fr; }
    .inventory-filters { position: static; }
    .inventory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .vehicle-grid--ca { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .process-grid--3 { grid-template-columns: 1fr; }
    .info-cards,
    .info-cards--2,
    .info-cards--3 { grid-template-columns: 1fr; }
    .about-split__grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .inner-cta__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
    .hero-ca__actions {
        flex-direction: column;
        align-items: center;
    }
    .hero-ca__actions .btn {
        width: auto;
        min-width: min(17.5rem, 100%);
    }
    .section-head-ca { flex-direction: column; align-items: flex-start; }
    .vehicle-highlights { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .vehicle-features__grid { grid-template-columns: 1fr; }
    .inventory-hero__content { padding: 2rem 0 2rem; }
    .inventory-toolbar { flex-direction: column; align-items: stretch; }
    .inventory-toolbar__actions { justify-content: space-between; }
    .inventory-grid--list .inv-card { grid-template-columns: 1fr; }
    .inventory-grid { grid-template-columns: 1fr; }
    .vehicle-grid--ca { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr; }
}

/* Motorenn listing overlays and homepage */
.hero-mn {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
}
.hero-mn > .container {
    position: relative;
    z-index: 1;
}
.hero-mn__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.45) 100%),
        url('/assets/images/hero-motorenn.webp') center 40%/cover no-repeat;
}
.hero-mn__content {
    max-width: 760px;
    padding: 5rem 0;
    text-align: left;
}
.hero-mn__content h1 {
    margin: 0 0 0.75rem;
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 5.5vw, 3.6rem);
    font-weight: 600;
    line-height: 1.1;
    color: #fff;
}
.hero-mn__lead {
    margin: 0 0 1.75rem;
    font-size: 1.15rem;
    font-weight: 400;
    color: rgba(255,255,255,0.92);
}
.hero-mn__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.motorenn-way {
    padding: 4rem 0;
    background: #f8f9fb;
    text-align: center;
}
.motorenn-way__intro {
    margin: 0 auto 0.75rem;
    max-width: 40ch;
    color: var(--text-muted);
}
.motorenn-way h2 {
    margin: 0 0 2rem;
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 600;
}
.motorenn-way__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.motorenn-way__item {
    background: #fff;
    border: 1px solid var(--border);
    padding: 1.5rem 1rem;
}
.motorenn-way__item strong {
    display: block;
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}
.motorenn-way__item span {
    color: var(--text-muted);
    font-size: 0.95rem;
}
.motorenn-way__tag {
    margin: 0;
    color: var(--black);
    font-weight: 600;
}
.features-ca__lead {
    max-width: 62ch;
    margin: 0 auto 2rem;
    text-align: center;
    color: var(--text-muted);
}
.about-ceo {
    margin-top: 1.25rem;
    font-weight: 700;
}
.about-quotes {
    display: grid;
    gap: 1rem;
}
.about-quotes blockquote {
    margin: 0;
    padding: 1.1rem 1.25rem;
    background: var(--bg-soft);
    border-left: 3px solid #000;
    color: var(--text);
    font-style: italic;
}

.listing-badge,
.listing-ribbon {
    pointer-events: none;
}
.listing-badge--hold {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    background: rgba(35, 35, 35, 0.92);
    color: #fff;
    text-align: center;
    padding: 0.5rem 0.7rem 0.55rem;
}
.listing-badge--hold strong {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.listing-badge--hold span {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    line-height: 1.35;
    color: rgba(255,255,255,0.9);
}
.listing-ribbon--sold {
    position: absolute;
    inset: 0;
    z-index: 3;
    overflow: hidden;
}
.listing-ribbon--sold span {
    position: absolute;
    top: 18%;
    left: -28%;
    width: 160%;
    background: var(--sold);
    color: #fff;
    text-align: center;
    font-weight: 800;
    letter-spacing: 0.28em;
    font-size: 1.05rem;
    padding: 0.5rem 0;
    transform: rotate(-32deg);
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}
.vehicle-card--sold,
.inv-card--sold {
    cursor: default;
    pointer-events: auto;
    user-select: none;
}
.vehicle-card--sold:hover,
.inv-card--sold:hover {
    transform: none;
    box-shadow: none;
}
.vehicle-card--sold .vehicle-card__media img,
.inv-card--sold .inv-card__media img {
    filter: grayscale(0.15);
}
.inv-card__cta--disabled {
    opacity: 0.55;
    pointer-events: none;
    cursor: default;
}
.vehicle-hold-header {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 28px 24px 24px;
    width: 100%;
}
.vehicle-hold-header strong {
    display: block;
    font: 700 32px/38px var(--font-mn, Montserrat, arial, sans-serif);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
}
.vehicle-hold-header p {
    margin: 10px auto 0;
    max-width: 720px;
    font: 400 16px/22px var(--font-pt, "PT Sans", arial, sans-serif);
    color: #fff;
}
.vehicle-hold-chrome {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 18px;
    background: #000;
    pointer-events: none;
}
.vehicle-hold-chrome__logo {
    width: 119px;
    height: 25px;
    flex-shrink: 0;
    object-fit: contain;
}
.vehicle-hold-chrome__features {
    margin: 0;
    color: #fff;
    font: 600 12px/16px var(--font-mn, Montserrat, arial, sans-serif);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: right;
}

@media (max-width: 900px) {
    .motorenn-way__grid { grid-template-columns: 1fr; }
    .hero-mn { min-height: 62vh; }
    .hero-mn__content { padding: 3.5rem 0 2.5rem; }
}
