:root {
    /* Akzent: moderne Grautöne */
    --accent: #3f3f46;
    --accent-gray: #71717a;
    --accent-soft: #f4f4f5;
    --accent-dark: #27272a;
    --accent-rgb: 63, 63, 70;
    --accent-gray-rgb: 113, 113, 122;
    --bg: #fafafa;
    --bg-alt: #f4f4f5;
    --surface: #ffffff;
    --ink: #18181b;
    --muted: #52525b;
    --line: #e4e4e7;
    --line-strong: #d4d4d8;
    --maxw: 1140px;
    --radius: 6px;
    --radius-sm: 4px;
    --shadow: 0 4px 24px rgba(24, 24, 27, 0.06);
    --shadow-lg: 0 12px 40px rgba(24, 24, 27, 0.1);
    --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --space-section: clamp(3.25rem, 6vw, 5rem);
    --space-gap: 1.5rem;
}

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

html { scroll-behavior: smooth; }

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

body {
    margin: 0;
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--ink);
    background: var(--bg);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* Text links: underline only on hover */
.prose a,
.form__consent a,
.site-footer a,
.alert a {
    text-decoration: none;
    font-weight: 600;
}
.prose a:hover,
.form__consent a:hover,
.site-footer a:hover,
.alert a:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.visually-hidden {
    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: absolute; left: -9999px; top: 0; z-index: 200;
    padding: 0.75rem 1rem; background: var(--accent-dark); color: #fff;
    font-weight: 700; text-decoration: none;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.layout {
    width: min(var(--maxw), calc(100% - 2rem));
    margin-inline: auto;
}

.layout--wide {
    width: min(var(--maxw), calc(100% - 2rem));
    margin-inline: auto;
}

.layout--contact {
    max-width: 1100px;
    width: min(1100px, calc(100% - 2rem));
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 130;
    background: var(--surface);
    box-shadow: 0 1px 0 var(--line), 0 4px 20px rgba(24, 24, 27, 0.04);
    overflow: visible;
}

.site-header::before {
    content: "";
    display: block;
    height: 4px;
    background: var(--accent-gray);
}

.site-header__bar {
    background: var(--surface);
    position: relative;
}

.site-header__inner {
    width: min(var(--maxw), calc(100% - 2rem));
    margin-inline: auto;
    padding: 0.9rem 0;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-logo { flex: 0 1 auto; min-width: 0; }
.site-logo img { width: min(240px, 52vw); height: auto; }

.nav-toggle {
    margin-left: auto;
    flex-shrink: 0;
    width: 44px;
    min-height: 44px;
    height: 44px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-sm);
    background: var(--surface);
    cursor: pointer;
    font-family: inherit;
    color: var(--ink);
}
.nav-toggle__bars { display: flex; flex-direction: column; gap: 5px; }
.nav-toggle__line {
    display: block; width: 20px; height: 2px;
    background: var(--ink); border-radius: 1px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mega-Menü */
.mega-nav {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header-h, 72px);
    bottom: 0;
    z-index: 125;
    overflow: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}
.mega-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}
.mega-nav__panel {
    height: 100%;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background: var(--surface);
    border-top: 1px solid var(--line);
    box-shadow: 0 12px 32px rgba(24, 24, 27, 0.1);
    padding: 0.75rem 0 1.25rem;
}
.mega-nav__layout {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.mega-nav__block {
    padding: 0.85rem 0;
    border-top: 1px solid var(--line);
}
.mega-nav__block:first-child {
    border-top: 0;
    padding-top: 0.25rem;
}
.mega-nav__label {
    margin: 0 0 0.45rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}
.mega-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.mega-nav__list > li {
    display: flex;
    min-width: 0;
}
.mega-nav__list--classes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 0.35rem;
}
@media (max-width: 559px) {
    .mega-nav__list--classes {
        grid-template-columns: 1fr;
    }
}
.mega-nav__item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex: 1;
    width: 100%;
    min-height: 3rem;
    padding: 0.65rem 0.75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--bg);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--ink);
    transition: background 0.15s ease, border-color 0.15s ease;
}
.mega-nav__item > span:not(.mega-nav__meta) {
    flex: 1;
    min-width: 0;
}
.mega-nav__item:hover,
.mega-nav__item.is-active {
    background: var(--accent-soft);
    border-color: var(--line-strong);
}
.mega-nav__item .bi {
    font-size: 1.05rem;
    color: var(--accent-gray);
    flex-shrink: 0;
}
.mega-nav__item .license-icon {
    width: 1.05rem;
    height: 1.05rem;
    flex-shrink: 0;
    object-fit: contain;
    opacity: 0.72;
    filter: grayscale(15%);
}
.mega-nav__meta {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
    min-width: 0;
}
.mega-nav__meta small {
    font-size: 0.76rem;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.25;
}
.mega-nav__item--branch {
    min-height: 3.35rem;
}
.mega-nav__item--branch img {
    width: 40px;
    height: 28px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}
.mega-nav__hint {
    margin: 0.65rem 0 0;
    padding-left: 0.35rem;
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.45;
}
.license-icon {
    width: 1.1rem;
    height: 1.1rem;
    object-fit: contain;
    flex-shrink: 0;
    opacity: 1;
}

@media (min-width: 1024px) {
    .mega-nav {
        bottom: auto;
        height: auto;
        max-height: min(78vh, 520px);
    }
    .mega-nav__panel {
        height: auto;
        max-height: min(78vh, 520px);
        padding: 1rem 0 1.35rem;
    }
    .mega-nav__layout {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.35fr) minmax(0, 0.9fr);
        gap: 0 2rem;
        align-items: start;
    }
    .mega-nav__block {
        border-top: 0;
        padding: 0;
    }
}

