@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url("./fonts/InterVariable.woff2") format("woff2");
}

:root {
    --bg: #08090b;
    --panel: #101216;
    --panel-soft: #151920;
    --text: #f6f1e7;
    --muted: #b8b0a1;
    --line: rgba(236, 205, 143, .18);
    --gold: #d3a24d;
    --gold-light: #f3d38e;
    --gold-dark: #806127;
    --shadow: 0 24px 70px rgba(0, 0, 0, .45);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
}

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

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

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px clamp(20px, 5vw, 64px);
    background: rgba(8, 9, 11, .74);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(18px);
}

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

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

.site-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: #dfd7c9;
    font-size: 14px;
    font-weight: 700;
}

.site-nav a {
    transition: color .2s ease;
}

.site-nav a:hover {
    color: var(--gold-light);
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 3px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
}

.language-switcher a {
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 12px;
}

.language-switcher a.is-active {
    background: var(--gold);
    color: #101010;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(255, 255, 255, .06);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--gold-light);
    transition: transform .2s ease, opacity .2s ease;
}

.hero {
    position: relative;
    min-height: 92vh;
    display: grid;
    align-items: center;
    overflow: hidden;
    padding: 138px clamp(20px, 6vw, 78px) 70px;
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media picture,
.hero-media img {
    width: 100%;
    height: 100%;
}

.hero-media picture {
    display: block;
}

.hero-media img {
    object-fit: cover;
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(8, 9, 11, .99) 0%, rgba(8, 9, 11, .8) 50%, rgba(8, 9, 11, .24) 68%, rgba(8, 9, 11, 0) 100%),
        linear-gradient(180deg, rgba(8, 9, 11, .18) 0%, rgba(8, 9, 11, .5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(760px, 100%);
}

.eyebrow,
.section-kicker {
    margin: 0 0 14px;
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 20px;
    color: #fff;
    font-size: clamp(42px, 7vw, 78px);
    line-height: 1.02;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 20px;
    color: #fff;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.1;
    letter-spacing: 0;
}

h3 {
    color: #fff;
    font-size: 20px;
    line-height: 1.25;
}

.hero-lead {
    max-width: 720px;
    margin-bottom: 18px;
    color: var(--gold-light);
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
    line-height: 1.2;
}

.hero-copy {
    max-width: 620px;
    color: #d8d1c5;
    font-size: 18px;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 14px 22px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 800;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

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

.button-primary {
    border-color: var(--gold);
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    color: #101010;
    box-shadow: 0 18px 40px rgba(211, 162, 77, .24);
}

.button-secondary {
    border-color: var(--line);
    background: rgba(255, 255, 255, .06);
    color: var(--text);
}

section {
    padding: 100px 0;
}

section[id] {
    scroll-margin-top: 125px;
}

.section-band {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .01)),
        var(--panel);
    border-top: 1px solid rgba(255, 255, 255, .07);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.intro-grid,
.why-grid,
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: clamp(40px, 7vw, 90px);
    align-items: start;
}

.rich-text,
.intro p,
.why p,
.contact p,
.statement p {
    color: var(--muted);
    font-size: 17px;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 42px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.service-card {
    min-height: 150px;
    padding: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .025));
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.service-card span,
.reason-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: rgba(211, 162, 77, .13);
    color: var(--gold-light);
    font-weight: 900;
}

.service-card p,
.reason-list p {
    margin: 0;
    color: #e6ded0;
    font-weight: 700;
    line-height: 1.45;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.financing-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(34px, 6vw, 72px);
    align-items: start;
}

.financing-list {
    display: grid;
    gap: 14px;
}

.financing-list article {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 18px;
    padding: 20px;
    background: var(--panel-soft);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
}

.financing-list span {
    display: block;
    color: var(--gold);
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.financing-list h3 {
    margin-bottom: 8px;
}

.financing-list p {
    margin: 0;
    color: var(--muted);
}

.financing-cta {
    margin-top: 28px;
}

.vehicle-list {
    display: grid;
    gap: 24px;
}

.vehicle-card {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 20px clamp(24px, 4vw, 46px);
    align-items: start;
    padding: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .025));
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.vehicle-title {
    grid-column: 1 / -1;
    margin: 0;
    font-size: 24px;
}

.vehicle-gallery {
    display: grid;
    gap: 12px;
}

