        /* ============================================
           RESET & GRUNDLAGEN
           ============================================ */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* ============================================
           DESIGN TOKENS
           ============================================ */
        :root {
            --color-bg: #0A0E14;
            --color-bg-lighter: #141922;
            --color-text: #E8E6E3;
            --color-text-muted: #A0A0A0;
            --color-accent: #D4A574;
            --color-accent-dark: #B8956C;
            
            --font-serif: 'Fraunces', Georgia, serif;
            --font-sans: 'Spectral', Georgia, serif;
            
            --spacing-xs: 0.5rem;
            --spacing-sm: 1rem;
            --spacing-md: 2rem;
            --spacing-lg: 4rem;
            --spacing-xl: 8rem;
        }

        /* ============================================
           TYPOGRAFIE
           ============================================ */
        body {
            background-color: var(--color-bg);
            color: var(--color-text);
            font-family: var(--font-sans);
            font-weight: 300;
            font-size: 18px;
            line-height: 1.85;
            -webkit-font-smoothing: antialiased;
        }

        /* Subtle grain overlay for depth */
        body::before {
            content: '';
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            z-index: 9999;
            pointer-events: none;
            opacity: 0.028;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
            background-repeat: repeat;
            background-size: 256px 256px;
        }

        h1, h2, h3 {
            font-family: var(--font-serif);
            font-weight: 300;
            line-height: 1.2;
        }

        h1 { font-size: clamp(2.5rem, 6vw, 5rem); letter-spacing: -0.02em; }
        h2 { font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: -0.01em; }
        h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

        /* ============================================
           LAYOUT
           ============================================ */
        .page-content { display: none; }
        .page-content.active {
            display: block;
            animation: fadeInPage 0.4s ease-out;
        }

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

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--spacing-md);
        }

        .container-narrow {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 var(--spacing-md);
        }

        section { padding: var(--spacing-xl) 0; }

        /* ============================================
           NAVIGATION
           ============================================ */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 14, 20, 0.92);
            backdrop-filter: blur(20px);
            z-index: 100;
            border-bottom: 1px solid rgba(212, 165, 116, 0.1);
        }

        nav .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: var(--spacing-sm);
            padding-bottom: var(--spacing-sm);
        }

        nav .logo {
            font-family: var(--font-serif);
            font-size: 1rem;
            color: var(--color-accent);
            text-decoration: none;
            letter-spacing: 0.05em;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            cursor: pointer;
        }

        /* Animated Logo Flipper */
        .logo-flipper {
            width: 42px;
            height: 42px;
            perspective: 300px;
            flex-shrink: 0;
        }

        .logo-flipper-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
            transform-style: preserve-3d;
        }

        .logo-flipper-inner.flipped {
            transform: rotateY(180deg);
        }

        .logo-face {
            position: absolute;
            top: 0; left: 0;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-face svg {
            display: block;
            width: 100%;
            height: 100%;
        }

        .logo-face-back {
            transform: rotateY(180deg);
        }

        .logo-face-front svg circle {
            fill: none;
            stroke: var(--color-accent);
            stroke-width: 16px;
        }

        .logo-face-back svg path {
            fill: var(--color-accent);
        }

        nav ul {
            display: flex;
            gap: var(--spacing-sm);
            list-style: none;
        }

        nav a {
            color: var(--color-text-muted);
            text-decoration: none;
            font-size: 0.9rem;
            letter-spacing: 0.05em;
            transition: color 0.3s ease;
            cursor: pointer;
            padding: 6px 10px;
        }

        nav a:hover { color: var(--color-accent); }

        nav a.active {
            color: var(--color-accent);
        }

        nav a.nav-link.active {
            outline: none;
            border-bottom: 1px solid var(--color-accent);
            padding-bottom: 4px;
        }

        nav a.nav-link:focus:not(.active) {
            outline: none;
        }

        nav a.nav-link:focus-visible:not(.active) {
            outline: 1px solid rgba(191, 161, 111, 0.4);
            outline-offset: 4px;
        }

        /* Mobile Navigation */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--color-accent);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* ============================================
           HERO
           ============================================ */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            padding: 120px 0 60px;
        }

        .hero-photo {
            position: relative;
            padding-top: 66.67%; /* Seitenverhältnis 6000:4000 = 3:2 */
            margin-top: 79px; /* Nav-Höhe */
            overflow: hidden;
        }
        .hero-photo-img {
            position: absolute;
            top: 0; left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
        }
        .hero-photo .bg-overlay {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(
                to bottom,
                rgba(10, 14, 20, 0.45) 0%,
                rgba(10, 14, 20, 0.25) 50%,
                rgba(10, 14, 20, 0.55) 100%
            );
            z-index: 1;
        }
        .hero-photo .hero-content {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding-top: 8%;
            padding-bottom: 6%;
            z-index: 2;
            text-align: center;
        }
        .hero-photo .hero-subtitle {
            margin-top: 0.5rem;
        }
        .hero-photo .hero-description {
            margin-top: auto;
        }

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

        .hero h1 {
            margin-bottom: var(--spacing-md);
            color: var(--color-text);
        }

        .hero-subtitle {
            font-family: var(--font-serif);
            font-size: clamp(1.2rem, 2.5vw, 1.8rem);
            color: var(--color-accent);
            font-style: italic;
            margin-bottom: var(--spacing-lg);
            letter-spacing: 0.04em;
        }

        .hero-description {
            color: var(--color-text-muted);
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.1rem;
        }
        .hero-image-wrapper {
            position: relative;
            display: inline-block;
            margin: var(--spacing-lg) auto 0;
        }

        .hero-image-wrapper::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 110%;
            height: 110%;
            border-radius: 0;
            background: radial-gradient(
                circle,
                rgba(212, 165, 116, 0.18) 0%,
                rgba(212, 165, 116, 0.08) 40%,
                rgba(212, 165, 116, 0.02) 65%,
                transparent 80%
            );
            animation: heroGlow 6s ease-in-out infinite;
            pointer-events: none;
            z-index: 0;
        }

        @keyframes heroGlow {
            0%, 100% {
                opacity: 0.6;
                transform: translate(-50%, -50%) scale(1);
            }
            50% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1.12);
            }
        }

        .hero-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            padding: 0.5rem var(--spacing-lg);
            background: var(--color-bg);
        }
        .hero-divider__line {
            flex: 1;
            height: 1px;
            background: linear-gradient(to right, transparent, rgba(212, 165, 116, 0.4), transparent);
        }
        .hero-divider__ornament {
            width: 80px;
            height: 80px;
            flex-shrink: 0;
            opacity: 0.7;
        }

        .hero-image {
            position: relative;
            z-index: 1;
            display: block;
            width: 320px;
            height: 320px;
            max-width: 80vw;
            max-height: 80vw;
            border-radius: 0;
            object-fit: contain;
            opacity: 0.85;
            filter: drop-shadow(0 0 40px rgba(212, 165, 116, 0.2));
        }

        /* ============================================
           PAGE HERO (Unterseiten)
           ============================================ */
        .page-hero {
            min-height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 150px 0 40px;
        }

        #page-programm .page-hero {
            min-height: auto;
            align-items: flex-end;
            padding-bottom: var(--spacing-md);
        }

        .page-hero h1 {
            margin-bottom: var(--spacing-md);
        }

        /* ============================================
           PAGE HERO PHOTO (Unterseiten mit Hintergrundbild)
           ============================================ */
        .page-hero-photo {
            position: relative;
            min-height: 50vh;
            margin-top: 79px;
            padding: 150px 0 40px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .page-hero-photo__img {
            position: absolute;
            top: 0; left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
            overflow: hidden;
        }

        .page-hero-photo .bg-overlay {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(
                to bottom,
                rgba(10, 14, 20, 0.5) 0%,
                rgba(10, 14, 20, 0.25) 40%,
                rgba(10, 14, 20, 0.65) 100%
            );
            z-index: 1;
        }

        .page-hero-photo__content {
            position: relative;
            z-index: 2;
            padding: 0 var(--spacing-lg);
        }

        .page-hero-photo__content h1 {
            margin-bottom: 0.4rem;
            color: #000000;
        }

        .page-hero-photo__content .hero-subtitle {
            font-size: clamp(1.2rem, 2.5vw, 1.8rem);
            color: #111111;
        }

        /* ============================================
           SECTIONS
           ============================================ */
        .section-dark { background-color: var(--color-bg); }
        .section-light {
            background-color: var(--color-bg-lighter);
            position: relative;
        }

        /* Soft gradient transitions between sections */
        .section-light::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 80px;
            background: linear-gradient(to bottom, var(--color-bg), transparent);
            pointer-events: none;
            z-index: 1;
        }
        .section-light::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 80px;
            background: linear-gradient(to top, var(--color-bg), transparent);
            pointer-events: none;
            z-index: 1;
        }

        /* Meta-Block: goldenes Layout, klar abgegrenzt vom Rest der Seite */
        .section-meta {
            background: rgba(212, 165, 116, 0.07);
            border-top: 1px solid rgba(212, 165, 116, 0.35);
            border-bottom: 1px solid rgba(212, 165, 116, 0.35);
            padding: var(--spacing-md) 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: var(--spacing-lg);
            color: var(--color-text);
        }

        .section-intro {
            text-align: center;
            max-width: 700px;
            margin: 0 auto var(--spacing-lg);
            color: var(--color-text-muted);
            font-size: 1.1rem;
        }

        /* ============================================
           CARDS / GRID
           ============================================ */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: var(--spacing-lg);
            margin-top: var(--spacing-lg);
        }

        .card {
            padding: var(--spacing-lg);
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(212, 165, 116, 0.1);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .card:hover {
            background: rgba(255, 255, 255, 0.04);
            border-color: rgba(212, 165, 116, 0.3);
            transform: translateY(-4px);
        }

        .card-title {
            font-family: var(--font-serif);
            font-size: 1.8rem;
            margin-bottom: var(--spacing-sm);
            color: var(--color-accent);
        }

        .card-subtitle {
            font-size: 0.9rem;
            color: var(--color-text-muted);
            font-style: italic;
            margin-bottom: var(--spacing-md);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .card p { color: var(--color-text-muted); line-height: 1.8; }

        /* Klickbare Programm-Karten */
        a.card-link {
            display: block;
            text-decoration: none;
            color: inherit;
            cursor: pointer;
        }

        a.card-link:hover {
            border-color: var(--color-accent);
        }

        .card-arrow {
            display: block;
            margin-top: var(--spacing-md);
            color: var(--color-accent);
            font-size: 0.95rem;
            letter-spacing: 0.05em;
            transition: transform 0.3s ease;
        }

        a.card-link:hover .card-arrow {
            transform: translateX(6px);
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: var(--spacing-lg);
            margin-top: var(--spacing-lg);
        }

        .feature-card {
            padding: var(--spacing-lg);
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(212, 165, 116, 0.1);
            border-radius: 2px;
        }

        .feature-card h3 {
            font-family: var(--font-serif);
            font-size: 1.2rem;
            color: var(--color-accent);
            margin-bottom: var(--spacing-sm);
        }

        .feature-card p {
            color: var(--color-text-muted);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Detail-Seiten Header */
        .detail-back {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--color-accent);
            text-decoration: none;
            font-size: 0.95rem;
            margin-bottom: var(--spacing-md);
            transition: transform 0.2s ease;
        }

        .detail-back:hover {
            transform: translateX(-4px);
        }

        .detail-meta {
            display: flex;
            flex-wrap: wrap;
            gap: var(--spacing-md);
            margin: var(--spacing-md) 0 var(--spacing-lg);
        }

        .detail-meta-item {
            padding: var(--spacing-sm) var(--spacing-md);
            background: rgba(212, 165, 116, 0.08);
            border: 1px solid rgba(212, 165, 116, 0.15);
            border-radius: 2px;
            font-size: 0.9rem;
            color: var(--color-text-muted);
        }

        .detail-meta-item strong {
            color: var(--color-accent);
            display: block;
            margin-bottom: 0.2rem;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        /* Balken-Variante: alle Items in einer Zeile, durchgehender Balken */
        .detail-meta-bar {
            display: flex;
            border: none;
            border-radius: 0;
            background: none;
            overflow: hidden;
        }
        .detail-meta-bar .detail-meta-item {
            flex: 1;
            padding: var(--spacing-sm) var(--spacing-md);
            background: none;
            border: none;
            border-radius: 0;
            border-right: 1px solid rgba(212, 165, 116, 0.25);
            text-align: center;
            font-size: 0.9rem;
        }
        .detail-meta-bar .detail-meta-item:last-child {
            border-right: none;
        }
        .detail-meta-bar .detail-meta-item strong {
            margin-bottom: 0.25rem;
            font-size: 0.75rem;
            letter-spacing: 0.12em;
        }
        @media (max-width: 600px) {
            .detail-meta-bar {
                flex-wrap: wrap;
            }
            .detail-meta-bar .detail-meta-item {
                flex: 1 1 50%;
                border-bottom: 1px solid rgba(212, 165, 116, 0.12);
            }
            .detail-meta-bar .detail-meta-item:nth-child(2) {
                border-right: none;
            }
            .detail-meta-bar .detail-meta-item:nth-child(3),
            .detail-meta-bar .detail-meta-item:nth-child(4) {
                border-bottom: none;
            }
        }

        /* ============================================
           QUOTE
           ============================================ */
        .quote-block {
            margin: var(--spacing-xl) 0;
            padding: var(--spacing-lg) var(--spacing-xl);
            border-left: 2px solid var(--color-accent);
            background: rgba(212, 165, 116, 0.04);
            position: relative;
        }

        .quote-text {
            font-family: var(--font-serif);
            font-size: clamp(1.6rem, 3.2vw, 2.4rem);
            font-style: italic;
            line-height: 1.65;
            color: var(--color-text);
            margin-bottom: var(--spacing-sm);
            opacity: 0.85;
        }

        /* ============================================
           BUTTONS / CTAs
           ============================================ */
        .cta {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: transparent;
            color: var(--color-accent);
            border: 1px solid var(--color-accent);
            text-decoration: none;
            font-size: 0.95rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            transition: all 0.3s ease;
            cursor: pointer;
            font-family: var(--font-sans);
        }

        .cta:hover {
            background: var(--color-accent);
            color: var(--color-bg);
        }

        .cta-primary {
            background: var(--color-accent);
            color: var(--color-bg);
        }

        .cta-primary:hover {
            background: var(--color-accent-dark);
        }

        /* ============================================
           PHASEN / LERNZIELE
           ============================================ */
        .phase {
            padding: var(--spacing-md) 0;
            border-bottom: 1px solid rgba(212, 165, 116, 0.08);
        }

        .phase:last-child { border-bottom: none; }

        .phase-header {
            display: flex;
            align-items: baseline;
            gap: var(--spacing-sm);
            margin-bottom: var(--spacing-xs);
        }

        .phase-number {
            font-family: var(--font-serif);
            font-size: 2rem;
            color: var(--color-accent);
            opacity: 0.4;
            min-width: 2.5rem;
        }

        .phase h3 { color: var(--color-text); font-size: 1.3rem; }
        .phase p { color: var(--color-text-muted); padding-left: 3.5rem; }

        /* ============================================
           TIMELINE
           ============================================ */
        .timeline {
            position: relative;
            padding-left: 2rem;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, var(--color-accent), transparent);
        }

        .timeline-item {
            position: relative;
            padding: var(--spacing-md) 0;
            padding-left: var(--spacing-md);
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -2rem;
            top: var(--spacing-md);
            width: 10px;
            height: 10px;
            background: var(--color-accent);
            border-radius: 0;
            transform: translateX(-4px);
        }

        .timeline-item h4 {
            color: var(--color-accent);
            font-family: var(--font-serif);
            font-size: 1.3rem;
            margin-bottom: var(--spacing-xs);
        }

        .timeline-item p {
            color: var(--color-text-muted);
        }

        /* ============================================
           JOURNEY PATH (Hero's Journey)
           ============================================ */
        .journey-path {
            position: relative;
            padding: var(--spacing-md) 0;
            max-width: 600px;
            margin: 0 auto;
        }

        .journey-path::before {
            content: '';
            position: absolute;
            left: 24px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(
                to bottom,
                transparent,
                rgba(212, 165, 116, 0.2) 5%,
                rgba(212, 165, 116, 0.4) 50%,
                rgba(212, 165, 116, 0.8) 95%,
                var(--color-accent)
            );
        }

        .journey-step {
            position: relative;
            display: flex;
            gap: 1.5rem;
            padding-bottom: 2.5rem;
        }

        .journey-step:last-child {
            padding-bottom: 0;
        }

        .journey-marker {
            position: relative;
            z-index: 2;
            flex-shrink: 0;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 0;
            background: var(--color-bg);
            border: 2px solid rgba(212, 165, 116, 0.3);
            transition: all 0.3s ease;
        }

        .journey-step:hover .journey-marker {
            border-color: var(--color-accent);
            box-shadow: 0 0 20px rgba(212, 165, 116, 0.2);
        }

        .journey-marker--final {
            border-color: var(--color-accent);
            background: rgba(212, 165, 116, 0.1);
            box-shadow: 0 0 25px rgba(212, 165, 116, 0.15);
        }

        .journey-number {
            font-family: var(--font-serif);
            font-size: 1.1rem;
            color: var(--color-accent);
            font-weight: 400;
        }

        .journey-content {
            flex: 1;
            padding-top: 0.3rem;
        }

        .journey-phase {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--color-accent);
            opacity: 0.7;
            margin-bottom: 0.3rem;
        }

        .journey-title {
            font-family: var(--font-serif);
            font-size: 1.25rem;
            color: var(--color-text);
            margin-bottom: 0.5rem;
            font-weight: 400;
        }

        .journey-desc {
            color: var(--color-text-muted);
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 0.5rem;
        }

        .journey-link {
            font-size: 0.8rem;
            color: var(--color-accent);
            text-decoration: none;
            letter-spacing: 0.05em;
            transition: opacity 0.2s;
        }

        .journey-link:hover {
            opacity: 0.7;
        }

        .journey-programs {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 0.6rem;
        }

        .journey-programs a {
            font-size: 0.75rem;
            color: var(--color-text-muted);
            text-decoration: none;
            padding: 0.25rem 0.7rem;
            border: 1px solid rgba(212, 165, 116, 0.15);
            border-radius: 20px;
            transition: all 0.3s ease;
            letter-spacing: 0.02em;
        }

        .journey-programs a:hover {
            border-color: var(--color-accent);
            color: var(--color-accent);
            background: rgba(212, 165, 116, 0.05);
        }

        @media (max-width: 768px) {
            .journey-path::before {
                left: 18px;
            }

            .journey-marker {
                width: 38px;
                height: 38px;
            }

            .journey-number {
                font-size: 0.95rem;
            }

            .journey-step {
                gap: 1rem;
            }

            .journey-title {
                font-size: 1.1rem;
            }
        }

        /* ============================================
           DREYFUS MODEL / ENTWICKLUNGSWEG
           ============================================ */
        .dreyfus-intro {
            color: var(--color-text-muted);
            line-height: 1.8;
            margin-bottom: var(--spacing-md);
        }

        .dreyfus-intro strong {
            color: var(--color-text);
        }

        .dreyfus-principles {
            list-style: none;
            padding: 0;
            margin: var(--spacing-md) 0;
        }

        .dreyfus-principles li {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: 1rem;
            color: var(--color-text-muted);
            line-height: 1.7;
        }

        .dreyfus-principles li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.6rem;
            width: 6px;
            height: 6px;
            border-radius: 0;
            background: var(--color-accent);
            opacity: 0.6;
        }

        .dreyfus-principles li strong {
            color: var(--color-text);
        }

        .dreyfus-compass {
            color: var(--color-text-muted);
            line-height: 1.8;
            margin-top: var(--spacing-md);
            font-style: italic;
            text-align: center;
            opacity: 0.8;
        }

        .level-card {
            border: 1px solid rgba(212, 165, 116, 0.1);
            border-radius: 2px;
            padding: var(--spacing-lg);
            margin-bottom: var(--spacing-md);
            transition: border-color 0.3s ease;
        }

        .level-card:hover {
            border-color: rgba(212, 165, 116, 0.25);
        }

        .level-card__header {
            display: flex;
            align-items: baseline;
            gap: 1rem;
            margin-bottom: 0.5rem;
        }

        .level-card__number {
            font-family: var(--font-serif);
            font-size: 2rem;
            color: var(--color-accent);
            opacity: 0.4;
            line-height: 1;
        }

        .level-card__title {
            font-family: var(--font-serif);
            font-size: 1.4rem;
            color: var(--color-text);
            font-weight: 400;
        }

        .level-card__subtitle {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--color-accent);
            opacity: 0.7;
            margin-bottom: var(--spacing-sm);
            padding-left: 3.5rem;
        }

        .level-card__body {
            display: grid;
            gap: 1.2rem;
            margin-top: var(--spacing-sm);
        }

        .level-card__aspect {
            padding-left: 1rem;
            border-left: 2px solid rgba(212, 165, 116, 0.15);
        }

        .level-card__aspect-label {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--color-accent);
            opacity: 0.6;
            margin-bottom: 0.3rem;
        }

        .level-card__aspect p {
            color: var(--color-text-muted);
            line-height: 1.7;
            margin: 0;
        }

        .self-check {
            margin-top: 1rem;
        }

        .self-check__title {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--color-text-muted);
            margin-bottom: 0.6rem;
            opacity: 0.7;
        }

        .self-check__list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .self-check__list li {
            position: relative;
            padding-left: 1.6rem;
            margin-bottom: 0.5rem;
            color: var(--color-text-muted);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .self-check__list li::before {
            content: '○';
            position: absolute;
            left: 0;
            color: var(--color-accent);
            opacity: 0.5;
        }

        .dev-overview {
            width: 100%;
            border-collapse: collapse;
            margin-top: var(--spacing-md);
        }

        .dev-overview th {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--color-accent);
            opacity: 0.7;
            text-align: left;
            padding: 0.8rem 1rem;
            border-bottom: 1px solid rgba(212, 165, 116, 0.2);
            font-weight: 400;
        }

        .dev-overview td {
            padding: 0.7rem 1rem;
            color: var(--color-text-muted);
            font-size: 0.85rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            line-height: 1.5;
        }

        .dev-overview tr:hover td {
            color: var(--color-text);
        }

        .dev-overview td:first-child {
            color: var(--color-text);
            font-family: var(--font-serif);
            white-space: nowrap;
        }

        @media (max-width: 768px) {
            .level-card {
                padding: var(--spacing-md);
            }

            .level-card__header {
                gap: 0.6rem;
            }

            .level-card__number {
                font-size: 1.5rem;
            }

            .level-card__title {
                font-size: 1.2rem;
            }

            .level-card__subtitle {
                padding-left: 2.5rem;
            }

            .dev-overview {
                font-size: 0.8rem;
            }

            .dev-overview th,
            .dev-overview td {
                padding: 0.5rem 0.5rem;
            }
        }

        /* ============================================
           PREISBOX
           ============================================ */
        .price-box {
            max-width: 560px;
            margin: var(--spacing-lg) auto 0;
            padding: var(--spacing-lg);
            border: 1px solid rgba(212, 165, 116, 0.2);
            border-radius: 2px;
            text-align: center;
            background: rgba(212, 165, 116, 0.03);
        }

        .price-box h3 {
            color: var(--color-text);
            margin-bottom: var(--spacing-xs);
        }

        .price-box .price-label {
            color: var(--color-text-muted);
            font-size: 0.95rem;
            margin-bottom: var(--spacing-md);
        }

        .price-box .price {
            font-family: var(--font-serif);
            font-size: 3rem;
            color: var(--color-accent);
            margin-bottom: 0.3rem;
        }

        .price-box .price-alt {
            color: var(--color-text-muted);
            font-size: 0.9rem;
            margin-bottom: var(--spacing-md);
        }

        .price-list {
            list-style: none;
            text-align: left;
            margin-bottom: var(--spacing-md);
            color: var(--color-text-muted);
        }

        .price-list li {
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.04);
        }

        .price-list li::before {
            content: '—';
            color: var(--color-accent);
            margin-right: 0.8rem;
        }

        /* ============================================
           FEATURE GRID
           ============================================ */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: var(--spacing-md);
            margin: var(--spacing-lg) 0;
        }

        /* ============================================
           COMPARISON GRID
           ============================================ */
        .comparison-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: var(--spacing-lg);
            max-width: 800px;
            margin: 0 auto;
        }

        .comparison-column {
            padding: var(--spacing-lg);
            border-radius: 2px;
        }

        .comparison-negative {
            background: rgba(100, 100, 100, 0.1);
            border: 1px solid rgba(100, 100, 100, 0.2);
        }

        .comparison-positive {
            background: rgba(212, 165, 116, 0.08);
            border: 1px solid rgba(212, 165, 116, 0.3);
        }

        /* ============================================
           QUICK NAVIGATION
           ============================================ */
        .quick-nav {
            position: static;
            z-index: auto;
            width: auto;
            border-bottom: none;
            max-width: 360px;
            margin: var(--spacing-lg) auto 0;
            background: rgba(255, 255, 255, 0.04);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 8px;
            overflow: hidden;
            list-style: none;
            padding: 0;
        }

        .quick-nav-link {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.85rem 1.2rem;
            color: var(--color-text-muted);
            text-decoration: none;
            font-size: 0.9rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }

        .quick-nav-link:last-child {
            border-bottom: none;
        }

        .quick-nav-link .nav-arrow {
            color: var(--color-accent);
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .quick-nav-link:hover {
            background: rgba(212, 165, 116, 0.08);
            color: var(--color-text);
        }

        .quick-nav-link:hover .nav-arrow {
            transform: translateX(3px);
        }

        .feature-grid--cross {
            position: relative;
            grid-template-columns: 1fr 1fr;
        }

        .feature-grid--cross::before,
        .feature-grid--cross::after {
            content: '';
            position: absolute;
            z-index: 1;
            pointer-events: none;
        }

        /* Vertical beam */
        .feature-grid--cross::before {
            left: 50%;
            top: 8%;
            bottom: 8%;
            width: 1px;
            transform: translateX(-50%);
            background: linear-gradient(
                to bottom,
                transparent,
                rgba(212, 165, 116, 0.08) 15%,
                rgba(212, 165, 116, 0.25) 50%,
                rgba(212, 165, 116, 0.08) 85%,
                transparent
            );
            box-shadow:
                0 0 15px 4px rgba(212, 165, 116, 0.06),
                0 0 40px 8px rgba(212, 165, 116, 0.03);
        }

        /* Horizontal beam */
        .feature-grid--cross::after {
            top: 50%;
            left: 8%;
            right: 8%;
            height: 1px;
            transform: translateY(-50%);
            background: linear-gradient(
                to right,
                transparent,
                rgba(212, 165, 116, 0.08) 15%,
                rgba(212, 165, 116, 0.25) 50%,
                rgba(212, 165, 116, 0.08) 85%,
                transparent
            );
            box-shadow:
                0 0 15px 4px rgba(212, 165, 116, 0.06),
                0 0 40px 8px rgba(212, 165, 116, 0.03);
        }

        /* Center glow at intersection */
        .feature-grid--cross-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            border-radius: 0;
            background: radial-gradient(
                circle,
                rgba(212, 165, 116, 0.12) 0%,
                rgba(212, 165, 116, 0.04) 40%,
                transparent 70%
            );
            z-index: 1;
            pointer-events: none;
        }

        .feature-grid--cross .feature {
            position: relative;
            z-index: 2;
        }

        @media (max-width: 600px) {
            .feature-grid--cross {
                grid-template-columns: 1fr;
            }

            .feature-grid--cross::before,
            .feature-grid--cross::after,
            .feature-grid--cross-glow {
                display: none;
            }
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: var(--spacing-lg);
            align-items: center;
        }

        @media (max-width: 768px) {
            .about-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .about-grid img {
                max-width: 200px;
                margin: 0 auto;
            }
        }

        .feature {
            padding: var(--spacing-md);
            background: rgba(255, 255, 255, 0.02);
            border-radius: 2px;
        }

        .feature h4 {
            color: var(--color-accent);
            font-family: var(--font-serif);
            font-size: 1.2rem;
            margin-bottom: var(--spacing-xs);
        }

        .feature p {
            color: var(--color-text-muted);
            font-size: 0.95rem;
        }

        /* ============================================
           FAQ
           ============================================ */
        .faq-item {
            padding: var(--spacing-md) 0;
            border-bottom: 1px solid rgba(212, 165, 116, 0.08);
        }

        .faq-item:last-child { border-bottom: none; }

        .faq-question {
            font-family: var(--font-serif);
            font-size: 1.2rem;
            color: var(--color-text);
            margin-bottom: var(--spacing-xs);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            background: none;
            border: none;
            padding: 0;
            text-align: left;
            line-height: 1.4;
        }

        .faq-question::after {
            content: '+';
            color: var(--color-accent);
            font-size: 1.5rem;
            transition: transform 0.3s;
        }

        .faq-item.open .faq-question::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            color: var(--color-text-muted);
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.open .faq-answer {
            max-height: 500px;
        }

        /* ============================================
           KONTAKTFORM
           ============================================ */
        .contact-info {
            max-width: 500px;
            margin: 0 auto;
            padding: var(--spacing-lg);
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(212, 165, 116, 0.1);
            border-radius: 2px;
        }

        .contact-item {
            margin-bottom: var(--spacing-md);
        }

        .contact-item:last-child {
            margin-bottom: 0;
        }

        .contact-item strong {
            color: var(--color-accent);
            display: block;
            margin-bottom: var(--spacing-xs);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .contact-item p {
            color: var(--color-text-muted);
        }

        /* ============================================
           FOOTER
           ============================================ */
        footer {
            padding: var(--spacing-lg) 0;
            text-align: center;
            border-top: none;
            color: var(--color-text-muted);
            font-size: 0.9rem;
            position: relative;
        }
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: min(200px, 40%);
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.3), transparent);
        }

        footer a {
            color: var(--color-text-muted);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        footer a:hover {
            color: var(--color-accent);
        }

        /* Footer Grid */
        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
            gap: var(--spacing-lg);
            padding: var(--spacing-lg) 0;
            text-align: left;
        }
        .footer-col-heading {
            font-family: var(--font-serif);
            font-size: 0.85rem;
            color: var(--color-accent);
            text-transform: uppercase;
            letter-spacing: 0.12em;
            margin-bottom: var(--spacing-sm);
            font-weight: 600;
        }
        .footer-brand-name {
            font-family: var(--font-serif);
            font-size: 1.1rem;
            color: var(--color-accent);
            margin-bottom: 0.3rem;
            font-weight: 600;
        }
        .footer-tagline {
            font-style: italic;
            color: var(--color-text-muted);
            font-size: 0.9rem;
            margin-bottom: var(--spacing-sm);
            line-height: 1.5;
        }
        .footer-brand-credit {
            font-size: 0.85rem;
            color: var(--color-text-muted);
            margin-bottom: var(--spacing-sm);
            line-height: 1.6;
        }
        .footer-social {
            display: flex;
            gap: 1.2rem;
            margin-top: var(--spacing-xs);
        }
        .footer-social a {
            color: var(--color-text-muted);
            display: inline-flex;
            transition: color 0.3s ease;
        }
        .footer-social a:hover {
            color: var(--color-accent);
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-col li {
            line-height: 2.2;
        }
        .footer-col li a {
            font-size: 0.9rem;
        }
        .footer-contact-item {
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }
        .footer-contact-item a {
            color: var(--color-text-muted);
        }
        .footer-contact-item a:hover {
            color: var(--color-accent);
        }
        .footer-address {
            font-style: normal;
            font-size: 0.85rem;
            color: var(--color-text-muted);
            line-height: 1.6;
            margin-top: var(--spacing-sm);
        }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: var(--spacing-md);
            margin-top: var(--spacing-sm);
            border-top: 1px solid rgba(212, 165, 116, 0.15);
            font-size: 0.85rem;
        }
        .footer-bottom a {
            color: var(--color-text-muted);
        }
        .footer-bottom a:hover {
            color: var(--color-accent);
        }
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: var(--spacing-md);
            }
        }
        @media (max-width: 480px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: var(--spacing-lg);
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 0.5rem;
            }
        }

        .lang-switcher {
            position: fixed;
            bottom: 2rem;
            left: 2rem;
            z-index: 90;
        }
        .lang-switcher .lang-badge {
            position: relative;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.55rem 1rem;
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 50px;
            color: var(--color-text-muted);
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: inherit;
        }
        .lang-switcher .lang-badge:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(212, 165, 116, 0.3);
            color: var(--color-accent);
        }
        .lang-badge-icon {
            font-size: 0.95rem;
            line-height: 1;
        }
        .lang-dropdown {
            display: none;
            position: absolute;
            bottom: calc(100% + 0.5rem);
            left: 0;
            min-width: 150px;
            background: rgba(10, 14, 20, 0.95);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 0.4rem;
            flex-direction: column;
        }
        .lang-switcher.open .lang-dropdown {
            display: flex;
        }
        .lang-dropdown a {
            padding: 0.5rem 0.8rem;
            color: var(--color-text-muted);
            text-decoration: none;
            font-size: 0.85rem;
            border-radius: 8px;
            transition: all 0.2s ease;
        }
        .lang-dropdown a:hover {
            background: rgba(255, 255, 255, 0.08);
            color: var(--color-accent);
        }
        .lang-dropdown a.active {
            color: var(--color-accent);
            font-weight: 600;
        }
        @media (max-width: 768px) {
            .lang-switcher {
                bottom: 1rem;
                left: 1rem;
            }
            .lang-switcher .lang-badge {
                padding: 0.45rem 0.85rem;
                font-size: 0.75rem;
            }
        }

        .newsletter-signup {
            margin-bottom: var(--spacing-lg);
            padding-bottom: var(--spacing-lg);
            border-bottom: none;
            position: relative;
        }
        .newsletter-signup::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: min(200px, 40%);
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.2), transparent);
        }
        .newsletter-title {
            font-family: var(--font-serif);
            font-size: 1.3rem;
            color: var(--color-accent);
            margin-bottom: var(--spacing-xs);
        }
        .newsletter-text {
            color: var(--color-text-muted);
            font-size: 0.95rem;
            margin-bottom: var(--spacing-md);
        }
        .newsletter-form .newsletter-input-group {
            display: flex;
            gap: var(--spacing-sm);
            max-width: 460px;
            margin: 0 auto;
        }
        .newsletter-form input[type="email"] {
            flex: 1;
            padding: 10px 16px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(212, 165, 116, 0.2);
            border-radius: 2px;
            color: var(--color-text);
            font-size: 0.95rem;
            font-family: var(--font-sans);
        }
        .newsletter-form input[type="email"]::placeholder {
            color: var(--color-text-muted);
        }
        .newsletter-form input[type="email"]:focus {
            outline: none;
            border-color: var(--color-accent);
        }
        .newsletter-form button {
            padding: 10px 24px;
            background: var(--color-accent);
            color: var(--color-bg);
            border: none;
            border-radius: 2px;
            font-size: 0.95rem;
            font-weight: 500;
            cursor: pointer;
            transition: opacity 0.3s ease;
            white-space: nowrap;
        }
        .newsletter-form button:hover {
            opacity: 0.85;
        }

        /* ============================================
           RESPONSIVE
           ============================================ */
        @media (max-width: 768px) {
            nav .logo { font-size: 0.85rem; }
            .logo-flipper { width: 34px; height: 34px; }
            
            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(10, 14, 20, 0.98);
                flex-direction: column;
                padding: var(--spacing-md);
                gap: var(--spacing-sm);
            }

            nav ul.active {
                display: flex;
            }

            .mobile-menu-toggle {
                display: block;
            }

            nav a { font-size: 1rem; }

            .card-grid {
                grid-template-columns: 1fr;
                gap: var(--spacing-md);
            }

            section { padding: var(--spacing-lg) 0; }

            .hero { min-height: auto; padding: 120px 0 var(--spacing-xl); }
            .page-hero { min-height: auto; padding: 150px 0 var(--spacing-lg); }
            .page-hero-photo { min-height: 40vh; margin-top: 64px; padding: 120px 0 30px; }

            .hero-photo {
                padding-top: 120%;
                margin-top: 64px;
            }
            .hero-photo .hero-content {
                padding-top: 12%;
                padding-left: var(--spacing-md);
                padding-right: var(--spacing-md);
            }
            .hero-photo h1 {
                font-size: 2.4rem;
            }
            .hero-divider__ornament {
                width: 60px;
                height: 60px;
            }

            .newsletter-form .newsletter-input-group {
                flex-direction: column;
            }
        }

        /* ============================================
           ACCESSIBILITY
           ============================================ */
        :focus {
            outline: 1px solid rgba(191, 161, 111, 0.4);
            outline-offset: 3px;
        }

        .mobile-menu-toggle:focus {
            outline: none;
        }

        .mobile-menu-toggle:focus-visible {
            outline: 1px solid rgba(191, 161, 111, 0.3);
            outline-offset: 3px;
        }

        .visually-hidden {
            position: absolute;
            width: 1px; height: 1px;
            margin: -1px; padding: 0;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }

        /* ============================================
           UTILITIES
           ============================================ */
        .text-center { text-align: center; }
        .mb-lg { margin-bottom: var(--spacing-lg); }
        .mb-md { margin-bottom: var(--spacing-md); }
        .mt-xl { margin-top: var(--spacing-xl); }
        .mt-lg { margin-top: var(--spacing-lg); }

        /* ============================================
           ANIMATIONS
           ============================================ */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeInUp 0.6s ease-out forwards;
        }

        /* Page transition between hash routes */
        main {
            transition: opacity 0.25s ease, transform 0.25s ease;
        }
        main.page-transitioning {
            opacity: 0;
            transform: translateY(8px);
        }

        /* Scroll-reveal: Elemente starten unsichtbar */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .scroll-reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Staggered card animations */
        .card-grid .scroll-reveal:nth-child(2) { transition-delay: 0.1s; }
        .card-grid .scroll-reveal:nth-child(3) { transition-delay: 0.2s; }
        .features-grid .scroll-reveal:nth-child(2) { transition-delay: 0.1s; }
        .features-grid .scroll-reveal:nth-child(3) { transition-delay: 0.2s; }

        /* ============================================
           SECTION DIVIDER (organic)
           ============================================ */
        .section-divider {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: var(--spacing-lg) 0;
            opacity: 0.25;
        }

        .section-divider::before,
        .section-divider::after {
            content: '';
            flex: 1;
            max-width: 120px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--color-accent));
        }

        .section-divider::after {
            background: linear-gradient(90deg, var(--color-accent), transparent);
        }

        .section-divider-dot {
            width: 6px;
            height: 6px;
            border-radius: 0;
            background: var(--color-accent);
            margin: 0 var(--spacing-sm);
        }

        /* ============================================
           BILDER
           ============================================ */
        .section-image {
            width: 100%;
            max-height: 400px;
            object-fit: contain;
            border-radius: 8px;
            margin-bottom: var(--spacing-md);
        }

        .section-image-short {
            max-height: 300px;
        }

        .portrait-round {
            width: 200px;
            height: 200px;
            border-radius: 0;
            object-fit: contain;
            margin: 0 auto var(--spacing-md);
            display: block;
            border: 2px solid rgba(212, 165, 116, 0.2);
        }

        .hero-bg {
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
        }

        .hero-bg .bg-overlay {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(
                to bottom,
                rgba(10, 14, 20, 0.8) 0%,
                rgba(10, 14, 20, 0.6) 50%,
                rgba(10, 14, 20, 0.85) 100%
            );
            z-index: 0;
        }

        .hero-bg > :not(.bg-overlay) {
            position: relative;
            z-index: 1;
        }

        .quote-bg {
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .quote-bg > .quote-text,
        .quote-bg > .quote-author {
            position: relative;
            z-index: 1;
        }

        .quote-bg::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(10, 14, 20, 0.85);
            z-index: 0;
        }

        .newsletter-bg {
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .newsletter-bg > * {
            position: relative;
            z-index: 1;
        }

        .newsletter-bg::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(to bottom, rgba(10, 14, 20, 0.92), rgba(10, 14, 20, 0.85));
            z-index: 0;
            border-radius: inherit;
        }

        @media (max-width: 768px) {
            .section-image { max-height: 250px; }
            .portrait-round { width: 160px; height: 160px; }
        }

        /* ============================================
           BREATHING ANIMATION (logo + decorative)
           ============================================ */
        @keyframes breathe {
            0%, 100% { opacity: 0.85; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.03); }
        }

        .hero-image-wrapper {
            animation: breathe 6s ease-in-out infinite;
        }

        nav .logo .logo-icon {
            animation: breathe 5s ease-in-out infinite;
        }

        /* ============================================
           REDUCED MOTION
           ============================================ */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }

            .scroll-reveal {
                opacity: 1;
                transform: none;
            }

            .page-content.active {
                animation: none;
            }

            .hero-image-wrapper,
            nav .logo .logo-icon {
                animation: none;
            }

            main {
                transition: none !important;
            }
        }

        /* ============================================
           ZWEI-SPALTEN LAYOUT
           ============================================ */
        .two-columns {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--spacing-lg);
            align-items: start;
        }

        @media (max-width: 768px) {
            .two-columns {
                grid-template-columns: 1fr;
            }
        }

        /* ============================================
           HIGHLIGHT BOX
           ============================================ */
        .highlight-box {
            background: rgba(212, 165, 116, 0.08);
            border-left: 3px solid var(--color-accent);
            padding: var(--spacing-md);
            margin: var(--spacing-md) 0;
        }

        .highlight-box p {
            color: var(--color-text);
            margin: 0;
        }

        /* ============================================
           QUIZ / WEGFINDER
           ============================================ */
        .quiz-section {
            background: linear-gradient(180deg, var(--color-bg) 0%, rgba(212, 165, 116, 0.08) 50%, var(--color-bg) 100%);
            border-top: 1px solid rgba(212, 165, 116, 0.15);
            border-bottom: 1px solid rgba(212, 165, 116, 0.15);
            position: relative;
        }

        .quiz-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--color-accent);
        }

        .quiz-teaser {
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
            padding: var(--spacing-xl) var(--spacing-lg);
            background: rgba(10, 14, 20, 0.6);
            border: 1px solid rgba(212, 165, 116, 0.12);
            border-radius: 8px;
            backdrop-filter: blur(10px);
        }
        .quiz-teaser p {
            color: var(--color-text-muted);
            font-size: 1.1rem;
            margin-bottom: var(--spacing-lg);
        }

        .quiz-container {
            max-width: 700px;
            margin: 0 auto;
            padding: var(--spacing-md);
            background: rgba(10, 14, 20, 0.6);
            border: 1px solid rgba(212, 165, 116, 0.12);
            border-radius: 8px;
            backdrop-filter: blur(10px);
        }

        .quiz-header {
            text-align: center;
            margin-bottom: var(--spacing-lg);
        }

        .quiz-header-icon {
            font-size: 2.5rem;
            margin-bottom: var(--spacing-sm);
        }

        .quiz-progress {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: var(--spacing-lg);
        }

        .quiz-progress-dot {
            width: 12px;
            height: 12px;
            border-radius: 0;
            background: rgba(212, 165, 116, 0.2);
            transition: all 0.3s ease;
        }

        .quiz-progress-dot.active {
            background: var(--color-accent);
            transform: scale(1.2);
            box-shadow: 0 0 12px rgba(212, 165, 116, 0.5);
        }

        .quiz-progress-dot.completed {
            background: var(--color-accent);
        }

        .quiz-question {
            text-align: center;
            margin-bottom: var(--spacing-lg);
        }

        .quiz-question h3 {
            font-family: var(--font-serif);
            font-size: 1.6rem;
            color: var(--color-text);
            margin-bottom: var(--spacing-sm);
            line-height: 1.4;
        }

        .quiz-question p {
            color: var(--color-text-muted);
            font-size: 0.95rem;
        }

        .quiz-options {
            display: flex;
            flex-direction: column;
            gap: var(--spacing-sm);
        }

        .quiz-option {
            padding: 1.2rem 1.5rem;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(212, 165, 116, 0.15);
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: left;
        }

        .quiz-option:hover {
            background: rgba(212, 165, 116, 0.08);
            border-color: rgba(212, 165, 116, 0.4);
            transform: translateX(4px);
        }

        .quiz-option.selected {
            background: rgba(212, 165, 116, 0.15);
            border-color: var(--color-accent);
        }

        .quiz-option-text {
            color: var(--color-text);
            font-size: 1rem;
            line-height: 1.5;
        }

        .quiz-step {
            display: none;
            animation: fadeInUp 0.4s ease-out;
        }

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

        .quiz-result {
            text-align: center;
            padding: var(--spacing-lg) 0;
        }

        .quiz-result-icon {
            font-size: 3rem;
            margin-bottom: var(--spacing-md);
        }

        .quiz-result h3 {
            font-family: var(--font-serif);
            font-size: 2rem;
            color: var(--color-accent);
            margin-bottom: var(--spacing-sm);
        }

        .quiz-result-subtitle {
            color: var(--color-text);
            font-size: 1.1rem;
            margin-bottom: var(--spacing-md);
        }

        .quiz-result p {
            color: var(--color-text-muted);
            margin-bottom: var(--spacing-lg);
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .quiz-result-cards {
            display: flex;
            flex-direction: column;
            gap: var(--spacing-md);
            margin-top: var(--spacing-lg);
        }

        .quiz-result-card {
            padding: var(--spacing-md);
            background: rgba(212, 165, 116, 0.05);
            border: 1px solid rgba(212, 165, 116, 0.15);
            border-radius: 4px;
            text-align: left;
            transition: all 0.3s ease;
        }

        .quiz-result-card:hover {
            border-color: rgba(212, 165, 116, 0.3);
            transform: translateY(-2px);
        }

        a.quiz-result-card {
            text-decoration: none;
            color: inherit;
            display: block;
            cursor: pointer;
        }

        .quiz-result-card.primary {
            border-color: var(--color-accent);
            background: rgba(212, 165, 116, 0.12);
            box-shadow: 0 0 20px rgba(212, 165, 116, 0.1);
        }

        .quiz-result-card.secondary {
            background: rgba(212, 165, 116, 0.06);
        }

        .quiz-result-card.tertiary {
            background: rgba(255, 255, 255, 0.02);
            border-style: dashed;
        }

        .quiz-result-card h4 {
            color: var(--color-accent);
            font-family: var(--font-serif);
            font-size: 1.3rem;
            margin-bottom: 0.3rem;
        }

        .quiz-result-card .tag {
            font-size: 0.8rem;
            color: var(--color-text-muted);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 0.5rem;
            display: block;
        }

        .quiz-result-card p {
            color: var(--color-text-muted);
            font-size: 0.95rem;
            margin: 0;
            text-align: left;
        }

        .quiz-restart {
            margin-top: var(--spacing-lg);
            color: var(--color-text-muted);
            font-size: 0.9rem;
            cursor: pointer;
            text-decoration: underline;
            background: none;
            border: none;
            font-family: inherit;
        }

        .quiz-restart:hover {
            color: var(--color-accent);
        }

        @media (max-width: 768px) {
            .quiz-container {
                padding: var(--spacing-sm);
                margin: 0 var(--spacing-sm);
            }

            .quiz-question h3 {
                font-size: 1.3rem;
            }

            .quiz-option {
                padding: 1rem 1.2rem;
            }
        }

        /* ============================================
           COOKIE CONSENT BANNER
           ============================================ */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 200;
            background: rgba(10, 14, 20, 0.97);
            backdrop-filter: blur(20px);
            border-top: 1px solid rgba(212, 165, 116, 0.2);
            padding: var(--spacing-md) var(--spacing-md);
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }

        .cookie-banner.visible {
            transform: translateY(0);
        }

        .cookie-banner-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: var(--spacing-md);
        }

        .cookie-banner-text {
            color: var(--color-text-muted);
            font-size: 0.9rem;
            line-height: 1.6;
            flex: 1;
        }

        .cookie-banner-text a {
            color: var(--color-accent);
            text-decoration: underline;
        }

        .cookie-banner-buttons {
            display: flex;
            gap: var(--spacing-sm);
            flex-shrink: 0;
        }

        .cookie-btn {
            padding: 0.7rem 1.5rem;
            border: 1px solid rgba(212, 165, 116, 0.4);
            background: transparent;
            color: var(--color-text-muted);
            font-size: 0.85rem;
            font-family: var(--font-sans);
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 2px;
            white-space: nowrap;
        }

        .cookie-btn:hover {
            border-color: var(--color-accent);
            color: var(--color-text);
        }

        .cookie-btn-accept {
            background: var(--color-accent);
            color: var(--color-bg);
            border-color: var(--color-accent);
        }

        .cookie-btn-accept:hover {
            background: var(--color-accent-dark);
            border-color: var(--color-accent-dark);
            color: var(--color-bg);
        }

        @media (max-width: 768px) {
            .cookie-banner-inner {
                flex-direction: column;
                text-align: center;
            }

            .cookie-banner-buttons {
                width: 100%;
                justify-content: center;
            }
        }

        /* ============================================
           PRICE CALCULATOR
           ============================================ */
        .price-calc {
            max-width: 600px;
            margin: 0 auto;
            padding: var(--spacing-lg);
            background: rgba(10, 14, 20, 0.6);
            border: 1px solid rgba(212, 165, 116, 0.12);
            border-radius: 8px;
            backdrop-filter: blur(10px);
        }
        .price-calc-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--spacing-md);
        }
        .price-calc-row {
            margin-bottom: 0;
        }
        .price-calc-label {
            display: block;
            color: var(--color-accent);
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            font-weight: 700;
            margin-bottom: 0.4rem;
        }
        .price-calc-select {
            width: 100%;
            padding: 0.7rem 1rem;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(212, 165, 116, 0.2);
            border-radius: 4px;
            color: var(--color-text);
            font-size: 0.9rem;
            font-family: var(--font-sans);
            cursor: pointer;
            transition: border-color 0.3s ease;
            -webkit-appearance: none;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23D4A574' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 0.8rem center;
            padding-right: 2.2rem;
        }
        .price-calc-select:hover {
            border-color: rgba(212, 165, 116, 0.5);
        }
        .price-calc-select:focus {
            outline: 2px solid var(--color-accent);
            outline-offset: 2px;
        }
        .price-calc-select option {
            background: var(--color-bg);
            color: var(--color-text);
        }
        /* Slider */
        .price-calc-slider {
            display: flex;
            align-items: center;
            gap: var(--spacing-sm);
        }
        .price-calc-slider input[type="range"] {
            flex: 1;
            -webkit-appearance: none;
            appearance: none;
            height: 4px;
            background: rgba(212, 165, 116, 0.2);
            border-radius: 2px;
            outline: none;
        }
        .price-calc-slider input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 22px;
            height: 22px;
            border-radius: 0;
            background: var(--color-accent);
            cursor: pointer;
            box-shadow: 0 0 8px rgba(212, 165, 116, 0.4);
            transition: transform 0.2s ease;
        }
        .price-calc-slider input[type="range"]::-webkit-slider-thumb:hover {
            transform: scale(1.15);
        }
        .price-calc-slider input[type="range"]::-moz-range-thumb {
            width: 22px;
            height: 22px;
            border-radius: 0;
            background: var(--color-accent);
            cursor: pointer;
            border: none;
            box-shadow: 0 0 8px rgba(212, 165, 116, 0.4);
        }
        .price-calc-slider-value {
            min-width: 90px;
            text-align: right;
            color: var(--color-text);
            font-size: 1rem;
            font-weight: 600;
        }
        .price-calc-tier-hint {
            margin-top: 0.4rem;
            font-size: 0.8rem;
            color: var(--color-accent);
            font-style: italic;
        }
        /* Result */
        .price-calc-result {
            margin-top: var(--spacing-lg);
            padding: var(--spacing-lg);
            border: 1px solid rgba(212, 165, 116, 0.2);
            border-radius: 4px;
            text-align: center;
            background: rgba(212, 165, 116, 0.03);
        }
        .price-calc-per-session {
            color: var(--color-text-muted);
            font-size: 0.9rem;
            margin-bottom: 0.3rem;
        }
        .price-calc-total {
            font-family: var(--font-serif);
            font-size: 3rem;
            color: var(--color-accent);
            margin-bottom: 0.2rem;
            transition: all 0.3s ease;
        }
        .price-calc-summary {
            color: var(--color-text-muted);
            font-size: 0.85rem;
            margin-bottom: var(--spacing-sm);
        }
        .price-calc-savings {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            background: rgba(212, 165, 116, 0.12);
            border-radius: 20px;
            color: var(--color-accent);
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: var(--spacing-md);
        }
        .price-calc-savings.hidden { display: none; }
        .price-calc-actions {
            display: flex;
            gap: var(--spacing-sm);
            justify-content: center;
            flex-wrap: wrap;
            margin-top: var(--spacing-md);
        }
        .price-calc-note {
            margin-top: var(--spacing-sm);
            font-size: 0.8rem;
            color: var(--color-text-muted);
            font-style: italic;
        }
        @media (max-width: 600px) {
            .price-calc {
                padding: var(--spacing-md);
            }
            .price-calc-grid {
                grid-template-columns: 1fr;
            }
            .price-calc-total {
                font-size: 2.2rem;
            }
            .price-calc-actions {
                flex-direction: column;
            }
        }

        /* ============================================
           FLOATING CTA BUTTON
           ============================================ */
        .floating-cta {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 90;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.4rem;
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(212, 165, 116, 0.25);
            color: var(--color-accent);
            text-decoration: none;
            font-family: var(--font-body);
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.06em;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .floating-cta:hover {
            background: rgba(212, 165, 116, 0.12);
            border-color: rgba(212, 165, 116, 0.5);
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(212, 165, 116, 0.15);
        }

        .floating-cta-icon {
            font-size: 1rem;
            line-height: 1;
        }

        /* ============================================
           CALENDAR SIDEBAR
           ============================================ */
        .calendar-backdrop {
            position: fixed;
            inset: 0;
            z-index: 99;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .calendar-backdrop.active {
            opacity: 1;
            pointer-events: auto;
        }

        .calendar-sidebar {
            position: fixed;
            top: 80px;
            right: 0;
            bottom: 0;
            z-index: 99;
            width: 380px;
            max-width: 100vw;
            background: rgba(14, 18, 26, 0.97);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-left: 1px solid rgba(212, 165, 116, 0.15);
            transform: translateX(100%);
            transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            overflow-y: auto;
            display: flex;
            flex-direction: column;
        }

        .calendar-sidebar.active {
            transform: translateX(0);
        }

        .calendar-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.5rem 1.5rem 1rem;
            border-bottom: 1px solid rgba(212, 165, 116, 0.1);
        }

        .calendar-title {
            font-family: var(--font-serif);
            font-size: 1.2rem;
            color: var(--color-accent);
            margin: 0;
            font-weight: 400;
        }

        .calendar-close {
            background: none;
            border: none;
            color: var(--color-text-muted);
            font-size: 1.2rem;
            cursor: pointer;
            padding: 0.25rem;
            transition: color 0.2s;
        }

        .calendar-close:hover {
            color: var(--color-accent);
        }

        .calendar-events {
            padding: 1rem 1.5rem;
            flex: 1;
        }

        .calendar-event {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            text-decoration: none;
            transition: opacity 0.2s;
        }

        .calendar-event:last-child {
            border-bottom: none;
        }

        .calendar-event:hover {
            opacity: 0.8;
        }

        .calendar-date-badge {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 50px;
            padding: 0.5rem;
            border-radius: 8px;
            background: rgba(212, 165, 116, 0.1);
            border: 1px solid rgba(212, 165, 116, 0.15);
        }

        .calendar-date-day {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--color-accent);
            line-height: 1;
        }

        .calendar-date-month {
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--color-text-muted);
            margin-top: 0.2rem;
        }

        .calendar-event-info {
            flex: 1;
        }

        .calendar-event-title {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--color-text);
            margin: 0 0 0.3rem;
        }

        .calendar-event-meta {
            display: flex;
            gap: 0.75rem;
            align-items: center;
            font-size: 0.75rem;
            color: var(--color-text-muted);
        }

        .calendar-event-type {
            padding: 0.15rem 0.5rem;
            border-radius: 20px;
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            font-weight: 500;
        }

        .calendar-event-type[data-type="workshop"] {
            background: rgba(212, 165, 116, 0.15);
            color: var(--color-accent);
        }

        .calendar-event-type[data-type="kurs"] {
            background: rgba(100, 180, 130, 0.15);
            color: #7cc89a;
        }

        .calendar-event-type[data-type="retreat"] {
            background: rgba(130, 150, 210, 0.15);
            color: #a0b0e0;
        }

        .calendar-event-type[data-type="mentoring"] {
            background: rgba(200, 130, 160, 0.15);
            color: #d0a0b8;
        }

        .calendar-empty {
            text-align: center;
            padding: 3rem 1rem;
            color: var(--color-text-muted);
            font-style: italic;
        }

        .calendar-sidebar-footer {
            padding: 1rem 1.5rem;
            border-top: 1px solid rgba(212, 165, 116, 0.15);
            background: rgba(14, 18, 26, 0.97);
            flex-shrink: 0;
        }

        .calendar-sidebar-cta {
            display: block;
            text-align: center;
            padding: 0.75rem 1rem;
            background: rgba(212, 165, 116, 0.12);
            border: 1px solid rgba(212, 165, 116, 0.25);
            border-radius: 8px;
            color: var(--color-accent);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.2s;
        }

        .calendar-sidebar-cta:hover {
            background: rgba(212, 165, 116, 0.22);
            border-color: rgba(212, 165, 116, 0.4);
        }

        @media (max-width: 768px) {
            .floating-cta {
                bottom: 1rem;
                right: 1rem;
                padding: 0.6rem 1.1rem;
                font-size: 0.8rem;
            }
        }