@media (max-width: 1023px) {
    body.nav-open .site-header__bar {
        position: relative;
        z-index: 131;
        background: var(--surface);
    }
}

.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 120;
    background: rgba(15, 15, 18, 0.55);
    opacity: 0;
    transition: opacity 0.22s ease;
}
body.nav-open .nav-backdrop {
    display: block;
    opacity: 1;
}
@media (max-width: 1023px) {
    body.nav-open #main,
    body.nav-open .site-footer {
        pointer-events: none;
    }
    body.nav-open .site-header {
        z-index: 130;
    }
    body.nav-open .mega-nav {
        z-index: 125;
    }
}

/* Hero (Startseite) */
.hero {
    background: var(--surface);
    padding: 2rem 0 2.75rem;
    border-bottom: 1px solid var(--line);
}

.hero__grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}
@media (max-width: 899px) {
    .hero__visual { order: -1; }
    .hero__media,
    .hero__image {
        max-height: min(56vw, 280px);
        min-height: 0;
    }
    .hero__image--hover { max-height: none; }
}
@media (min-width: 900px) {
    .hero {
        padding: 3.5rem 0 4rem;
        background: linear-gradient(160deg, var(--surface) 0%, var(--bg) 100%);
    }
    .hero__grid {
        grid-template-columns: 1fr 1.05fr;
        gap: 3.5rem;
        min-height: 0;
    }
    .hero__media {
        min-height: 400px;
    }
    .hero__media .hero__image {
        min-height: 400px;
        max-height: none;
    }
    .hero__lead { max-width: 42ch; }
}

.hero__accent {
    color: var(--ink);
    background: linear-gradient(transparent 62%, rgba(var(--accent-rgb), 0.45) 62%);
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.hero__brand {
    font-weight: 300;
    color: var(--ink);
}

.hero h1 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.75rem, 5.5vw, 2.65rem);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero__lead {
    margin: 0 0 1.1rem;
    font-size: 1rem;
    color: var(--muted);
    max-width: 38ch;
}
@media (min-width: 900px) {
    .hero__lead { font-size: 1.06rem; }
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.hero__visual { position: relative; }
.hero__media {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}
.hero__image {
    width: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
}
.hero__image--hover {
    position: absolute;
    inset: 0;
    height: 100%;
    opacity: 0;
    transition: opacity 0.45s ease;
}
@media (hover: hover) {
    .hero__visual--swap:hover .hero__image--hover {
        opacity: 1;
    }
}
@media (prefers-reduced-motion: reduce) {
    .hero__image--hover { transition: none; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 2.75rem;
    padding: 0.65rem 1.2rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.94rem;
    line-height: 1.2;
    text-decoration: none;
    border: 1px solid transparent;
    box-sizing: border-box;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-items: stretch;
}
.btn-row .btn {
    flex: 0 1 auto;
}
@media (max-width: 479px) {
    .btn-row--stack-sm .btn {
        flex: 1 1 100%;
        width: 100%;
    }
}
.btn--primary {
    background: var(--ink);
    color: #fff !important;
    border-color: var(--ink);
    box-shadow: 0 2px 8px rgba(24, 24, 27, 0.12);
}
.btn--primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(24, 24, 27, 0.16);
}
.btn--outline {
    background: var(--surface);
    color: var(--ink) !important;
    border-color: var(--line-strong);
}
.btn--outline:hover { background: var(--bg-alt); transform: translateY(-1px); color: var(--ink) !important; }
.btn--light {
    background: #fff;
    color: var(--ink) !important;
    border-color: #fff;
}
.btn--light:hover {
    background: var(--accent-soft);
    border-color: var(--accent-soft);
    color: var(--ink) !important;
}
.btn--light-outline {
    background: transparent;
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.55);
}
.btn--light-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.75);
    color: #fff !important;
}
.btn--ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line-strong);
}
.btn--ghost:hover { background: var(--bg-alt); }
.btn--sm {
    min-height: 2.25rem;
    padding: 0.45rem 0.85rem;
    font-size: 0.82rem;
}
.btn--dark {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}
.btn--dark:hover { background: #27272a; transform: translateY(-1px); }

/* Sections */
.section { padding: var(--space-section) 0; }
.section--alt { background: var(--bg-alt); border-block: 1px solid var(--line); }

.section__head { margin-bottom: 2.25rem; }
.section__head--row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}
.section__head--row .btn {
    flex-shrink: 0;
}
.section__head h2 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    position: relative;
    display: block;
    padding-bottom: 0.55rem;
}
.section__head h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 2.5rem;
    height: 3px;
    background: var(--accent-gray);
    border-radius: 1px;
}
.section__head p { margin: 0; color: var(--muted); max-width: 52ch; }

/* Info strip */
.info-strip {
    display: grid; gap: 0;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
@media (min-width: 768px) { .info-strip { grid-template-columns: repeat(3, 1fr); } }

.info-strip__item {
    position: relative;
    padding: 1.5rem 1.5rem 1.5rem 1.65rem;
    border-bottom: 1px solid var(--line);
}
.info-strip__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.25rem;
    bottom: 1.25rem;
    width: 3px;
    background: var(--accent-gray);
    border-radius: 0 2px 2px 0;
}
@media (min-width: 768px) {
    .info-strip__item { border-bottom: 0; border-right: 1px solid var(--line); }
    .info-strip__item:last-child { border-right: 0; }
}
.info-strip__item:last-child { border-bottom: 0; }
.info-strip__item .bi {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 0.65rem;
    font-size: 1.2rem;
    color: var(--ink);
    background: var(--accent-soft);
    border-radius: var(--radius-sm);
}
.info-strip__item h3 { margin: 0 0 0.3rem; font-size: 1rem; font-weight: 700; }
.info-strip__item p { margin: 0; font-size: 0.92rem; color: var(--muted); }

