/* ==========================================================================
   PESLI MOBILE – Haupt-Stylesheet
   ==========================================================================
   Ordnung:
   1. Design-Tokens (CSS Custom Properties)
   2. Reset & Base
   3. Typography
   4. Layout-Utilities (container, grid helpers)
   5. Buttons & Links
   6. Header + Navigation
   7. Footer
   8. Sektion 1: Hero
   9. Sektion 2: Vehicle Search
   10. Sektion 3: Categories
   11. Sektion 4: Featured Vehicles
   12. Sektion 5: Services
   13. Sektion 6: Brands Marquee
   14. Sektion 7: Family Story
   15. Sektion 8: Reviews
   16. Sektion 9: Social Feed
   17. Sektion 10: Newsletter + Contact
   18. Scroll-Animationen
   19. Responsive (Mobile Breakpoints)
   ========================================================================== */

/* ==========================================================================
   1. DESIGN-TOKENS
   ========================================================================== */
:root {
    /* Farben */
    --petrol: #1F4E5F;
    --petrol-dark: #163A47;
    --petrol-light: #2D6A7F;
    --terracotta: #C17A5B;
    --terracotta-dark: #A66347;
    --terracotta-light: #D69678;
    --cream: #F5F1EA;
    --cream-warm: #EFE9DE;
    --charcoal: #2C2C2C;
    --charcoal-soft: #4A4A4A;
    --muted: #8A847B;
    --border: #E5DFD3;
    --white: #FFFFFF;

    /* Fonts */
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing-Skala */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    /* Radien */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-pill: 999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(30, 30, 30, 0.06), 0 1px 2px rgba(30, 30, 30, 0.04);
    --shadow-md: 0 4px 12px rgba(30, 30, 30, 0.08), 0 2px 4px rgba(30, 30, 30, 0.04);
    --shadow-lg: 0 10px 40px rgba(30, 30, 30, 0.10), 0 4px 12px rgba(30, 30, 30, 0.06);
    --shadow-xl: 0 20px 60px rgba(30, 30, 30, 0.14);

    /* Transitions */
    --t-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --t-base: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --t-slow: 0.45s cubic-bezier(0.4, 0, 0.2, 1);

    /* Container */
    --container-max: 1280px;
    --container-pad: clamp(1rem, 4vw, 2rem);

    /* Header-Höhe für sticky-Berechnungen */
    --header-height: 96px;
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--charcoal);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, picture, svg, video {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font: inherit;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    color: inherit;
}

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

a {
    color: var(--petrol);
    text-decoration: none;
    transition: color var(--t-fast);
}

a:hover { color: var(--terracotta); }

ul, ol { padding: 0; margin: 0; list-style: none; }

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.15;
    color: var(--charcoal);
}

p { margin: 0; }

/* Screen-reader-only */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 1rem;
    z-index: 9999;
    background: var(--petrol);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
}
.skip-link:focus { left: 1rem; }

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */
.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 0.75rem;
}
.section-eyebrow--light { color: rgba(245, 241, 234, 0.75); }

.section-title {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}
.section-title--sm { font-size: clamp(1.5rem, 3vw, 2rem); }
.section-title--light { color: var(--cream); }

.section-subtitle {
    font-size: 1.125rem;
    color: var(--charcoal-soft);
    max-width: 52ch;
    margin-inline: auto;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto var(--space-xl);
}
.section-header--compact { margin-bottom: var(--space-md); }

.section-footer {
    margin-top: var(--space-xl);
    text-align: center;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--petrol);
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: all var(--t-base);
}
.link-arrow svg { width: 18px; height: 18px; transition: transform var(--t-base); }
.link-arrow:hover { color: var(--terracotta); border-color: currentColor; }
.link-arrow:hover svg { transform: translateX(4px); }
.link-arrow--terracotta { color: var(--terracotta); }

/* ==========================================================================
   4. LAYOUT-UTILITIES
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-pad);
}

.site-main > section {
    padding-block: clamp(3rem, 8vw, 6rem);
}

/* ==========================================================================
   5. BUTTONS & LINKS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    transition: all var(--t-base);
    border: 1.5px solid transparent;
}
.btn svg { width: 18px; height: 18px; flex: none; transition: transform var(--t-base); }
.btn:hover svg { transform: translateX(3px); }

.btn--terracotta {
    background: var(--terracotta);
    color: var(--white);
    border-color: var(--terracotta);
    box-shadow: 0 4px 14px rgba(193, 122, 91, 0.35);
}
.btn--terracotta:hover {
    background: var(--terracotta-dark);
    border-color: var(--terracotta-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(193, 122, 91, 0.45);
}

.btn--petrol {
    background: var(--petrol);
    color: var(--white);
    border-color: var(--petrol);
}
.btn--petrol:hover {
    background: var(--petrol-dark);
    border-color: var(--petrol-dark);
    color: var(--white);
    transform: translateY(-1px);
}

.btn--outline {
    background: transparent;
    color: var(--petrol);
    border-color: var(--petrol);
}
.btn--outline:hover {
    background: var(--petrol);
    color: var(--white);
}

.btn--outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(6px);
}
.btn--outline-light:hover {
    background: var(--white);
    color: var(--petrol);
}

.btn--lg { padding: 1.05rem 2rem; font-size: 1rem; }
.btn--sm { padding: 0.625rem 1.125rem; font-size: 0.875rem; }
.btn--full { width: 100%; }

/* ==========================================================================
   6. HEADER + NAVIGATION
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--cream);
    border-bottom: 1px solid transparent;
    transition: background 0.35s ease, box-shadow var(--t-base), border-color var(--t-base);
}
.site-header.is-scrolled {
    box-shadow: var(--shadow-md);
    border-color: var(--border);
}


.trust-bar {
    background: var(--petrol);
    color: var(--cream);
    font-size: 0.8rem;
    padding: 0.5rem 0;
}
.trust-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.trust-icon { width: 14px; height: 14px; flex: none; }
.trust-separator { opacity: 0.5; }

.main-bar {
    padding-block: 1rem;
}
.main-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

/* Logo */
.site-logo {
    display: inline-flex;
    align-items: center;
    color: var(--petrol);
    text-decoration: none;
    flex: none;
}
.site-logo__text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.625rem;
    letter-spacing: -0.01em;
    display: inline-flex;
    align-items: baseline;
}
.site-logo__heart {
    display: inline-flex;
    width: 0.95em;
    height: 0.95em;
    color: var(--terracotta);
    align-self: center;
    transform: translateY(1px);
    margin-inline: 1px;
}
.site-logo__heart svg { width: 100%; height: 100%; }
.site-logo__img {
    height: 48px;
    width: auto;
    display: block;
    max-width: 200px;
    object-fit: contain;
}
.site-logo--footer { color: var(--cream); }
.site-logo--footer .site-logo__heart { color: var(--terracotta); }