.vehicle-main-link {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 6px;
}

.vehicle-main-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 6px;
    transition: filter .2s ease, transform .2s ease;
}

.vehicle-main-link:hover .vehicle-main-image {
    filter: brightness(.7);
    transform: scale(1.02);
}

.vehicle-zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 9, 11, .58);
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(.92);
    transition: opacity .2s ease, transform .2s ease;
}

.vehicle-zoom-icon svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

.vehicle-main-link:hover .vehicle-zoom-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.vehicle-thumbs {
    width: 100%;
}

.vehicle-thumb {
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 6px;
    background: transparent;
    cursor: pointer;
}

.vehicle-thumb.is-active {
    border-color: var(--gold-light);
}

.vehicle-thumb img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    opacity: .78;
    transition: opacity .2s ease, transform .2s ease;
}

.vehicle-thumb:hover img {
    opacity: 1;
    transform: scale(1.03);
}

.vehicle-thumbs .splide__arrow {
    width: 28px;
    height: 28px;
    background: rgba(8, 9, 11, .82);
    opacity: 1;
}

.vehicle-thumbs .splide__arrow svg {
    fill: var(--gold-light);
}

.vehicle-meta {
    margin-bottom: 10px;
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.vehicle-content p {
    color: var(--muted);
}

.vehicle-specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 0;
}

.vehicle-spec {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-width: 0;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 6px;
    background: rgba(255, 255, 255, .035);
}

.vehicle-spec dt,
.vehicle-spec dd {
    min-width: 0;
}

.vehicle-spec dt {
    margin: 0 0 4px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.15;
    text-transform: uppercase;
}

.vehicle-spec > img {
    width: 30px;
    height: 30px;
    filter: brightness(0) saturate(100%) invert(78%) sepia(24%) saturate(295%) hue-rotate(359deg) brightness(90%) contrast(87%);
    opacity: .96;
}

.vehicle-spec dd {
    margin: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.vehicle-price {
    margin: 0;
    color: var(--gold-light);
    font-size: 22px;
    font-weight: 800;
}

.vehicle-price-note {
    color: rgba(216, 209, 197, .72);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
}

.vehicle-price-group {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.vehicle-listing-link {
    width: fit-content;
    color: rgba(216, 209, 197, .7);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: underline;
    text-decoration-color: rgba(211, 162, 77, .32);
    text-underline-offset: 3px;
}

.vehicle-listing-link:hover {
    color: var(--gold-light);
    text-decoration-color: currentColor;
}

.vehicle-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 38px;
}

.vehicle-contact {
    width: fit-content;
}

.process-grid article {
    padding-top: 26px;
    border-top: 1px solid var(--line);
}

.process-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
    border-radius: 50%;
    background: rgba(211, 162, 77, .13);
    color: var(--gold-light);
}

.process-grid svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.process-grid p {
    color: var(--muted);
}

.reason-list {
    display: grid;
    gap: 14px;
}

.reason-list div {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 14px;
    align-items: start;
    padding: 20px;
    background: var(--panel-soft);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
}

.reason-list span {
    margin: 0;
}

.statement {
    max-width: 920px;
    text-align: center;
}

blockquote {
    margin: 0 0 26px;
    color: #fff;
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    line-height: 1.18;
}

.contact {
    background:
        radial-gradient(circle at 78% 20%, rgba(211, 162, 77, .16), transparent 32%),
        #0b0d10;
}

.contact-photo {
    align-self: center;
}

.contact-photo img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 6px;
}

.contact-person {
    margin-top: 16px;
    text-align: center;
}

.contact-person strong,
.contact-person span {
    display: block;
}

.contact-person strong {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
}