/* Cards */
.card-grid { display: grid; gap: var(--space-gap); }
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .card-grid--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex; flex-direction: column;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.card__media {
    aspect-ratio: 16/10;
    overflow: hidden;
    flex-shrink: 0;
}
.card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.4s ease;
}
.card__media-img--motorrad { object-position: center 55%; }
.card:hover .card__media img { transform: scale(1.04); }

.card__body { padding: 1.35rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.card__icon {
    width: 2.2rem; height: 2.2rem;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--accent-soft);
    border-radius: var(--radius-sm);
    font-size: 1.1rem; color: var(--accent-gray);
}
.card h3 { margin: 0; font-size: 1.1rem; font-weight: 700; }
.card p { margin: 0; color: var(--muted); font-size: 0.94rem; flex: 1; }
.card__link {
    margin-top: 0.35rem; font-weight: 700; color: var(--ink);
    text-decoration: none; display: inline-flex; align-items: center; gap: 0.3rem;
}
.card__link:hover {
    color: var(--accent-gray);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Feature */
.feature-split { display: grid; gap: 1.5rem; align-items: start; }
.feature-split > div > h2 {
    margin: 0 0 0.65rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    padding-bottom: 0.55rem;
    position: relative;
}
.feature-split > div > h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 2.5rem;
    height: 3px;
    background: var(--accent-gray);
    border-radius: 1px;
}
@media (min-width: 900px) { .feature-split { grid-template-columns: 1fr 1fr; gap: 2.25rem; } }

.media-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.media-grid__main {
    grid-column: 1 / -1;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16/9;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.media-grid__main--motorrad { aspect-ratio: 3/2; }
.media-grid__main--motorrad img { object-position: center 55%; }
.media-grid__main img, .media-grid__cell img { width: 100%; height: 100%; object-fit: cover; }
.media-grid__cell {
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid var(--line);
}

.feature-points {
    list-style: none; margin: 1rem 0 0; padding: 0;
    display: grid; gap: 0.65rem;
}
.feature-points li {
    display: grid; grid-template-columns: auto 1fr; gap: 0.7rem;
    padding: 1rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--accent-gray);
}
.feature-points .bi { font-size: 1.2rem; color: var(--accent-gray); margin-top: 0.1rem; }
.feature-points strong { display: block; margin-bottom: 0.15rem; font-weight: 700; }
.feature-points span { font-size: 0.9rem; color: var(--muted); }

/* Fahrzeuge (Startseite) */
.vehicle-section__head {
    margin-bottom: 2rem;
    max-width: 52rem;
}
.vehicle-section__head h2 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 0.55rem;
}
.vehicle-section__head h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 2.5rem;
    height: 3px;
    background: var(--accent-gray);
    border-radius: 1px;
}
.vehicle-section__lead {
    margin: 0;
    font-size: clamp(1.05rem, 2.2vw, 1.2rem);
    line-height: 1.65;
    color: var(--ink);
    max-width: 48rem;
}
.vehicle-section__editorial {
    display: grid;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
    padding: clamp(1.5rem, 4vw, 2.25rem);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
@media (min-width: 900px) {
    .vehicle-section__editorial {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 2.5rem;
    }
}
.vehicle-section__copy p {
    margin: 0 0 1rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--muted);
    max-width: none;
}
.vehicle-section__copy p:last-child { margin-bottom: 0; }
.vehicle-section__figure {
    margin: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--line);
}
.vehicle-section__figure img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
}
.vehicle-benefits {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.85rem;
}
@media (min-width: 768px) {
    .vehicle-benefits { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}
.vehicle-benefits__item {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 1.15rem 1.2rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: 0 1px 4px rgba(24, 24, 27, 0.04);
}
.vehicle-benefits__item .bi {
    flex-shrink: 0;
    font-size: 1.25rem;
    color: var(--accent-gray);
    margin-top: 0.1rem;
}
.vehicle-benefits__item strong {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 700;
    font-size: 0.95rem;
}
.vehicle-benefits__item p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--muted);
}

/* Steps */
.steps {
    display: grid; gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    counter-reset: step;
    box-shadow: var(--shadow);
}
@media (min-width: 768px) { .steps { grid-template-columns: repeat(4, 1fr); } }

.steps__item {
    padding: 1.2rem;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    counter-increment: step;
}
@media (min-width: 768px) {
    .steps__item { border-bottom: 0; border-right: 1px solid var(--line); }
    .steps__item:last-child { border-right: 0; }
}
.steps__item:last-child { border-bottom: 0; }
.steps__item::before {
    content: counter(step, decimal-leading-zero);
    display: block; font-size: 1.35rem; font-weight: 800;
    color: var(--accent-gray); margin-bottom: 0.25rem;
}
.steps__item h3 { margin: 0 0 0.3rem; font-size: 0.94rem; font-weight: 700; }
.steps__item p { margin: 0; font-size: 0.86rem; color: var(--muted); }

/* FAQ */
.faq-list {
    display: grid;
    gap: 0.65rem;
    margin-bottom: 1.5rem;
}
.faq-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 1px 4px rgba(24, 24, 27, 0.04);
    overflow: hidden;
}
.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.98rem;
    line-height: 1.4;
    list-style: none;
    text-align: left;
}
.faq-item__question::-webkit-details-marker { display: none; }
.faq-item__question::marker { content: ""; }
.faq-item__label { flex: 1; min-width: 0; }
.faq-item__icon {
    flex-shrink: 0;
    font-size: 1.1rem;
    color: var(--accent-gray);
    transition: transform 0.2s ease;
}
.faq-item[open] .faq-item__icon { transform: rotate(180deg); }
.faq-item[open] {
    border-color: var(--accent-gray);
    box-shadow: var(--shadow);
}
.faq-item__answer {
    padding: 0 1.25rem 1.15rem;
    text-align: left;
    border-top: 1px solid var(--line);
}
.faq-item__answer p {
    margin: 1rem 0 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.65;
    max-width: none;
}
.faq-item__answer strong { color: var(--ink); font-weight: 700; }
.faq-note {
    margin: 0 0 1.25rem;
    font-size: 0.88rem;
    color: var(--muted);
    text-align: left;
    max-width: 72ch;
}
.faq-actions { margin-top: 0.25rem; }

