/* ==========================================================================
   GT MOOVE - DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

/* Variables & Custom Properties */
:root {
    /* Color Palette */
    --color-bg: #004225;
    --color-bg-alt: #00331c;
    --color-card-bg: rgba(0, 54, 30, 0.65);
    --color-card-border: rgba(217, 234, 31, 0.08);
    --color-card-border-champagne: rgba(223, 197, 151, 0.15);
    
    --color-lime: #d9ea1f;
    --color-lime-rgb: 217, 234, 31;
    --color-champagne: #dfc597;
    --color-champagne-light: #efe0c6;
    --color-champagne-rgb: 223, 197, 151;
    --color-forest: #153028;
    --color-forest-light: #183b37;
    --color-forest-rgb: 21, 48, 40;
    
    --color-text: #f5f7f6;
    --color-text-muted: #bcc5c1;
    --color-white: #ffffff;
    
    /* Typography */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    
    /* Spacing & Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

/* Base Reset & Core Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    position: relative;
}

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

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

ul {
    list-style: none;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.grid {
    display: grid;
    gap: 40px;
}

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

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

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

.align-center {
    align-items: center;
}

/* Typography Classes */
h1, h2, h3, h4, .section-title {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.15;
    color: var(--color-white);
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-lime);
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3.5rem;
    }
}

.section-desc {
    color: var(--color-text-muted);
    font-size: 1.15rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.section-lead {
    font-size: 1.3rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    font-weight: 300;
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-white) 30%, var(--color-champagne) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.serif-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-lime);
    color: var(--color-bg);
}

.btn-primary:hover {
    background-color: var(--color-white);
    color: var(--color-bg);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(217, 234, 31, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-bg);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-text);
    border-color: rgba(217, 234, 31, 0.3);
}

.btn-outline:hover {
    border-color: var(--color-lime);
    background-color: rgba(217, 234, 31, 0.05);
    color: var(--color-lime);
}

.btn-block {
    display: flex;
    width: 100%;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background-color: rgba(217, 234, 31, 0.15);
    border: 1px solid rgba(217, 234, 31, 0.3);
    color: var(--color-lime);
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Glassmorphism utility */
.glass-panel {
    background: var(--color-card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-card-border);
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 130px;
    display: flex;
    align-items: center;
    transition: height var(--transition-smooth), background-color var(--transition-smooth), backdrop-filter var(--transition-smooth);
}

.main-header.scrolled {
    background-color: rgba(0, 66, 37, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    height: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    height: 260px;
    width: auto;
    max-width: 340px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: height var(--transition-smooth), max-width var(--transition-smooth), transform var(--transition-smooth);
    will-change: height, transform;
}

.main-header.scrolled .brand-logo {
    height: 65px;
    max-width: 200px;
}

.footer-brand .brand-logo {
    height: 120px;
}

.brand-text {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.nav-toggle .bar {
    width: 28px;
    height: 2px;
    background-color: var(--color-text);
    transition: var(--transition-smooth);
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav a:not(.btn) {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

.main-nav a:not(.btn):hover {
    color: var(--color-white);
}

/* Mobile Nav Styles */
@media (max-width: 991px) {
    .main-header {
        height: 105px;
    }
    
    .main-header.scrolled {
        height: 68px;
    }
    
    .brand-logo {
        height: 180px;
        width: auto;
        max-width: min(240px, 60vw);
    }
    
    .main-header.scrolled .brand-logo {
        height: 48px;
        max-width: 170px;
    }

    .nav-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        transform: translateX(100%);
        visibility: hidden;
        width: 82%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--color-bg-alt);
        padding: 90px 32px 40px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        transition: transform var(--transition-smooth), visibility var(--transition-smooth);
        z-index: 1050;
    }
    
    .main-nav.active {
        transform: translateX(0);
        visibility: visible;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }
    
    .main-nav a:not(.btn) {
        font-size: 1.2rem;
    }
    
    /* Toggle active state */
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: var(--color-lime);
    }
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: var(--color-lime);
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 60px;
    background: radial-gradient(circle at 70% 30%, rgba(0, 54, 30, 0.4) 0%, #004225 70%);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 80%, rgba(217, 234, 31, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 780px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.8rem;
    }
}

.hero-lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero-lead {
        font-size: 1.4rem;
    }
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    opacity: 0.7;
    z-index: 2;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-text-muted);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--color-lime);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.6s infinite;
}

