/* ==========================================
   Julian Haase – Personal Brand Website
   Branding: Systemunternehmer Universum
   ========================================== */

/* --- Local Fonts (DSGVO-konform) --- */
@font-face {
    font-family: 'Inter Tight';
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url('fonts/inter-tight-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Inter Tight';
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url('fonts/inter-tight-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 300 600;
    font-display: swap;
    src: url('fonts/source-sans-3-normal-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 300 600;
    font-display: swap;
    src: url('fonts/source-sans-3-normal-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Source Sans 3';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/source-sans-3-italic-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Source Sans 3';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/source-sans-3-italic-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
    --bg-primary: #0F1C1E;
    --bg-secondary: #132124;
    --bg-card: #1e3033;
    --bg-light: #F4F1EC;

    --kupfer: #C47A2C;
    --kupfer-hover: #d4893a;
    --cta-red: #C33A2C;
    --cta-red-hover: #d44537;

    --text-white: #ffffff;
    --text-gray: #8a9496;
    --text-light: #e0ddd7;
    --text-muted: #5a5650;

    --font-heading: "Inter Tight", -apple-system, system-ui, "Segoe UI", sans-serif;
    --font-body: "Source Sans 3", -apple-system, system-ui, "Segoe UI", sans-serif;

    --radius: 10px;
    --radius-lg: 16px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-gray);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-weight: 700;
    line-height: 1.15;
}

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

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

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

.kupfer { color: var(--kupfer); }

.section-label {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--kupfer);
    margin-bottom: 20px;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
}

.nav.scrolled {
    background: rgba(15, 28, 30, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    border-bottom: 1px solid rgba(196, 122, 44, 0.1);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-white);
}

.nav-logo:hover { color: var(--kupfer); }

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

.nav-links a {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
}

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

.nav-cta {
    padding: 10px 24px !important;
    border: 1px solid var(--kupfer) !important;
    border-radius: var(--radius);
    color: var(--kupfer) !important;
    transition: all var(--transition);
}

.nav-cta:hover {
    background: var(--kupfer) !important;
    color: var(--text-white) !important;
}

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-white);
    transition: all var(--transition);
    transform-origin: center;
}

.nav-toggle.active span:first-child {
    transform: rotate(45deg) translate(3px, 3px);
}

.nav-toggle.active span:last-child {
    transform: rotate(-45deg) translate(3px, -3px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 999;
    background: var(--bg-primary);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-white);
}

.mobile-menu a:hover { color: var(--kupfer); }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: var(--radius);
    transition: all var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--cta-red);
    color: var(--text-white);
}

.btn-primary:hover {
    background: var(--cta-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(195, 58, 44, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
    border-color: var(--kupfer);
    color: var(--kupfer);
}

/* =============================
   1. HERO
   ============================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 140px 0 100px;
    overflow: hidden;
}

.hero-split {
    display: flex;
    align-items: flex-end;
    position: relative;
}


.hero-content {
    max-width: 640px;
    position: relative;
    z-index: 2;
}

.hero-portrait {
    position: absolute;
    right: 8vw;
    bottom: 0;
    top: 0;
    z-index: 1;
    pointer-events: none;
    display: flex;
    align-items: flex-end;
}

.hero-portrait img {
    width: auto;
    height: 90%;
    max-height: none;
    display: block;
    mask-image: linear-gradient(to right, transparent 5%, rgba(0,0,0,0.4) 25%, black 50%);
    -webkit-mask-image: linear-gradient(to right, transparent 5%, rgba(0,0,0,0.4) 25%, black 50%);
    opacity: 0;
    animation: fadeIn 1.2s ease forwards 0.4s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero h1 {
    font-size: clamp(48px, 6vw, 76px);
    font-weight: 800;
    line-height: 1.0;
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero-claim {
    font-family: var(--font-heading);
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 500;
    color: var(--kupfer);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.4s;
}

.hero-sub {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-gray);
    max-width: 580px;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero-actions {
    display: flex;
    align-items: stretch;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.8s;
}

.hero-actions .btn-primary {
    padding: 16px 24px;
}

.hero-gradient {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(196, 122, 44, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* Hero bottom edge – kupfer light strip */
.hero-edge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(196, 122, 44, 0.25);
    z-index: 10;
    overflow: hidden;
}

.hero-edge::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        transparent,
        rgba(196, 122, 44, 0.4),
        rgba(196, 122, 44, 0.9),
        rgba(196, 122, 44, 0.4),
        transparent
    );
    width: 200px;
    border-radius: 3px;
    filter: blur(1px);
    box-shadow: 0 0 12px rgba(196, 122, 44, 0.6), 0 0 4px rgba(196, 122, 44, 0.3);
    animation: heroLightSweep 5s 1s linear infinite;
}