.contact-person span {
    margin-top: 4px;
    color: var(--gold-light);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

.contact-content {
    display: grid;
    align-content: center;
    gap: 20px;
    padding: clamp(24px, 4vw, 44px);
    background: rgba(255, 255, 255, .055);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-content h2 {
    margin-bottom: 0;
}

.contact-content > p {
    margin-bottom: 4px;
}

.contact-details {
    display: grid;
    gap: 14px;
    margin-top: 10px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.contact-details p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

.contact-link {
    display: block;
    color: #fff;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    line-height: 1.15;
    overflow-wrap: anywhere;
}

.contact-link:hover {
    color: var(--gold-light);
}

.site-footer {
    padding: 30px 0;
    background: #050608;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand-small img {
    width: 122px;
    height: auto;
}

.site-footer p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.admin-page {
    min-height: 100vh;
    padding: 3rem clamp(20px, 6vw, 78px);
}

.sold-vehicles-page {
    min-height: 100vh;
}

.sold-intro {
    padding-top: 150px;
}

.sold-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: clamp(34px, 6vw, 72px);
    align-items: start;
}

.sold-intro-image {
    width: 100%;
    height: clamp(180px, 24vw, 300px);
    margin-top: 42px;
    object-fit: cover;
    object-position: center 58%;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .1);
}

.sold-list {
    background: var(--panel);
}

.sold-badge {
    display: inline-flex;
    width: fit-content;
    margin: 0;
    padding: 8px 12px;
    border: 1px solid rgba(211, 162, 77, .42);
    border-radius: 999px;
    background: rgba(211, 162, 77, .12);
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

body.admin-body {
    --admin-bg: #f5f7fb;
    --admin-panel: #ffffff;
    --admin-panel-soft: #f9fafc;
    --admin-text: #172033;
    --admin-muted: #687385;
    --admin-line: #d9e0ea;
    --admin-accent: #b8872f;
    --admin-accent-dark: #7b5a1c;
    background: var(--admin-bg);
    color: var(--admin-text);
}

body.admin-body h1,
body.admin-body h2,
body.admin-body h3 {
    color: var(--admin-text);
}

body.admin-body h1 {
    font-size: 2rem;
    line-height: 1.15;
}

.admin-page p {
    color: var(--admin-muted, var(--muted));
    font-size: 18px;
}

.admin-topbar,
.admin-tabs,
.admin-actions,
.admin-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.admin-form button[type="submit"].is-loading {
    pointer-events: none;
    opacity: .82;
}

.admin-button-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(16, 16, 16, .28);
    border-top-color: #101010;
    border-radius: 50%;
    animation: admin-spin .7s linear infinite;
}

@keyframes admin-spin {
    to {
        transform: rotate(360deg);
    }
}

.admin-topbar {
    margin-bottom: 34px;
}

.admin-topbar a,
.admin-tabs a,
.admin-actions a,
.admin-actions button,
.admin-photo-grid button {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 12px;
    border: 1px solid var(--admin-line, var(--line));
    border-radius: 6px;
    background: var(--admin-panel, rgba(255, 255, 255, .06));
    color: var(--admin-text, var(--text));
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

.admin-dashboard {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
}

.admin-card {
    min-height: 150px;
    padding: 24px;
    border: 1px solid var(--admin-line, var(--line));
    border-radius: 8px;
    background: var(--admin-panel, var(--panel-soft));
    box-shadow: 0 14px 34px rgba(23, 32, 51, .08);
}

.admin-card span,
.admin-card strong {
    display: block;
}

.admin-card span {
    color: var(--admin-muted, var(--muted));
    font-weight: 800;
}

.admin-card strong {
    margin-top: 18px;
    color: var(--admin-accent, var(--gold-light));
    font-size: 42px;
    line-height: 1;
}

.admin-tabs {
    margin: 26px 0;
}

.admin-tabs .is-active {
    background: var(--admin-accent, var(--gold));
    color: #fff;
}

.admin-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--admin-line, var(--line));
    border-radius: 8px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--admin-panel, var(--panel));
}

.admin-table th,
.admin-table td {
    padding: 16px;
    border-bottom: 1px solid var(--admin-line, rgba(255, 255, 255, .08));
    text-align: left;
    vertical-align: top;
}

.admin-table th {
    color: var(--admin-accent-dark, var(--gold-light));
    font-size: 13px;
    text-transform: uppercase;
}

.admin-table tr:last-child td {
    border-bottom: 0;
}

.admin-badge {
    display: inline-flex;
    margin-left: 8px;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(184, 135, 47, .14);
    color: var(--admin-accent-dark, var(--gold-light));
    font-size: 12px;
    font-weight: 800;
}

.admin-form {
    display: grid;
    gap: 18px;
    max-width: 980px;
}

.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.admin-form-full,
.admin-detail-full {
    grid-column: 1 / -1;
}