@keyframes scroll-wheel {
    0% { top: 8px; opacity: 1; }
    50% { top: 18px; opacity: 0; }
    100% { top: 8px; opacity: 1; }
}

/* Section Common Header */
.section-center-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-center-header .section-title {
    margin-bottom: 16px;
}

/* Philosophie Section */
.philosophie-section {
    padding: 100px 0;
    background-color: var(--color-bg-alt);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.benefit-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border-champagne);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: transparent;
    transition: var(--transition-fast);
}

.benefit-card:hover {
    transform: translateX(8px);
    border-color: rgba(217, 234, 31, 0.2);
}

.benefit-card:hover::before {
    background-color: var(--color-lime);
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.champagne-glow {
    background-color: rgba(223, 197, 151, 0.06);
    border: 1px solid rgba(223, 197, 151, 0.2);
    color: var(--color-champagne);
    box-shadow: 0 4px 20px rgba(223, 197, 151, 0.08);
}

.lime-glow {
    background-color: rgba(217, 234, 31, 0.05);
    border: 1px solid rgba(217, 234, 31, 0.2);
    color: var(--color-lime);
    box-shadow: 0 4px 20px rgba(217, 234, 31, 0.05);
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    font-weight: 300;
}

/* Sourcing Journey (Timeline Accordion) */
.reise-section {
    padding: 100px 0;
}

.journey-timeline {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.timeline-step {
    background-color: var(--color-bg-alt);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.timeline-step.active {
    border-color: rgba(223, 197, 151, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.step-header {
    display: flex;
    align-items: center;
    padding: 24px 32px;
    cursor: pointer;
    user-select: none;
    transition: var(--transition-fast);
}

.step-header:hover {
    background-color: rgba(255, 255, 255, 0.01);
}

.step-num {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-lime);
    width: 40px;
}

.timeline-step.active .step-num {
    color: var(--color-bg);
    background-color: var(--color-champagne);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-size: 0.9rem;
}

.step-header h3 {
    font-size: 1.4rem;
    flex-grow: 1;
}

.toggle-icon {
    font-size: 1.5rem;
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
}

.timeline-step.active .toggle-icon {
    transform: rotate(45deg);
    color: var(--color-lime);
}

.step-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 32px;
    opacity: 0;
    transition: max-height var(--transition-smooth), padding var(--transition-smooth), opacity var(--transition-smooth);
}

.timeline-step.active .step-content {
    max-height: 200px;
    padding-bottom: 32px;
    opacity: 1;
}

.step-content p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    font-weight: 300;
}

/* ==========================================================================
   IMPRESSIONS SECTION (INTERACTIVE SHOWCASE WITH SWIPE)
   ========================================================================== */
.impressions-section,
.inspiration-section {
    padding: 110px 0 90px;
    background: radial-gradient(circle at 50% 25%, rgba(0, 66, 37, 0.45) 0%, var(--color-bg) 75%);
    border-top: 1px solid rgba(223, 197, 151, 0.12);
    border-bottom: 1px solid rgba(223, 197, 151, 0.08);
    position: relative;
    overflow: hidden;
}

.impressions-header-container {
    margin-bottom: 40px;
}

.impressions-stage-wrapper {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.impressions-stage {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
}

.impressions-card {
    background: radial-gradient(circle at center, rgba(0, 66, 37, 0.6) 0%, rgba(3, 18, 10, 0.98) 100%);
    border: 1px solid var(--color-card-border-champagne);
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(223, 197, 151, 0.25);
    overflow: hidden;
    position: relative;
    width: 100%;
    transition: opacity 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.impressions-media {
    position: relative;
    width: 100%;
    height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 30px;
}

@media (max-width: 991px) {
    .impressions-media {
        height: 440px;
        padding: 24px 16px;
    }
}

@media (max-width: 576px) {
    .impressions-media {
        height: 380px;
        padding: 20px 12px;
    }
}

.impressions-glow {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217, 234, 31, 0.16) 0%, rgba(0, 66, 37, 0.25) 50%, transparent 75%);
    filter: blur(50px);
    pointer-events: none;
}

.impressions-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.75));
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    will-change: transform, opacity;
}

.impressions-card:hover .impressions-img {
    transform: scale(1.02);
}

/* Discreet Top-Left Badge & Model Chip */
.impressions-top-tag {
    position: absolute;
    top: 24px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    pointer-events: none;
}