@keyframes heroLightSweep {
    0% {
        transform: translateX(-200px);
        opacity: 0;
    }
    3% {
        opacity: 1;
    }
    95% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100vw + 200px));
        opacity: 0;
    }
}

/* =============================
   2. DENKMODELL
   ============================= */
.denkmodell {
    padding: 140px 0;
    border-top: 1px solid var(--bg-card);
}

.denkmodell-intro {
    max-width: 700px;
    margin-bottom: 64px;
}

.denkmodell-intro h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 24px;
}

.denkmodell-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-gray);
}

.denkmodell-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.denkmodell-card {
    padding: 40px 32px;
    background: var(--bg-secondary);
    border: 1px solid var(--bg-card);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.denkmodell-card:hover {
    border-color: rgba(196, 122, 44, 0.3);
    transform: translateY(-4px);
}

.card-icon {
    color: var(--kupfer);
    margin-bottom: 20px;
}

.denkmodell-card h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 12px;
}

.denkmodell-card p {
    font-size: 16px;
    line-height: 1.7;
}

.denkmodell-cta {
    text-align: center;
}

/* =============================
   3. CONTENT HUB
   ============================= */
.content-hub {
    padding: 140px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--bg-card);
    border-bottom: 1px solid var(--bg-card);
}

.content-hub h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 40px;
}

.content-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
}

.tab-btn {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 100px;
    border: 1px solid var(--bg-card);
    background: transparent;
    color: var(--text-gray);
    cursor: pointer;
    transition: all var(--transition);
}

.tab-btn:hover {
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.2);
}

.tab-btn.active {
    background: var(--kupfer);
    border-color: var(--kupfer);
    color: var(--text-white);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.content-card {
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    background: var(--bg-primary);
    border: 1px solid var(--bg-card);
}

.content-card:hover {
    transform: translateY(-4px);
    border-color: rgba(196, 122, 44, 0.3);
}

.content-thumb {
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a2a2d, #0F1C1E);
}

.content-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.content-card:hover .content-thumb img {
    transform: scale(1.05);
}

.video-thumb {
    background: #000;
}

.podcast-thumb {
    background: #1a2a2d;
    color: var(--kupfer);
}

.artikel-thumb {
    background: #1a2a2d;
    color: var(--kupfer);
}

.play-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(196, 122, 44, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kupfer);
    transition: all var(--transition);
    position: relative;
    z-index: 2;
}

.content-card:hover .play-icon {
    background: var(--kupfer);
    color: var(--bg-primary);
    transform: scale(1.1);
}

.listen-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(30, 215, 96, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1ed760;
    transition: all var(--transition);
    position: relative;
    z-index: 2;
}

.content-card:hover .listen-icon {
    background: #1ed760;
    color: var(--bg-primary);
    transform: scale(1.1);
}

.read-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(196, 122, 44, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kupfer);
    transition: all var(--transition);
    position: relative;
    z-index: 2;
}

.content-card:hover .read-icon {
    background: var(--kupfer);
    color: var(--bg-primary);
    transform: scale(1.1);
}

.content-card h4 {
    font-size: 17px;
    font-weight: 600;
    padding: 20px 20px 8px;
    line-height: 1.4;
}

.content-meta {
    font-size: 13px;
    color: var(--text-gray);
    padding: 0 20px 20px;
}

