:root {
    --header-height: 98px;
    --bg: #050505;
    --bg-muted: #0a0a0a;
    --surface: #111111;
    --surface-soft: #171717;
    --text: #f5f5f5;
    --text-soft: #a3a3a3;
    --text-muted: #737373;
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.14);
    --primary: #ff0000;
    --primary-dark: #d90000;
    --secondary: #050505;
    --secondary-soft: #161616;
    --success: #16a34a;
    --danger: #dc2626;
    --shadow-sm: 0 14px 34px rgba(0, 0, 0, 0.22);
    --shadow-md: 0 22px 54px rgba(0, 0, 0, 0.28);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --container: 1280px;
    --font-body: "Manrope", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

main {
    overflow: clip;
}

.container {
    width: min(var(--container), calc(100% - 2rem));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(5, 5, 5, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: var(--header-height);
}

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

.brand img {
    height: 70px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--text);
    transition: color 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.is-active {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.language-switcher span {
    color: var(--text-muted);
}

.language-switcher a {
    font-weight: 600;
    color: var(--text-muted);
}

.language-switcher a.is-active {
    color: var(--primary);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px auto;
    background: var(--text);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 1.5rem;
    border: 0;
    border-radius: var(--radius-sm);
    color: #fff;
    background: var(--primary);
    font-weight: 700;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn--small {
    min-height: 44px;
    padding-inline: 1.25rem;
    font-size: 0.95rem;
}

.btn--ghost {
    color: #fff;
    background: transparent;
    border: 1px solid var(--border);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.06);
}

.btn--dark {
    color: #111111;
    background: #ffffff;
}

.btn--dark:hover {
    background: #ececec;
}

.hero {
    position: relative;
    min-height: calc(100svh - var(--header-height));
    color: #fff;
    background: var(--secondary);
    overflow: clip;
}

.hero__media,
.hero__overlay {
    position: absolute;
    inset: 0;
}

.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0.58;
    transform: scale(1.04);
    filter: saturate(0.92) contrast(1.04);
}

.hero__overlay {
    background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.78) 34%, rgba(5, 5, 5, 0.46) 66%, rgba(5, 5, 5, 0.22) 100%),
        linear-gradient(180deg, rgba(5, 5, 5, 0.16) 0%, rgba(5, 5, 5, 0.42) 100%);
}

.hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    min-height: calc(100svh - var(--header-height));
    padding: 7rem 0 6rem;
}

.hero__copy {
    max-width: 760px;
}

.hero__eyebrow {
    display: inline-flex;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.08);
}

.hero h1,
.page-header h1,
.section-intro h2,
.split-feature__copy h2,
.cta-banner h2,
.contact-form-card h2,
.contact-info-card h2,
.content-card h2,
.footer-grid h3,
.value-card h3,
.trust-card h3,
.process-step p,
.quick-action-card h3 {
    margin: 0;
    font-weight: 600;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.hero h1 {
    margin-top: 0;
    font-size: clamp(3.5rem, 7vw, 6.8rem);
    line-height: 0.92;
}

.hero p {
    max-width: 38rem;
    margin: 1.75rem 0 0;
    font-size: clamp(1.08rem, 2vw, 1.4rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.35rem;
}

.hero .btn--ghost {
    color: #111111;
    background: #fff;
    border-color: transparent;
}

.section {
    padding: 5rem 0;
}

.section--muted {
    background: var(--bg-muted);
}

.section--cta {
    padding-top: 0;
    padding-bottom: 0;
}

.page-header {
    padding: 4.5rem 0;
}

.page-header--muted {
    background: var(--bg-muted);
}

.page-header h1 {
    max-width: 13ch;
    font-size: clamp(2.6rem, 5vw, 4.4rem);
    line-height: 0.95;
}

.page-header p {
    max-width: 44rem;
    margin: 1.25rem 0 0;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-soft);
}

.section-intro {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.section-intro--center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.2rem;
    text-align: center;
    max-width: 760px;
    margin: 0 auto 2.5rem;
}

.section-intro--center p {
    width: min(100%, 38rem);
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    text-wrap: pretty;
}

.section-intro h2 {
    margin-bottom: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
}

.section-intro p {
    max-width: 42rem;
    margin: 1rem 0 0;
    color: var(--text-soft);
    line-height: 1.8;
}

.section-link,
.section-link-center {
    text-align: center;
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--primary);
    font-weight: 700;
}

.section-link:hover {
    color: var(--primary-dark);
}

.section-link-center {
    margin-top: 2rem;
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.vehicle-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.vehicle-card__image-link {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f3f1ed;
}

.vehicle-card__image-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    transition: transform 0.3s ease;
}

.vehicle-card:hover .vehicle-card__image-link img {
    transform: scale(1.01);
}

.vehicle-card__badges {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.vehicle-card__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.75rem;
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
}

.vehicle-card__badge--featured {
    background: var(--primary);
}

.vehicle-card__badge--available {
    color: #111111;
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
}

.vehicle-card__badge--sold {
    background: #111111;
}

.vehicle-card__body {
    padding: 1.35rem;
}

.vehicle-card h3 {
    margin: 0 0 1rem;
    font-size: 1.15rem;
    line-height: 1.45;
}

.vehicle-card__price,
.vehicle-price {
    margin-bottom: 1.1rem;
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.05em;
    color: var(--primary);
}

.vehicle-card__specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem 1rem;
    margin: 0 0 1.2rem;
    padding: 0;
    list-style: none;
}

.vehicle-card__specs li {
    display: grid;
    gap: 0.2rem;
}

.vehicle-card__specs span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.vehicle-card__specs strong {
    font-size: 0.92rem;
    color: var(--text);
}