.impressions-badge {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-lime);
    background: rgba(0, 36, 20, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 5px 12px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(217, 234, 31, 0.25);
}

.impressions-model-chip {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--color-white);
    background: rgba(0, 36, 20, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 4px 16px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(223, 197, 151, 0.25);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Discreet Bottom-Right "i" Info Button with circular outline */
.impressions-info-toggle {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 48, 26, 0.8);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1.5px solid var(--color-card-border-champagne);
    color: var(--color-lime);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 15;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.impressions-info-toggle .info-icon-circle {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    font-style: italic;
    line-height: 1;
    display: inline-block;
    transform: translateY(-1px);
}

.impressions-info-toggle:hover,
.impressions-info-toggle.active {
    background: var(--color-lime);
    color: var(--color-bg);
    border-color: var(--color-lime);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(217, 234, 31, 0.45);
}

/* Seamless Slide-Up Glassmorphism Info Drawer */
.impressions-drawer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 25;
    transform: translateY(105%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.impressions-drawer.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.impressions-drawer-panel {
    background: rgba(0, 32, 18, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid var(--color-card-border-champagne);
    padding: 24px 32px 28px;
    box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.65);
    max-height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    box-sizing: border-box;
    cursor: pointer;
}

/* Custom Sleek Scrollbar */
.impressions-drawer-panel::-webkit-scrollbar {
    width: 5px;
}
.impressions-drawer-panel::-webkit-scrollbar-track {
    background: rgba(0, 20, 10, 0.4);
}
.impressions-drawer-panel::-webkit-scrollbar-thumb {
    background: var(--color-lime);
    border-radius: 4px;
}

.impressions-drawer-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
    position: sticky;
    top: 0;
    background: rgba(0, 32, 18, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding-top: 2px;
    padding-bottom: 6px;
    margin-top: -2px;
    z-index: 10;
}

.impressions-drawer-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    line-height: 1;
    flex-shrink: 0;
}

.impressions-drawer-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    transform: scale(1.1);
}

.impressions-counter {
    font-size: 0.82rem;
    color: var(--color-lime);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.impressions-title {
    font-family: var(--font-serif);
    font-size: 2.1rem;
    color: var(--color-white);
    line-height: 1.15;
    overflow-wrap: break-word;
    word-break: break-word;
}

.impressions-desc {
    color: var(--color-text);
    font-size: 1.02rem;
    line-height: 1.65;
    margin-bottom: 24px;
    font-weight: 300;
    max-width: 900px;
    overflow-wrap: break-word;
    word-break: break-word;
}

.impressions-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.impressions-actions .btn {
    padding: 13px 28px;
    font-size: 0.95rem;
}

/* Navigation Arrow Buttons */
.impressions-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(0, 48, 26, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--color-card-border-champagne);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
}

.impressions-nav-btn.btn-prev {
    left: 0;
}

.impressions-nav-btn.btn-next {
    right: 0;
}

.impressions-nav-btn:hover {
    background: var(--color-lime);
    color: var(--color-bg);
    border-color: var(--color-lime);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 12px 30px rgba(217, 234, 31, 0.35);
}

/* Animation classes for slide changes */
.impressions-card.transitioning {
    opacity: 0;
    transform: scale(0.97);
}

.impressions-card.slide-left-out {
    opacity: 0;
    transform: translateX(-35px) scale(0.97);
}

.impressions-card.slide-right-out {
    opacity: 0;
    transform: translateX(35px) scale(0.97);
}