/* Location – Filialen (Split-Layout) */
.locations-stack {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 3rem);
}

.location-panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.location-panel__split {
    display: grid;
    grid-template-columns: 1fr;
}
@media (min-width: 900px) {
    .location-panel__split {
        grid-template-columns: 1fr 1fr;
        min-height: 360px;
    }
    .location-panel--reverse .location-panel__visual {
        order: 2;
    }
    .location-panel--reverse .location-panel__content {
        order: 1;
    }
}

.location-panel__visual {
    position: relative;
    min-height: 220px;
    background: var(--ink);
}
@media (min-width: 900px) {
    .location-panel__visual {
        min-height: 100%;
    }
}
.location-panel__visual img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    object-position: center center;
}
@media (min-width: 900px) {
    .location-panel__visual img {
        min-height: 100%;
        position: absolute;
        inset: 0;
    }
}

.location-panel__content {
    padding: 1.75rem 1.75rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (min-width: 900px) {
    .location-panel__content {
        padding: 2rem 2.25rem;
    }
}

.location-panel__content h2 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}
.location-panel__lead {
    margin: 0 0 1.25rem;
    color: var(--muted);
    font-size: 0.98rem;
    max-width: 48ch;
}
.location-panel__text {
    margin: 0 0 1rem;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.65;
    max-width: 52ch;
}
.location-panel__subhead {
    margin: 0.5rem 0 0.85rem;
    font-size: 1rem;
    font-weight: 700;
}
.section--branch {
    padding-top: 1rem;
}
.section--branch .layout {
    width: min(var(--maxw), calc(100% - 1.25rem));
}
.branch-page {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.branch-page__photo {
    margin: 0;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--ink);
}
.branch-page__photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.branch-page__content {
    border: 0;
    box-shadow: none;
    border-radius: 0;
    padding: 1.25rem 1.1rem;
}
@media (min-width: 768px) {
    .branch-page__content {
        padding: clamp(1.35rem, 3vw, 2rem) clamp(1.25rem, 4vw, 2.5rem);
    }
}
.branch-page__content h1 {
    margin: 0 0 1rem;
    font-size: clamp(1.45rem, 3.5vw, 1.85rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
}
.branch-page__content p {
    margin: 0 0 1rem;
    line-height: 1.7;
}
.branch-page__facts {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
}
.branch-page__facts h2 {
    margin: 0 0 1rem;
    font-size: 1.05rem;
    font-weight: 700;
}
.branch-page__facts-grid {
    display: grid;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg-alt);
}
@media (min-width: 768px) {
    .branch-page__facts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        align-items: stretch;
    }
}
.branch-fact-panel {
    margin: 0;
    padding: 1rem 1.05rem;
    background: transparent;
    border: 0;
    border-radius: 0;
}
.branch-fact-panel + .branch-fact-panel {
    border-top: 1px solid var(--line);
}
@media (min-width: 768px) {
    .branch-fact-panel {
        padding: 1.15rem 1.25rem;
    }
    .branch-fact-panel + .branch-fact-panel {
        border-top: 0;
        border-left: 1px solid var(--line);
    }
}
.branch-fact-panel__title {
    margin: 0 0 0.75rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--accent-gray);
}
.branch-fact-items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0;
}
.branch-fact-item {
    display: grid;
    grid-template-columns: 1.35rem minmax(0, 1fr);
    gap: 0.65rem;
    align-items: start;
    padding: 0.7rem 0;
}
.branch-fact-item + .branch-fact-item {
    border-top: 1px solid var(--line);
}
.branch-fact-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    padding-top: 0.1rem;
    color: var(--accent-gray);
    font-size: 0.95rem;
}
.branch-fact-item__body {
    display: grid;
    gap: 0.15rem;
    min-width: 0;
}
.branch-fact-item__label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
}
.branch-fact-item__value {
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--muted);
    word-wrap: break-word;
}
.branch-fact-item__tel {
    display: inline-block;
    font-weight: 400;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.01em;
    color: var(--muted);
    text-decoration: none;
}
.branch-fact-item__tel:hover,
.branch-fact-item__tel:focus-visible {
    color: var(--ink);
    text-decoration: underline;
}
.branch-page__content .btn-row {
    margin-top: 1.15rem;
    flex-direction: column;
}
.branch-page__content .btn-row .btn {
    width: 100%;
    justify-content: center;
}
@media (min-width: 768px) {
    .branch-page__content .btn-row {
        margin-top: 1.35rem;
        flex-direction: row;
    }
    .branch-page__content .btn-row .btn {
        width: auto;
    }
}
.branch-page__map {
    border-top: 1px solid var(--line);
    border-radius: 0;
}
.branch-page__map iframe {
    min-height: 240px;
    height: 280px;
}
@media (min-width: 768px) {
    .branch-page__map iframe {
        height: 320px;
    }
}

.location-panel__map {
    border-top: 1px solid var(--line);
    min-height: 220px;
}
.location-panel__map.map-consent { border-top: 1px solid var(--line); }
.location-panel__map iframe { min-height: 220px; height: 220px; }