/* =============================
   4. PERSÖNLICHE STORY
   ============================= */
.story {
    padding: 140px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    align-items: center;
}

/* -- Story Collage -- */
.story-collage {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    grid-template-rows: 1.3fr 1fr;
    gap: 6px;
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.collage-item {
    overflow: hidden;
    position: relative;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.collage-item:hover img {
    transform: scale(1.05);
}

.collage-accent {
    position: relative;
}

.collage-accent::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--kupfer);
    opacity: 0.4;
    pointer-events: none;
}

.story h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 28px;
}

.story p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
}

.story-highlight {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-white) !important;
    font-size: 19px !important;
}

/* Story Narrative (full-width text below intro) */
.story-narrative {
    max-width: 720px;
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid var(--bg-card);
}

.story-narrative p {
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.85;
}

.story-narrative a {
    color: var(--kupfer);
    text-decoration: none;
}

.story-narrative a:hover {
    text-decoration: underline;
}

/* Anti-Guru Block */
.story-ehrlich {
    margin-top: 48px;
    padding: 32px 36px;
    border-left: 3px solid var(--kupfer);
    background: var(--bg-secondary);
    border-radius: 0 var(--radius) var(--radius) 0;
    max-width: 720px;
}

.story-ehrlich h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--kupfer);
    margin-bottom: 12px;
}

.story-ehrlich p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 0;
}

/* Timeline */
.timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 64px;
    padding-top: 80px;
    border-top: none;
}

/* Horizontal track line */
.timeline-track {
    position: absolute;
    top: 32px;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(196, 122, 44, 0.12);
    grid-column: 1 / -1;
    overflow: hidden;
}

.timeline-line {
    height: 100%;
    width: 0%;
    background: rgba(196, 122, 44, 0.35);
    transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.timeline.active .timeline-line {
    width: 100%;
}

/* Pulsing light sweep */
.timeline-track::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 180px;
    height: 5px;
    background: linear-gradient(90deg,
        transparent,
        rgba(196, 122, 44, 0.4),
        rgba(196, 122, 44, 0.9),
        rgba(196, 122, 44, 0.4),
        transparent
    );
    border-radius: 3px;
    opacity: 0;
    transform: translateX(-180px);
    filter: blur(1px);
    box-shadow: 0 0 8px rgba(196, 122, 44, 0.5);
}

.timeline.active .timeline-track::after {
    opacity: 1;
    animation: lightSweep 4.5s 1.2s linear infinite;
}

@keyframes lightSweep {
    0% {
        transform: translateX(-180px);
        opacity: 0;
    }
    3% {
        opacity: 1;
    }
    95% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100vw + 180px));
        opacity: 0;
    }
}

/* Dots */
.timeline-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 2px solid rgba(196, 122, 44, 0.3);
    margin-bottom: 20px;
    position: relative;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.timeline-item.visible .timeline-dot {
    border-color: var(--kupfer);
    box-shadow: 0 0 12px rgba(196, 122, 44, 0.3);
}

.timeline-year {
    display: block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--kupfer);
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.timeline-text strong {
    display: block;
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.timeline-text p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.5;
}

.timeline-item {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* nth-child offset by 1 because .timeline-track is the first child */
.timeline-item:nth-child(3) { transition-delay: 0.15s; }
.timeline-item:nth-child(4) { transition-delay: 0.3s; }
.timeline-item:nth-child(5) { transition-delay: 0.45s; }

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--bg-card);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--kupfer);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
}

/* =============================
   5. SYSTEMUNTERNEHMER TEASER
   ============================= */
.programm {
    padding: 140px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--bg-card);
    border-bottom: 1px solid var(--bg-card);
}

.programm-inner {
    max-width: 100%;
    text-align: left;
}

.programm h2 {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 20px;
}

.programm-text {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 48px;
}

.programm-wege {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
    text-align: left;
}

.programm-weg {
    background: var(--bg-secondary);
    border: 1px solid var(--bg-card);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: border-color var(--transition), transform var(--transition);
}