/* Youngtimer Matcher Section & Widget */
.matcher-section {
    padding: 100px 0;
    background-color: var(--color-bg-alt);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.matcher-intro {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.matcher-widget {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border-champagne);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-top: 40px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.widget-step {
    display: none;
    animation: fade-in 0.4s ease-out;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.widget-step.active {
    display: block;
}

@keyframes fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-indicator {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-lime);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.widget-step h3 {
    font-size: 1.8rem;
    margin-bottom: 28px;
    line-height: 1.25;
}

.option-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.option-card {
    display: flex;
    flex-direction: column;
    padding: 20px 24px;
    border-radius: var(--radius-md);
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.option-card:hover {
    background-color: rgba(255, 255, 255, 0.04);
    border-color: rgba(217, 234, 31, 0.2);
}

.option-card:active {
    transform: scale(0.98);
}

/* Radio Checked State */
.option-card:has(input[type="radio"]:checked) {
    background-color: rgba(217, 234, 31, 0.06);
    border-color: var(--color-lime);
    box-shadow: 0 4px 20px rgba(217, 234, 31, 0.05);
}

.option-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 4px;
}

.option-card:has(input[type="radio"]:checked) .option-title {
    color: var(--color-lime);
}

.option-desc {
    font-size: 0.88rem;
    color: var(--color-text-muted);
}

.widget-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    gap: 16px;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
}

/* Result Box */
.result-box {
    background-color: rgba(0, 54, 30, 0.25);
    border: 1px solid rgba(223, 197, 151, 0.3);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

@media (min-width: 768px) {
    .result-box {
        flex-direction: row;
        align-items: center;
    }
}

.result-car-media {
    flex: 0 0 45%;
    max-width: 100%;
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(223, 197, 151, 0.3);
    background-color: rgba(5, 25, 15, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    max-height: 260px;
}

.result-car-img {
    width: 100%;
    height: 100%;
    max-height: 250px;
    object-fit: contain;
    display: block;
    padding: 8px;
    transition: transform 0.5s ease;
}

.result-box:hover .result-car-img {
    transform: scale(1.03);
}

.result-car-details {
    flex: 1;
}

.result-car-name {
    font-size: 2.2rem;
    color: var(--color-lime);
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.result-car-desc {
    color: var(--color-text);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Testimonial Section */
.testimonial-section {
    padding: 120px 0;
    background: radial-gradient(circle at 30% 70%, rgba(0, 54, 30, 0.4) 0%, #004225 80%);
    position: relative;
}

.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 0 40px;
}

.quote-icon {
    font-family: var(--font-serif);
    font-size: 10rem;
    line-height: 1;
    color: var(--color-lime);
    opacity: 0.15;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.testimonial-quote {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.5;
    color: var(--color-white);
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .testimonial-quote {
        font-size: 2.4rem;
    }
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    font-size: 1.15rem;
    color: var(--color-white);
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--color-bg-alt);
}

.founders-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
    border: 1px solid var(--color-card-border-champagne);
    max-width: 520px;
    margin: 0 auto;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.founders-frame:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55), 0 0 30px rgba(226, 218, 196, 0.12);
}

.founders-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    transition: transform var(--transition-slow);
}

.founders-frame:hover .founders-img {
    transform: scale(1.02);
}

.founders-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: rgba(0, 32, 17, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.badge-names {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-champagne);
}

.badge-role {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.lead-text {
    font-size: 1.4rem;
    font-family: var(--font-serif);
    color: var(--color-lime);
    margin-bottom: 24px;
}

/* Contact / Sourcing Request Form */
.contact-section {
    padding: 100px 0;
    background: radial-gradient(circle at 80% 80%, rgba(0, 54, 30, 0.4) 0%, #004225 70%);
}

.info-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.1rem;
    color: var(--color-text);
}

.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(217, 234, 31, 0.1);
    color: var(--color-lime);
    font-weight: 700;
    font-size: 0.9rem;
}

.contact-form-container {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border-champagne);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-form {
    transition: var(--transition-smooth);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    color: var(--color-white);
    font-family: var(--font-sans);
    font-size: 0.98rem;
    transition: var(--transition-fast);
    outline: none;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--color-lime);
    box-shadow: 0 0 10px rgba(217, 234, 31, 0.15);
}

/* Style Select options natively on dark bg */
.form-group select option {
    background-color: var(--color-bg-alt);
    color: var(--color-white);
}

/* Success Message Container */
.form-success-message {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 0;
    animation: fade-in 0.6s ease-out;
}

.form-success-message.active {
    display: flex;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(217, 234, 31, 0.1);
    color: var(--color-lime);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.form-success-message h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.form-success-message p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 400px;
}

/* Footer Section */
.main-footer {
    background-color: #00361e;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 80px 0 40px;
    color: var(--color-text-muted);
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
    }
}

.footer-brand {
    max-width: 320px;
}

.footer-brand .logo-link {
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-links h4 {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-white);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-legal {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 768px) {
    .footer-legal {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-legal p {
    font-size: 0.85rem;
}

.legal-links {
    display: flex;
    gap: 24px;
    font-size: 0.85rem;
}

.legal-links a:hover {
    color: var(--color-white);
}

/* Scroll Animation Hooks (CSS reveal styling) */
.reveal-left, 
.reveal-right, 
.reveal-up {
    opacity: 0;
    transition: transform var(--transition-slow), opacity var(--transition-slow);
}

.reveal-left {
    transform: translateX(-30px);
}

.reveal-right {
    transform: translateX(30px);
}

.reveal-up {
    transform: translateY(30px);
}

.reveal-left.active, 
.reveal-right.active, 
.reveal-up.active {
    opacity: 1;
    transform: translate(0);
}

/* ==========================================================================
   LEGAL SUBPAGES (IMPRESSUM & DATENSCHUTZ)
   ========================================================================== */
.legal-page-header {
    padding: 140px 0 60px;
    background: radial-gradient(circle at 50% 0%, rgba(217, 234, 31, 0.08) 0%, rgba(0, 66, 37, 0) 70%), var(--color-bg);
    border-bottom: 1px solid rgba(223, 197, 151, 0.1);
}

.legal-page-header .btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-champagne);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 24px;
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.legal-page-header .btn-back:hover {
    color: var(--color-white);
    transform: translateX(-4px);
}

.legal-body {
    padding: 60px 0 120px;
    background-color: var(--color-bg-alt);
}

.legal-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border-champagne);
    border-radius: var(--radius-md);
    padding: 48px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.legal-card h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--color-champagne);
    margin-top: 36px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(223, 197, 151, 0.15);
}