.location-meta {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
    display: grid;
    gap: 0.55rem;
    font-size: 0.95rem;
}
.location-meta li {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    min-width: 0;
}
.location-meta li span,
.location-meta li a {
    min-width: 0;
    word-wrap: break-word;
}
.location-meta .bi {
    color: var(--accent-gray);
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.location-times {
    margin: 0;
    padding: 1rem 1.1rem;
    background: var(--bg-alt);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    border: 1px solid var(--line);
}
.location-times dt { font-weight: 700; margin: 0; }
.location-times dd {
    margin: 0 0 0.65rem;
    color: var(--muted);
}
.location-times dd:last-child { margin-bottom: 0; }

.location-meta--inline {
    margin-bottom: 1rem;
}
.location-times--inline {
    margin-bottom: 1.5rem;
}
.location-meta--compact {
    margin-bottom: 1rem;
    font-size: 0.88rem;
}

.branch-overview {
    display: grid;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .branch-overview {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.75rem;
    }
}
.branch-overview__card {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}
.branch-overview__media {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.branch-overview__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.branch-overview__body {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 1.15rem 1.2rem 1.25rem;
    flex: 1;
}
.branch-overview__body h2 {
    margin: 0;
    font-size: 1.15rem;
}
.branch-overview__body h2 a {
    color: var(--ink);
}
.branch-overview__body p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.6;
}
.branch-overview__body .btn {
    margin-top: auto;
    align-self: flex-start;
}

.prose--flow p {
    line-height: 1.75;
    margin-bottom: 1.15rem;
}
.prose--flow p:last-of-type {
    margin-bottom: 0;
}

.map-embed--page {
    border-radius: var(--radius);
    border: 1px solid var(--line);
    overflow: hidden;
}
.map-embed--page iframe {
    min-height: 280px;
    height: 320px;
}
@media (min-width: 768px) {
    .map-embed--page iframe {
        height: 360px;
    }
}

/* Location – Teaser-Karten (Startseite) */
.location-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.location-card__img { aspect-ratio: 16/10; overflow: hidden; }
.location-card__img img { width: 100%; height: 100%; object-fit: cover; }
.location-card__body { padding: 1.35rem 1.4rem 1.5rem; }
.location-card h2, .location-card h3 { margin: 0 0 0.5rem; font-size: 1.15rem; font-weight: 700; }

.location-card__meta {
    list-style: none; margin: 0 0 1rem; padding: 0;
    display: grid; gap: 0.45rem; font-size: 0.94rem;
}
.location-card__meta li { display: flex; gap: 0.5rem; align-items: flex-start; min-width: 0; }
.location-card__meta .bi { color: var(--accent-gray); margin-top: 0.12rem; flex-shrink: 0; }

.location-card__times {
    margin: 0; padding: 0.85rem 1rem;
    background: var(--bg-alt);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    border: 1px solid var(--line);
}
.location-card__times dt { font-weight: 700; margin: 0; }
.location-card__times dd { margin: 0 0 0.35rem; color: var(--muted); }

/* Map */
.map-consent {
    position: relative; min-height: 220px;
    background: var(--bg-alt);
    border-top: 1px solid var(--line);
}
.map-consent__overlay {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 0.7rem; padding: 1.2rem; text-align: center;
    background: rgba(250, 250, 250, 0.96); z-index: 2;
}
.map-consent__overlay p { margin: 0; max-width: 36ch; font-size: 0.9rem; color: var(--muted); }
.map-consent__overlay.is-hidden { display: none; }
.map-consent iframe { width: 100%; height: 220px; border: 0; display: block; }

/* CTA – zieht leicht in die Section darüber */
.section:has(+ .cta-strip) {
    padding-bottom: calc(var(--space-section) + clamp(2rem, 5vw, 3.5rem));
}

.cta-strip {
    position: relative;
    z-index: 2;
    background: var(--bg-alt);
    color: var(--ink);
    margin-top: clamp(-3.5rem, -7vw, -5rem);
    padding: clamp(3rem, 5vw, 4rem) 0;
    text-align: center;
    overflow: hidden;
    border: 1px solid var(--line);
    border-bottom: none;
    box-shadow: var(--shadow);
}
.cta-strip::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--line);
    pointer-events: none;
}
.cta-strip .layout {
    position: relative;
    z-index: 1;
}
.cta-strip h2 {
    margin: 0 0 0.65rem;
    font-size: clamp(1.4rem, 3vw, 1.85rem);
    font-weight: 800;
    color: var(--ink);
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}
.cta-strip h2::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 2.5rem;
    height: 3px;
    background: var(--accent-gray);
    border-radius: 1px;
}
.cta-strip p {
    margin: 0 auto 1.25rem;
    max-width: 40ch;
    color: var(--muted);
}
.cta-strip__actions { justify-content: center; }

/* Page hero (Unterseiten) */
.page-hero {
    position: relative;
    background: linear-gradient(135deg, var(--ink) 0%, #27272a 100%);
    padding: 0;
    border-bottom: none;
    overflow: hidden;
}
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        115deg,
        rgba(var(--accent-gray-rgb), 0.35) 0%,
        rgba(var(--accent-rgb), 0.12) 38%,
        transparent 58%
    );
    pointer-events: none;
}
.page-hero__inner {
    position: relative;
    z-index: 2;
    padding: 1.65rem 0;
    color: #fff;
}
.page-hero h1 {
    margin: 0 0 0.35rem;
    font-size: clamp(1.45rem, 3.8vw, 2rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    max-width: 18ch;
    line-height: 1.15;
}
.page-hero p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    max-width: 44ch;
    font-size: 0.98rem;
    line-height: 1.5;
}