.vehicle-card__cta {
    display: block;
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: var(--radius-sm);
    color: #fff;
    background: var(--secondary);
    text-align: center;
    font-weight: 700;
}

.vehicle-card__cta:hover {
    background: #000;
}

.trust-grid,
.values-grid,
.quick-actions-grid,
.process-grid {
    display: grid;
    gap: 1.5rem;
}

.trust-grid,
.quick-actions-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.values-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-card,
.value-card,
.quick-action-card,
.content-card,
.contact-form-card,
.contact-info-card,
.filters-panel,
.map-card,
.trust-box,
.inquiry-card,
.process-step {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.trust-card,
.value-card,
.quick-action-card {
    padding: 2rem;
}

.trust-card__icon,
.value-card__icon,
.process-step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 1.25rem;
    border-radius: 999px;
    color: var(--primary);
    background: rgba(255, 0, 0, 0.08);
    font-weight: 700;
}

.trust-card h3,
.value-card h3,
.quick-action-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.trust-card p,
.value-card p,
.quick-action-card p,
.split-feature__copy p,
.contact-info-card p,
.contact-form-card p,
.content-card p,
.cta-banner p,
.form-note {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.8;
}

.split-feature {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
}

.split-feature--story {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 3.5rem;
}

.split-feature--story .split-feature__copy {
    max-width: 44rem;
}

.split-feature--story .split-feature__copy p {
    max-width: 38rem;
    text-wrap: pretty;
}

.split-feature__copy h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.split-feature__copy p + p {
    margin-top: 1rem;
}

.split-feature__actions {
    margin-top: 2rem;
}

.split-feature__actions .btn {
    min-width: 190px;
}

.split-feature__media {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.split-feature__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-feature__media--home img {
    object-position: center 32%;
}

.split-feature__media--stack {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 1rem;
}

.split-feature__media--stack img {
    min-height: 460px;
}

.section--journey {
    background: #ffffff;
}

.journey-head {
    margin-bottom: 2.5rem;
}

.journey-head h2,
.journey-step h3 {
    margin: 0;
    font-weight: 600;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.journey-head h2 {
    max-width: 100%;
    font-size: clamp(2.1rem, 4vw, 3.2rem);
    line-height: 1;
    color: #111111;
}

.journey-head h2 span {
    display: block;
}

.journey-head p {
    max-width: 45rem;
    margin: 1rem 0 0;
    color: #5b5b5b;
    line-height: 1.8;
}

.journey-flow {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.journey-step {
    position: relative;
    padding-top: 1.45rem;
    border-top: 1px solid rgba(17, 17, 17, 0.16);
}

.journey-step::after {
    content: attr(data-step);
    position: absolute;
    top: 0.35rem;
    right: 0;
    font-size: clamp(2.8rem, 6vw, 4.4rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.06em;
    color: rgba(17, 17, 17, 0.05);
    pointer-events: none;
}

.journey-step__index {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary);
}

.journey-step h3 {
    max-width: 15ch;
    font-size: 1.34rem;
    line-height: 1.1;
    color: #111111;
}

.journey-step p {
    max-width: 30ch;
    margin: 0.8rem 0 0;
    color: #5b5b5b;
    line-height: 1.8;
}

.cta-banner {
    padding: 5rem 0 5.5rem;
    border-radius: 0;
    color: #fff;
    background: transparent;
    text-align: center;
    box-shadow: none;
    border: 0;
}

.cta-banner h2 {
    max-width: 18ch;
    margin: 0 auto;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1;
    text-wrap: pretty;
}

.cta-banner p {
    max-width: 42rem;
    margin: 1rem auto 0;
    color: rgba(255, 255, 255, 0.78);
}

.cta-banner__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.cta-banner .btn--ghost {
    color: #111111;
    background: #fff;
    border-color: transparent;
}

.filters-panel {
    padding: 1.5rem;
}

.filters-form {
    display: grid;
    gap: 1.2rem;
}

.filters-search label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.filters-search input,
.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 50px;
    padding: 0.9rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    background: var(--surface-soft);
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
    min-height: 140px;
    resize: vertical;
}

.filters-search input:focus,
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: 0;
    border-color: rgba(255, 0, 0, 0.35);
    background: #1d1d1d;
    box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.06);
}

.filters-grid,
.field-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field label {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.checkbox-field {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    min-height: 50px;
}

.checkbox-field--panel {
    padding: 0 0.2rem;
}

.checkbox-field input {
    width: 18px;
    height: 18px;
}

.filters-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.catalog-meta {
    margin: 1.75rem 0 1.5rem;
    color: var(--text-soft);
}

.breadcrumb-bar {
    padding: 1rem 0;
    background: var(--bg-muted);
}

.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-soft);
    font-weight: 600;
}

.breadcrumb-link:hover {
    color: var(--text);
}

.vehicle-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) 360px;
    gap: 2rem;
    align-items: start;
}

.vehicle-main {
    display: grid;
    gap: 2rem;
}

.vehicle-gallery .gallery-main {
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--bg-muted);
}

.gallery-main img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.gallery-thumb {
    padding: 0;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: none;
}

.gallery-thumb.is-active {
    border-color: var(--primary);
}

.gallery-thumb img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.vehicle-overview__top {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.vehicle-overview h1 {
    margin: 0 0 0.8rem;
    font-size: clamp(2.3rem, 4vw, 3.4rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1;
}

.vehicle-status-row {
    display: flex;
    gap: 0.75rem;
}

.vehicle-key-specs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.key-spec-card {
    padding: 1.15rem;
    border-radius: var(--radius-sm);
    background: var(--surface-soft);
}

.key-spec-card span {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.key-spec-card strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
}

.content-card {
    padding: 1.75rem;
}

.content-card + .content-card {
    margin-top: 1.5rem;
}

.content-card h2 {
    margin-bottom: 1rem;
    font-size: 1.7rem;
}

.spec-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 2rem;
}

.spec-list div {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--border);
}