.legal-card h2:first-child {
    margin-top: 0;
}

.legal-card h3 {
    font-size: 1.25rem;
    color: var(--color-white);
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-card p, .legal-card ul {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.legal-card ul {
    padding-left: 24px;
}

.legal-card li {
    margin-bottom: 8px;
}

.legal-card strong {
    color: var(--color-white);
}

.legal-card a {
    color: var(--color-champagne);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition-fast);
}

.legal-card a:hover {
    color: var(--color-lime);
}

/* ==========================================================================
   MOBILE RESPONSIVE ENHANCEMENTS (FORMATFÜLLEND & OVERFLOW FIX)
   ========================================================================== */
@media (max-width: 768px) {
    /* 1. Formatfüllender Container mit gleichmäßigem, symmetrischem Rand */
    .container {
        padding: 0 16px;
        width: 100%;
        max-width: 100%;
    }

    /* 2. Vertikale Sektionsabstände auf Mobilgeräten harmonisieren */
    .hero-section {
        padding-top: 95px;
        padding-bottom: 50px;
        min-height: auto;
    }

    .philosophy-section, 
    .journey-section, 
    .impressions-section,
    .inspiration-section,
    .matcher-section, 
    .about-section, 
    .contact-section {
        padding: 55px 0;
    }

    .section-center-header {
        margin-bottom: 32px;
    }

    /* 3. Typografie responsiv anpassen (keine überstehenden langen Wörter) */
    .hero-title {
        font-size: 2.15rem;
        line-height: 1.15;
        margin-bottom: 16px;
    }

    .hero-lead {
        font-size: 1.05rem;
        line-height: 1.55;
        margin-bottom: 28px;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-ctas .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .section-title {
        font-size: 1.95rem;
        line-height: 1.2;
        margin-bottom: 14px;
    }

    .section-desc {
        font-size: 0.98rem;
        line-height: 1.55;
        margin-bottom: 16px;
    }

    .section-lead {
        font-size: 1.1rem;
        margin-bottom: 24px;
    }

    /* 4. Scroll-Animationen auf Mobilgeräten vertikal statt horizontal 
          (verhindert den unschönen rechten Randüberhang) */
    .reveal-left, 
    .reveal-right {
        transform: translateY(20px);
    }

    /* 5. Ablauf-Timeline formatfüllend & griffig */
    .step-header {
        padding: 16px 14px;
    }

    .step-header h3 {
        font-size: 1.15rem;
    }

    .step-num {
        width: 32px;
        font-size: 1rem;
    }

    .step-content {
        padding: 0 14px;
    }

    .timeline-step.active .step-content {
        padding-bottom: 18px;
    }

    .step-content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* 6. Nutzen-Karten */
    .benefit-cards {
        gap: 16px;
    }

    .benefit-card {
        padding: 22px 18px;
    }

    .benefit-card h3 {
        font-size: 1.25rem;
    }

    /* 6b. Inspiration Showcase (Mobil formatfüllend, randlos & touch-optimiert) */
    .impressions-stage-wrapper {
        padding: 0 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        display: block;
    }

    .impressions-stage {
        width: 100%;
        max-width: 100%;
    }

    .impressions-nav-btn {
        display: none; /* Auf Mobilgeräten wird nativ gewischt */
    }

    .impressions-card {
        border-radius: var(--radius-md);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .impressions-media {
        padding: 16px 10px;
        height: clamp(260px, 58vw, 400px);
    }

    .impressions-img {
        max-height: 100%;
        width: 100%;
        object-fit: contain;
    }

    .impressions-top-tag {
        top: 16px;
        left: 16px;
        gap: 8px;
    }

    .impressions-model-chip {
        font-size: 0.95rem;
        padding: 3px 12px;
    }

    .impressions-info-toggle {
        bottom: 16px;
        right: 16px;
        width: 44px;
        height: 44px;
    }

    .impressions-drawer-panel {
        padding: 16px 18px 20px;
        max-height: 100%;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .impressions-drawer-header {
        position: sticky;
        top: -16px;
        background: rgba(0, 26, 14, 0.98);
        padding: 6px 0;
        margin-top: -6px;
        margin-bottom: 8px;
        border-bottom: 1px solid rgba(223, 197, 151, 0.2);
        z-index: 10;
    }

    .impressions-drawer-close {
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(223, 197, 151, 0.4);
        color: var(--color-white);
        font-size: 1.15rem;
    }

    .impressions-title {
        font-size: 1.25rem;
        line-height: 1.2;
    }

    .impressions-desc {
        font-size: 0.92rem;
        line-height: 1.55;
        margin-bottom: 16px;
        cursor: pointer;
    }

    .impressions-actions {
        width: 100%;
    }

    .impressions-actions .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 14px 16px;
        font-size: 0.95rem;
        box-sizing: border-box;
    }

    /* 7. Youngtimer-Matcher Widget (Mobil 100% formatfüllend & überhangsfrei) */
    .matcher-intro {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .matcher-widget {
        padding: 20px 14px;
        margin-top: 20px;
        border-radius: var(--radius-md);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    .widget-step {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .widget-step h3 {
        font-size: 1.25rem;
        margin-bottom: 16px;
        line-height: 1.25;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .option-list {
        gap: 10px;
        margin-bottom: 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .option-card {
        padding: 14px 12px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .option-title {
        font-size: 0.98rem;
        line-height: 1.35;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .option-desc {
        font-size: 0.84rem;
        line-height: 1.45;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    /* Auf Mobiltelefonen Buttons vertikal anordnen: Primärer CTA oben, Restart/Zurück darunter */
    .widget-navigation {
        display: flex;
        flex-direction: column-reverse;
        gap: 10px;
        width: 100%;
        padding-top: 16px;
        box-sizing: border-box;
    }

    .widget-navigation .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 14px 16px;
        font-size: 0.95rem;
        white-space: normal;
        box-sizing: border-box;
    }

    .result-box {
        padding: 16px 12px;
        gap: 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    .result-car-media {
        width: 100%;
        max-width: 100%;
        min-height: 150px;
        max-height: 200px;
        flex: 0 0 auto;
        box-sizing: border-box;
    }

    .result-car-img {
        width: 100%;
        height: 100%;
        max-height: 190px;
        object-fit: contain;
    }

    .result-car-details {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .result-car-name {
        font-size: 1.45rem;
        line-height: 1.25;
        margin-bottom: 10px;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .result-car-desc {
        font-size: 0.92rem;
        line-height: 1.55;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    /* 8. Kontaktformular & Info-Box */
    .contact-grid {
        gap: 32px;
    }

    .contact-form-container {
        padding: 24px 18px;
        border-radius: var(--radius-md);
    }

    .info-list {
        margin-top: 24px;
        gap: 12px;
    }

    .info-item {
        font-size: 0.98rem;
    }

    .form-group {
        margin-bottom: 18px;
    }

    /* 9. Rechtliche Seiten */
    .legal-card {
        padding: 24px 16px;
        border-radius: var(--radius-md);
    }

    .legal-page-header {
        padding: 100px 0 35px;
    }

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

    /* 10. Footer */
    .main-footer {
        padding: 50px 0 30px;
    }

    .footer-container {
        gap: 32px;
    }
}