/* Primary Nav */
.primary-nav { flex: 1; }
.primary-nav__list {
    display: flex;
    justify-content: center;
    gap: 2rem;
}
.primary-nav__list a {
    color: var(--charcoal);
    font-weight: 500;
    font-size: 0.95rem;
    padding-block: 0.5rem;
    position: relative;
}
.primary-nav__list a::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    bottom: 0;
    height: 2px;
    background: var(--terracotta);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-base);
}
.primary-nav__list a:hover { color: var(--petrol); }
.primary-nav__list a:hover::after { transform: scaleX(1); }

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: none;
}
.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--charcoal);
    font-weight: 500;
    font-size: 0.95rem;
}
.header-phone svg { width: 18px; height: 18px; color: var(--petrol); }
.header-phone:hover { color: var(--petrol); }

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: var(--radius-sm);
}
.menu-toggle__bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: transform var(--t-base), opacity var(--t-base);
}
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream);
    border-top: 1px solid var(--border);
    padding: 1.5rem var(--container-pad) 2rem;
    box-shadow: var(--shadow-lg);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav__list {
    display: flex;
    flex-direction: column;
}
.mobile-nav__list a {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    font-weight: 500;
    color: var(--charcoal);
    font-size: 1.05rem;
}
.mobile-nav__cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

/* ==========================================================================
   7. FOOTER
   ========================================================================== */
.site-footer {
    background: var(--petrol);
    color: rgba(245, 241, 234, 0.85);
    padding: var(--space-2xl) 0 var(--space-md);
    margin-top: var(--space-2xl);
}
.site-footer a { color: inherit; }
.site-footer a:hover { color: var(--terracotta-light); }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-statement {
    margin: 1rem 0 1.5rem;
    max-width: 32ch;
    line-height: 1.6;
    color: rgba(245, 241, 234, 0.75);
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--terracotta-light);
    margin-bottom: 1rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { font-size: 0.95rem; }

.footer-contact { font-style: normal; margin-bottom: 1.25rem; line-height: 1.7; font-size: 0.95rem; }
.footer-contact p + p { margin-top: 0.75rem; }

.footer-hours {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.5rem 1rem;
    margin: 0;
    font-size: 0.9rem;
}
.footer-hours dt { font-weight: 500; color: var(--cream); }
.footer-hours dd { margin: 0; color: rgba(245, 241, 234, 0.7); }

.social-icons { display: flex; gap: 0.75rem; }
.social-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-pill);
    background: rgba(245, 241, 234, 0.08);
    border: 1px solid rgba(245, 241, 234, 0.15);
    transition: all var(--t-base);
}
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover {
    background: var(--terracotta);
    border-color: var(--terracotta);
    transform: translateY(-2px);
}

.footer-map {
    height: 260px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(245, 241, 234, 0.06);
    border: 1px solid rgba(245, 241, 234, 0.12);
    margin-bottom: var(--space-lg);
}
.footer-map__placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
    color: rgba(245, 241, 234, 0.5);
}
.footer-map__placeholder svg { width: 32px; height: 32px; }

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(245, 241, 234, 0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: rgba(245, 241, 234, 0.6);
}
.footer-copy, .footer-love { margin: 0; }
.heart { color: var(--terracotta-light); }

/* ==========================================================================
   8. SEKTION 1: HERO
   ========================================================================== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* Hero nimmt sein Platz direkt nach dem Header, ohne Padding */
    padding-block: var(--space-3xl) !important;
}
.site-main > .hero { padding-block: 0 !important; }

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #0d2530;
}

/* YouTube-Video als Hintergrund (Desktop) */
.hero__video-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.hero__video-wrap iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* 16:9 cover: immer größer als der Container */
    width: max(100%, calc(100vh * 16 / 9));
    height: max(100%, calc(100vw * 9 / 16));
    border: none;
    pointer-events: none;
}

/* Fallback-Bild (Mobile / kein Video) */
.hero__img-fallback {
    position: absolute;
    inset: 0;
    display: none; /* Desktop: Video läuft, Bild versteckt */
}
.hero__img-fallback picture,
.hero__img-fallback img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Auf Mobil: Video ausblenden, Bild zeigen */
@media (max-width: 768px) {
    .hero__video-wrap { display: none; }
    .hero__img-fallback { display: block; }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10, 28, 38, 0.88) 0%, rgba(10, 28, 38, 0.65) 50%, rgba(10, 28, 38, 0.40) 100%),
        linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.50) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 720px;
    padding-block: clamp(5rem, 12vw, 9rem);
}
.hero__eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terracotta-light);
    margin-bottom: 1rem;
    font-weight: 600;
}
.hero__title {
    font-size: clamp(2.75rem, 7vw, 5.5rem);
    line-height: 1.02;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 700;
}
.hero__subtitle {
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 2.5rem;
    max-width: 540px;
}
.hero__ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    transition: border-color var(--t-base);
}
.hero__scroll:hover { border-color: var(--white); }
.hero__scroll span {
    width: 3px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    animation: heroScroll 2s infinite;
}
@keyframes heroScroll {
    0% { transform: translateY(0); opacity: 1; }
    70% { transform: translateY(12px); opacity: 0; }
    100% { transform: translateY(0); opacity: 0; }
}

/* ==========================================================================
   9. SEKTION 2: VEHICLE SEARCH
   ========================================================================== */
.vehicle-search {
    margin-top: calc(var(--space-2xl) * -1);
    position: relative;
    z-index: 3;
    padding-block: 0 !important;
    padding-top: 0;
}
.site-main > .vehicle-search { padding-block: 0 var(--space-2xl) !important; }

.search-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
}
.search-card__title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 0.25rem;
}
.search-card__subtitle {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
}

.search-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 1rem;
    align-items: end;
}
.search-field { display: flex; flex-direction: column; gap: 0.375rem; }
.search-field label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}
.search-field select,
.search-field input {
    height: 48px;
    padding: 0 0.875rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--cream);
    font-size: 0.95rem;
    color: var(--charcoal);
    transition: border-color var(--t-base);
    appearance: none;
    -webkit-appearance: none;
}
.search-field select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231F4E5F' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
    background-repeat: no-repeat;
    background-position: right 0.875rem center;
    padding-right: 2.25rem;
}
.search-field select:focus,
.search-field input:focus {
    outline: none;
    border-color: var(--petrol);
}

.search-field--range { justify-content: flex-start; }
.search-field--range label { margin-bottom: 0.1rem; }
.search-field--range label strong {
    color: var(--petrol);
    font-weight: 700;
}
.search-field input[type="range"] {
    height: auto;
    padding: 0;
    background: transparent;
    border: none;
    accent-color: var(--petrol);
    cursor: pointer;
    width: 100%;
}
.range-scale {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 0.15rem;
}
.range-scale strong { font-weight: 700; }
.range-output { font-size: 0.85rem; color: var(--petrol); font-weight: 600; }

.search-form__submit { height: 48px; }

/* --- Archiv-Filterleiste --- */
.archive-filter {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding-block: 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    position: relative;
    z-index: 10;
}
.archive-filter__form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
}

/* "Filter" label pill on the left */
.archive-filter__label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--petrol);
    background: color-mix(in srgb, var(--petrol) 10%, transparent);
    border-radius: 2rem;
    padding: 0.35rem 0.75rem;
    flex-shrink: 0;
    white-space: nowrap;
}
.archive-filter__label svg { width: 15px; height: 15px; flex-shrink: 0; }

/* Individual field wrapper */
.archive-filter__field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1 1 170px;
    min-width: 0;
}
.archive-filter__field-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--muted);
    white-space: nowrap;
}
.archive-filter__price-val {
    color: var(--petrol);
    font-weight: 700;
}