.page-hero--img {
    display: flex;
    align-items: center;
    min-height: clamp(200px, 34vh, 340px);
}
.page-hero--img::before {
    background: linear-gradient(
        105deg,
        rgba(var(--accent-gray-rgb), 0.4) 0%,
        rgba(var(--accent-rgb), 0.1) 32%,
        transparent 52%
    );
}
.page-hero--img::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(0, 0, 0, 0.55) 45%,
        rgba(0, 0, 0, 0.25) 100%
    );
    pointer-events: none;
}
.page-hero--img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}
.page-hero--img .page-hero__inner {
    padding: 1.65rem 0;
}
@media (min-width: 768px) {
    .page-hero--img {
        min-height: clamp(220px, 38vh, 380px);
    }
    .page-hero--img .page-hero__inner {
        padding: 2rem 0;
    }
    .page-hero h1 {
        font-size: clamp(1.6rem, 3.5vw, 2.1rem);
    }
}
.page-hero--img h1 {
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}
.page-hero--img p {
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.prose { max-width: 68ch; }
.prose h2 { margin: 1.75rem 0 0.55rem; font-size: 1.15rem; font-weight: 700; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose ul { margin: 0 0 1rem; color: var(--muted); }
.prose ul { padding-left: 1.2rem; }
.prose a { color: var(--ink); }

/* Textseiten (Impressum, Datenschutz, …): Karte volle Breite, Text linksbündig */
.page-text .section--text {
    padding-top: clamp(1.5rem, 4vw, 2.25rem);
}
.text-card {
    width: 100%;
    margin: 0;
    padding: clamp(1.75rem, 4vw, 2.75rem);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: left;
}
.page-text .text-card.prose {
    max-width: none;
}

.license-block {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--accent-gray);
    padding: 1.2rem;
    margin-bottom: 0.85rem;
    box-shadow: 0 1px 4px rgba(24, 24, 27, 0.04);
}
.license-block h3 {
    margin: 0 0 0.45rem;
    display: flex; align-items: center; gap: 0.45rem;
    font-weight: 700;
}
.license-block h3 .bi { color: var(--accent-gray); }
.license-block ul { margin: 0; padding-left: 1.1rem; color: var(--muted); }

/* Contact */
.section--contact { overflow: hidden; }

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}
@media (min-width: 1080px) {
    .contact-layout {
        flex-direction: row;
        align-items: flex-start;
        gap: 2rem;
    }
}

.form-panel {
    position: relative;
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem 1.5rem 1.35rem;
    box-shadow: var(--shadow);
}
.form-panel__accent {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--accent-gray) 0%, rgba(var(--accent-rgb), 0.35) 55%, transparent 100%);
    border-radius: var(--radius) var(--radius) 0 0;
}
.form-panel h2 { margin: 0.35rem 0 0.35rem; font-size: 1.25rem; font-weight: 800; }
.form-panel__lead { margin: 0 0 1.25rem; color: var(--muted); font-size: 0.95rem; }

.form { width: 100%; }

.form__row { margin-bottom: 1rem; }
.form__row--2 {
    display: grid;
    gap: 1rem;
}
@media (min-width: 560px) {
    .form__row--2 { grid-template-columns: 1fr 1fr; }
}

.form__field { min-width: 0; }

.form label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.88rem;
    font-weight: 600;
}
.form input,
.form textarea {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0.65rem 0.75rem;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-sm);
    font: inherit;
    color: var(--ink);
    background: var(--bg);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form input:focus,
.form textarea:focus {
    outline: none;
    border-color: var(--accent-gray);
    box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.15);
    background: var(--surface);
}
.form textarea { resize: vertical; min-height: 130px; }

.form__file {
    display: block;
    width: 100%;
    padding: 0.55rem 0.65rem;
    border: 1px dashed var(--line-strong);
    border-radius: var(--radius-sm);
    background: var(--bg);
    font: inherit;
    font-size: 0.88rem;
    cursor: pointer;
}
.form__file:focus {
    outline: none;
    border-color: var(--accent-gray);
    box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.15);
}
.form__hint {
    margin: 0.45rem 0 0;
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.5;
}
.form__file-list {
    list-style: none;
    margin: 0.65rem 0 0;
    padding: 0.65rem 0.85rem;
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    font-size: 0.84rem;
    color: var(--muted);
}
.form__file-list li + li { margin-top: 0.25rem; }

.form__consent {
    display: grid;
    grid-template-columns: 1.2rem minmax(0, 1fr);
    gap: 0.65rem 0.85rem;
    align-items: start;
    margin-bottom: 1.15rem;
    padding: 0.9rem 1rem;
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
}
.form__consent input {
    width: 1.05rem;
    height: 1.05rem;
    margin: 0.15rem 0 0;
}
.form__consent label {
    font-size: 0.86rem;
    line-height: 1.55;
    color: var(--muted);
    min-width: 0;
    word-wrap: break-word;
}
.form__consent a { color: var(--ink); font-weight: 600; }

.btn--block { width: 100%; justify-content: center; }

.contact-aside {
    display: grid;
    gap: 1rem;
    flex: 0 0 auto;
    width: 100%;
}
@media (min-width: 1080px) {
    .contact-aside { width: min(400px, 38%); }
}

.contact-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.contact-card__img {
    width: 100%; aspect-ratio: 16/9; object-fit: cover;
    border-bottom: 1px solid var(--line);
}
.contact-card__inner { padding: 1.1rem; }
.contact-card h3 { margin: 0 0 0.4rem; font-size: 1.05rem; font-weight: 700; }
.contact-card p { margin: 0 0 0.35rem; font-size: 0.92rem; color: var(--muted); }
.contact-card a { font-weight: 600; color: var(--ink); }
.contact-card__times { font-size: 0.82rem !important; margin-top: 0.5rem !important; }