.spec-list dt {
    color: var(--text-soft);
}

.spec-list dd {
    margin: 0;
    font-weight: 700;
    text-align: right;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.feature-item {
    padding: 0.95rem 1rem;
    border-radius: var(--radius-sm);
    background: var(--surface-soft);
    color: var(--text);
}

.vehicle-side {
    display: grid;
    gap: 1.25rem;
    position: sticky;
    top: 96px;
}

.contact-info-card,
.trust-box {
    padding: 1.5rem;
}

.contact-info-card h2,
.trust-box h3 {
    margin-bottom: 0.85rem;
    font-size: 1.45rem;
}

.contact-shortcuts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1rem;
}

.contact-shortcuts--stack {
    display: grid;
}

.contact-shortcuts a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    background: var(--surface-soft);
    font-weight: 600;
    text-align: center;
}

.side-actions {
    display: grid;
    gap: 0.85rem;
    margin-top: 1rem;
}

.trust-box__list {
    display: grid;
    gap: 0.75rem;
    margin: 0;
    padding-left: 1rem;
    color: var(--text-soft);
}

.inquiry-card {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2rem;
    padding: 1.75rem;
}

.inquiry-card__intro h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.vehicle-detail-hero {
    position: relative;
    padding: 1.25rem 0 4.5rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0) 32%),
        #050505;
}

.vehicle-detail-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
}

.vehicle-detail-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-width: 0;
    margin-bottom: 1.25rem;
}

.vehicle-detail-back {
    color: rgba(255, 255, 255, 0.72);
}

.vehicle-detail-topbar__brand {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.vehicle-detail-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.58fr) minmax(340px, 0.62fr);
    gap: clamp(1.2rem, 2.4vw, 2.2rem);
    align-items: stretch;
}

.vehicle-detail-gallery {
    display: grid;
    gap: 0.95rem;
    max-width: 100%;
    min-width: 0;
}

.vehicle-detail-gallery__main {
    position: relative;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--radius-lg);
    background: #0d0d0d;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.38);
}

.vehicle-detail-gallery__main::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 36%;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.32));
    pointer-events: none;
}

.vehicle-detail-gallery__main img {
    width: 100%;
    aspect-ratio: 16 / 9.45;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.vehicle-detail-gallery__main figcaption {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0.45rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(5, 5, 5, 0.72);
    backdrop-filter: blur(10px);
    font-size: 0.82rem;
    font-weight: 800;
}

.vehicle-detail-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.8rem;
    width: 100%;
}

.vehicle-detail-gallery__thumb {
    position: relative;
    width: 100%;
    min-width: 0;
    min-height: 0;
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    background: #111111;
    transition: border-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.vehicle-detail-gallery__thumb:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.38);
}

.vehicle-detail-gallery__thumb.is-active {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary);
}

.vehicle-detail-gallery__thumb img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    opacity: 0.72;
    transition: opacity 0.2s ease, transform 0.25s ease;
}

.vehicle-detail-gallery__thumb:hover img,
.vehicle-detail-gallery__thumb.is-active img {
    opacity: 1;
}

.vehicle-detail-gallery__thumb span {
    position: absolute;
    left: 0.55rem;
    bottom: 0.5rem;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.75);
}

.vehicle-detail-summary {
    display: grid;
    align-content: start;
    gap: 1.25rem;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    padding: clamp(1.25rem, 2.2vw, 1.85rem);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
        #101010;
    box-shadow: 0 28px 62px rgba(0, 0, 0, 0.34);
}

.vehicle-detail-summary__head {
    display: grid;
    gap: 1.1rem;
}

.vehicle-detail-summary .vehicle-card__badge {
    width: 100%;
    min-height: 38px;
    border-radius: var(--radius-sm);
}

.vehicle-detail-summary h1 {
    margin: 0;
    max-width: 100%;
    font-size: clamp(2.2rem, 3.2vw, 3.55rem);
    font-weight: 650;
    line-height: 0.96;
    letter-spacing: -0.04em;
    overflow-wrap: break-word;
    text-wrap: balance;
}

.vehicle-detail-price {
    padding-bottom: 1.15rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: clamp(2.25rem, 3.15vw, 3rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--primary);
}

.vehicle-detail-status-note {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.vehicle-detail-key-specs,
.vehicle-detail-specs {
    margin: 0;
}

.vehicle-detail-key-specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.vehicle-detail-key-specs div {
    min-width: 0;
    padding: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.045);
}

.vehicle-detail-key-specs dt,
.vehicle-detail-specs dt {
    color: var(--text-soft);
}

.vehicle-detail-key-specs dt {
    margin-bottom: 0.35rem;
    font-size: 0.76rem;
}

.vehicle-detail-key-specs dd,
.vehicle-detail-specs dd {
    margin: 0;
    font-weight: 750;
}

.vehicle-detail-key-specs dd {
    color: #ffffff;
    font-size: 0.98rem;
    line-height: 1.35;
    overflow-wrap: break-word;
}

.vehicle-detail-actions {
    display: grid;
    gap: 0.8rem;
    padding-top: 0.35rem;
}

.vehicle-detail-actions .btn {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    padding-inline: 1rem;
}

.vehicle-detail-actions__secondary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.vehicle-detail-secondary-link {
    display: inline-flex;
    justify-content: center;
    color: rgba(255, 255, 255, 0.68);
    font-weight: 700;
}

.vehicle-detail-secondary-link:hover {
    color: var(--text);
}

.vehicle-detail-content,
.vehicle-detail-related {
    background: #f7f4ef;
    color: #111111;
}