/* Select with custom chevron */
.archive-filter__select-wrap {
    position: relative;
}
.archive-filter__select-wrap select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    background: var(--cream);
    border: 1.5px solid var(--border);
    border-radius: 0.5rem;
    padding: 0.55rem 2.2rem 0.55rem 0.85rem;
    font-size: 0.92rem;
    font-family: inherit;
    color: var(--dark);
    cursor: pointer;
    transition: border-color 0.18s;
}
.archive-filter__select-wrap select:focus {
    outline: none;
    border-color: var(--petrol);
}
.archive-filter__chevron {
    pointer-events: none;
    position: absolute;
    right: 0.65rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--muted);
}

/* Range slider field */
.archive-filter__field--range { flex: 1 1 220px; }
.archive-filter__field--range input[type="range"] {
    width: 100%;
    accent-color: var(--petrol);
    height: 4px;
    cursor: pointer;
    margin-block: 0.1rem;
}
.archive-filter__range-scale {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--muted);
    margin-top: 0.15rem;
}

/* Actions */
.archive-filter__actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
    margin-left: auto;
}
.archive-filter__submit {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--petrol);
    color: var(--white);
    border: none;
    border-radius: 0.5rem;
    padding: 0.6rem 1.25rem;
    font-size: 0.92rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}
.archive-filter__submit svg { width: 16px; height: 16px; flex-shrink: 0; }
.archive-filter__submit:hover { background: var(--petrol-dark); transform: translateY(-1px); }
.archive-filter__submit:active { transform: translateY(0); }

.archive-filter__reset {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.82rem;
    color: var(--muted);
    text-decoration: none;
    white-space: nowrap;
    padding: 0.4rem 0.6rem;
    border-radius: 0.4rem;
    transition: color 0.15s, background 0.15s;
}
.archive-filter__reset svg { width: 14px; height: 14px; flex-shrink: 0; }
.archive-filter__reset:hover { color: var(--terracotta); background: color-mix(in srgb, var(--terracotta) 8%, transparent); }

@media (max-width: 768px) {
    .archive-filter__label { display: none; }
    .archive-filter__field { flex: 1 1 calc(50% - 0.5rem); }
    .archive-filter__field--range { flex: 1 1 100%; }
    .archive-filter__actions { width: 100%; }
    .archive-filter__submit { flex: 1; justify-content: center; }
}

/* --- Google Reviews Plugin-Wrap --- */
.reviews-plugin-wrap { min-height: 2rem; }

/* ==========================================================================
   10. SEKTION 3: CATEGORIES
   ========================================================================== */
.categories { background: var(--cream); }

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.category-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}
.category-tile__placeholder {
    width: 100%;
    height: 100%;
    background: var(--petrol);
    display: flex;
    align-items: center;
    justify-content: center;
}
.category-tile__placeholder svg {
    width: 48px;
    height: 48px;
    color: rgba(255,255,255,0.4);
}

.category-tile {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all var(--t-base);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.category-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    color: inherit;
}
.category-tile__image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--cream-warm);
}
.category-tile__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}
.category-tile:hover .category-tile__image img { transform: scale(1.05); }

.category-tile__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}
.category-tile__title {
    font-size: 1.35rem;
    color: var(--petrol);
}
.category-tile__desc {
    color: var(--charcoal-soft);
    font-size: 0.95rem;
}
.category-tile__arrow {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: var(--radius-pill);
    color: var(--petrol);
    transition: all var(--t-base);
}
.category-tile__arrow svg { width: 16px; height: 16px; }
.category-tile:hover .category-tile__arrow {
    background: var(--terracotta);
    color: var(--white);
    transform: rotate(-45deg);
}

/* ==========================================================================
   11. SEKTION 4: FEATURED VEHICLES
   ========================================================================== */
.featured-vehicles { background: var(--white); }

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

.vehicle-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--t-base);
}
.vehicle-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.vehicle-card__image-wrap {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--cream-warm);
}
.vehicle-card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}
.vehicle-card:hover .vehicle-card__image-wrap img { transform: scale(1.04); }

.vehicle-card__no-image {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 0.9rem;
}

.vehicle-card__badge {
    position: absolute;
    top: 0.875rem;
    padding: 0.4rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    color: var(--white);
}
.vehicle-card__badge--top {
    left: 0.875rem;
    background: var(--terracotta);
}
.vehicle-card__badge--neu {
    right: 0.875rem;
    background: var(--petrol);
}

.vehicle-card__body {
    padding: 1.25rem 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    flex: 1;
}
.vehicle-card__title {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.25;
}
.vehicle-card__title a { color: var(--charcoal); }
.vehicle-card__title a:hover { color: var(--petrol); }

.vehicle-card__specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.875rem;
    font-size: 0.85rem;
    color: var(--charcoal-soft);
}
.vehicle-card__specs li {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.vehicle-card__specs svg { width: 14px; height: 14px; color: var(--petrol); }

.vehicle-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
}
.vehicle-card__price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--petrol);
    line-height: 1;
}
.vehicle-card__price--request {
    font-size: 1rem;
    font-weight: 400;
    color: var(--charcoal-soft);
    font-family: var(--font-body);
}

/* Placeholder-Karten */
.vehicle-card--placeholder .vehicle-card__image-wrap {
    background: linear-gradient(135deg, var(--cream-warm), var(--border));
}
.vehicle-card__skeleton {
    width: 100%; height: 100%;
    background: linear-gradient(90deg, var(--cream-warm) 0%, var(--border) 50%, var(--cream-warm) 100%);
    background-size: 200% 100%;
    animation: skeleton 1.6s ease-in-out infinite;
}
@keyframes skeleton {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.vehicle-card__placeholder-text { color: var(--muted); font-size: 0.9rem; }

/* ==========================================================================
   12. SEKTION 5: SERVICES
   ========================================================================== */
.services { background: var(--cream); }

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

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all var(--t-base);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card--featured {
    background: var(--petrol);
    color: var(--cream);
    border-color: var(--petrol);
}
.service-card--featured .service-card__title { color: var(--white); }
.service-card--featured .service-card__desc { color: rgba(245, 241, 234, 0.85); }
.service-card--featured .link-arrow { color: var(--terracotta-light); }
.service-card--featured .link-arrow:hover { color: var(--white); }

.service-card__icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: rgba(31, 78, 95, 0.08);
    color: var(--petrol);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}
.service-card--featured .service-card__icon {
    background: rgba(245, 241, 234, 0.12);
    color: var(--terracotta-light);
}
.service-card__icon svg { width: 28px; height: 28px; }

.service-card__title { font-size: 1.5rem; }
.service-card__desc { color: var(--charcoal-soft); line-height: 1.6; margin-bottom: auto; }

/* ==========================================================================
   13. SEKTION 6: BRANDS (Marquee)
   ========================================================================== */
.brands { background: var(--cream); padding-bottom: var(--space-xl) !important; }

.brand-marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.brand-marquee__track {
    display: flex;
    gap: 4rem;
    animation: marquee 35s linear infinite;
    width: max-content;
}
.brand-item {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-style: italic;
    color: var(--muted);
    white-space: nowrap;
    transition: color var(--t-base);
}
.brand-item:hover { color: var(--petrol); }

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ==========================================================================
   14. SEKTION 7: FAMILY STORY
   ========================================================================== */
.family-story {
    background: var(--white);
    position: relative;
}

.family-story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
}

.family-story__image {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--cream-warm);
}
.family-story__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.family-story__image-quote {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: var(--terracotta);
    color: var(--white);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.05rem;
    box-shadow: var(--shadow-lg);
}

.family-story__text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--charcoal-soft);
    margin-bottom: 2rem;
}