.admin-form label {
    display: grid;
    gap: 8px;
    color: var(--admin-muted, var(--muted));
    font-weight: 800;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid var(--admin-line, var(--line));
    border-radius: 6px;
    background: #fff;
    color: var(--admin-text, var(--text));
    font: inherit;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
    outline: 2px solid rgba(184, 135, 47, .24);
    border-color: var(--admin-accent, var(--gold));
}

.admin-form textarea {
    resize: vertical;
}

.admin-checkbox {
    grid-template-columns: 18px 1fr;
    align-items: center;
}

.admin-checkbox input {
    min-height: auto;
}

.admin-errors {
    max-width: 980px;
    margin-bottom: 20px;
    padding: 16px;
    border: 1px solid rgba(220, 72, 72, .5);
    border-radius: 8px;
    background: rgba(220, 72, 72, .12);
}

.admin-errors p {
    margin: 0;
}

.admin-detail {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 980px;
    margin: 28px 0;
}

.admin-detail div,
.admin-description {
    padding: 18px;
    border: 1px solid var(--admin-line, var(--line));
    border-radius: 8px;
    background: var(--admin-panel, var(--panel-soft));
}

.admin-detail dt {
    color: var(--admin-muted, var(--muted));
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.admin-detail dd {
    margin: 8px 0 0;
    color: var(--admin-text, #fff);
    font-weight: 800;
}

.admin-description {
    max-width: 980px;
    color: var(--admin-muted, var(--muted));
}

.admin-photos {
    padding: 46px 0 0;
}

.admin-photo-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.admin-photo-grid figure {
    margin: 0;
}

.admin-photo-grid figure.is-dragging {
    opacity: .48;
}

.admin-photo-drag {
    width: 100%;
    margin-bottom: 8px;
    justify-content: center;
    cursor: grab;
}

.admin-photo-drag:active {
    cursor: grabbing;
}

.admin-photo-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 6px;
}

.admin-photo-grid form {
    margin-top: 8px;
}

@media (max-width: 980px) {
    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .intro-grid,
    .financing-grid,
    .sold-intro-grid,
    .why-grid,
    .contact-grid,
    .vehicle-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .site-header {
        position: absolute;
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
        padding: 16px 20px;
    }

    .brand {
        justify-content: flex-start;
        width: auto;
    }

    .brand img {
        width: 136px;
    }

    .menu-toggle {
        display: block;
    }

    .site-header.is-menu-open .menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .site-header.is-menu-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .site-header.is-menu-open .menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 10px;
        background: rgba(8, 9, 11, .96);
        border: 1px solid var(--line);
        border-radius: 8px;
        box-shadow: var(--shadow);
        font-size: 15px;
        backdrop-filter: blur(18px);
    }

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

    .site-nav a {
        padding: 13px 12px;
        border-radius: 6px;
    }

    .language-switcher {
        align-self: flex-start;
        margin: 8px 12px 4px;
    }

    .language-switcher a {
        padding: 5px 9px;
    }

    .site-nav a:hover {
        background: rgba(211, 162, 77, .12);
    }

    .hero {
        min-height: 860px;
        align-items: start;
        padding-top: 120px;
        padding-bottom: 360px;
    }

    .hero-overlay {
        background: none;
        display: none;
    }

    .hero-media img {
        object-position: center bottom;
    }

    .hero-content {
        width: 100%;
    }

    h1 {
        font-size: 38px;
        line-height: 1.04;
    }

    .hero-lead {
        font-size: 22px;
    }

    .hero-copy {
        font-size: 16px;
    }

    .hero-actions {
        margin-top: 24px;
    }

    section {
        padding: 72px 0;
    }

    .service-grid,
    .vehicle-specs,
    .financing-list article,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        display: grid;
        grid-template-columns: 28px 1fr;
        gap: 14px;
        align-items: start;
        min-height: auto;
    }

    .service-card span {
        margin-bottom: 0;
    }

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

    .contact-content {
        order: 1;
    }

    .contact-photo {
        order: 2;
        max-width: 360px;
    }

    .contact-link {
        font-size: clamp(18px, 6vw, 25.5px);
    }

    .vehicle-actions {
        align-items: stretch;
    }

    .vehicle-contact {
        width: 100%;
    }

    .sold-badge {
        justify-content: center;
        width: 100%;
    }

    .admin-dashboard,
    .admin-form-grid,
    .admin-detail,
    .admin-photo-grid {
        grid-template-columns: 1fr;
    }
}