.contact-grid { display: grid; gap: 1rem; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }

.alert {
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.25rem;
    font-size: 0.92rem;
    font-weight: 600;
}
.alert--ok {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}
.alert--err {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Footer */
.site-footer {
    position: relative;
    background: var(--ink);
    color: #a1a1aa;
    padding: 0 0 1.5rem;
}
.site-footer::before {
    content: "";
    display: block;
    height: 4px;
    background: var(--accent-gray);
}
.site-footer a { color: #e4e4e7; }
.site-footer a:hover {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.site-footer__grid {
    display: grid;
    gap: 0.65rem;
    padding: 1.5rem 0 1.25rem;
}
@media (min-width: 768px) {
    .site-footer__grid {
        grid-template-columns: 1.35fr repeat(3, 1fr);
        gap: 1.5rem;
        padding: 2.25rem 0 1.5rem;
    }
}

.site-footer__panel {
    padding: 1.1rem 1.15rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
}
@media (min-width: 768px) {
    .site-footer__panel {
        padding: 0;
        background: transparent;
        border: none;
        border-radius: 0;
    }
}

.site-footer__name {
    margin: 0 0 0.25rem;
    font-weight: 800;
    font-size: 1.08rem;
    color: #fff;
}
.site-footer__owner { margin: 0 0 0.5rem; font-size: 0.88rem; }
.site-footer__phone {
    display: none;
}
.site-footer__heading {
    margin: 0 0 0.55rem;
    font-weight: 700;
    color: var(--accent-soft);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.site-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
    font-size: 0.9rem;
}
@media (min-width: 768px) {
    .site-footer__links {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 0.35rem;
    }
}
.site-footer__muted { margin: 0 0 0.35rem; font-size: 0.88rem; line-height: 1.55; }
.site-footer__copy {
    text-align: center;
    margin: 0;
    padding-top: 1.15rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.78rem;
    color: #71717a;
    line-height: 1.55;
}
.site-footer__credits {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.74rem;
}

/* Scroll reveal */
[data-reveal] {
    opacity: 0;
    transition:
        opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: calc(var(--reveal-delay, 0) * 35ms);
    will-change: opacity, transform;
}
[data-reveal="up"] { transform: translateY(16px); }
[data-reveal="left"] { transform: translateX(-20px); }
[data-reveal="right"] { transform: translateX(20px); }
[data-reveal="scale"] { transform: translateY(12px) scale(0.98); }
[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}
[data-reveal-delay="1"] { --reveal-delay: 1; }
[data-reveal-delay="2"] { --reveal-delay: 2; }
[data-reveal-delay="3"] { --reveal-delay: 3; }
[data-reveal-delay="4"] { --reveal-delay: 4; }
[data-reveal-delay="5"] { --reveal-delay: 5; }
[data-reveal-delay="6"] { --reveal-delay: 6; }

@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .card:hover, .btn:hover { transform: none; }
}

/* Startseite – Hero mit Verlauf */
.page-home {
    background: var(--ink);
}
.home-landing {
    min-height: calc(100svh - 72px);
}
.home-hero {
    position: relative;
    min-height: calc(100svh - 72px);
    display: flex;
    align-items: stretch;
    color: #fff;
    overflow: hidden;
}
.home-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.home-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}
.home-hero__shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(15, 15, 18, 0.92) 0%, rgba(15, 15, 18, 0.55) 48%, rgba(15, 15, 18, 0.15) 100%),
        linear-gradient(180deg, rgba(15, 15, 18, 0.25) 0%, rgba(15, 15, 18, 0.55) 55%, rgba(15, 15, 18, 0.88) 100%);
}
.home-hero__grid {
    position: relative;
    z-index: 2;
    width: min(var(--maxw), calc(100% - 2rem));
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(1.75rem, 4vw, 2.5rem);
    padding: clamp(2.5rem, 8vh, 4.5rem) 0 clamp(2rem, 4vh, 2.5rem);
    min-height: calc(100svh - 72px);
}
.home-hero__copy {
    max-width: 38rem;
}
.home-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0 0 0.85rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}
.home-hero__eyebrow .bi {
    font-size: 0.85rem;
}
.home-hero h1 {
    margin: 0 0 0.85rem;
    font-size: clamp(2.1rem, 6.5vw, 3.4rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.home-hero__lead {
    margin: 0;
    max-width: 34ch;
    font-size: clamp(1rem, 2.2vw, 1.1rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
}
.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.35rem;
}
.btn--hero-solid,
.btn--hero-ghost {
    min-height: 42px;
    padding: 0.55rem 1.1rem;
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.btn--hero-solid {
    background: #fff;
    color: var(--ink) !important;
    border: 1px solid #fff;
}
.btn--hero-solid:hover {
    background: var(--accent-soft);
    border-color: var(--accent-soft);
    color: var(--ink) !important;
}
.btn--hero-ghost {
    background: transparent;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.45);
}
.btn--hero-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.65);
    color: #fff !important;
}
.home-hero__branches {
    padding-top: 0.25rem;
}
.home-hero__branches-label {
    margin: 0 0 0.5rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}
.home-hero__branch-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.45rem;
}
.home-hero__branch {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.5rem 0.65rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    transition: background 0.15s ease, border-color 0.15s ease;
}
.home-hero__branch:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.28);
}
.home-hero__branch img {
    width: 56px;
    height: 38px;
    object-fit: cover;
    border-radius: 5px;
    flex-shrink: 0;
}
.home-hero__branch-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}
.home-hero__branch-text strong {
    font-size: 0.88rem;
    font-weight: 700;
}
.home-hero__branch-text small {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.72);
}