.trust-pillars {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}
.trust-pillars li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.trust-pillar__icon {
    width: 44px;
    height: 44px;
    flex: none;
    border-radius: var(--radius-pill);
    background: rgba(193, 122, 91, 0.12);
    color: var(--terracotta);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.trust-pillar__icon svg { width: 20px; height: 20px; }
.trust-pillars strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 0.125rem;
}
.trust-pillars span {
    color: var(--charcoal-soft);
    font-size: 0.9rem;
}

/* ==========================================================================
   15. SEKTION 8: REVIEWS
   ========================================================================== */
.reviews {
    background: rgba(193, 122, 91, 0.08);
    position: relative;
}
.google-stars {
    color: #FBBC05;
    letter-spacing: 0.1em;
    margin-right: 0.5rem;
}

.reviews-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.review-card {
    background: var(--white);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.review-card__stars {
    color: #FBBC05;
    letter-spacing: 0.1em;
    font-size: 0.95rem;
}
.review-card__text {
    margin: 0;
    color: var(--charcoal-soft);
    font-size: 0.95rem;
    line-height: 1.65;
    font-style: italic;
    quotes: '„' '"' '‚' '''';
}
.review-card__text::before { content: open-quote; }
.review-card__text::after  { content: close-quote; }
.review-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
}
.review-card__name {
    display: block;
    color: var(--charcoal);
    font-weight: 600;
}
.review-card__place { font-size: 0.8rem; color: var(--muted); }

.reviews-nav {
    display: none;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 2rem;
}
.reviews-nav__btn {
    width: 44px; height: 44px;
    border-radius: var(--radius-pill);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--t-base);
}
.reviews-nav__btn:hover { background: var(--petrol); color: var(--white); }
.reviews-nav__btn svg { width: 20px; height: 20px; }

/* ==========================================================================
   16. SEKTION 9: SOCIAL FEED
   ========================================================================== */
.social-feed { background: var(--white); }

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.75rem;
}
.instagram-tile {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--cream-warm);
}
.instagram-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}
.instagram-tile:hover img { transform: scale(1.08); }
.instagram-tile__overlay {
    position: absolute;
    inset: 0;
    background: rgba(31, 78, 95, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0;
    transition: all var(--t-base);
}
.instagram-tile__overlay svg { width: 28px; height: 28px; }
.instagram-tile:hover .instagram-tile__overlay {
    background: rgba(31, 78, 95, 0.7);
    opacity: 1;
}

/* ==========================================================================
   17. SEKTION 10: NEWSLETTER + CONTACT
   ========================================================================== */
.newsletter-contact {
    background: var(--petrol);
    color: var(--cream);
}
.newsletter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
}
.newsletter-col, .contact-col { max-width: 500px; }

.newsletter-text {
    color: rgba(245, 241, 234, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}
.newsletter-form input {
    flex: 1;
    height: 48px;
    padding: 0 1rem;
    border: 1.5px solid rgba(245, 241, 234, 0.2);
    background: rgba(245, 241, 234, 0.06);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 0.95rem;
}
.newsletter-form input::placeholder { color: rgba(245, 241, 234, 0.5); }
.newsletter-form input:focus {
    outline: none;
    border-color: var(--terracotta);
    background: rgba(245, 241, 234, 0.1);
}

.newsletter-note {
    font-size: 0.8rem;
    color: rgba(245, 241, 234, 0.5);
}

.contact-form { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-form__row input,
.contact-form__row select,
.contact-form__row textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid rgba(245, 241, 234, 0.2);
    background: rgba(245, 241, 234, 0.06);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 0.95rem;
    resize: vertical;
}
.contact-form__row input::placeholder,
.contact-form__row textarea::placeholder { color: rgba(245, 241, 234, 0.5); }
.contact-form__row select { color: rgba(245, 241, 234, 0.7); }
.contact-form__row input:focus,
.contact-form__row select:focus,
.contact-form__row textarea:focus {
    outline: none;
    border-color: var(--terracotta);
    background: rgba(245, 241, 234, 0.1);
}

/* ==========================================================================
   18. PAGE TEMPLATE (page.php)
   ========================================================================== */

/* --- Page Header (Breadcrumb + Titel) --- */
.page-header {
    background: var(--petrol);
    padding-block: clamp(2rem, 5vw, 3.5rem);
}

.breadcrumb { margin-bottom: 1rem; }

.breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(245, 241, 234, 0.6);
    list-style: none;
}

.breadcrumb__list a {
    color: rgba(245, 241, 234, 0.6);
    transition: color var(--t-fast);
}
.breadcrumb__list a:hover { color: var(--terracotta-light); }

.breadcrumb__sep {
    margin-inline: 0.4rem;
    color: rgba(245, 241, 234, 0.3);
}

.breadcrumb__item--current { color: var(--cream); }

.page-header__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    line-height: 1.1;
}

/* --- Page Content (hybrides Layout) --- */
.page-content-wrap {
    padding-block: clamp(2.5rem, 7vw, 5rem);
}

.page-content {
    max-width: 720px;
    margin-inline: auto;
    padding-inline: var(--container-pad);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Bilder und Blöcke dürfen ausbrechen */
.page-content .alignfull {
    width: calc(100% + 2 * var(--container-pad));
    margin-inline: calc(-1 * var(--container-pad));
    max-width: none;
    border-radius: 0;
}

.page-content .alignwide {
    width: min(var(--container-max), calc(100vw - 2 * var(--container-pad)));
    margin-inline: auto;
    max-width: none;
}

/* Inline-Typografie */
.entry-content h2,
.legal-content h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-top: 2.5rem;
    margin-bottom: 0.875rem;
    color: var(--charcoal);
}

.entry-content h3,
.legal-content h3 {
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}

.entry-content p,
.legal-content p {
    margin-bottom: 1.5rem;
    color: var(--charcoal-soft);
}

.entry-content ul,
.entry-content ol,
.legal-content ul,
.legal-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--charcoal-soft);
}
.entry-content ul,
.legal-content ul { list-style: disc; }
.entry-content ol,
.legal-content ol { list-style: decimal; }
.entry-content li,
.legal-content li { margin-bottom: 0.4rem; }

.entry-content a,
.legal-content a {
    color: var(--petrol);
    text-decoration: underline;
    text-decoration-color: transparent;
    text-underline-offset: 3px;
    transition: text-decoration-color var(--t-base);
}
.entry-content a:hover,
.legal-content a:hover { text-decoration-color: currentColor; }

.entry-content img {
    border-radius: var(--radius-lg);
    margin-block: 2rem;
}

.entry-content figure { margin: 2rem 0; }
.entry-content figcaption {
    text-align: center;
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 0.5rem;
}

.entry-content blockquote {
    border-left: 3px solid var(--terracotta);
    padding: 0.5rem 0 0.5rem 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--charcoal-soft);
}

.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin-block: 2rem;
    font-size: 0.95rem;
}
.entry-content th,
.entry-content td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
    text-align: left;
}
.entry-content th {
    font-weight: 600;
    background: var(--cream);
    color: var(--charcoal);
}

/* --- Globale CTA --- */
.page-cta {
    background: var(--petrol-dark);
    padding-block: clamp(3rem, 7vw, 5rem);
}

.page-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
}

.page-cta__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.page-cta__subtitle {
    color: rgba(245, 241, 234, 0.72);
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 44ch;
}

.page-cta__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: none;
}

/* ==========================================================================
   19. ARCHIVE FAHRZEUGE (archive-pesli_vehicle.php)
   ========================================================================== */

/* --- Archive Header --- */
.page-header--archive { padding-bottom: clamp(1.5rem, 4vw, 2.5rem); }

.archive-header__row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.archive-header__sub {
    color: rgba(245, 241, 234, 0.72);
    font-size: 1.05rem;
    margin-top: 0.5rem;
}

.archive-header__count {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex: none;
}
.archive-header__count-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--terracotta-light);
    line-height: 1;
}
.archive-header__count-label {
    font-size: 0.8rem;
    color: rgba(245, 241, 234, 0.6);
    letter-spacing: 0.05em;
}

/* --- Grid --- */
.vehicles-archive {
    padding-block: clamp(2.5rem, 7vw, 5rem);
    background: var(--white);
}

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

/* --- Vehicle Card (vcard) --- */
.vcard {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.vcard:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

/* Bild */
.vcard__image-wrap {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--cream-warm);
}
.vcard__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}
.vcard:hover .vcard__image-wrap img { transform: scale(1.04); }

.vcard__no-image {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
}
.vcard__no-image svg { width: 40px; height: 40px; }

/* Aufbauart-Badge (oben links) */
.vcard__aufbauart {
    position: absolute;
    top: 0.875rem;
    left: 0.875rem;
    background: rgba(22, 58, 71, 0.88);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-sm);
}

/* Status-Tag (oben rechts) */
.vcard__status {
    position: absolute;
    top: 0.875rem;
    right: 0.875rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-sm);
    color: var(--white);
}
.vcard__status--neu      { background: #2a8a57; }
.vcard__status--gebraucht { background: rgba(44, 44, 44, 0.65); }
.vcard__status--vorfuehr  { background: var(--petrol-light); }
.vcard__status--angebot   { background: var(--terracotta); }

/* Body */
.vcard__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

/* Titel */
.vcard__title {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}
.vcard__title a { color: var(--charcoal); }
.vcard__title a:hover { color: var(--petrol); }

/* Drei-Icon-Reihe */
.vcard__highlights { display: flex; gap: 0; }
.vcard__highlight {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    text-align: center;
    padding-inline: 0.5rem;
    border-right: 1px solid var(--border);
}
.vcard__highlight:last-child { border-right: none; }
.vcard__highlight svg { width: 16px; height: 16px; color: var(--petrol); flex: none; }
.vcard__highlight strong { font-size: 0.82rem; font-weight: 600; color: var(--charcoal); line-height: 1.2; }

/* Trennlinie */
.vcard__divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* Specs: immer sichtbar */
.vcard__specs-wrap {
    overflow: hidden;
}

.vcard__specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.625rem 0.5rem;
    margin: 0;
}
.vcard__spec { display: flex; flex-direction: column; gap: 0.1rem; }
.vcard__spec dt {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--muted);
}
.vcard__spec dd { font-size: 0.875rem; color: var(--charcoal); font-weight: 500; margin: 0; }

/* Preis: immer sichtbar */
.vcard__price-area {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem 0.75rem;
    margin-top: auto;
}
.vcard__price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--petrol);
    line-height: 1;
}
.vcard__price--request {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    color: var(--charcoal-soft);
}
.vcard__price-original {
    font-size: 1rem;
    color: var(--muted);
    text-decoration: line-through;
    text-decoration-color: var(--terracotta);
}
.vcard__savings {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
    background: var(--terracotta);
    padding: 0.25rem 0.625rem;
    border-radius: var(--radius-pill);
    white-space: nowrap;
}

/* CTA: immer sichtbar */
.vcard__cta-wrap {
    margin-top: auto;
    padding-top: 0.25rem;
}

/* --- Pagination --- */
.vgrid-pagination {
    margin-top: clamp(2rem, 5vw, 4rem);
    display: flex;
    justify-content: center;
}
.vgrid-pagination .nav-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.vgrid-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding-inline: 0.75rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--charcoal);
    border: 1.5px solid var(--border);
    transition: all var(--t-base);
}
.vgrid-pagination .page-numbers:hover {
    border-color: var(--petrol);
    color: var(--petrol);
}
.vgrid-pagination .page-numbers.current {
    background: var(--petrol);
    border-color: var(--petrol);
    color: var(--white);
}

/* --- Leer-Zustand --- */
.vgrid-empty {
    max-width: 480px;
    margin-inline: auto;
    text-align: center;
    padding-block: var(--space-3xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.vgrid-empty svg {
    width: 48px;
    height: 48px;
    color: var(--muted);
}
.vgrid-empty h2 {
    font-size: 1.5rem;
    color: var(--charcoal);
}
.vgrid-empty p {
    color: var(--charcoal-soft);
    line-height: 1.7;
}

/* ==========================================================================
   20. SINGLE FAHRZEUG (single-pesli_vehicle.php)
   ========================================================================== */

/* --- Header-Ergänzung für Einzelseite --- */
.single-vehicle-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.single-vehicle-header__badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}
.sv-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-sm);
    color: var(--white);
}
.sv-badge--type  { background: rgba(255, 255, 255, 0.18); border: 1px solid rgba(255,255,255,0.25); }
.sv-badge--neu       { background: #2a8a57; }
.sv-badge--gebraucht { background: rgba(44, 44, 44, 0.55); }
.sv-badge--vorfuehr  { background: var(--petrol-light); }

.single-vehicle-header__nr {
    color: rgba(245, 241, 234, 0.5);
    font-size: 0.85rem;
    white-space: nowrap;
}
.single-vehicle-header__nr strong { color: rgba(245, 241, 234, 0.8); }

/* --- Zweispaltiges Layout --- */
.sv-layout { padding-block: clamp(2.5rem, 6vw, 4rem); background: var(--white); }

.sv-layout__inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
}

/* --- Linke Spalte --- */
.sv-main { display: flex; flex-direction: column; gap: 2.5rem; min-width: 0; }

.sv-section__title {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border);
}

/* --- Galerie --- */
.sv-gallery { display: flex; flex-direction: column; gap: 0.75rem; }

.sv-gallery__main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--cream-warm);
    aspect-ratio: 16 / 10;
}

.sv-gallery__main-img {
    width: 100%;
    height: 100%;
    padding: 0;
    border: none;
    background: none;
    cursor: zoom-in;
    display: block;
}
.sv-gallery__main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
    display: block;
}
.sv-gallery__main-img:hover img { transform: scale(1.02); }

.sv-gallery__zoom-hint {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(22, 58, 71, 0.75);
    backdrop-filter: blur(4px);
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0;
    transition: opacity var(--t-base);
    pointer-events: none;
}
.sv-gallery__zoom-hint svg { width: 18px; height: 18px; }
.sv-gallery__main-img:hover .sv-gallery__zoom-hint { opacity: 1; }

.sv-gallery__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(22, 58, 71, 0.75);
    backdrop-filter: blur(6px);
    border-radius: var(--radius-pill);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--t-base), transform var(--t-base);
    z-index: 2;
}
.sv-gallery__arrow svg { width: 20px; height: 20px; }
.sv-gallery__arrow--prev { left: 0.75rem; }
.sv-gallery__arrow--next { right: 0.75rem; }
.sv-gallery__arrow:hover { background: var(--petrol); transform: translateY(-50%) scale(1.08); }

.sv-gallery__counter {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(22, 58, 71, 0.75);
    backdrop-filter: blur(4px);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-pill);
}

.sv-gallery__thumbs {
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
}
.sv-gallery__thumb {
    width: 80px;
    height: 60px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid transparent;
    padding: 0;
    flex: none;
    cursor: pointer;
    transition: border-color var(--t-base), transform var(--t-base);
    background: var(--cream-warm);
}
.sv-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sv-gallery__thumb:hover { border-color: var(--petrol-light); }
.sv-gallery__thumb.is-active { border-color: var(--petrol); transform: scale(1.05); }

.sv-no-image {
    aspect-ratio: 16 / 10;
    border-radius: var(--radius-lg);
    background: var(--cream-warm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--muted);
    border: 1px solid var(--border);
}
.sv-no-image svg { width: 48px; height: 48px; }

/* --- Beschreibung --- */
.sv-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--charcoal-soft);
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0;
}
.sv-description p { margin-bottom: 1.25rem; }
.sv-description p:last-child { margin-bottom: 0; }

/* --- Technische Daten: Icons-Reihe --- */
.sv-icons-row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: var(--cream);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}
.sv-icon-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}
.sv-icon-item__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-pill);
    background: rgba(31, 78, 95, 0.1);
    color: var(--petrol);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}
.sv-icon-item__icon svg { width: 24px; height: 24px; }
.sv-icon-item__value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--petrol);
    line-height: 1;
}
.sv-icon-item__label {
    display: block;
    font-size: 0.78rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

/* --- Detailtabelle --- */
.sv-specs-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.sv-spec-row {
    display: contents;
}
.sv-spec-row dt,
.sv-spec-row dd {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}
.sv-spec-row:last-child dt,
.sv-spec-row:last-child dd { border-bottom: none; }
.sv-spec-row dt {
    font-weight: 600;
    color: var(--charcoal-soft);
    background: var(--cream);
}
.sv-spec-row dd { margin: 0; color: var(--charcoal); }

/* --- Ausstattung --- */
.sv-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 1rem;
}
.sv-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--charcoal-soft);
}
.sv-feature svg { width: 16px; height: 16px; color: var(--petrol); flex: none; }

/* --- Sticky Sidebar --- */
.sv-sidebar__inner {
    position: sticky;
    top: calc(var(--header-height) + 1.5rem);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    box-shadow: var(--shadow-lg);
}

/* Preisblock */
.sv-sidebar__price-block { border-bottom: 1px solid var(--border); padding-bottom: 1.25rem; }
.sv-price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--petrol);
    line-height: 1;
    margin: 0;
}
.sv-price--request { font-family: var(--font-body); font-size: 1.25rem; font-weight: 400; color: var(--charcoal-soft); }
.sv-price-original { font-size: 1.1rem; color: var(--muted); text-decoration: line-through; text-decoration-color: var(--terracotta); margin: 0 0 0.25rem; }
.sv-savings {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--white);
    background: var(--terracotta);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-pill);
}
.sv-price-note { font-size: 0.78rem; color: var(--muted); margin: 0.5rem 0 0; }

/* Schnell-Specs in Sidebar */
.sv-sidebar__highlights {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1.25rem;
}
.sv-sidebar__highlights li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9rem;
    color: var(--charcoal-soft);
}
.sv-sidebar__highlights svg { width: 16px; height: 16px; color: var(--petrol); flex: none; }

/* CTAs */
.sv-sidebar__ctas { display: flex; flex-direction: column; gap: 0.625rem; }

.btn--whatsapp {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}
.btn--whatsapp:hover {
    background: #1da851;
    border-color: #1da851;
    color: var(--white);
    transform: translateY(-1px);
}

/* CF7 Formular */
.sv-sidebar__form-title {
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
    padding-top: 0.25rem;
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
}

/* CF7 Basis-Styling passend zum Theme */
.sv-sidebar__form .wpcf7-form { display: flex; flex-direction: column; gap: 0.625rem; }
.sv-sidebar__form .wpcf7-form p { margin: 0; }
.sv-sidebar__form input[type="text"],
.sv-sidebar__form input[type="email"],
.sv-sidebar__form input[type="tel"],
.sv-sidebar__form textarea,
.sv-sidebar__form select {
    width: 100%;
    padding: 0.75rem 0.875rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font: inherit;
    font-size: 0.9rem;
    color: var(--charcoal);
    background: var(--cream);
    transition: border-color var(--t-base);
    box-sizing: border-box;
}
.sv-sidebar__form input:focus,
.sv-sidebar__form textarea:focus { outline: none; border-color: var(--petrol); }
.sv-sidebar__form textarea { resize: vertical; min-height: 90px; }
.sv-sidebar__form .wpcf7-submit {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: var(--terracotta);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font: inherit;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background var(--t-base), transform var(--t-base);
}
.sv-sidebar__form .wpcf7-submit:hover { background: var(--terracotta-dark); transform: translateY(-1px); }

.sv-cf7-notice {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
    padding: 1rem;
    background: var(--cream);
    border-radius: var(--radius-md);
    border: 1px dashed var(--border);
}

/* --- Lightbox --- */
.sv-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10, 20, 25, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.sv-lightbox[hidden] { display: none; }

.sv-lightbox__img-wrap {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sv-lightbox__img-wrap img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    display: block;
}

.sv-lightbox__close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--t-base);
}
.sv-lightbox__close svg { width: 22px; height: 22px; }
.sv-lightbox__close:hover { background: rgba(255, 255, 255, 0.2); }

.sv-lightbox__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--t-base);
}
.sv-lightbox__arrow svg { width: 24px; height: 24px; }
.sv-lightbox__arrow:hover { background: rgba(255, 255, 255, 0.2); }
.sv-lightbox__arrow--prev { left: 1.25rem; }
.sv-lightbox__arrow--next { right: 1.25rem; }

.sv-lightbox__counter {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    font-weight: 600;
}

/* --- Responsive Detailseite --- */
@media (max-width: 1024px) {
    .sv-layout__inner { grid-template-columns: 1fr; }
    .sv-sidebar__inner { position: static; }
    .sv-specs-table { grid-template-columns: 1fr; }
    .sv-spec-row { display: flex; justify-content: space-between; }
    .sv-spec-row dt, .sv-spec-row dd { background: none; }
}

@media (max-width: 600px) {
    .sv-gallery__thumb { width: 64px; height: 48px; }
    .sv-features { grid-template-columns: 1fr; }
    .sv-icons-row { flex-direction: column; gap: 1rem; }
}

/* ==========================================================================
   21. SCROLL-ANIMATIONEN
   ========================================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* ==========================================================================
   19. RESPONSIVE
   ========================================================================== */

/* Large (ab 1024px runter) */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .vehicle-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .instagram-grid { grid-template-columns: repeat(3, 1fr); }
    .search-form { grid-template-columns: repeat(2, 1fr); }
    .search-form__submit { grid-column: 1 / -1; }
}

/* Medium / Tablet (ab 768px runter) */
@media (max-width: 768px) {
    :root { --header-height: 80px; }

    .primary-nav { display: none; }
    .header-phone__text { display: none; }
    .header-actions .btn--sm { display: none; }
    .menu-toggle { display: inline-flex; }

    .hero { min-height: 85vh; }
    .hero__ctas { flex-direction: column; align-items: stretch; }
    .hero__ctas .btn { width: 100%; }

    .family-story__grid { grid-template-columns: 1fr; }
    .family-story__image { aspect-ratio: 4 / 3; max-width: 540px; margin-inline: auto; }

    .newsletter-grid { grid-template-columns: 1fr; }

    .reviews-track {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        margin-inline: calc(var(--container-pad) * -1);
        padding-inline: var(--container-pad);
        scrollbar-width: none;
    }
    .reviews-track::-webkit-scrollbar { display: none; }
    .review-card {
        flex: 0 0 calc(100% - 2rem);
        max-width: 380px;
        scroll-snap-align: start;
    }
    .reviews-nav { display: flex; }

    .instagram-grid { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }

    .footer-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* Fahrzeug-Archive responsive */
@media (max-width: 1024px) {
    .vgrid { grid-template-columns: repeat(2, 1fr); }
    .archive-header__count { display: none; }
}

@media (max-width: 600px) {
    .vgrid { grid-template-columns: 1fr; }
    .vcard__price { font-size: 1.75rem; }
    .archive-header__row { flex-direction: column; align-items: flex-start; }
}

/* Page-Template responsive */
@media (max-width: 768px) {
    .page-cta__inner {
        flex-direction: column;
        text-align: center;
    }
    .page-cta__subtitle { margin-inline: auto; }
    .page-cta__actions { width: 100%; }
    .page-cta__actions .btn { justify-content: center; }
}

/* Small / Mobile (ab 480px runter) */
@media (max-width: 480px) {
    .trust-bar { font-size: 0.72rem; }
    .trust-bar .container { gap: 0.35rem; }
    .trust-item svg { display: none; }

    .category-grid { grid-template-columns: 1fr; }
    .vehicle-grid { grid-template-columns: 1fr; }
    .search-form { grid-template-columns: 1fr; }

    .hero__title { font-size: 2.5rem; }

    .site-logo__text { font-size: 1.35rem; }
}

/* ==========================================================================
   20. SEITEN-TEMPLATES: Über uns · Finanzierung · Ankauf · Kontakt
   ========================================================================== */

/* ── Shared: Section-Intro centered ──────────────────────────────────────── */
.section-intro--center { text-align: center; max-width: 680px; margin-inline: auto; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-desc { color: var(--charcoal-soft); font-size: 1.05rem; line-height: 1.75; margin-top: 0.75rem; }

/* ── Shared: Platzhalter-Box ─────────────────────────────────────────────── */
.about-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--cream-warm);
    border: 2px dashed var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--muted);
}
.about-placeholder svg { width: 48px; height: 48px; opacity: 0.4; }
.about-placeholder span { font-size: 0.85rem; }
.about-placeholder--landscape { aspect-ratio: 16/5; border-radius: 0; border-inline: none; }

/* ── Shared: Prozess-Schritte ────────────────────────────────────────────── */
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 4vw, 2.5rem);
    counter-reset: step-counter;
}
.process-step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.75rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--terracotta);
}
.process-step__num {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-pill);
    background: var(--terracotta);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}
.process-step__body h3 {
    font-size: 1.15rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}
.process-step__body p { color: var(--charcoal-soft); font-size: 0.95rem; line-height: 1.65; margin: 0; }

/* ── Shared: pm-form (helles Formular) ───────────────────────────────────── */
.pm-form { display: flex; flex-direction: column; gap: 1.25rem; }
.pm-form__row { display: grid; gap: 1rem; }
.pm-form__row--2 { grid-template-columns: 1fr 1fr; }
.pm-form__row--3 { grid-template-columns: 1fr 1fr 1fr; }
.pm-form__field { display: flex; flex-direction: column; gap: 0.4rem; }
.pm-form__label { font-size: 0.875rem; font-weight: 600; color: var(--charcoal); }
.pm-form__label span { color: var(--terracotta); }
.pm-form__input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    color: var(--charcoal);
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
    resize: vertical;
}
.pm-form__input:focus {
    outline: none;
    border-color: var(--petrol);
    box-shadow: 0 0 0 3px rgba(31, 78, 95, 0.12);
}
.pm-form__input::placeholder { color: var(--muted); }
.pm-form__select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238A847B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.875rem center; padding-right: 2.5rem; }
.pm-form__textarea { min-height: 120px; }
.pm-form__divider { border: none; border-top: 1px solid var(--border); margin: 0; }
.pm-form__file-wrap { display: flex; flex-direction: column; gap: 0.4rem; }
.pm-form__file {
    padding: 0.75rem;
    border: 1.5px dashed var(--border);
    border-radius: var(--radius-md);
    background: var(--cream);
    font-size: 0.9rem;
    color: var(--charcoal-soft);
    cursor: pointer;
}
.pm-form__file-hint { font-size: 0.8rem; color: var(--muted); margin: 0; }
.pm-form__submit { display: flex; flex-direction: column; gap: 0.75rem; }
.pm-form__btn { position: relative; }
.pm-form__consent { font-size: 0.78rem; color: var(--muted); line-height: 1.5; margin: 0; }
.pm-form__consent a { color: var(--petrol); }
.pm-form__feedback { min-height: 1.2em; font-size: 0.95rem; font-weight: 500; border-radius: var(--radius-md); }
.pm-form__feedback--success { color: #1a7a4a; background: #eaf6f0; padding: 0.875rem 1rem; }
.pm-form__feedback--error   { color: #b91c1c; background: #fef2f2; padding: 0.875rem 1rem; }

/* ── Über uns ────────────────────────────────────────────────────────────── */
.about-intro { padding-block: clamp(3rem, 7vw, 5rem); background: var(--cream); }
.about-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}
.about-intro__heading {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: var(--charcoal);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}
.about-intro__text p { color: var(--charcoal-soft); line-height: 1.75; margin-bottom: 1rem; }
.about-intro__text .btn { margin-top: 0.5rem; }

.about-numbers {
    padding-block: clamp(2.5rem, 5vw, 4rem);
    background: var(--petrol);
}
.about-numbers__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}
.about-number-card__value {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--cream);
    line-height: 1;
}
.about-number-card__label {
    display: block;
    font-size: 0.9rem;
    color: rgba(245, 241, 234, 0.65);
    margin-top: 0.4rem;
}

.about-intro__photo {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
}

.about-photo-full { line-height: 0; }
.about-photo-full__img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
}

.about-values {
    padding-block: clamp(3rem, 7vw, 5rem);
    background: var(--white);
}
.about-values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.about-value-card {
    padding: 2rem 1.75rem;
    border-radius: var(--radius-lg);
    background: var(--cream);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.about-value-card__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-pill);
    background: rgba(31, 78, 95, 0.1);
    color: var(--petrol);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}
.about-value-card__icon svg { width: 24px; height: 24px; }
.about-value-card h3 { font-size: 1.2rem; color: var(--charcoal); margin: 0; }
.about-value-card p { color: var(--charcoal-soft); font-size: 0.95rem; line-height: 1.65; margin: 0; }

.about-founder {
    padding-block: clamp(3rem, 7vw, 5rem);
    background: var(--cream);
}
.about-founder__grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}
.about-founder__text h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); color: var(--charcoal); margin-bottom: 1.25rem; }
.about-founder__text p { color: var(--charcoal-soft); line-height: 1.75; margin-bottom: 1rem; }
.about-quote {
    border-left: 3px solid var(--terracotta);
    padding: 0.75rem 0 0.75rem 1.5rem;
    margin: 1.5rem 0 0;
    font-style: italic;
    color: var(--charcoal-soft);
    font-size: 1.05rem;
}
.about-quote cite { display: block; font-style: normal; font-weight: 600; color: var(--petrol); margin-top: 0.5rem; font-size: 0.9rem; }

.about-founder__photo {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
}

/* ── Mitarbeiter ─────────────────────────────────────────────────────────── */
.about-team { padding-block: clamp(3rem, 7vw, 5rem); }
.about-team__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.about-staff-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    text-align: center;
    transition: box-shadow var(--t-base), transform var(--t-base);
}
.about-staff-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.about-staff-card__photo-wrap {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--cream);
}
.about-staff-card__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-placeholder--staff {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-placeholder--staff svg { width: 48px; height: 48px; opacity: 0.35; }
.about-staff-card__body {
    padding: 0.875rem 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.about-staff-card__name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--charcoal);
}
.about-staff-card__role {
    font-size: 0.8rem;
    color: var(--petrol);
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
@media (max-width: 1100px) {
    .about-team__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
    .about-team__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Finanzierung ────────────────────────────────────────────────────────── */
.fin-intro { padding-block: clamp(3rem, 7vw, 5rem); background: var(--cream); }
.fin-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}
.fin-intro__heading { font-size: clamp(1.75rem, 4vw, 2.5rem); color: var(--charcoal); line-height: 1.2; margin-bottom: 1.25rem; }
.fin-intro__grid p { color: var(--charcoal-soft); line-height: 1.75; margin-bottom: 1rem; }

.fin-intro__highlight-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.fin-partner-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}
.fin-partner-badge strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.fin-partner-badge span { display: block; font-family: var(--font-heading); font-size: 1.5rem; color: var(--charcoal); font-weight: 700; }
.fin-quick-facts { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.fin-quick-facts li { display: flex; align-items: center; gap: 0.625rem; color: var(--charcoal-soft); font-size: 0.95rem; }
.fin-quick-facts svg { width: 16px; height: 16px; color: var(--terracotta); flex: none; }

.fin-steps { padding-block: clamp(3rem, 7vw, 5rem); background: var(--white); }
.fin-steps .process-steps { margin-top: 0; }

.fin-benefits { padding-block: clamp(3rem, 7vw, 5rem); background: var(--cream); }
.fin-benefits__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.fin-benefit-card {
    padding: 2rem 1.75rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.fin-benefit-card__icon {
    width: 52px; height: 52px;
    border-radius: var(--radius-pill);
    background: rgba(193, 122, 91, 0.12);
    color: var(--terracotta);
    display: flex; align-items: center; justify-content: center;
}
.fin-benefit-card__icon svg { width: 22px; height: 22px; }
.fin-benefit-card h3 { font-size: 1.1rem; color: var(--charcoal); margin: 0; }
.fin-benefit-card p { color: var(--charcoal-soft); font-size: 0.9rem; line-height: 1.65; margin: 0; }

.fin-cta {
    background: var(--petrol-dark);
    padding-block: clamp(3rem, 6vw, 4.5rem);
}
.fin-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.fin-cta__title { font-size: clamp(1.5rem, 3vw, 2.25rem); color: var(--white); margin: 0 0 0.5rem; }
.fin-cta__sub { color: rgba(245, 241, 234, 0.7); margin: 0; }
.fin-cta__actions { display: flex; gap: 1rem; flex-wrap: wrap; flex: none; }

/* ── Ankauf ──────────────────────────────────────────────────────────────── */
.ankauf-intro { padding-block: clamp(3rem, 7vw, 5rem); background: var(--cream); }
.ankauf-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.ankauf-type-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column; gap: 0.75rem;
    border-bottom: 3px solid var(--petrol);
}
.ankauf-type-card__icon {
    width: 52px; height: 52px;
    border-radius: var(--radius-pill);
    background: rgba(31, 78, 95, 0.1);
    color: var(--petrol);
    display: flex; align-items: center; justify-content: center;
}
.ankauf-type-card__icon svg { width: 24px; height: 24px; }
.ankauf-type-card h3 { font-size: 1.15rem; color: var(--charcoal); margin: 0; }
.ankauf-type-card p { color: var(--charcoal-soft); font-size: 0.9rem; line-height: 1.65; margin: 0; }

.ankauf-why { padding-block: clamp(3rem, 7vw, 5rem); background: var(--white); }
.ankauf-why__list { max-width: 680px; margin-inline: auto; padding-top: 0; border-top: none !important; }

.ankauf-process { padding-block: clamp(3rem, 7vw, 5rem); background: var(--cream); }

.ankauf-form-section {
    padding-block: clamp(3rem, 7vw, 5rem);
    background: var(--white);
}
.ankauf-form-section .pm-form { max-width: 780px; margin-inline: auto; }

/* ── Kontakt ─────────────────────────────────────────────────────────────── */
.contact-section { padding-block: clamp(3rem, 7vw, 5rem); background: var(--cream); }
.contact-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: start;
}

.contact-info__title,
.contact-form-col__title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--charcoal);
    margin-bottom: 1.75rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.contact-info-item__icon {
    width: 44px; height: 44px; flex: none;
    border-radius: var(--radius-pill);
    background: rgba(31, 78, 95, 0.1);
    color: var(--petrol);
    display: flex; align-items: center; justify-content: center;
}
.contact-info-item__icon svg { width: 20px; height: 20px; }
.contact-info-item__icon--wa { background: rgba(37, 211, 102, 0.12); color: #25D366; }
.contact-info-item__label { display: block; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 0.2rem; }
.contact-info-item__value { display: block; color: var(--charcoal); font-weight: 500; text-decoration: none; }
.contact-info-item__value:hover { color: var(--petrol); }
.contact-info-item__address { font-style: normal; line-height: 1.6; }

.contact-hours { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.contact-hours__title { font-size: 1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.875rem; }
.contact-hours__list { display: flex; flex-direction: column; gap: 0.4rem; }
.contact-hours__row { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.9rem; }
.contact-hours__row dt { color: var(--charcoal); font-weight: 500; }
.contact-hours__row dd { color: var(--charcoal-soft); }

.contact-form-col { background: var(--white); padding: 2.5rem; border-radius: var(--radius-xl); box-shadow: var(--shadow-md); }

.contact-map-section { line-height: 0; position: relative; }
.contact-map-section iframe { display: block; width: 100%; border: none; }
.contact-map-section__link { text-align: right; padding: 0.5rem var(--container-pad); background: var(--cream-warm); }
.contact-map-section__link a { font-size: 0.85rem; color: var(--petrol); }

/* ── Responsive: Alle Seiten ─────────────────────────────────────────────── */
@media (max-width: 900px) {
    .about-intro__grid,
    .about-founder__grid,
    .fin-intro__grid,
    .contact-layout { grid-template-columns: 1fr; }

    .about-founder__grid { grid-template-columns: 1fr; }

    .about-numbers__grid { grid-template-columns: repeat(2, 1fr); }

    .about-values__grid,
    .fin-benefits__grid,
    .ankauf-types,
    .process-steps { grid-template-columns: 1fr 1fr; }

    .fin-cta__inner { flex-direction: column; align-items: flex-start; }
    .contact-form-col { padding: 1.75rem; }
}

@media (max-width: 600px) {
    .about-values__grid,
    .fin-benefits__grid,
    .ankauf-types,
    .process-steps,
    .about-numbers__grid { grid-template-columns: 1fr; }

    .pm-form__row--2,
    .pm-form__row--3 { grid-template-columns: 1fr; }

    .fin-cta__actions { flex-direction: column; width: 100%; }
    .fin-cta__actions .btn { justify-content: center; }
}