.vehicle-detail-content {
    padding-top: 4rem;
    padding-bottom: 4.75rem;
}

.vehicle-detail-sections {
    display: grid;
    gap: 1.35rem;
}

.vehicle-detail-block {
    padding: clamp(1.35rem, 3vw, 2.35rem);
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: var(--radius-md);
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.075);
}

.vehicle-detail-block--description {
    display: grid;
    grid-template-columns: minmax(190px, 0.32fr) minmax(0, 0.68fr);
    gap: clamp(1.3rem, 3vw, 3rem);
    align-items: start;
}

.vehicle-detail-block__header {
    display: grid;
    gap: 0.55rem;
}

.vehicle-detail-block__header h2 {
    margin: 0;
    color: #111111;
    font-size: clamp(1.45rem, 2.4vw, 2.1rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.vehicle-detail-block__eyebrow {
    display: inline-flex;
    color: var(--primary);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.vehicle-detail-description {
    max-width: 780px;
    color: #303030;
    font-size: 1.08rem;
    line-height: 1.9;
}

.vehicle-detail-feature-groups {
    display: grid;
    gap: 1.45rem;
    margin-top: 1.45rem;
}

.vehicle-detail-feature-group {
    padding-top: 1.2rem;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.vehicle-detail-feature-group h2 {
    margin: 0 0 0.9rem;
    color: #111111;
    font-size: 1.02rem;
    font-weight: 800;
    letter-spacing: 0;
}

.vehicle-detail-feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.vehicle-detail-feature-list span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0.65rem 0.9rem;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: var(--radius-sm);
    color: #111111;
    background: #f7f4ef;
    font-weight: 750;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.vehicle-detail-specs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1.45rem;
}

.vehicle-detail-specs div {
    min-width: 0;
    padding: 1rem;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: var(--radius-sm);
    background: #faf9f7;
}

.vehicle-detail-specs dt {
    margin-bottom: 0.4rem;
    color: #6b7280;
    font-size: 0.8rem;
}

.vehicle-detail-specs dd {
    color: #111111;
    font-size: 1rem;
    line-height: 1.35;
    overflow-wrap: break-word;
}

.vehicle-detail-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: center;
    padding: clamp(1.45rem, 3vw, 2.35rem);
    border-radius: var(--radius-md);
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(255, 0, 0, 0.18), rgba(255, 255, 255, 0.02) 38%),
        #101010;
    box-shadow: 0 22px 54px rgba(15, 23, 42, 0.18);
}

.vehicle-detail-cta h2 {
    margin: 0.45rem 0 0;
    max-width: 18ch;
    font-size: clamp(1.8rem, 3vw, 2.55rem);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.vehicle-detail-cta p {
    max-width: 44rem;
    margin: 0.85rem 0 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
}

.vehicle-detail-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.85rem;
}

.vehicle-detail-cta__actions .btn {
    min-width: 170px;
}

.vehicle-detail-related .section-intro h2 {
    color: #111111;
}

.contact-layout {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
}

.contact-sidebar {
    display: grid;
    gap: 1.5rem;
}

.contact-list {
    display: grid;
    gap: 1rem;
    margin: 1.25rem 0 0;
}

.contact-list dt {
    margin-bottom: 0.2rem;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.contact-list dd {
    margin: 0;
    line-height: 1.7;
}

.map-embed {
    overflow: hidden;
    border-radius: var(--radius-sm);
}

.map-embed iframe {
    width: 100%;
    min-height: 340px;
    border: 0;
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    min-height: 340px;
    padding: 1.5rem;
    text-align: center;
    color: var(--text-soft);
    background: var(--surface-soft);
}

.map-placeholder[hidden],
.map-embed iframe[hidden],
.map-embed iframe:not([src]) {
    display: none;
}

.contact-form-card {
    padding: 1.75rem;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.quick-actions-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quick-action-card .btn {
    margin-top: 1.25rem;
}

.process-step {
    padding: 1.75rem;
    text-align: center;
}

.process-step__number {
    margin-inline: auto;
}

.process-step p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-soft);
}

.site-footer {
    color: rgba(255, 255, 255, 0.84);
    background: var(--secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(180px, 0.8fr) minmax(250px, 1fr) minmax(320px, 1.05fr);
    gap: clamp(1.75rem, 3vw, 3.2rem);
    padding: 3.25rem 0 2.75rem;
    align-items: start;
}

.footer-column {
    min-width: 0;
}

.footer-brand img {
    height: 142px;
    width: auto;
    margin-bottom: 0;
}

.footer-brand p,
.footer-list,
.footer-address,
.footer-hours {
    color: rgba(255, 255, 255, 0.72);
}

.footer-brand {
    display: flex;
    align-items: center;
    max-width: none;
    padding-left: 0.35rem;
}

.footer-grid h3 {
    margin-bottom: 1rem;
    font-size: 1.02rem;
    color: #fff;
}

.footer-address {
    max-width: 26ch;
    margin: 0;
    font-style: normal;
    line-height: 1.8;
}

.footer-list {
    display: grid;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-list--contacts li {
    line-height: 1.7;
}

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

.footer-contact-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.footer-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-icon-link img {
    width: 20px;
    height: 20px;
    display: block;
    object-fit: contain;
}

.footer-icon-link:hover {
    color: #ffffff;
    background: rgba(255, 0, 0, 0.16);
    border-color: rgba(255, 0, 0, 0.45);
    transform: translateY(-1px);
}

.footer-hours {
    max-width: none;
    display: grid;
    gap: 0.18rem;
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.65;
    white-space: normal;
}

.footer-hours__line {
    display: block;
}

.footer-hours__line--spaced {
    margin-top: 0.8rem;
}

.footer-column--hours {
    justify-self: end;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 0 1.3rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.92rem;
}

.footer-bottom__link {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-bottom__link:hover {
    color: #ffffff;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.9rem;
}

.footer-bottom__button {
    padding: 0;
    border: 0;
    font: inherit;
    cursor: pointer;
    background: transparent;
}

.legal-layout {
    display: grid;
    gap: 1.5rem;
}

.legal-section h2 {
    margin-bottom: 0.85rem;
    font-size: 1.55rem;
}

.legal-section p + p {
    margin-top: 0.85rem;
}

.legal-table-wrap {
    overflow-x: auto;
}

.legal-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.legal-table th,
.legal-table td {
    padding: 0.9rem;
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
}

.legal-table th {
    color: var(--text);
    background: var(--surface-soft);
}

.legal-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.4rem;
}

.cookie-consent {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    z-index: 80;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.cookie-consent[hidden] {
    display: none;
}

.cookie-consent__panel {
    width: min(980px, 100%);
    padding: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, 0.84);
    background: rgba(15, 15, 15, 0.98);
    box-shadow: var(--shadow-lg);
    pointer-events: auto;
}

.cookie-consent__summary h2 {
    margin-bottom: 0.35rem;
    color: #ffffff;
    font-size: 1.08rem;
}

.cookie-consent__summary p {
    max-width: 76ch;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
}

.cookie-consent__links,
.cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.9rem;
}

.cookie-consent__links a {
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-consent__settings {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.cookie-consent__settings[hidden],
.cookie-consent__actions [hidden] {
    display: none;
}

.cookie-toggle {
    display: flex;
    gap: 0.65rem;
    min-width: 0;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.04);
}

.cookie-toggle input {
    width: 18px;
    height: 18px;
    margin-top: 0.1rem;
    accent-color: var(--primary);
    flex: 0 0 auto;
}

.cookie-toggle strong,
.cookie-toggle small {
    display: block;
}

.cookie-toggle strong {
    color: #ffffff;
    font-size: 0.9rem;
}

.cookie-toggle small {
    margin-top: 0.25rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.45;
}

.alerts {
    display: grid;
    gap: 0.75rem;
    padding-top: 1rem;
}

.alert {
    padding: 1rem 1.15rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
}

.alert--success {
    color: #166534;
    background: rgba(22, 163, 74, 0.12);
}

.alert--error {
    color: #991b1b;
    background: rgba(220, 38, 38, 0.12);
}

.field-error {
    display: block;
    margin-top: 0.35rem;
    color: var(--danger);
    font-size: 0.88rem;
    font-weight: 600;
}

.form-note {
    font-size: 0.9rem;
}

.form-note--muted {
    color: var(--text-muted);
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.empty-state {
    padding: 3rem;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
}

.empty-state h3,
.empty-state h1 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.empty-state p {
    max-width: 40rem;
    margin: 0 auto;
    color: var(--text-soft);
    line-height: 1.8;
}

.route-home main {
    background: #f6f3ee;
}

.route-home .section,
.route-home .section--featured {
    background: #f6f3ee;
}

.route-home .section--muted {
    background: #efebe4;
}

.route-home .section--cta {
    background: #050505;
}

.route-home .section + .section {
    border-top: 1px solid rgba(17, 17, 17, 0.06);
}

.route-home .section-intro h2,
.route-home .split-feature__copy h2,
.route-home .split-feature__copy h3,
.route-home .trust-card h3 {
    color: #111111;
}

.route-home .section-intro p,
.route-home .split-feature__copy p,
.route-home .trust-card p {
    color: #5b5b5b;
}

.route-home .section-link {
    color: var(--primary);
}

.route-home .trust-card {
    background: #ffffff;
    border-color: rgba(17, 17, 17, 0.08);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.route-home .vehicle-card {
    background: #ffffff;
    border-color: rgba(17, 17, 17, 0.08);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.route-home .vehicle-card__specs strong,
.route-home .vehicle-card h3 a {
    color: #111111;
}

.route-home .vehicle-card__price {
    color: var(--primary);
}

.route-home .vehicle-card__specs span {
    color: #6b7280;
}

.route-home .vehicle-card__cta {
    color: #ffffff;
    background: #151515;
}

.route-home .vehicle-card__cta:hover {
    background: #000000;
}

.route-about main,
.route-about .page-header,
.route-about .section {
    background: #ffffff;
}

.route-about .page-header {
    padding: 4.75rem 0 3.4rem;
}

.route-about .page-header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.route-about .page-header h1 {
    max-width: 18ch;
    color: #111111;
    font-size: clamp(2.85rem, 4.25vw, 4.55rem);
    line-height: 0.98;
}

.route-about .page-header p {
    max-width: 46rem;
    margin-top: 0.9rem;
    color: #5b5b5b;
}

.about-hero-intro__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.route-about .about-hero-intro__actions .btn--ghost {
    color: #111111;
    background: #ffffff;
    border-color: rgba(17, 17, 17, 0.12);
}

.route-about .about-hero-intro__actions .btn--ghost:hover {
    background: #f3f3f3;
}

.about-story-section {
    padding-top: 3rem;
}

.split-feature--about-story {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
    gap: 3.5rem;
    align-items: start;
}

.route-about .split-feature__copy h2,
.route-about .split-feature__copy h3,
.route-about .about-proof-card h3 {
    color: #111111;
}

.route-about .split-feature__copy p,
.route-about .about-proof-card p {
    color: #5b5b5b;
}

.about-point-panel {
    margin-top: 1.9rem;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.about-point-panel h3 {
    margin: 0 0 0.9rem;
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.about-point-list {
    display: grid;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-point-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.8;
    color: #4b5563;
}

.about-point-list li::before {
    content: "";
    width: 10px;
    height: 10px;
    margin-top: 0.55rem;
    border-radius: 999px;
    background: var(--primary);
    flex: 0 0 auto;
}

.about-media-stack {
    display: grid;
    gap: 1rem;
    align-items: start;
}

.about-media-stack figure {
    margin: 0;
}

.about-media-stack__main {
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.12);
}

.about-media-stack__main img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    object-position: center center;
}

.about-media-stack__support {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    width: 100%;
    margin: -3rem auto 0;
    padding: 0 1.15rem;
}

.about-media-stack__secondary,
.about-media-stack__agreement {
    padding: 0.7rem;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.16);
}

.about-media-stack__secondary img,
.about-media-stack__agreement img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    object-fit: cover;
}

.about-media-stack__secondary img {
    object-position: center 28%;
}

.about-media-stack__agreement img {
    object-position: center center;
}

.route-about .section--about-dark {
    background: #050505;
}

.route-about .section--about-values {
    padding-bottom: 4.8rem;
}

.route-about .section--about-values .value-card {
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.route-about .section--about-values .value-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(255, 255, 255, 0.72);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.route-about .section--about-process {
    padding-top: 4.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.route-about .section--about-dark .section-intro h2,
.route-about .section--about-dark .section-intro p,
.route-about .section--about-dark .value-card h3,
.route-about .section--about-dark .value-card p,
.route-about .section--about-dark .process-step p {
    color: #ffffff;
}

.route-about .section--about-dark .section-intro p,
.route-about .section--about-dark .value-card p,
.route-about .section--about-dark .process-step p {
    color: rgba(255, 255, 255, 0.72);
}

.route-about .section--about-dark .value-card,
.route-about .section--about-dark .process-step {
    background: #111111;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.route-about .section--about-dark .value-card__icon,
.route-about .section--about-dark .process-step__number {
    background: rgba(255, 0, 0, 0.12);
}

.route-about .section--about-proof {
    background: #ffffff;
}

.route-about .section--about-proof .section-intro h2 {
    color: #111111;
}

.route-about .section--about-proof .section-intro p {
    color: #5b5b5b;
}

.about-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.about-proof-card {
    padding: 1.45rem;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: var(--radius-md);
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.about-proof-card__person {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.about-proof-card__media {
    margin: 0;
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
    overflow: hidden;
    border-radius: 999px;
    background: #efe9e1;
}

.about-proof-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-proof-card:hover .about-proof-card__media img {
    transform: scale(1.03);
}

.about-proof-card h3 {
    margin: 0 0 0.35rem;
    font-size: 1.18rem;
    line-height: 1.2;
}

.about-proof-card__person span {
    display: block;
    color: #777777;
    font-size: 0.92rem;
    line-height: 1.4;
}

.about-proof-card p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.75;
}

.section--about-faq {
    background: #ffffff;
    padding-top: 1.25rem;
}

.route-about .section--about-faq .section-intro h2 {
    color: #111111;
}

.route-about .section--about-faq .section-intro p {
    color: #303030;
}

.about-faq-list {
    display: grid;
    gap: 1rem;
    max-width: 980px;
}

.about-faq-item {
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: var(--radius-md);
    background: #ffffff;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.05);
    overflow: hidden;
}

.about-faq-item[open] {
    border-color: rgba(17, 17, 17, 0.16);
}

.about-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.35rem 1.5rem;
    list-style: none;
    cursor: pointer;
    color: #111111;
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.45;
}

.about-faq-item summary::-webkit-details-marker {
    display: none;
}

.about-faq-item__icon {
    position: relative;
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.about-faq-item__icon::before,
.about-faq-item__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #111111;
    transform: translate(-50%, -50%);
    transition: transform 0.24s ease, opacity 0.24s ease;
}

.about-faq-item__icon::after {
    width: 2px;
    height: 18px;
}

.about-faq-item[open] .about-faq-item__icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) scaleY(0.45);
}

.about-faq-item__content {
    padding: 0 1.5rem 1.45rem;
}

.about-faq-item__content p {
    margin: 0;
    max-width: 62rem;
    color: #5b5b5b;
    line-height: 1.8;
}

.route-about .section--about-cta {
    background: #050505;
}

.route-about .section--about-cta .cta-banner__actions {
    margin-top: 1.9rem;
}

.route-contact main,
.route-contact .page-header,
.route-contact .section--contact-main {
    background: #ffffff;
}

.route-contact .page-header {
    padding: 4.5rem 0 2rem;
}

.route-contact .page-header h1,
.route-contact .page-header p {
    color: #111111;
}

.route-contact .page-header p {
    max-width: 44rem;
    color: #5b5b5b;
}

.route-contact .contact-layout {
    grid-template-columns: 390px minmax(0, 1fr);
    gap: 2rem;
}

.route-contact .contact-sidebar {
    gap: 1.35rem;
}

.route-contact .contact-info-card,
.route-contact .contact-form-card {
    padding: 2rem;
    background: #111111;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 52px rgba(15, 23, 42, 0.14);
}

.route-contact .contact-info-card h2,
.route-contact .contact-form-card h2 {
    color: #ffffff;
    margin-bottom: 0.7rem;
}

.route-contact .contact-form-card p,
.route-contact .contact-info-card p,
.route-contact .contact-form-card .form-note {
    color: rgba(255, 255, 255, 0.74);
}

.route-contact .contact-form-card p {
    margin-bottom: 1.35rem;
}

.route-contact .contact-list {
    gap: 0;
    margin-top: 1.5rem;
}

.route-contact .contact-list > div {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.route-contact .contact-list > div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.route-contact .contact-list dt {
    margin-bottom: 0.35rem;
    color: rgba(255, 255, 255, 0.54);
}

.route-contact .contact-list dd,
.route-contact .contact-list dd a,
.route-contact .contact-list dd span {
    color: #ffffff;
}

.route-contact .contact-list dd a {
    display: inline-block;
    line-height: 1.75;
}

.route-contact .contact-list dd a:hover {
    color: rgba(255, 255, 255, 0.82);
}

.route-contact .contact-list dd span {
    display: block;
    line-height: 1.75;
}

.route-contact .map-card {
    overflow: hidden;
    border-color: rgba(17, 17, 17, 0.08);
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.route-contact .map-embed,
.route-contact .map-embed iframe {
    border-radius: 0;
}

.route-contact .contact-form {
    gap: 1.2rem;
}

.route-contact .contact-form .field-grid {
    gap: 1.1rem;
}

.route-contact .contact-form .field label {
    color: #ffffff;
}

.route-contact .contact-form .field input,
.route-contact .contact-form .field select,
.route-contact .contact-form .field textarea {
    color: #ffffff;
    background: #181818;
    border-color: rgba(255, 255, 255, 0.12);
}

.route-contact .contact-form .field input::placeholder,
.route-contact .contact-form .field textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.route-contact .contact-form .field input:focus,
.route-contact .contact-form .field select:focus,
.route-contact .contact-form .field textarea:focus {
    background: #1d1d1d;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.05);
}

.contact-consent {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 0.85rem;
    align-items: start;
    margin-top: 0.2rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
}

.contact-consent input {
    width: 18px;
    height: 18px;
    margin: 0.2rem 0 0;
    accent-color: var(--primary);
}

.route-contact .form-note--muted {
    margin-top: -0.3rem;
    color: rgba(255, 255, 255, 0.56);
}

.route-contact .contact-form .btn {
    margin-top: 0.25rem;
}

.route-contact .section--contact-assistance {
    background: #050505;
}

.route-contact .section--contact-assistance .section-intro h2,
.route-contact .section--contact-assistance .section-intro p,
.route-contact .section--contact-assistance .quick-action-card h3,
.route-contact .section--contact-assistance .quick-action-card p {
    color: #ffffff;
}

.route-contact .section--contact-assistance .section-intro p,
.route-contact .section--contact-assistance .quick-action-card p {
    color: rgba(255, 255, 255, 0.72);
}

.route-contact .section--contact-assistance .quick-action-card {
    background: #111111;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.contact-help-cta {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.route-vehicles main,
.route-vehicles .page-header,
.route-vehicles .section {
    background: #f7f4ef;
}

.route-vehicles .page-header {
    padding: 4.75rem 0 2rem;
}

.route-vehicles .page-header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.route-vehicles .page-header h1,
.route-vehicles .page-header p,
.route-vehicles .catalog-meta,
.route-vehicles .empty-state h3,
.route-vehicles .empty-state p {
    color: #111111;
}

.route-vehicles .page-header h1 {
    max-width: none;
    margin-bottom: 0;
    font-size: clamp(2.8rem, 4.1vw, 4.3rem);
    line-height: 0.98;
    white-space: nowrap;
}

.route-vehicles .page-header p,
.route-vehicles .catalog-meta,
.route-vehicles .empty-state p {
    color: #5b5b5b;
}

.route-vehicles .page-header p {
    max-width: 42rem;
    margin-top: 0.75rem;
}

.vehicle-search-band {
    padding: 2.35rem 0 2.6rem;
    background: #050505;
}

.route-vehicles .filters-panel {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.route-vehicles .filters-form {
    gap: 1.35rem;
}

.route-vehicles .filters-search input,
.route-vehicles .field input,
.route-vehicles .field select {
    min-height: 54px;
    padding: 0.95rem 1rem;
    color: #ffffff;
    background: #121212;
    border-color: rgba(255, 255, 255, 0.12);
}

.route-vehicles .filters-search label,
.route-vehicles .field label {
    color: #ffffff;
}

.route-vehicles .filters-search input::placeholder,
.route-vehicles .field input::placeholder {
    color: rgba(255, 255, 255, 0.56);
}

.route-vehicles .filters-search input:focus,
.route-vehicles .field input:focus,
.route-vehicles .field select:focus {
    background: #191919;
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.06);
}

.route-vehicles .filters-grid {
    align-items: end;
    gap: 1.1rem;
}

.route-vehicles .filters-actions {
    justify-content: flex-start;
}

.route-vehicles .filters-actions .btn {
    min-width: 180px;
}

.route-vehicles .filters-actions .btn--ghost {
    color: #111111;
    background: #ffffff;
    border-color: transparent;
}

.route-vehicles .filters-actions .btn--ghost:hover {
    background: #ececec;
}

.route-vehicles .section--catalog {
    padding-top: 2.7rem;
}

.route-vehicles .vehicle-card {
    background: #ffffff;
    border-color: rgba(17, 17, 17, 0.08);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.route-vehicles .vehicle-card h3 a,
.route-vehicles .vehicle-card__specs strong {
    color: #111111;
}

.route-vehicles .vehicle-card__specs span {
    color: #6b7280;
}

.route-vehicles .vehicle-card__cta {
    color: #ffffff;
    background: #151515;
}

.route-vehicles .vehicle-card__cta:hover {
    background: #000000;
}

@media (max-width: 1100px) {
    .vehicle-grid,
    .trust-grid,
    .values-grid,
    .process-grid,
    .journey-flow,
    .quick-actions-grid,
    .footer-grid,
    .split-feature,
    .contact-layout,
    .vehicle-layout,
    .vehicle-detail-hero__grid,
    .vehicle-detail-block--description,
    .inquiry-card {
        grid-template-columns: 1fr;
    }

    .vehicle-side {
        position: static;
    }

    .filters-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .split-feature--about-story,
    .about-proof-grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .route-vehicles .page-header h1 {
        white-space: normal;
    }

    .vehicle-detail-specs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .nav-toggle {
        display: inline-block;
    }

    .nav-menu {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.25rem 1rem;
        border-bottom: 1px solid var(--border);
        background: #fff;
        box-shadow: var(--shadow-sm);
    }

    .nav-menu.is-open {
        display: flex;
    }

    .header-actions__cta {
        display: none;
    }

    .vehicle-grid,
    .vehicle-key-specs,
    .feature-grid,
    .spec-list,
    .field-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-detail-specs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .vehicle-detail-cta__actions {
        justify-content: flex-start;
    }

    .section-intro {
        flex-direction: column;
        align-items: start;
    }

    .journey-head {
        margin-bottom: 2rem;
    }

    .hero__actions,
    .cta-banner__actions,
    .filters-actions {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(var(--container), calc(100% - 1.25rem));
    }

    .route-vehicle_show main .container {
        width: auto;
        max-width: none;
        margin-left: 0.625rem;
        margin-right: 0.625rem;
    }

    .route-vehicle_show .vehicle-detail-gallery,
    .route-vehicle_show .vehicle-detail-summary,
    .route-vehicle_show .vehicle-detail-block,
    .route-vehicle_show .vehicle-detail-cta {
        width: min(370px, calc(100vw - 1.25rem));
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }

    .navbar {
        min-height: 86px;
    }

    .brand img {
        height: 60px;
    }

    .route-vehicle_show .header-actions {
        display: none;
    }

    .hero {
        min-height: calc(100svh - 80px);
    }

    .hero__media img {
        object-position: 68% center;
        opacity: 0.52;
        transform: scale(1.06);
    }

    .hero__overlay {
        background:
            linear-gradient(180deg, rgba(5, 5, 5, 0.38) 0%, rgba(5, 5, 5, 0.72) 46%, rgba(5, 5, 5, 0.92) 100%),
            linear-gradient(90deg, rgba(5, 5, 5, 0.72) 0%, rgba(5, 5, 5, 0.34) 100%);
    }

    .hero__content {
        align-items: flex-end;
        min-height: calc(100svh - 80px);
        padding: 4.4rem 0 3.5rem;
    }

    .hero h1 {
        font-size: clamp(3rem, 15vw, 4.2rem);
    }

    .page-header {
        padding: 3.5rem 0;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .route-vehicles .page-header {
        padding: 3.4rem 0 1.35rem;
    }

    .route-vehicles .page-header h1 {
        font-size: 2.5rem;
        white-space: normal;
    }

    .route-vehicles .page-header p {
        margin-top: 0.65rem;
    }

    .route-about .page-header {
        padding: 3.8rem 0 1.4rem;
    }

    .route-about .page-header h1 {
        max-width: 11ch;
        font-size: 2.55rem;
    }

    .route-about .page-header p {
        margin-top: 0.7rem;
    }

    .route-contact .page-header {
        padding: 3.6rem 0 1.5rem;
    }

    .route-contact .page-header p {
        margin-top: 0.75rem;
    }

    .route-contact .contact-info-card,
    .route-contact .contact-form-card {
        padding: 1.5rem;
    }

    .route-contact .contact-form .field-grid {
        grid-template-columns: 1fr;
    }

    .contact-help-cta .btn {
        width: 100%;
    }

    .about-hero-intro__actions .btn {
        width: 100%;
    }

    .about-media-stack__support {
        grid-template-columns: 1fr;
        width: 100%;
        margin-top: 0;
        padding: 0;
    }

    .about-media-stack__secondary,
    .about-media-stack__agreement {
        padding: 0;
        box-shadow: 0 18px 38px rgba(15, 23, 42, 0.1);
    }

    .vehicle-search-band {
        padding: 1.4rem 0 1.75rem;
    }

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

    .hero__actions .btn,
    .cta-banner__actions .btn,
    .filters-actions .btn,
    .quick-action-card .btn {
        width: 100%;
    }

    .contact-shortcuts {
        flex-direction: column;
    }

    .gallery-thumbs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vehicle-detail-hero {
        padding-bottom: 2.4rem;
    }

    .vehicle-detail-topbar__brand {
        display: none;
    }

    .vehicle-detail-gallery__thumbs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vehicle-detail-specs,
    .vehicle-detail-actions__secondary {
        grid-template-columns: 1fr;
    }

    .vehicle-detail-summary {
        padding: 1.2rem;
    }

    .vehicle-detail-summary h1 {
        font-size: 2rem;
        line-height: 1.03;
    }

    .vehicle-detail-key-specs div,
    .vehicle-detail-specs div {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.35rem;
    }

    .vehicle-detail-key-specs dd,
    .vehicle-detail-specs dd {
        text-align: left;
    }

    .vehicle-overview__top {
        flex-direction: column;
    }

    .cta-banner {
        padding: 3rem 1.5rem;
    }

    .footer-grid {
        padding: 2.5rem 0;
    }

    .footer-brand img {
        height: 126px;
    }

    .footer-contact-icons {
        gap: 0.65rem;
    }

    .footer-icon-link {
        width: 46px;
        height: 46px;
    }

    .footer-brand {
        padding-left: 0;
    }

    .footer-hours {
        white-space: normal;
    }

    .footer-bottom__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-legal-links {
        justify-content: flex-start;
    }

    .cookie-consent {
        right: 0.75rem;
        bottom: 0.75rem;
        left: 0.75rem;
    }

    .cookie-consent__panel {
        max-height: calc(100vh - 1.5rem);
        overflow-y: auto;
    }

    .cookie-consent__settings {
        grid-template-columns: 1fr;
    }

    .cookie-consent__actions .btn {
        width: 100%;
    }
}