@media (min-width: 768px) {
    .home-hero__branch-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.6rem;
    }
}

@media (min-width: 960px) {
    .home-hero__grid {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 1.75rem;
        padding: clamp(3rem, 10vh, 5rem) 0 clamp(2rem, 5vh, 3rem);
    }
    .home-hero__copy {
        max-width: 40rem;
    }
    .home-hero__lead {
        max-width: 42ch;
    }
    .home-hero__actions {
        display: none;
    }
    .home-hero__branches {
        width: 100%;
        max-width: 40rem;
        padding-top: 0;
    }
    .home-hero__branch-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1100px) {
    .home-hero__copy {
        max-width: 44rem;
    }
    .home-hero__branches {
        max-width: 44rem;
    }
}

/* legacy branch-list (falls noch referenziert) */
.branch-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}
.branch-list__item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    width: 100%;
    padding: 0.5rem 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    transition: background 0.15s ease, border-color 0.15s ease;
}
.branch-list__item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.28);
}
.branch-list__item img {
    width: 52px;
    height: 38px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}
.branch-list__text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.08rem;
}
.branch-list__text strong {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.3;
}
.branch-list__text small {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.35;
}
.branch-list__arrow {
    flex-shrink: 0;
    font-size: 0.95rem;
    opacity: 0.65;
}
.branch-picker--hero {
    padding: clamp(1rem, 2.5vw, 1.35rem);
    background: rgba(15, 15, 18, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.branch-picker {
    display: grid;
    gap: 0.85rem;
}
@media (min-width: 640px) {
    .branch-picker {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}
.branch-picker__card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    overflow: hidden;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.branch-picker__card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
}
.branch-picker__media {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.branch-picker__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.branch-picker__body {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 1rem 1.05rem 1.1rem;
}
.branch-picker__body strong {
    font-size: 1.02rem;
    font-weight: 700;
    color: #fff;
}
.branch-picker__body small {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.45;
}
.branch-picker__cta {
    margin-top: 0.4rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

/* Karten – ohne Consent, Scroll-Schutz */
.map-embed {
    position: relative;
    min-height: 220px;
    background: var(--bg-alt);
    border-top: 1px solid var(--line);
    overflow: hidden;
    touch-action: pan-y;
}
.map-embed iframe {
    width: 100%;
    height: 220px;
    border: 0;
    display: block;
    pointer-events: none;
    filter: grayscale(1) contrast(1.05) brightness(1.03) saturate(0.15);
}
.map-embed.is-active iframe {
    pointer-events: auto;
}
.map-embed__activate {
    position: absolute;
    right: 0.75rem;
    bottom: 0.75rem;
    z-index: 2;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
}
.map-embed.is-active .map-embed__activate {
    display: none;
}
.map-note {
    margin: 1.25rem auto 0;
    font-size: 0.82rem;
    color: var(--muted);
    max-width: 52ch;
}
.map-note a {
    font-weight: 600;
    color: var(--ink);
}

.site-footer__link-btn {
    display: inline;
    padding: 0;
    border: 0;
    background: none;
    font: inherit;
    font-size: 0.9rem;
    color: #fafafa;
    cursor: pointer;
    text-align: left;
}
.site-footer__link-btn:hover {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Modals */
.modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
}
.modal[hidden] {
    display: none;
}
.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 18, 0.72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.modal__panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: 92svh;
    overflow-y: auto;
    background: var(--surface);
    border-radius: var(--radius) var(--radius) 0 0;
    padding: 1.35rem 1.35rem 1.5rem;
    box-shadow: var(--shadow-lg);
}
@media (min-width: 560px) {
    .modal {
        align-items: center;
        padding: 1rem;
    }
    .modal__panel {
        width: min(520px, 100%);
        max-height: min(90svh, 720px);
        border-radius: var(--radius);
        padding: 1.5rem 1.65rem 1.65rem;
    }
}
.modal__close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--bg-alt);
    cursor: pointer;
    color: var(--ink);
}
.modal__title {
    margin: 0 2rem 0.35rem 0;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.modal__lead {
    margin: 0 0 1.15rem;
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.55;
    max-width: 42ch;
}
.form--compact .form__row { margin-bottom: 0.85rem; }
.form--compact textarea { min-height: 100px; }

.fallback-contacts {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.fallback-contacts__item {
    padding: 0.85rem 1rem;
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
}
.fallback-contacts__item strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}
.fallback-contacts__item a {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--ink);
    text-decoration: none;
}
.fallback-contacts__item a:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Führerschein-Unterseiten */
.license-steps {
    display: grid;
    gap: 0.75rem;
    margin: 0 0 1.25rem;
}
.license-steps__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
    padding: 1rem 1.1rem;
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
}
.license-steps__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--accent-soft);
    border: 1px solid rgba(var(--accent-rgb), 0.4);
    font-weight: 800;
    font-size: 0.88rem;
    color: var(--ink);
}
.license-steps__item h3 {
    margin: 0 0 0.25rem;
    font-size: 0.98rem;
    font-weight: 700;
}
.license-steps__item p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--muted);
}
.license-cta-note {
    margin: 1.25rem 0 1rem !important;
    font-size: 0.95rem;
    color: var(--ink) !important;
}
.table-wrap {
    overflow-x: auto;
    margin: 0 0 1rem;
}
.license-overview {
    width: 100%;
    min-width: 280px;
    border-collapse: collapse;
    font-size: 0.92rem;
}
.license-overview th,
.license-overview td {
    padding: 0.7rem 0.9rem;
    border: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}
.license-overview th {
    width: 38%;
    background: var(--bg-alt);
    font-weight: 600;
    color: var(--ink);
}
.license-overview td {
    color: var(--muted);
    line-height: 1.5;
}