.programm-weg:hover {
    border-color: var(--kupfer);
    transform: translateY(-2px);
}

.weg-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: var(--kupfer);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.programm-weg h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.programm-weg p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
}

.programm-zielgruppe {
    text-align: left;
    max-width: 760px;
    margin: 0 auto 48px;
    padding: 24px 28px;
    border-left: 3px solid var(--kupfer);
    background: var(--bg-secondary);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.programm-zielgruppe p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
}

.programm-zielgruppe strong {
    color: var(--text-white);
}

.programm-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* =============================
   6. DENKIMPULSE
   ============================= */
.impulse {
    padding: 140px 0;
}

.impulse h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 56px;
}

.impulse-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.impulse-card {
    padding: 40px 32px;
    background: var(--bg-secondary);
    border: 1px solid var(--bg-card);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.impulse-card:hover {
    border-color: rgba(196, 122, 44, 0.3);
    transform: translateY(-4px);
}

.impulse-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: rgba(196, 122, 44, 0.15);
    line-height: 1;
    display: block;
    margin-bottom: 20px;
}

.impulse-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.impulse-card p {
    font-size: 16px;
    line-height: 1.7;
}

/* =============================
   7. FINAL CTA
   ============================= */
.final-cta {
    padding: 140px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--bg-card);
    border-bottom: 1px solid var(--bg-card);
}

.final-cta-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.final-cta h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    margin-bottom: 40px;
    line-height: 1.3;
}

.final-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Legal Pages (Impressum, Datenschutz) --- */
.legal-page {
    padding: 160px 0 80px;
}

.legal-page h1 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 48px;
    color: var(--text-white);
}

.legal-page h2 {
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 700;
    color: var(--kupfer);
    margin-top: 48px;
    margin-bottom: 16px;
}

.legal-page h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-page p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 16px;
    max-width: 800px;
}

.legal-page p strong {
    color: var(--text-white);
}

.legal-page a {
    color: var(--kupfer);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition);
}

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

.legal-copyright {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
    color: var(--text-muted);
}

/* --- Footer --- */
.footer {
    padding: 60px 0 40px;
}

.footer-claim {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 40px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--bg-card);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a { color: var(--text-gray); }
.footer-links a:hover { color: var(--kupfer); }

/* --- Animations --- */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .story-grid { grid-template-columns: 300px 1fr; gap: 48px; }
    .programm-wege { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 768px) {
    body { font-size: 16px; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .mobile-menu { display: flex; }

    .hero { padding: 120px 0 60px; min-height: auto; }
    .hero-split { flex-direction: column; text-align: center; }
    .hero-content { max-width: 100%; }
    .hero-sub { max-width: 100%; }
    .hero h1 { font-size: 48px; }
    .hero-sub { font-size: 17px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { text-align: center; justify-content: center; }
    .hero-portrait { display: none; }

    .denkmodell { padding: 80px 0; }
    .denkmodell-grid { grid-template-columns: 1fr; }

    .content-hub { padding: 80px 0; }
    .content-grid { grid-template-columns: 1fr; }
    .content-tabs { flex-wrap: wrap; }

    .story { padding: 80px 0; }
    .story-grid { grid-template-columns: 1fr; gap: 40px; }
    .story-collage { max-width: 320px; margin: 0 auto; }
    .timeline { grid-template-columns: repeat(2, 1fr); }
    .story-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }

    .programm { padding: 80px 0; }
    .programm-wege { grid-template-columns: 1fr; }
    .programm-actions { flex-direction: column; align-items: stretch; }
    .programm-actions .btn { text-align: center; justify-content: center; }

    .impulse { padding: 80px 0; }
    .impulse-grid { grid-template-columns: 1fr; }

    .final-cta { padding: 80px 0; }
    .final-cta-actions { flex-direction: column; align-items: center; }

    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 38px; }
    .container { padding: 0 16px; }
    .timeline { grid-template-columns: 1fr; }
    .story-stats { grid-template-columns: 1fr; }
}
