@font-face {
    font-family: "Inter Tight";
    src: url("/assets/fonts/inter-tight-normal-400.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Inter Tight";
    src: url("/assets/fonts/inter-tight-normal-600.ttf") format("truetype");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "Barlow Condensed";
    src: url("/assets/fonts/barlow-condensed-normal-500.ttf") format("truetype");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "Barlow Condensed";
    src: url("/assets/fonts/barlow-condensed-normal-700.ttf") format("truetype");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "Barlow Condensed";
    src: url("/assets/fonts/barlow-condensed-italic-600.ttf") format("truetype");
    font-style: italic;
    font-weight: 600;
    font-display: swap;
}

:root {
    --ink: #0a0907;
    --ink-soft: #15130f;
    --paper: #ece9e1;
    --paper-bright: #f7f4ed;
    --gold: #c9a85d;
    --gold-light: #ddc27f;
    --line-dark: rgba(255, 255, 255, .16);
    --line-light: rgba(10, 9, 7, .18);
    --pad: clamp(24px, 5vw, 80px);
    --display: "Barlow Condensed", Arial, sans-serif;
    --body: "Inter Tight", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { max-width: 100%; overflow-x: clip; scroll-behavior: smooth; background: var(--ink); overscroll-behavior-x: none; }

html.lenis,
html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: clip; }

body {
    max-width: 100%;
    overflow-x: clip;
    overscroll-behavior-x: none;
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.lightbox-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 15px;
    color: var(--ink);
    background: var(--paper-bright);
    transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }
.section-pad { padding-inline: var(--pad); }

.eyebrow,
.section-index {
    margin: 0;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .18em;
    line-height: 1.2;
    text-transform: uppercase;
}

.section-index { color: rgba(10, 9, 7, .55); }

.site-header {
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    height: 98px;
    padding: 0 var(--pad);
    color: #fff;
    border-bottom: 1px solid var(--line-dark);
    transition: background .25s ease, height .25s ease, transform .25s ease;
}

.site-header.is-fixed {
    position: fixed;
    height: 76px;
    background: rgba(10, 9, 7, .94);
    backdrop-filter: blur(18px);
}

.brand { display: flex; align-items: center; justify-self: start; gap: 12px; text-transform: uppercase; }
.brand img { width: 55px; height: 44px; object-fit: contain; }
.brand > span { font-size: 12px; letter-spacing: .13em; }
.brand strong { color: var(--gold-light); }

.desktop-nav { display: flex; align-items: center; gap: clamp(24px, 3vw, 48px); }
.desktop-nav a { position: relative; font-size: 13px; }
.desktop-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease;
}
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-self: end;
    gap: 18px;
    min-height: 45px;
    padding: 0 18px;
    color: var(--ink);
    background: var(--gold);
    font-size: 12px;
    font-weight: 600;
}
.header-cta span { font-size: 16px; transition: transform .2s ease; }
.header-cta:hover span { transform: translate(2px, -2px); }

.menu-toggle { display: none; background: none; border: 0; }
.mobile-menu { display: none; }

.hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 72% 35%, rgba(117, 88, 37, .2), transparent 30%),
        var(--ink);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 9, 7, .98) 0%, rgba(10, 9, 7, .88) 36%, rgba(10, 9, 7, .12) 73%, rgba(10, 9, 7, .35) 100%);
}

.hero-visual { position: absolute; inset: 0 0 0 43%; }
.hero-visual-media { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 50% 44%; }

.hero-lines {
    position: absolute;
    z-index: 2;
    inset: 0;
    opacity: .07;
    background-image: linear-gradient(90deg, #fff 1px, transparent 1px);
    background-size: calc(100% / 6) 100%;
}

.hero-copy {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100svh;
    padding: 170px var(--pad) 9vh;
}

.hero-copy .eyebrow { margin-bottom: 24px; color: var(--gold-light); }
.hero h1 { margin: 0; font-family: var(--display); font-size: clamp(76px, 10.6vw, 188px); font-weight: 600; letter-spacing: -.045em; line-height: .76; text-transform: uppercase; }
.hero h1 span, .hero h1 em { display: block; }
.hero h1 em { margin-left: clamp(20px, 9vw, 155px); color: var(--gold-light); font-style: italic; white-space: nowrap; }

.hero-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: min(860px, 70vw);
    margin-top: 52px;
    margin-left: clamp(20px, 9vw, 155px);
}
.hero-bottom p { width: min(360px, 40vw); margin: 0; color: rgba(255, 255, 255, .72); font-size: 15px; }

.primary-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    min-width: 220px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    font-size: 13px;
    font-weight: 600;
}
.primary-link span { font-size: 18px; transition: transform .2s ease; }
.primary-link:hover span { transform: translateY(3px); }

.hero-side {
    position: absolute;
    z-index: 4;
    top: 50%;
    right: 25px;
    display: flex;
    align-items: center;
    gap: 14px;
    transform: rotate(90deg) translateX(50%);
    transform-origin: right center;
    font-family: var(--display);
    font-size: 12px;
    letter-spacing: .15em;
    text-transform: uppercase;
}
.hero-side i { width: 48px; height: 1px; background: rgba(255,255,255,.5); }
.scroll-cue { position: absolute; z-index: 4; bottom: 38px; left: 28px; display: flex; align-items: center; gap: 12px; transform: rotate(-90deg); transform-origin: left bottom; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }
.scroll-cue i { width: 45px; height: 1px; background: rgba(255,255,255,.5); }

.intro { padding-top: clamp(100px, 12vw, 190px); padding-bottom: clamp(100px, 12vw, 180px); background: var(--paper); }
.intro h2 { max-width: 1250px; margin: 42px 0 80px; font-family: var(--display); font-size: clamp(52px, 7.5vw, 128px); font-weight: 500; letter-spacing: -.035em; line-height: .9; text-transform: uppercase; }
.intro-bottom { display: grid; grid-template-columns: 1fr 1.6fr; gap: 10vw; margin-left: min(19vw, 300px); }
.intro-bottom > p { max-width: 450px; margin: 0; font-size: clamp(18px, 1.7vw, 26px); line-height: 1.35; }
.key-numbers { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; border-top: 1px solid var(--line-light); }
.key-numbers div { padding: 24px 10px 0 0; border-right: 1px solid var(--line-light); }
.key-numbers div + div { padding-left: 22px; }
.key-numbers dt { font-family: var(--display); font-size: clamp(48px, 5vw, 84px); line-height: .85; }
.key-numbers dd { margin: 12px 0 0; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }

.ticker { overflow: hidden; padding: 19px 0 16px; color: var(--ink); background: var(--gold); }
.ticker-track { display: flex; width: max-content; align-items: center; animation: ticker 24s linear infinite; }
.ticker span { margin: 0 26px; font-family: var(--display); font-size: 29px; font-weight: 600; letter-spacing: .02em; line-height: 1; text-transform: uppercase; }
.ticker i { font-size: 9px; font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

.fleet { padding-top: clamp(100px, 11vw, 170px); padding-bottom: clamp(100px, 12vw, 190px); color: #fff; background: var(--ink); }
.fleet .section-index, .spotlight .section-index, .inquiry .section-index, .prices .section-index { color: rgba(255, 255, 255, .45); }
.section-heading { display: grid; grid-template-columns: minmax(170px, 1fr) 3fr; align-items: start; margin-bottom: 76px; }
.section-heading h2, .spotlight h2, .services h2, .process h2, .inquiry h2, .faq h2, .vehicle-intro h2, .vehicle-gallery h2, .prices h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(60px, 8vw, 130px);
    font-weight: 500;
    letter-spacing: -.035em;
    line-height: .82;
    text-transform: uppercase;
}
.section-heading h2 em, .spotlight h2 em, .services h2 em, .process h2 em, .inquiry h2 em, .faq h2 em, .vehicle-intro h2 em, .vehicle-gallery h2 em, .prices h2 em { color: var(--gold); font-style: italic; }
.section-heading > div:last-child > p { width: 350px; margin: 28px 0 0; color: rgba(255,255,255,.58); }

.fleet-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 80px 22px; }
.vehicle-card:nth-child(even) { margin-top: 150px; }
.vehicle-card:nth-child(5) { grid-column: 1 / 2; }
.vehicle-card a { display: block; }
.vehicle-card-media { position: relative; aspect-ratio: 1.16 / 1; overflow: hidden; background: #1a1814; }
.vehicle-card-media::after { content: ""; position: absolute; inset: 40% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.7)); }
.vehicle-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.vehicle-card:hover .vehicle-card-media img { transform: scale(1.035); }
.vehicle-card-cutout .vehicle-card-media { background: radial-gradient(circle at 50% 45%, #373126 0%, #181510 50%, #0e0c0a 100%); }
.vehicle-card-cutout .vehicle-card-media img { object-fit: contain; padding: 9%; filter: drop-shadow(0 28px 20px rgba(0,0,0,.55)); }
.vehicle-number { position: absolute; z-index: 2; top: 20px; left: 22px; font-size: 11px; letter-spacing: .12em; }
.vehicle-power { position: absolute; z-index: 2; right: 22px; bottom: 15px; font-family: var(--display); font-size: clamp(54px, 6vw, 92px); font-weight: 500; line-height: .8; }
.vehicle-power small { font-size: 14px; letter-spacing: .08em; }
.vehicle-card-copy { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 16px 40px; padding: 27px 0; border-bottom: 1px solid var(--line-dark); }
.vehicle-card-copy p { margin: 0 0 3px; color: var(--gold-light); font-size: 10px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.vehicle-card-copy h3 { margin: 0; font-family: var(--display); font-size: clamp(42px, 4.7vw, 70px); font-weight: 500; letter-spacing: -.025em; line-height: .9; text-transform: uppercase; }
.vehicle-card-copy > div > span { display: block; margin-top: 9px; color: rgba(255,255,255,.5); font-size: 12px; }
.vehicle-card-copy dl { display: flex; align-items: flex-start; gap: 28px; margin: 8px 0 0; }
.vehicle-card-copy dl div { min-width: 74px; }
.vehicle-card-copy dt { color: rgba(255,255,255,.42); font-size: 9px; letter-spacing: .11em; text-transform: uppercase; }
.vehicle-card-copy dd { margin: 5px 0 0; font-family: var(--display); font-size: 23px; }
.vehicle-card-copy > b { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; margin-top: 7px; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.vehicle-card-copy > b i { font-size: 20px; font-style: normal; transition: transform .2s ease; }
.vehicle-card:hover .vehicle-card-copy > b i { transform: translate(3px, -3px); }

.spotlight { display: grid; grid-template-columns: 1.15fr .85fr; min-height: 780px; color: #fff; background: #17130d; }
.spotlight-media { min-height: 680px; overflow: hidden; }
.spotlight-media img { width: 100%; height: 100%; object-fit: cover; }
.spotlight-copy { display: flex; flex-direction: column; justify-content: center; padding-top: 80px; padding-bottom: 80px; }
.spotlight-kicker { margin: 80px 0 24px; color: var(--gold-light); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; }
.spotlight-copy > p:not(.spotlight-kicker) { max-width: 430px; margin: 38px 0; color: rgba(255,255,255,.66); font-size: 17px; }
.text-link { display: flex; align-items: center; justify-content: space-between; width: min(100%, 360px); padding: 17px 0; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.text-link span { font-size: 20px; }

.services { padding-top: clamp(100px, 12vw, 180px); padding-bottom: clamp(100px, 12vw, 180px); background: var(--paper-bright); }
.compact-heading { margin-bottom: 100px; }
.compact-heading h2 { font-size: clamp(56px, 7vw, 112px); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line-light); }
.service-grid article { position: relative; min-height: 500px; padding: 26px 36px 34px 0; border-right: 1px solid var(--line-light); }
.service-grid article + article { padding-left: 36px; }
.service-grid article:last-child { border-right: 0; }
.service-grid article > span { color: rgba(10,9,7,.45); font-size: 10px; letter-spacing: .15em; }
.service-label { margin: 72px 0 15px; color: #82692f; font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.service-grid h3 { margin: 0; font-family: var(--display); font-size: clamp(44px, 4vw, 68px); font-weight: 500; letter-spacing: -.02em; line-height: .95; text-transform: uppercase; }
.service-grid h3 + p { max-width: 350px; margin: 28px 0 70px; color: rgba(10,9,7,.65); }
.service-grid article > a { position: absolute; right: 36px; bottom: 34px; left: 0; padding-top: 15px; border-top: 1px solid var(--line-light); font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.service-grid article + article > a { left: 36px; }

.visual-break { display: grid; grid-template-columns: 1.35fr .65fr 1fr; height: min(58vw, 780px); gap: 3px; padding: 3px; background: var(--ink); }
.visual-break figure { margin: 0; overflow: hidden; }
.visual-break figure:nth-child(2) { margin-top: 15%; margin-bottom: 15%; }
.visual-break img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.visual-break figure:hover img { transform: scale(1.03); }

.process { padding-top: clamp(100px, 12vw, 180px); padding-bottom: clamp(100px, 12vw, 180px); background: var(--paper); }
.process-head { display: grid; grid-template-columns: 2fr 1fr; align-items: end; gap: 40px; margin: 55px 0 90px; }
.process-head p { max-width: 260px; margin: 0 0 10px; }
.process-list { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0 0 0 min(19vw, 300px); padding: 0; list-style: none; border-top: 1px solid var(--line-light); }
.process-list li { min-height: 280px; padding: 25px 30px 0 0; border-right: 1px solid var(--line-light); }
.process-list li + li { padding-left: 30px; }
.process-list span { font-size: 10px; letter-spacing: .15em; }
.process-list h3 { margin: 80px 0 12px; font-family: var(--display); font-size: 35px; font-weight: 500; text-transform: uppercase; }
.process-list p { max-width: 260px; margin: 0; color: rgba(10,9,7,.58); font-size: 14px; }

.inquiry { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 9vw, 150px); padding-top: clamp(100px, 12vw, 180px); padding-bottom: clamp(100px, 12vw, 180px); color: #fff; background: var(--ink); }
.inquiry-head h2 { margin: 52px 0 35px; }
.inquiry-head > p { max-width: 390px; color: rgba(255,255,255,.62); }
.direct-contact { margin-top: 70px; }
.direct-contact a { display: block; width: min(100%, 380px); padding: 15px 0; border-top: 1px solid var(--line-dark); font-family: var(--display); font-size: 25px; }
.direct-contact a:last-child { border-bottom: 1px solid var(--line-dark); }
.direct-contact small { display: block; margin-bottom: 5px; color: rgba(255,255,255,.42); font-family: var(--body); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.inquiry-form { align-self: start; display: grid; grid-template-columns: 1fr 1fr; gap: 0 22px; padding-top: 11px; }
.field { display: block; padding: 19px 0; border-bottom: 1px solid var(--line-dark); }
.field-wide { grid-column: 1 / -1; }
.field > span { display: block; margin-bottom: 10px; color: rgba(255,255,255,.45); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; padding: 0; color: #fff; background: transparent; border: 0; border-radius: 0; outline: 0; }
.field input:focus, .field select:focus, .field textarea:focus { box-shadow: 0 1px 0 var(--gold); }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 9px) 50%, 100% 50%; background-size: 9px 9px; background-repeat: no-repeat; }
.field select option { color: var(--ink); }
.field textarea { resize: vertical; min-height: 80px; }
.field input[type="date"] { color-scheme: dark; }
.check { display: flex; align-items: flex-start; gap: 12px; padding-top: 19px; color: rgba(255,255,255,.62); font-size: 12px; }
.check + .check { padding-top: 9px; }
.check input { flex: 0 0 15px; width: 15px; height: 15px; margin: 2px 0 0; accent-color: var(--gold); }
.check a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.form-submit { display: flex; align-items: center; justify-content: space-between; margin-top: 27px; padding: 18px 20px; color: var(--ink); background: var(--gold); border: 0; cursor: pointer; font-size: 12px; font-weight: 600; letter-spacing: .05em; }
.form-submit span { font-size: 20px; }
.form-note { margin: 10px 0 0; color: rgba(255,255,255,.38); font-size: 10px; }

.faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; padding-top: clamp(100px, 12vw, 180px); padding-bottom: clamp(100px, 12vw, 180px); background: var(--paper-bright); }
.faq h2 { margin-top: 50px; font-size: clamp(58px, 7vw, 112px); }
.faq-list { border-top: 1px solid var(--line-light); }
.faq details { border-bottom: 1px solid var(--line-light); }
.faq summary { display: grid; grid-template-columns: 35px 1fr auto; align-items: center; min-height: 86px; padding: 12px 0; cursor: pointer; list-style: none; font-size: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { color: rgba(10,9,7,.42); font-size: 9px; letter-spacing: .12em; }
.faq summary i { font-family: var(--display); font-size: 29px; font-style: normal; font-weight: 300; transition: transform .25s ease; }
.faq details[open] summary i { transform: rotate(45deg); }
.faq details p { max-width: 650px; margin: -4px 40px 30px 35px; color: rgba(10,9,7,.62); }

.site-footer { position: relative; overflow: hidden; padding: 130px var(--pad) 28px; color: #fff; background: #090806; }
.footer-mark { position: absolute; top: -80px; right: -25px; color: rgba(255,255,255,.025); font-family: var(--display); font-size: 38vw; font-weight: 700; line-height: 1; }
.footer-lead { position: relative; display: grid; grid-template-columns: 1fr auto; align-items: end; padding-bottom: 110px; }
.footer-lead .eyebrow { grid-column: 1 / -1; margin-bottom: 35px; color: var(--gold-light); }
.footer-lead h2 { margin: 0; font-family: var(--display); font-size: clamp(70px, 10vw, 165px); font-weight: 500; letter-spacing: -.04em; line-height: .78; text-transform: uppercase; }
.footer-lead h2 em { color: var(--gold); font-style: italic; }
.circle-link { display: flex; align-items: center; justify-content: center; width: 150px; height: 150px; margin-right: 3vw; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; font-size: 12px; transition: color .25s, background .25s, border-color .25s; }
.circle-link span { margin-left: 8px; font-size: 20px; }
.circle-link:hover { color: var(--ink); background: var(--gold); border-color: var(--gold); }
.footer-grid { position: relative; display: grid; grid-template-columns: 1.4fr 1.1fr .8fr .7fr; gap: 40px; padding: 35px 0 70px; border-top: 1px solid var(--line-dark); }
.footer-grid p { margin: 0 0 13px; }
.footer-label { color: rgba(255,255,255,.4); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.footer-grid a { font-size: 13px; line-height: 1.7; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-bottom { position: relative; display: flex; justify-content: space-between; padding-top: 22px; border-top: 1px solid var(--line-dark); color: rgba(255,255,255,.38); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

/* Vehicle detail */
.vehicle-hero { position: relative; min-height: 100svh; overflow: hidden; color: #fff; background: #0d0c0a; }
.vehicle-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,7,6,.92) 0%, rgba(7,7,6,.38) 48%, rgba(7,7,6,.12) 75%, rgba(7,7,6,.45) 100%), linear-gradient(0deg, rgba(0,0,0,.65), transparent 48%); }
.vehicle-hero-media { position: absolute; inset: 0; }
.vehicle-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.vehicle-hero-copy { position: absolute; z-index: 3; bottom: 14vh; left: var(--pad); }
.vehicle-hero-copy .eyebrow { margin-bottom: 38px; color: var(--gold-light); }
.vehicle-hero-brand { margin: 0 0 2px; font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.vehicle-hero-copy h1 { margin: 0; font-family: var(--display); font-size: clamp(92px, 13.5vw, 220px); font-weight: 500; letter-spacing: -.045em; line-height: .72; text-transform: uppercase; }
.vehicle-hero-copy > p:last-child { margin: 28px 0 0; color: rgba(255,255,255,.65); font-size: 14px; }
.vehicle-hero-stats { position: absolute; z-index: 3; right: var(--pad); bottom: 9vh; display: grid; grid-template-columns: repeat(3, minmax(110px, 1fr)); margin: 0; border-top: 1px solid var(--line-dark); }
.vehicle-hero-stats div { padding: 17px 25px 0 0; border-right: 1px solid var(--line-dark); }
.vehicle-hero-stats div + div { padding-left: 25px; }
.vehicle-hero-stats dt { color: rgba(255,255,255,.42); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.vehicle-hero-stats dd { margin: 7px 0 0; font-family: var(--display); font-size: 30px; }
.vehicle-hero-stats small { font-size: 12px; }
.vehicle-back { position: absolute; z-index: 3; top: 130px; left: var(--pad); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }

.vehicle-intro { display: grid; grid-template-columns: .7fr 1.5fr .8fr; gap: 5vw; padding-top: clamp(100px, 12vw, 180px); padding-bottom: clamp(100px, 12vw, 180px); }
.vehicle-intro h2 { font-size: clamp(62px, 7vw, 110px); }
.vehicle-intro > div > p { max-width: 580px; margin: 42px 0 0; font-size: clamp(17px, 1.6vw, 24px); line-height: 1.45; }
.vehicle-specs { margin: 0; border-top: 1px solid var(--line-light); }
.vehicle-specs div { display: flex; justify-content: space-between; gap: 20px; padding: 15px 0; border-bottom: 1px solid var(--line-light); }
.vehicle-specs dt { color: rgba(10,9,7,.5); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.vehicle-specs dd { margin: 0; text-align: right; font-size: 13px; }

.vehicle-gallery { overflow: hidden; padding: 120px 0 90px; color: #fff; background: var(--ink); }
.vehicle-gallery header { display: grid; grid-template-columns: .7fr 2.3fr; align-items: start; margin-bottom: 70px; }
.vehicle-gallery .section-index { color: rgba(255,255,255,.4); }
.vehicle-gallery h2 { font-size: clamp(70px, 9vw, 145px); }
.gallery-track { display: flex; gap: 20px; width: 100%; padding: 0 var(--pad) 80px; overflow-x: auto; overscroll-behavior-inline: contain; scrollbar-width: none; scroll-snap-type: x proximity; }
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-item { flex: 0 0 min(38vw, 580px); width: min(38vw, 580px); padding: 0; background: transparent; border: 0; text-align: left; cursor: pointer; scroll-snap-align: start; }
.gallery-item-low { margin-top: 90px; }
.gallery-item img { width: 100%; aspect-ratio: 1.3 / 1; object-fit: cover; pointer-events: none; }
.gallery-item > span { display: flex; justify-content: space-between; padding-top: 13px; color: rgba(255,255,255,.5); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.gallery-item > span i { color: #fff; font-style: normal; }

.prices { display: grid; grid-template-columns: .85fr 1.15fr; gap: 9vw; padding-top: clamp(100px, 12vw, 180px); padding-bottom: clamp(100px, 12vw, 180px); color: #fff; background: #17130d; }
.prices header h2 { margin-top: 52px; font-size: clamp(65px, 8vw, 125px); }
.prices header > p { max-width: 350px; margin-top: 35px; color: rgba(255,255,255,.58); }
.price-list { border-top: 1px solid var(--line-dark); }
.price-list article { display: grid; grid-template-columns: 48px 1fr auto; align-items: center; min-height: 102px; border-bottom: 1px solid var(--line-dark); }
.price-list article > span { color: rgba(255,255,255,.35); font-size: 9px; }
.price-list h3 { margin: 0; font-family: var(--display); font-size: 32px; font-weight: 500; text-transform: uppercase; }
.price-list article p { margin: 2px 0 0; color: rgba(255,255,255,.42); font-size: 11px; }
.price-list article strong { font-family: var(--display); font-size: clamp(34px, 4vw, 55px); font-weight: 500; }
.price-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; padding: 27px 0; border-bottom: 1px solid var(--line-dark); }
.price-meta p { margin: 0; }
.price-meta span, .price-meta small { display: block; color: rgba(255,255,255,.42); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.price-meta strong { display: block; margin: 8px 0 3px; font-family: var(--display); font-size: 28px; }
.price-note { margin: 20px 0 40px; color: rgba(255,255,255,.48); font-size: 11px; }
.dark-link { width: 100%; border-color: var(--line-dark); }

.lightbox { width: 100vw; max-width: none; height: 100dvh; max-height: none; margin: 0; padding: 0; color: #fff; background: rgba(5,5,4,.97); border: 0; }
.lightbox::backdrop { background: #000; }
.lightbox-top { position: absolute; z-index: 2; top: 0; left: 0; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; width: 100%; height: 78px; padding: 0 30px; border-bottom: 1px solid var(--line-dark); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.lightbox-top p { margin: 0; }
.lightbox-top button { justify-self: end; color: #fff; background: transparent; border: 0; cursor: pointer; text-transform: uppercase; }
.lightbox-top button i { margin-left: 10px; font-size: 26px; font-style: normal; vertical-align: middle; }
.lightbox-stage { display: grid; place-items: center; width: 100%; height: 100%; padding: 105px 7vw 85px; }
.lightbox-stage figure { width: 100%; height: 100%; margin: 0; }
.lightbox-stage img { width: 100%; height: 100%; object-fit: contain; }
.lightbox-controls { position: absolute; right: 30px; bottom: 25px; display: flex; gap: 8px; }
.lightbox-controls button { width: 46px; height: 46px; color: #fff; background: transparent; border: 1px solid var(--line-dark); cursor: pointer; }

/* Legal */
.legal-page { color: #fff; background: var(--ink); }
.legal-main { min-height: 75vh; padding: 190px var(--pad) 150px; }
.legal-kicker { margin-bottom: 35px; color: var(--gold-light); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.legal-main > h1, .legal-content > h1:first-child { margin: 0 0 70px; font-family: var(--display); font-size: clamp(80px, 12vw, 185px); font-weight: 500; letter-spacing: -.04em; line-height: .8; text-transform: uppercase; }
.legal-grid { display: grid; grid-template-columns: repeat(2, 1fr); max-width: 1000px; margin-left: min(18vw, 280px); border-top: 1px solid var(--line-dark); }
.legal-grid section { min-height: 180px; padding: 28px 30px 30px 0; border-bottom: 1px solid var(--line-dark); }
.legal-grid section:nth-child(even) { padding-left: 30px; border-left: 1px solid var(--line-dark); }
.legal-grid h2 { margin: 0 0 38px; color: rgba(255,255,255,.4); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.legal-grid p { margin: 0; font-size: 17px; line-height: 1.7; }
.legal-intro { max-width: 900px; margin: -38px 0 55px min(18vw, 280px); color: rgba(255,255,255,.48); font-size: 13px; letter-spacing: .04em; }
.legal-content .legal-intro { margin: -38px 0 55px; }
.legal-back { display: inline-block; margin-top: 70px; padding-bottom: 8px; border-bottom: 1px solid var(--line-dark); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.legal-content { max-width: 900px; margin-left: min(18vw, 280px); }
.legal-content > h1:first-child { margin-left: calc(-1 * min(18vw, 280px)); }
.legal-content h1:not(:first-child) { margin: 70px 0 25px; font-family: var(--display); font-size: 46px; font-weight: 500; text-transform: uppercase; }
.legal-content h2 { margin: 42px 0 12px; font-family: var(--display); font-size: 30px; font-weight: 500; text-transform: uppercase; }
.legal-content h3 { margin: 25px 0 8px; font-size: 16px; }
.legal-content p, .legal-content li { color: rgba(255,255,255,.68); font-size: 14px; line-height: 1.75; }
.legal-content ul { padding-left: 20px; }
.not-found { min-height: 75vh; padding: 220px var(--pad) 120px; color: #fff; background: var(--ink); }
.not-found h1 { max-width: 900px; font-family: var(--display); font-size: clamp(70px, 10vw, 150px); line-height: .85; text-transform: uppercase; }

.js [data-reveal] { opacity: 0; transform: translateY(35px); transition: opacity .7s ease, transform .7s ease; }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
    .desktop-nav { display: none; }
    .site-header { grid-template-columns: 1fr auto auto; }
    .header-cta { margin-right: 20px; }
    .menu-toggle { position: relative; display: block; width: 42px; height: 42px; padding: 0; cursor: pointer; }
    .menu-toggle span { position: absolute; right: 4px; width: 25px; height: 1px; background: #fff; transition: transform .25s, top .25s; }
    .menu-toggle span:first-child { top: 17px; }
    .menu-toggle span:nth-child(2) { top: 25px; }
    .menu-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:nth-child(2) { top: 21px; transform: rotate(-45deg); }
    .mobile-menu { position: fixed; z-index: 90; inset: 0; display: flex; flex-direction: column; justify-content: space-between; padding: 145px var(--pad) 55px; color: #fff; background: var(--ink); opacity: 0; visibility: hidden; transform: translateY(-20px); transition: opacity .3s, transform .3s, visibility .3s; }
    .mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; }
    .mobile-menu nav a { display: grid; grid-template-columns: 50px 1fr; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--line-dark); font-family: var(--display); font-size: clamp(50px, 8vw, 80px); line-height: 1.05; text-transform: uppercase; }
    .mobile-menu nav span { color: var(--gold); font-family: var(--body); font-size: 9px; }
    .mobile-menu > div { display: flex; gap: 30px; font-size: 13px; }
    .hero h1 { font-size: clamp(75px, 12vw, 130px); }
    .hero-bottom { width: min(750px, 77vw); }
    .vehicle-card:nth-child(even) { margin-top: 90px; }
    .spotlight { grid-template-columns: 1fr 1fr; }
    .service-grid article { padding-right: 24px; }
    .service-grid article + article { padding-left: 24px; }
    .service-grid article + article > a { left: 24px; }
    .inquiry { gap: 6vw; }
    .vehicle-hero-stats { right: var(--pad); bottom: 5vh; }
    .vehicle-intro { grid-template-columns: .5fr 1.4fr .8fr; }
}

@media (max-width: 760px) {
    :root { --pad: 20px; }
    .site-header { height: 78px; }
    .site-header.is-fixed { height: 68px; }
    .brand img { width: 45px; height: 38px; }
    .brand > span { display: none; }
    .header-cta { min-height: 39px; margin-right: 6px; padding: 0 13px; font-size: 10px; }
    .header-cta span { display: none; }
    .mobile-menu { padding-top: 110px; }
    .mobile-menu nav a { font-size: 48px; }
    .mobile-menu > div { flex-direction: column; gap: 5px; }
    .hero { min-height: 790px; }
    .hero-visual { inset: 0 0 0 8%; }
    .hero-visual-media { object-position: 53% 48%; }
    .hero::after { background: linear-gradient(0deg, rgba(10,9,7,.98) 0%, rgba(10,9,7,.78) 50%, rgba(10,9,7,.15) 100%), linear-gradient(90deg, rgba(10,9,7,.4), transparent); }
    .hero-lines { background-size: calc(100% / 3) 100%; }
    .hero-copy { justify-content: flex-end; min-height: 790px; padding-top: 120px; padding-bottom: 65px; }
    .hero-copy .eyebrow { margin-bottom: 18px; }
    .hero h1 { font-size: clamp(67px, 20vw, 92px); line-height: .8; }
    .hero h1 em { margin-left: 0; white-space: normal; }
    .hero-bottom { display: block; width: auto; margin: 34px 0 0; }
    .hero-bottom p { width: auto; max-width: 340px; font-size: 13px; }
    .hero-bottom .primary-link { margin-top: 23px; }
    .hero-side { display: none; }
    .scroll-cue { display: none; }
    .intro { padding-top: 90px; padding-bottom: 90px; }
    .intro h2 { margin: 32px 0 55px; font-size: 53px; }
    .intro-bottom { display: block; margin-left: 0; }
    .intro-bottom > p { font-size: 18px; }
    .key-numbers { margin-top: 55px; }
    .key-numbers div { padding-top: 18px; }
    .key-numbers div + div { padding-left: 12px; }
    .key-numbers dt { font-size: 42px; }
    .key-numbers dd { font-size: 8px; }
    .ticker { padding-block: 15px 12px; }
    .ticker span { font-size: 24px; }
    .fleet { padding-top: 90px; padding-bottom: 100px; }
    .section-heading { display: block; margin-bottom: 50px; }
    .section-heading h2 { margin-top: 34px; font-size: 60px; }
    .section-heading > div:last-child > p { width: auto; margin-top: 24px; }
    .fleet-grid { grid-template-columns: 1fr; gap: 65px; }
    .vehicle-card:nth-child(even), .vehicle-card:nth-child(5) { grid-column: auto; margin-top: 0; }
    .vehicle-card-media { aspect-ratio: 1 / .9; }
    .vehicle-power { font-size: 66px; }
    .vehicle-card-copy { grid-template-columns: 1fr; }
    .vehicle-card-copy h3 { font-size: 52px; }
    .vehicle-card-copy dl { grid-row: 2; }
    .spotlight { display: block; }
    .spotlight-media { min-height: 520px; }
    .spotlight-copy { padding-top: 80px; padding-bottom: 90px; }
    .spotlight-kicker { margin-top: 55px; }
    .spotlight h2 { font-size: 61px; }
    .services { padding-top: 90px; padding-bottom: 90px; }
    .compact-heading { margin-bottom: 60px; }
    .compact-heading h2 { font-size: 52px; }
    .service-grid { grid-template-columns: 1fr; }
    .service-grid article, .service-grid article + article { min-height: 390px; padding: 25px 0 28px; border-right: 0; border-bottom: 1px solid var(--line-light); }
    .service-grid article:last-child { border-bottom: 0; }
    .service-label { margin-top: 50px; }
    .service-grid h3 { font-size: 48px; }
    .service-grid h3 + p { margin-bottom: 60px; }
    .service-grid article > a, .service-grid article + article > a { right: 0; bottom: 28px; left: 0; }
    .visual-break { grid-template-columns: 1fr 1fr; height: 720px; }
    .visual-break figure:first-child { grid-row: 1 / 3; }
    .visual-break figure:nth-child(2) { margin: 0; }
    .process { padding-top: 90px; padding-bottom: 90px; }
    .process-head { display: block; margin: 40px 0 60px; }
    .process h2 { font-size: 62px; }
    .process-head p { margin-top: 25px; }
    .process-list { grid-template-columns: 1fr; margin-left: 0; }
    .process-list li, .process-list li + li { min-height: 220px; padding: 20px 0; border-right: 0; border-bottom: 1px solid var(--line-light); }
    .process-list h3 { margin-top: 55px; }
    .inquiry { grid-template-columns: 1fr; gap: 70px; padding-top: 90px; padding-bottom: 90px; }
    .inquiry h2 { margin-top: 40px; font-size: 65px; }
    .direct-contact { margin-top: 45px; }
    .inquiry-form { grid-template-columns: 1fr; }
    .field, .field-wide { grid-column: 1; }
    .faq { grid-template-columns: 1fr; gap: 70px; padding-top: 90px; padding-bottom: 90px; }
    .faq h2 { margin-top: 40px; font-size: 58px; }
    .faq summary { grid-template-columns: 28px 1fr auto; font-size: 14px; }
    .faq details p { margin-left: 28px; }
    .site-footer { padding-top: 90px; }
    .footer-lead { display: block; padding-bottom: 90px; }
    .footer-lead h2 { font-size: 69px; }
    .circle-link { width: 112px; height: 112px; margin: 45px 0 0 auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 20px; }

    .vehicle-hero { min-height: 790px; }
    .vehicle-hero::after { background: linear-gradient(0deg, rgba(7,7,6,.97) 0%, rgba(7,7,6,.68) 50%, rgba(7,7,6,.1) 100%); }
    .vehicle-hero-media img { object-position: center; }
    .vehicle-hero-copy { right: var(--pad); bottom: 215px; }
    .vehicle-hero-copy .eyebrow { margin-bottom: 25px; }
    .vehicle-hero-copy h1 { font-size: clamp(78px, 24vw, 112px); }
    .vehicle-hero-stats { right: var(--pad); bottom: 65px; left: var(--pad); grid-template-columns: repeat(3, 1fr); }
    .vehicle-hero-stats div { padding-right: 8px; }
    .vehicle-hero-stats div + div { padding-left: 12px; }
    .vehicle-hero-stats dd { font-size: 24px; }
    .vehicle-back { top: 102px; }
    .vehicle-intro { display: block; padding-top: 90px; padding-bottom: 90px; }
    .vehicle-intro h2 { margin-top: 40px; font-size: 60px; }
    .vehicle-intro > div > p { margin-top: 30px; font-size: 18px; }
    .vehicle-specs { margin-top: 60px; }
    .vehicle-gallery { padding-top: 90px; }
    .vehicle-gallery header { display: block; margin-bottom: 50px; }
    .vehicle-gallery h2 { margin-top: 35px; font-size: 70px; }
    .gallery-track { gap: 12px; padding-bottom: 45px; overflow-x: auto; scrollbar-width: none; }
    .gallery-track::-webkit-scrollbar { display: none; }
    .gallery-item { width: 82vw; }
    .gallery-item-low { margin-top: 45px; }
    .prices { grid-template-columns: 1fr; gap: 70px; padding-top: 90px; padding-bottom: 90px; }
    .prices header h2 { margin-top: 40px; font-size: 65px; }
    .price-list article { grid-template-columns: 30px 1fr auto; min-height: 94px; }
    .price-list h3 { font-size: 26px; }
    .price-list article strong { font-size: 34px; }
    .price-meta { gap: 15px; }
    .lightbox-top { grid-template-columns: 1fr auto; height: 65px; padding-inline: 16px; }
    .lightbox-top > span { display: none; }
    .lightbox-top p { justify-self: start; }
    .lightbox-stage { padding: 85px 10px 80px; }
    .lightbox-controls { right: 15px; bottom: 18px; }
    .legal-main { padding-top: 135px; padding-bottom: 100px; }
    .legal-main > h1, .legal-content > h1:first-child { margin-bottom: 50px; font-size: clamp(44px, 13vw, 58px); }
    .legal-grid { grid-template-columns: 1fr; margin-left: 0; }
    .legal-grid section, .legal-grid section:nth-child(even) { min-height: 150px; padding: 24px 0; border-left: 0; }
    .legal-grid h2 { margin-bottom: 26px; }
    .legal-intro, .legal-content .legal-intro { margin: -24px 0 40px; }
    .legal-content { margin-left: 0; }
    .legal-content > h1:first-child { margin-left: 0; }
    .legal-content h1:not(:first-child) { font-size: 38px; }
}

/* Ruhige Wechsel zwischen den Seiten */
@view-transition { navigation: auto; }

::view-transition-old(root) {
    animation: lm-page-out .3s cubic-bezier(.4, 0, 1, 1) both;
}

::view-transition-new(root) {
    animation: lm-page-in .52s cubic-bezier(.2, .75, .2, 1) both;
}

@keyframes lm-page-out {
    to { opacity: 0; transform: scale(.992); filter: blur(3px); }
}

@keyframes lm-page-in {
    from { opacity: 0; transform: translateY(8px) scale(.995); filter: blur(4px); }
    to { opacity: 1; transform: none; filter: none; }
}

.page-transition-curtain {
    position: fixed;
    z-index: 9997;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    background: rgba(10, 8, 5, .22);
    backdrop-filter: blur(0);
    transition: opacity .24s ease, backdrop-filter .24s ease;
}

body > main,
body > .site-footer,
.site-header {
    transition: opacity .24s ease, transform .24s cubic-bezier(.4, 0, 1, 1), filter .24s ease;
}

body.is-leaving > main,
body.is-leaving > .site-footer {
    opacity: .35;
    filter: blur(3px);
    transform: scale(.996);
}

body.is-leaving .site-header { opacity: .65; transform: translateY(-3px); }
body.is-leaving .page-transition-curtain { opacity: 1; backdrop-filter: blur(5px); }

.brand-intro {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    place-items: center;
    overflow: hidden;
    pointer-events: auto;
}

.js .brand-intro { display: grid; }
.intro-seen .brand-intro { display: none; }
body.intro-running { overflow: hidden; }

.brand-intro-panel {
    position: absolute;
    left: 0;
    width: 100%;
    height: calc(50% + 1px);
    background: #080705;
    will-change: transform;
}

.brand-intro-panel-top { top: 0; }
.brand-intro-panel-bottom { bottom: 0; }

.brand-intro-horizon {
    position: absolute;
    top: 50%;
    left: 7vw;
    width: 86vw;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(228, 201, 143, .35) 15%, var(--gold-light) 50%, rgba(228, 201, 143, .35) 85%, transparent);
    box-shadow: 0 0 28px rgba(208, 176, 112, .38);
    transform: scaleX(0);
    transform-origin: center;
    will-change: transform, opacity;
}

.brand-intro-mark {
    position: relative;
    z-index: 2;
    display: grid;
    justify-items: center;
    gap: 13px;
    color: #f1ece1;
    opacity: 0;
    transform: translateY(8px);
    will-change: transform, opacity;
}

.brand-intro-mark img {
    width: 92px;
    height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, .5));
}

.brand-intro-mark span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.brand-intro-skip {
    position: absolute;
    right: 28px;
    bottom: 24px;
    z-index: 3;
    padding: 8px;
    border: 0;
    background: transparent;
    color: rgba(241, 236, 225, .56);
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    cursor: pointer;
}

.brand-intro-skip:hover,
.brand-intro-skip:focus-visible { color: #fff; }

.page-arriving body { animation: lm-fallback-arrive .42s cubic-bezier(.2,.75,.2,1) both; }

@keyframes lm-fallback-arrive {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
    ::view-transition-old(root),
    ::view-transition-new(root),
    .page-arriving body { animation-duration: .01ms; }
    .page-transition-curtain,
    body > main,
    body > .site-footer,
    .site-header { transition-duration: .01ms; }
}

/* Flotte und Fahrzeugauswahl */
.fleet-overview-link {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 28px;
    margin-top: 52px;
    padding: 24px 28px;
    color: #fff;
    border: 1px solid rgba(208, 176, 112, .3);
    border-radius: 16px;
    transition: color .2s ease, background .2s ease;
}
.fleet-overview-link:hover { color: var(--ink); background: var(--gold-light); }
.fleet-overview-link span { color: var(--gold-light); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.fleet-overview-link:hover span { color: rgba(11, 9, 6, .65); }
.fleet-overview-link strong { font-family: var(--display); font-size: 31px; font-weight: 400; }
.fleet-overview-link i { font-size: 12px; font-style: normal; letter-spacing: .08em; text-transform: uppercase; }

.fleet-page { color: #fff; background: var(--ink); }
.fleet-overview-hero {
    display: grid;
    grid-template-columns: .65fr 2fr;
    min-height: 660px;
    padding-top: 190px;
    padding-bottom: 100px;
    background:
        radial-gradient(circle at 78% 8%, rgba(208, 176, 112, .16), transparent 32%),
        linear-gradient(120deg, #0b0906 45%, #1c140c);
}
.fleet-overview-hero .eyebrow { align-self: start; color: var(--gold-light); }
.fleet-overview-hero > div { align-self: end; }
.fleet-overview-hero h1 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(76px, 9.2vw, 150px);
    font-weight: 400;
    letter-spacing: -.06em;
    line-height: .84;
}
.fleet-overview-hero h1 em { color: var(--gold-light); font-weight: 400; }
.fleet-overview-hero > div > p { max-width: 590px; margin: 52px 0 0; color: rgba(255, 255, 255, .62); font-size: 17px; line-height: 1.7; }

.fleet-overview { padding-top: 100px; padding-bottom: 145px; background: var(--paper-bright); }
.fleet-filter-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 50px; color: var(--ink); }
.fleet-filter-head h2 { margin: 12px 0 0; font-family: var(--display); font-size: 52px; font-weight: 400; letter-spacing: -.04em; }
.fleet-filters { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.fleet-filters button {
    min-height: 42px;
    padding: 0 17px;
    color: var(--ink);
    background: transparent;
    border: 1px solid rgba(11, 9, 6, .22);
    border-radius: 999px;
    cursor: pointer;
    font: inherit;
    font-size: 12px;
}
.fleet-filters button:hover,
.fleet-filters button.is-active { color: #fff; background: var(--ink); border-color: var(--ink); }
.overview-grid,
.related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.overview-grid .vehicle-card,
.overview-grid .vehicle-card:nth-child(4),
.overview-grid .vehicle-card:nth-child(5),
.related-grid .vehicle-card { grid-column: auto; }
.overview-grid .vehicle-card[hidden] { display: none; }
.fleet-empty { padding: 60px 0; color: var(--ink); text-align: center; }

.fleet-contact {
    display: grid;
    grid-template-columns: .65fr 2fr;
    gap: 40px;
    padding-top: 110px;
    padding-bottom: 120px;
    background: #17110a;
}
.fleet-contact > p { margin: 8px 0 0; color: var(--gold-light); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.fleet-contact h2 { margin: 0 0 45px; font-family: var(--display); font-size: clamp(58px, 7vw, 110px); font-weight: 400; letter-spacing: -.05em; line-height: .92; }
.fleet-contact h2 em { color: var(--gold-light); font-weight: 400; }

.related-fleet { padding-top: 120px; padding-bottom: 140px; color: #fff; background: var(--ink); }
.related-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 50px; }
.related-heading h2 { margin: 25px 0 0; font-family: var(--display); font-size: clamp(54px, 6vw, 92px); font-weight: 400; letter-spacing: -.05em; line-height: .92; }
.related-heading h2 em { color: var(--gold-light); font-weight: 400; }
.related-grid .vehicle-card-copy h3 { font-size: clamp(34px, 3vw, 50px); }

@media (max-width: 1100px) {
    .overview-grid, .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .related-grid .vehicle-card:last-child { display: none; }
}

@media (max-width: 760px) {
    .brand-intro-mark img { width: 76px; height: 58px; }
    .brand-intro-mark span { font-size: 9px; letter-spacing: .24em; }
    .brand-intro-skip { right: 14px; bottom: 14px; }
    .fleet-overview-link { grid-template-columns: 1fr auto; gap: 7px 15px; margin-top: 32px; padding: 20px; }
    .fleet-overview-link span { grid-column: 1 / -1; }
    .fleet-overview-link strong { font-size: 25px; }
    .fleet-overview-link i { text-align: right; }
    .fleet-overview-hero { display: block; min-height: 620px; padding-top: 150px; padding-bottom: 70px; }
    .fleet-overview-hero h1 { margin-top: 85px; font-size: clamp(66px, 21vw, 92px); }
    .fleet-overview-hero > div > p { margin-top: 38px; font-size: 15px; }
    .fleet-overview { padding-top: 70px; padding-bottom: 90px; }
    .fleet-filter-head { display: block; margin-bottom: 28px; }
    .fleet-filter-head h2 { font-size: 42px; }
    .fleet-filters { flex-wrap: nowrap; justify-content: flex-start; margin: 28px calc(var(--pad) * -1) 0; padding: 0 var(--pad) 4px; overflow-x: auto; scrollbar-width: none; }
    .fleet-filters::-webkit-scrollbar { display: none; }
    .fleet-filters button { flex: 0 0 auto; }
    .overview-grid, .related-grid { grid-template-columns: 1fr; gap: 18px; }
    .related-grid .vehicle-card:last-child { display: block; }
    .fleet-contact { display: block; padding-top: 80px; padding-bottom: 85px; }
    .fleet-contact h2 { margin-top: 35px; font-size: 52px; }
    .fleet-contact .primary-link { width: 100%; }
    .related-fleet { padding-top: 85px; padding-bottom: 90px; }
    .related-heading { display: block; margin-bottom: 35px; }
    .related-heading .text-link { display: inline-flex; margin-top: 28px; }
    .related-heading h2 { font-size: 52px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Originale Bildformate statt erzwungener Ausschnitte */
.gallery-item { flex-basis: min(42vw, 660px); width: min(42vw, 660px); }
.gallery-item-portrait { flex-basis: min(27vw, 430px); width: min(27vw, 430px); }
.gallery-item-square { flex-basis: min(34vw, 530px); width: min(34vw, 530px); }
.gallery-item img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    background: #17120c;
    box-shadow: 0 24px 60px rgba(0,0,0,.22);
}

@media (max-width: 760px) {
    .gallery-item,
    .gallery-item-square { flex-basis: 82vw; width: 82vw; }
    .gallery-item-portrait { flex-basis: 68vw; width: 68vw; }
}

/* Google-Bewertungen */
.reviews {
    position: relative;
    overflow: hidden;
    padding-top: clamp(100px, 11vw, 165px);
    padding-bottom: clamp(100px, 11vw, 155px);
    color: #fff;
    background:
        radial-gradient(circle at 92% 5%, rgba(208,176,112,.12), transparent 28%),
        #0d0a06;
}
.reviews::after {
    content: "★★★★★";
    position: absolute;
    right: -2vw;
    bottom: -3vw;
    color: rgba(208,176,112,.025);
    font-family: var(--display);
    font-size: 14vw;
    letter-spacing: -.12em;
    line-height: 1;
    white-space: nowrap;
    pointer-events: none;
}
.reviews-head { position: relative; z-index: 1; display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 72px; }
.reviews .section-index { color: rgba(255,255,255,.43); }
.reviews h2 { margin: 34px 0 0; font-family: var(--display); font-size: clamp(65px, 7.5vw, 116px); font-weight: 400; letter-spacing: -.055em; line-height: .88; }
.reviews h2 em { color: var(--gold-light); font-weight: 400; }
.reviews-source { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }
.reviews-source > span { display: grid; grid-template-columns: repeat(2, 7px); gap: 2px; transform: rotate(45deg); }
.reviews-source i { width: 7px; height: 7px; border-radius: 50%; }
.reviews-source i:nth-child(1) { background: #4285f4; }
.reviews-source i:nth-child(2) { background: #ea4335; }
.reviews-source i:nth-child(3) { background: #34a853; }
.reviews-source i:nth-child(4) { background: #fbbc05; }
.reviews-source p { margin: 0; color: rgba(255,255,255,.5); font-size: 11px; }
.reviews-source strong { color: #fff; font-weight: 600; }
.reviews-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.reviews-grid article {
    display: flex;
    flex-direction: column;
    min-height: 390px;
    padding: 28px;
    background: rgba(27,20,12,.8);
    border: 1px solid rgba(208,176,112,.2);
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(0,0,0,.18);
    transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
.reviews-grid article:nth-child(2) { transform: translateY(34px); }
.reviews-grid article:hover { background: #20170e; border-color: rgba(208,176,112,.52); transform: translateY(-7px); }
.reviews-grid article:nth-child(2):hover { transform: translateY(27px); }
.review-stars { color: var(--gold-light); font-size: 18px; letter-spacing: .16em; }
.reviews blockquote { max-width: 390px; margin: auto 0; font-family: var(--display); font-size: clamp(31px, 3vw, 47px); letter-spacing: -.035em; line-height: 1.02; }
.reviews-grid article footer { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); }
.reviews-grid article footer > span { color: rgba(255,255,255,.3); font-size: 9px; }
.reviews-grid article footer div { display: grid; gap: 3px; }
.reviews-grid article footer strong { font-size: 12px; font-weight: 600; }
.reviews-grid article footer small { color: rgba(255,255,255,.42); font-size: 9px; letter-spacing: .07em; text-transform: uppercase; }
.reviews-link { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; margin-top: 70px; padding: 20px 0; color: rgba(255,255,255,.65); border-top: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.reviews-link i { color: var(--gold-light); font-size: 22px; font-style: normal; transition: transform .2s ease; }
.reviews-link:hover { color: #fff; }
.reviews-link:hover i { transform: translate(3px,-3px); }

@media (max-width: 760px) {
    .reviews { padding-top: 85px; padding-bottom: 90px; }
    .reviews-head { display: block; margin-bottom: 42px; }
    .reviews h2 { margin-top: 35px; font-size: 55px; }
    .reviews-source { margin-top: 30px; }
    .reviews-grid { display: flex; gap: 11px; margin-inline: calc(var(--pad) * -1); padding-inline: var(--pad); padding-bottom: 8px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
    .reviews-grid::-webkit-scrollbar { display: none; }
    .reviews-grid article,
    .reviews-grid article:nth-child(2) { flex: 0 0 84vw; min-height: 355px; padding: 24px; transform: none; scroll-snap-align: center; }
    .reviews-grid article:hover,
    .reviews-grid article:nth-child(2):hover { transform: none; }
    .reviews blockquote { font-size: 34px; }
    .reviews-link { margin-top: 40px; }
}

@media (max-width: 760px) {
    .header-cta { min-height: 42px; }
    .menu-toggle { width: 44px; height: 44px; }
    .fleet-filters button { min-height: 44px; }
}

/* Eigenständige L.M-Boutique-Optik */
:root {
    --ink: #0b0906;
    --ink-soft: #18130e;
    --paper: #eee5d4;
    --paper-bright: #faf5e9;
    --gold: #d0b070;
    --gold-light: #e4c98f;
    --display: Georgia, "Times New Roman", serif;
}

.site-header {
    top: 20px;
    left: 20px;
    width: calc(100% - 40px);
    height: 72px;
    padding-inline: 26px;
    background: rgba(11, 9, 6, .78);
    border: 1px solid rgba(208, 176, 112, .28);
    border-radius: 999px;
    backdrop-filter: blur(18px);
}

.site-header.is-fixed {
    top: 12px;
    height: 64px;
    background: rgba(11, 9, 6, .94);
}

.brand img { width: 48px; height: 39px; }
.header-cta { min-height: 40px; border-radius: 999px; }

.hero {
    min-height: max(920px, 100svh);
    background: var(--ink);
}

.hero::after {
    background:
        linear-gradient(90deg, rgba(11, 8, 4, .94) 0%, rgba(11, 8, 4, .72) 39%, rgba(11, 8, 4, .1) 72%),
        linear-gradient(0deg, rgba(11, 8, 4, .88) 0%, transparent 55%);
}

.hero-visual { inset: 0; }
.hero-visual-media { object-position: center 58%; filter: none; }
.hero-lines { opacity: .035; background-size: 25% 100%; }

.hero-copy {
    justify-content: center;
    min-height: max(920px, 100svh);
    padding-top: 165px;
    padding-bottom: 80px;
}

.hero-copy .eyebrow { margin-bottom: 30px; }

.hero h1 {
    max-width: 1050px;
    font-size: clamp(70px, 8.2vw, 138px);
    font-weight: 400;
    letter-spacing: -.055em;
    line-height: .91;
    text-transform: none;
}

.hero h1 em {
    margin-left: clamp(25px, 6vw, 95px);
    color: #f1ece1;
    font-weight: 400;
    white-space: normal;
}

.hero-bottom {
    width: min(720px, 62vw);
    margin-top: 52px;
    margin-left: clamp(25px, 6vw, 95px);
}

.primary-link {
    min-width: 210px;
    padding: 13px 18px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 999px;
}

.intro h2,
.section-heading h2,
.spotlight h2,
.services h2,
.process h2,
.inquiry h2,
.faq h2,
.vehicle-intro h2,
.vehicle-gallery h2,
.prices h2,
.footer-lead h2 {
    font-weight: 400;
    letter-spacing: -.045em;
    line-height: .94;
    text-transform: none;
}

.intro h2 { max-width: 1120px; font-size: clamp(48px, 6.3vw, 102px); }

.ticker {
    padding-block: 13px 11px;
    color: #f6f1e7;
    background: #17110a;
    border-top: 1px solid rgba(208, 176, 112, .24);
    border-bottom: 1px solid rgba(208, 176, 112, .24);
}
.ticker span { margin-inline: 34px; font-family: var(--body); font-size: 12px; font-weight: 600; letter-spacing: .22em; }
.ticker i { color: var(--gold); }

.offer {
    padding-top: clamp(64px, 6vw, 96px);
    padding-bottom: clamp(90px, 9vw, 140px);
    background: var(--paper-bright);
}

.offer-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.offer-heading > p {
    margin: 0;
    color: rgba(11, 9, 6, .58);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.offer-card {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(360px, .65fr);
    height: clamp(640px, 45vw, 820px);
    min-height: 640px;
    overflow: hidden;
    color: #fff;
    background: #17110a;
    border: 1px solid rgba(208, 176, 112, .28);
    border-radius: 22px;
    box-shadow: 0 30px 90px rgba(58, 39, 19, .14);
}

.offer-media { position: relative; min-height: 600px; overflow: hidden; }
.offer-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(11, 8, 4, .64), transparent 55%); }
.offer-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.82); }
.offer-media > span { position: absolute; z-index: 1; bottom: 27px; left: 30px; font-family: var(--display); font-size: clamp(42px, 5vw, 76px); line-height: 1; }

.offer-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(38px, 5vw, 75px); }
.offer-copy .eyebrow { color: var(--gold-light); }
.offer-period { margin: 17px 0 0; color: rgba(255, 255, 255, .62); font-size: 12px; }
.offer-copy h2 { margin: 24px 0 0; color: var(--gold-light); font-family: var(--display); font-size: clamp(84px, 9vw, 140px); font-weight: 400; letter-spacing: -.06em; line-height: .78; }
.offer-old { margin: 20px 0 6px; color: rgba(255, 255, 255, .5); font-size: 14px; }
.offer-old s { margin-left: 5px; }
.offer-copy > strong { font-size: 14px; font-weight: 600; }
.offer-note { max-width: 350px; margin: 45px 0 30px; padding-top: 20px; color: rgba(255, 255, 255, .58); border-top: 1px solid rgba(208, 176, 112, .22); font-size: 13px; }
.offer-copy .primary-link { width: 100%; }

.fleet { background: #0b0906; }
.section-heading { grid-template-columns: .65fr 2fr; }
.section-heading h2 { font-size: clamp(56px, 6.5vw, 105px); }

.fleet-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 28px;
}

.vehicle-card,
.vehicle-card:nth-child(even),
.vehicle-card:nth-child(5) {
    grid-column: span 2;
    margin-top: 0;
}
.vehicle-card:nth-child(4) { grid-column: 2 / span 2; }
.vehicle-card:nth-child(5) { grid-column: 4 / span 2; }

.vehicle-card {
    overflow: hidden;
    background: #18130e;
    border: 1px solid rgba(208, 176, 112, .18);
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
}

.vehicle-card-media { aspect-ratio: 1 / .82; background: #211911; }
.vehicle-card-cutout .vehicle-card-media { background: radial-gradient(circle at 50% 42%, #382a1a 0%, #1a130c 64%, #0c0906 100%); }
.vehicle-card-copy {
    display: block;
    min-height: 255px;
    padding: 25px;
    border: 0;
}
.vehicle-card-copy h3 {
    font-family: var(--display);
    font-size: clamp(34px, 3vw, 50px);
    font-weight: 400;
    letter-spacing: -.04em;
    text-transform: none;
}
.vehicle-card-copy dl { margin-top: 28px; }
.vehicle-card-copy > b { margin-top: 28px; padding-top: 17px; border-top: 1px solid var(--line-dark); }
.vehicle-power { font-size: clamp(42px, 4vw, 66px); font-weight: 400; }

.spotlight { grid-template-columns: 1.35fr .65fr; background: #1b140c; }
.spotlight-media img { filter: saturate(.75); }
.spotlight h2 { font-size: clamp(53px, 5.5vw, 88px); }

.services { background: var(--paper-bright); }
.service-grid { gap: 18px; border: 0; }
.service-grid article,
.service-grid article + article {
    min-height: 500px;
    padding: 30px;
    background: #f2e8d5;
    border: 1px solid rgba(72, 51, 27, .16);
    border-radius: 16px;
    box-shadow: 0 18px 55px rgba(58, 39, 19, .08);
}
.service-grid h3 { font-family: var(--display); font-size: 49px; font-weight: 400; text-transform: none; }
.service-grid article > a,
.service-grid article + article > a { right: 30px; bottom: 30px; left: 30px; }

.visual-break { gap: 10px; padding: 10px; background: #17110a; }
.visual-break figure { border-radius: 14px; }

.process-list li { padding-right: 40px; }
.process-list h3 { font-family: var(--display); font-weight: 400; text-transform: none; }

.inquiry { background: #120d08; }
.form-submit { border-radius: 999px; }

.faq summary { min-height: 92px; }

.site-footer { background: #090603; }
.footer-lead h2 { font-size: clamp(62px, 8vw, 130px); }
.circle-link { border-color: var(--gold); }

.vehicle-hero::after {
    background: linear-gradient(90deg, rgba(11, 8, 4, .88), rgba(11, 8, 4, .1) 65%), linear-gradient(0deg, rgba(11, 8, 4, .8), transparent 48%);
}
.vehicle-hero-media img { filter: saturate(.78); }
.vehicle-hero-copy h1 {
    max-width: 920px;
    font-size: clamp(82px, 10.5vw, 170px);
    font-weight: 400;
    letter-spacing: -.055em;
    text-transform: none;
}
.vehicle-hero-stats {
    padding: 18px 20px;
    background: rgba(15, 10, 5, .7);
    border: 1px solid rgba(208, 176, 112, .25);
    border-radius: 14px;
    backdrop-filter: blur(15px);
}
.vehicle-hero-stats div { padding-top: 0; }

.gallery-item img { border-radius: 14px; }
.price-list article strong { font-weight: 400; }
.dark-link { border: 1px solid rgba(255, 255, 255, .3); }

@media (max-width: 1100px) {
    .offer-card { grid-template-columns: 1fr 390px; }
    .fleet-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .vehicle-card,
    .vehicle-card:nth-child(4),
    .vehicle-card:nth-child(5) { grid-column: auto; }
    .vehicle-card:nth-child(5) { grid-column: 1 / 2; }
}

@media (max-width: 760px) {
    .site-header { top: 10px; left: 10px; width: calc(100% - 20px); height: 62px; padding-inline: 13px 10px; }
    .site-header.is-fixed { top: 8px; height: 60px; }
    .brand img { width: 42px; height: 34px; }
    .header-cta { min-height: 36px; }
    .mobile-menu { padding-top: 100px; background: #0b0906; }
    .mobile-menu nav a { font-family: var(--display); font-size: 44px; font-weight: 400; text-transform: none; }
    .mobile-menu nav span { display: none; }
    .mobile-menu nav a { grid-template-columns: 1fr; }
    .hero, .hero-copy { min-height: 790px; }
    .hero::after { background: linear-gradient(0deg, rgba(11, 8, 4, .98) 5%, rgba(11, 8, 4, .52) 72%, rgba(11, 8, 4, .18)); }
    .hero-visual { inset: 0; }
    .hero-visual-media { object-position: 62% center; }
    .hero-copy { justify-content: flex-end; padding-top: 115px; padding-bottom: 55px; }
    .hero h1 { font-size: clamp(56px, 16vw, 70px); line-height: .94; }
    .hero h1 em { margin-left: 0; }
    .hero-bottom { width: auto; margin: 35px 0 0; }
    .hero-bottom .primary-link { width: 100%; }
    .intro h2 { font-size: 44px; line-height: 1; }
    .offer-heading { display: block; }
    .offer-heading > p { margin-top: 10px; }
    .offer-card { grid-template-columns: 1fr; height: auto; min-height: 0; }
    .offer-media { min-height: 380px; }
    .offer-copy { padding: 38px 25px 32px; }
    .offer-copy h2 { font-size: 86px; }
    .offer-note { margin-top: 34px; }
    .section-heading h2 { font-size: 50px; line-height: 1; }
    .fleet-grid { grid-template-columns: 1fr; gap: 25px; }
    .vehicle-card,
    .vehicle-card:nth-child(4),
    .vehicle-card:nth-child(5) { grid-column: auto; }
    .vehicle-card-copy { min-height: 235px; }
    .vehicle-card-copy h3 { font-size: 41px; }
    .spotlight { display: block; }
    .spotlight h2, .compact-heading h2, .process h2, .inquiry h2, .faq h2 { font-size: 50px; line-height: 1; }
    .service-grid { gap: 14px; }
    .service-grid article,
    .service-grid article + article { min-height: 420px; padding: 25px; }
    .service-grid article > a,
    .service-grid article + article > a { right: 25px; bottom: 25px; left: 25px; }
    .visual-break { gap: 5px; padding: 5px; }
    .vehicle-hero-copy h1 { font-size: clamp(68px, 20vw, 88px); }
    .vehicle-hero-stats { right: 14px; left: 14px; padding: 14px 10px; }
}

/* Kartenraster auf Übersichts- und Detailseiten bleibt unabhängig von der Startseite. */
.overview-grid .vehicle-card,
.overview-grid .vehicle-card:nth-child(even),
.overview-grid .vehicle-card:nth-child(4),
.overview-grid .vehicle-card:nth-child(5),
.related-grid .vehicle-card,
.related-grid .vehicle-card:nth-child(even),
.related-grid .vehicle-card:nth-child(4),
.related-grid .vehicle-card:nth-child(5) {
    grid-column: auto;
    margin-top: 0;
}

/* Bewegung und handwerkliche Details */
body::before {
    content: "";
    position: fixed;
    z-index: 9998;
    inset: 0;
    pointer-events: none;
    opacity: .022;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
    mix-blend-mode: soft-light;
}

.hero-fleet-note {
    position: absolute;
    z-index: 5;
    right: clamp(35px, 5vw, 90px);
    bottom: 62px;
    width: 255px;
    padding: 20px 21px 18px;
    color: #fff;
    background: rgba(10, 8, 5, .68);
    border: 1px solid rgba(208, 176, 112, .34);
    border-radius: 16px;
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .2);
    transition: background .25s ease, transform .25s ease;
}
.hero-fleet-note:hover { background: rgba(20, 15, 9, .88); transform: translateY(-4px); }
.hero-fleet-note > span { display: block; color: var(--gold-light); font-size: 9px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.hero-fleet-note strong { display: block; margin: 18px 0 20px; font-family: var(--display); font-size: 31px; font-weight: 400; letter-spacing: -.03em; line-height: .94; }
.hero-fleet-note small { display: flex; align-items: center; justify-content: space-between; padding-top: 13px; color: rgba(255,255,255,.6); border-top: 1px solid rgba(255,255,255,.15); font-size: 10px; }
.hero-fleet-note small b { color: #fff; font-weight: 600; text-transform: uppercase; }

.drive-moments {
    position: relative;
    overflow: hidden;
    padding: clamp(90px, 10vw, 150px) 0 80px;
    color: #fff;
    background: #100c07;
}
.drive-moments::before {
    content: "L.M";
    position: absolute;
    top: -7vw;
    right: -2vw;
    color: rgba(208, 176, 112, .035);
    font-family: var(--display);
    font-size: 36vw;
    line-height: 1;
    pointer-events: none;
}
.drive-moments-head { position: relative; z-index: 1; display: grid; grid-template-columns: .65fr 1.25fr .75fr; align-items: end; gap: 35px; }
.drive-moments .section-index { align-self: start; color: rgba(255,255,255,.46); }
.drive-moments h2 { margin: 0; font-family: var(--display); font-size: clamp(65px, 7.5vw, 118px); font-weight: 400; letter-spacing: -.055em; line-height: .84; }
.drive-moments h2 em { color: var(--gold-light); font-weight: 400; }
.drive-moments-head > p:last-child { max-width: 340px; margin: 0 0 8px; color: rgba(255,255,255,.58); font-size: 15px; line-height: 1.7; }
.moments-track {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 75px;
    padding: 0 var(--pad) 30px;
    overflow-x: auto;
    cursor: grab;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    user-select: none;
}
.moments-track::-webkit-scrollbar { display: none; }
.moments-track.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.moment-card {
    position: relative;
    flex: 0 0 clamp(330px, 34vw, 560px);
    height: clamp(410px, 39vw, 620px);
    margin: 0;
    overflow: hidden;
    background: #20180f;
    border: 1px solid rgba(208,176,112,.2);
    border-radius: 18px;
    scroll-snap-align: start;
}
.moment-card-tall { flex-basis: clamp(300px, 27vw, 430px); height: clamp(480px, 47vw, 720px); }
.moment-card-low { margin-top: 80px; }
.moment-card::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(9,6,3,.88)); }
.moment-card img { width: 100%; height: 112%; object-fit: cover; pointer-events: none; transition: filter .45s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.moment-card:hover img { filter: saturate(1.08); transform: scale(1.025); }
.moment-card figcaption { position: absolute; z-index: 2; right: 24px; bottom: 24px; left: 24px; display: grid; grid-template-columns: auto 1fr; gap: 6px 15px; align-items: end; }
.moment-card figcaption span { grid-row: 1 / 3; align-self: start; color: var(--gold-light); font-size: 10px; }
.moment-card figcaption strong { font-family: var(--display); font-size: clamp(27px, 2.5vw, 40px); font-weight: 400; letter-spacing: -.03em; }
.moment-card figcaption small { color: rgba(255,255,255,.56); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.moments-hint { display: flex; align-items: center; justify-content: flex-end; gap: 18px; margin: 8px 0 0; color: rgba(255,255,255,.45); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.moments-hint span { color: var(--gold-light); font-size: 20px; }

.vehicle-card { isolation: isolate; transition: border-color .3s ease, box-shadow .3s ease, transform .35s cubic-bezier(.2,.7,.2,1); }
.vehicle-card::before {
    content: "";
    position: absolute;
    z-index: 3;
    width: 220px;
    height: 220px;
    pointer-events: none;
    background: radial-gradient(circle, rgba(226, 198, 138, .13), transparent 67%);
    border-radius: 50%;
    opacity: 0;
    transform: translate(calc(var(--pointer-x, 50%) - 50%), calc(var(--pointer-y, 50%) - 50%));
    transition: opacity .3s ease;
}
.vehicle-card:hover { border-color: rgba(208,176,112,.5); box-shadow: 0 32px 90px rgba(0,0,0,.38); transform: translateY(-7px); }
.vehicle-card:hover::before { opacity: 1; }
.vehicle-card-media::before { content: ""; position: absolute; z-index: 2; inset: 0; border: 1px solid rgba(255,255,255,.08); border-radius: inherit; pointer-events: none; }

.service-grid article { overflow: hidden; transition: transform .35s ease, box-shadow .35s ease, background .35s ease; }
.service-grid article::before { content: attr(data-mark); position: absolute; right: -10px; bottom: -28px; color: rgba(65,44,20,.045); font-family: var(--display); font-size: 180px; line-height: 1; }
.service-grid article:hover { z-index: 1; background: #f7eddc; box-shadow: 0 28px 80px rgba(58,39,19,.14); transform: translateY(-8px); }

@media (max-width: 1100px) {
    .hero-fleet-note { display: none; }
    .drive-moments-head { grid-template-columns: .55fr 1.45fr; }
    .drive-moments-head > p:last-child { grid-column: 2; margin-top: 25px; }
}

@media (max-width: 760px) {
    body::before { opacity: .015; }
    .drive-moments { padding-top: 80px; padding-bottom: 55px; }
    .drive-moments-head { display: block; }
    .drive-moments h2 { margin-top: 38px; font-size: 58px; }
    .drive-moments-head > p:last-child { margin-top: 30px; font-size: 14px; }
    .moments-track { gap: 11px; margin-top: 50px; padding-right: 45px; }
    .moment-card,
    .moment-card-tall { flex-basis: 82vw; height: 480px; }
    .moment-card-low { margin-top: 35px; }
    .moment-card figcaption { right: 20px; bottom: 20px; left: 20px; }
    .moment-card figcaption strong { font-size: 29px; }
    .moments-hint { justify-content: flex-start; margin-top: 0; }
    .vehicle-card:hover { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
    .vehicle-card, .service-grid article { transform: none !important; }
}

/* Ausreichend große Touch-Ziele auf kleinen Displays */
@media (max-width: 760px) {
    .header-cta { min-height: 42px; }
    .menu-toggle { width: 44px; height: 44px; }
    .fleet-filters button { min-height: 44px; }
}

/* Redaktioneller Feinschliff: weniger Kartenoptik, mehr eigene Handschrift */
.site-header,
.site-header.is-fixed {
    top: 0;
    left: 0;
    width: 100%;
    height: 86px;
    padding-inline: var(--pad);
    background: linear-gradient(180deg, rgba(8, 7, 5, .94), rgba(8, 7, 5, .7));
    border: 0;
    border-bottom: 1px solid rgba(208, 176, 112, .28);
    border-radius: 0;
    backdrop-filter: blur(10px);
}

.site-header.is-fixed { height: 68px; }
.header-cta,
.primary-link,
.form-submit { border-radius: 0; }
.primary-link { padding-inline: 0; border: 0; border-top: 1px solid rgba(255,255,255,.34); border-bottom: 1px solid rgba(255,255,255,.34); }

.intro-bottom { grid-template-columns: minmax(250px, .7fr) minmax(420px, 1.3fr); gap: clamp(45px, 8vw, 130px); }
.owner-note { position: relative; padding: 34px 0 0 34px; border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.owner-note::before { content: "LM"; position: absolute; right: 0; bottom: -30px; color: rgba(57, 42, 25, .045); font-family: var(--display); font-size: clamp(110px, 13vw, 210px); line-height: .8; pointer-events: none; }
.owner-kicker { margin: 0 0 30px; color: #82692f; font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.owner-note h3 { position: relative; max-width: 720px; margin: 0; font-family: var(--display); font-size: clamp(38px, 4.5vw, 68px); font-weight: 400; letter-spacing: -.035em; line-height: 1; }
.owner-contact { position: relative; display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-top: 55px; padding-top: 18px; border-top: 1px solid var(--line-light); }
.owner-contact span { color: rgba(10,9,7,.55); font-size: 11px; }
.owner-contact a { display: flex; align-items: center; gap: 22px; font-family: var(--display); font-size: 23px; }
.owner-contact i { color: #82692f; font-style: normal; }

.moment-card,
.moment-card-tall { border-radius: 0; }
.moment-card figcaption { display: block; }
.moment-card figcaption strong,
.moment-card figcaption small { display: block; }
.moment-card figcaption small { margin-top: 8px; }

.fleet-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 34px 26px; }
.fleet-grid .vehicle-card,
.fleet-grid .vehicle-card:nth-child(even),
.fleet-grid .vehicle-card:nth-child(4),
.fleet-grid .vehicle-card:nth-child(5) { margin-top: 0; }
.fleet-grid .vehicle-card:nth-child(1) { grid-column: 1 / span 7; }
.fleet-grid .vehicle-card:nth-child(2) { grid-column: 8 / span 5; margin-top: 130px; }
.fleet-grid .vehicle-card:nth-child(3) { grid-column: 3 / span 6; margin-top: 35px; }
.vehicle-card { background: transparent; border-radius: 0; box-shadow: none; }
.vehicle-card:hover { box-shadow: none; transform: translateY(-4px); }
.vehicle-card-media::before { border-radius: 0; }

.service-grid { gap: 0; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.service-grid article,
.service-grid article + article {
    min-height: 470px;
    padding: 28px 38px 34px;
    background: transparent;
    border: 0;
    border-right: 1px solid var(--line-light);
    border-radius: 0;
    box-shadow: none;
}
.service-grid article:first-child { padding-left: 0; }
.service-grid article:last-child { padding-right: 0; border-right: 0; }
.service-grid article::before { display: none; }
.service-grid article:hover { background: transparent; box-shadow: none; transform: none; }
.service-grid article > a,
.service-grid article + article > a { right: 38px; bottom: 30px; left: 38px; }
.service-grid article:first-child > a { left: 0; }
.service-grid article:last-child > a { right: 0; }
.service-label { margin-top: 38px; }

.service-longterm { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr); min-height: 620px; margin-top: clamp(70px, 8vw, 120px); color: #fff; background: #17110a; }
.service-longterm-media { min-height: 580px; overflow: hidden; }
.service-longterm-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82); }
.service-longterm-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(40px, 5vw, 78px); }
.service-longterm-copy .service-label { margin-top: 0; color: var(--gold-light); }
.service-longterm-copy h3 { max-width: 520px; margin: 20px 0 30px; font-family: var(--display); font-size: clamp(48px, 5vw, 78px); font-weight: 400; letter-spacing: -.04em; line-height: .95; }
.service-longterm-copy > p:not(.service-label) { max-width: 430px; margin: 0 0 45px; color: rgba(255,255,255,.63); }

.reviews-grid { gap: 0; border-top: 1px solid rgba(255,255,255,.17); border-bottom: 1px solid rgba(255,255,255,.17); }
.reviews-grid article,
.reviews-grid article:nth-child(2) { min-height: 390px; padding: 32px; background: transparent; border: 0; border-right: 1px solid rgba(255,255,255,.17); border-radius: 0; box-shadow: none; transform: none; }
.reviews-grid article:first-child { padding-left: 0; }
.reviews-grid article:last-child { padding-right: 0; border-right: 0; }
.reviews-grid article:hover,
.reviews-grid article:nth-child(2):hover { background: transparent; transform: none; }
.reviews-grid article footer > span { display: none; }

.process { border-top: 1px solid var(--line-light); }
.process-head { margin-top: 0; }
.process-head h2 { max-width: 980px; }
.faq summary { grid-template-columns: 1fr auto; }
.faq details p { margin-left: 0; }

.hero-fleet-note,
.vehicle-hero-stats,
.gallery-item img { border-radius: 0; }
.hero-fleet-note { background: rgba(10, 8, 5, .82); backdrop-filter: none; box-shadow: none; }
.vehicle-hero-stats { backdrop-filter: none; }

@media (max-width: 1100px) {
    .fleet-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .fleet-grid .vehicle-card:nth-child(1),
    .fleet-grid .vehicle-card:nth-child(2),
    .fleet-grid .vehicle-card:nth-child(3) { grid-column: auto; margin-top: 0; }
    .service-longterm { grid-template-columns: 1fr 420px; }
}

@media (max-width: 760px) {
    .site-header,
    .site-header.is-fixed { top: 0; left: 0; width: 100%; height: 70px; padding-inline: 14px 10px; }
    .hero-copy { padding-top: 115px; }
    .intro-bottom { display: block; margin-left: 0; }
    .owner-note { margin-top: 55px; padding: 27px 0 0 22px; }
    .owner-contact { display: block; margin-top: 40px; }
    .owner-contact a { margin-top: 12px; font-size: 21px; }
    .fleet-grid { grid-template-columns: 1fr; }
    .fleet-grid,
    .overview-grid { touch-action: pan-y; }
    .service-grid { display: block; }
    .service-grid article,
    .service-grid article + article { min-height: 390px; padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line-light); }
    .service-grid article:last-child { border-bottom: 0; }
    .service-grid article > a,
    .service-grid article + article > a { right: 0; bottom: 28px; left: 0; }
    .service-longterm { display: block; min-height: 0; margin-inline: calc(var(--pad) * -1); }
    .service-longterm-media { min-height: 370px; }
    .service-longterm-copy { padding: 42px var(--pad) 50px; }
    .reviews-grid { border: 0; }
    .reviews-grid article,
    .reviews-grid article:nth-child(2) { border: 1px solid rgba(255,255,255,.17); }
    .faq summary { grid-template-columns: 1fr auto; }
}

/* Responsive Feinschliff für Flottenübersicht, Tablets und kleine Telefone */
.fleet-overview .vehicle-card { color: var(--ink); }
.fleet-overview .vehicle-card-copy { border-bottom-color: var(--line-light); }
.fleet-overview .vehicle-card-copy p { color: #82692f; }
.fleet-overview .vehicle-card-copy > div > span { color: rgba(10, 9, 7, .56); }
.fleet-overview .vehicle-card-copy dt { color: rgba(10, 9, 7, .48); }
.fleet-overview .vehicle-card-copy > b { color: rgba(10, 9, 7, .86); }

@media (max-width: 900px) {
    .intro-bottom { display: block; margin-left: 0; }
    .intro-bottom > p { max-width: 490px; }
    .owner-note { margin: 62px 0 0 clamp(60px, 13vw, 110px); }
}

@media (min-width: 761px) and (max-width: 800px) {
    .process-head { display: block; margin: 40px 0 60px; }
    .process-head p { margin-top: 25px; }
    .process-list { grid-template-columns: 1fr; margin-left: 0; }
    .process-list li,
    .process-list li + li {
        min-height: 220px;
        padding: 20px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line-light);
    }
    .process-list h3 { margin-top: 55px; }
}

@media (max-width: 760px) {
    .owner-note { margin: 55px 0 0; }
}

@media (max-width: 380px) {
    .prices { grid-template-columns: minmax(0, 1fr); }
    .prices > * { min-width: 0; }
    .prices header h2 { font-size: 52px; }
    .price-list article { grid-template-columns: 24px minmax(0, 1fr) auto; column-gap: 7px; }
    .price-list h3 { font-size: 17px; letter-spacing: -.01em; }
    .price-list article p { font-size: 10px; }
    .price-list article strong { font-size: 28px; }
    .price-meta { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Der Hero bleibt auch auf kurzen Telefonen vollständig im ersten Blickfeld. */
@media (max-width: 760px) {
    .hero,
    .hero-copy { min-height: 100svh; }

    .hero { overflow: hidden; }
    .hero-visual-media {
        object-position: 62% center;
        transform: scale(1.14);
        transform-origin: 62% 70%;
    }
    .hero-copy {
        justify-content: center;
        padding-top: 190px;
        padding-bottom: 20px;
    }
    .hero-copy .eyebrow { margin-bottom: 22px; }
    .hero-bottom { margin-top: 28px; }
    .hero-bottom .primary-link { margin-top: 18px; }
}

@media (max-width: 380px) {
    .hero h1 { font-size: clamp(49px, 15vw, 58px); }
}

@media (max-height: 700px) and (max-width: 760px) {
    .hero-copy { justify-content: center; padding-top: 70px; padding-bottom: 16px; }
    .hero h1 { font-size: clamp(49px, 15vw, 58px); }
    .hero-copy .eyebrow { margin-bottom: 16px; }
    .hero-bottom { margin-top: 20px; }
    .hero-bottom p { font-size: 12px; line-height: 1.55; }
    .hero-bottom .primary-link { margin-top: 14px; }
}

@media (min-width: 761px) and (max-width: 900px) {
    .hero-copy {
        justify-content: flex-start;
        padding-top: clamp(210px, 22svh, 260px);
    }
}

@media (min-width: 761px) and (max-width: 1200px) and (max-height: 900px) {
    .hero,
    .hero-copy { min-height: 100svh; }
    .hero-copy {
        justify-content: flex-start;
        padding-top: 165px;
        padding-bottom: 35px;
    }
}

@media (max-width: 900px) and (max-height: 500px) {
    .hero,
    .hero-copy { min-height: 100svh; }
    .hero-copy {
        justify-content: flex-start;
        padding-top: 92px;
        padding-bottom: 16px;
    }
    .hero-copy .eyebrow { margin-bottom: 10px; }
    .hero h1 { max-width: 700px; font-size: clamp(48px, 9vw, 72px); line-height: .88; }
    .hero-bottom { width: min(680px, 90vw); margin-top: 14px; }
    .hero-bottom p { max-width: 330px; font-size: 11px; line-height: 1.45; }
    .hero-bottom .primary-link { margin-top: 0; }
}
