:root {
    --gold-text: #b69874;
    /* Champagne gold für den Text */
    --gold-dim: #776550;
    /* Gedimmtes Gold für Autor und Logo-Schrift */
    --gold-line: #cda980;
    /* Glühendes Gold für die Linien unten */
    --gold-menu: #666666;
    /* Grau/gedimmtes Gold für das Menü */
    --bg-center: #161616;
    --bg-edge: #0a0a0a;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-edge);
    background: radial-gradient(circle at center, var(--bg-center) 0%, var(--bg-edge) 80%);
    height: 100vh;
    height: 100dvh; /* Liquid mobile viewport */
    width: 100vw;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    color: var(--gold-text);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Header & Navigation (Oben Links) */
.header {
    position: absolute;
    top: 45px;
    left: 45px;
    display: flex;
    align-items: center;
    gap: 30px;
    /* Präziser Abstand zwischen Hamburger und Logo */
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 9px;
    /* Abstand zwischen den beiden Linien */
    cursor: pointer;
    padding-top: 2px;
    /* Visuelle Zentrierung zum Logo-Block */
}

.menu-line {
    width: 32px;
    height: 2px;
    /* Im Screenshot sind die Linien stärker (2px) und keine Haarlinien */
    background-color: #a49684;
    /* Gedimmtes Messing-Gold aus dem Bild */
    border-radius: 1px;
    /* Für absolute Premium-Qualität mikro-abgerundet */
    transition: background-color 0.4s ease;
}

.menu-icon:hover .menu-line {
    background-color: #d1c1af;
}

.brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    /* Vogel und Schrift liegen im Screenshot extrem eng beieinander */
}



.logo-text {
    font-size: 0.85rem;
    /* Größer und prägnanter als zuvor */
    font-weight: 500;
    /* Feste Stärke, nah an der Liniendicke des Menüs */
    letter-spacing: 0.15em;
    /* Ausbalancierte Sperrung, nicht zu weit */
    color: #a49684;
    /* 100% selbe Farbe wie Menü und Icon für absolute Ruhe */
    margin-left: 0.15em;
    /* Optischer Ausgleich */
}

/* Hauptbereich: Zitat in der Mitte */
.hero {
    text-align: center;
    margin-top: -6vh;
    /* Visuell exakt in die Mitte ausbalanciert */
}

.quote {
    font-size: 1.55rem;
    font-weight: 300;
    line-height: 2.3;
    letter-spacing: 0.45em;
    /* Sehr weite, elitäre Sperrung wie im Screenshot */
    margin-bottom: 70px;
    /* Eleganter Abstand zu "PARACELSUS" */
    margin-left: 0.45em;
    /* Optischer Ausgleich */

    /* Perfektioniert: Licht fällt exakt von rechts oben ein ("to bottom left") */
    /* Die rechte obere Kante fängt das meiste Licht (Weißgold), nach links unten fällt es sanft in den Schatten. */
    background: linear-gradient(to bottom left, #fbdec2 0%, #c4a179 45%, #6a503a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.author {
    font-size: 0.70rem;
    font-weight: 400;
    letter-spacing: 0.6em;
    /* Noch weitere Sperrung für subtile Dominanz */
    color: #ffffff;
    margin-left: 0.6em;
    /* Optischer Ausgleich */
    opacity: 0;
    will-change: opacity;
    animation: authorFadeIn 3.5s cubic-bezier(0.33, 1, 0.68, 1) 3.5s forwards;
}

/* Kaskadierendes Zitat (Abyssal Emergence - Louis Vuitton Style) */
.quote-line {
    display: inline-block;
    opacity: 0;
    filter: blur(18px);
    transform: scale(0.92) translateZ(0);
    will-change: transform, opacity, filter;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    white-space: nowrap;
    animation: abyssalEmergence 4.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

/* Etwas schnelleres Überfließen der Zeilen (Liquid Flow) */
.line-1 { animation-delay: 0.0s; }
.line-2 { animation-delay: 0.6s; }
.line-3 { animation-delay: 1.2s; }

@keyframes abyssalEmergence {
    0% {
        opacity: 0;
        filter: blur(18px);
        transform: scale(0.92) translateZ(0);
    }
    30% {
        opacity: 0.3;
    }
    100% {
        opacity: 1;
        filter: blur(0px);
        transform: scale(1) translateZ(0);
    }
}

@keyframes authorFadeIn {
    0% { opacity: 0; }
    100% { opacity: 0.75; }
}

/* Mobile Optimization - Liquid 120hz Premium Feel (Porsche/Mercedes) */
@media (max-width: 768px) {
    .header {
        top: 25px;
        left: 25px;
        /* SafeArea support for modern iPhones (Notch/Dynamic Island) */
        top: max(25px, env(safe-area-inset-top));
        left: max(25px, env(safe-area-inset-left));
    }

    .hero {
        width: 100%;
        padding: 0 15px; 
        box-sizing: border-box;
    }

    .quote {
        font-size: clamp(0.7rem, 3.2vw, 1.1rem); 
        line-height: 2.2;
        letter-spacing: 0.3em;
        margin-left: 0.3em;
        margin-bottom: 45px;
    }

    .quote-line {
        white-space: normal;
        word-break: keep-all;
        overflow-wrap: normal;
        hyphens: none;
    }

    .author {
        font-size: clamp(0.5rem, 2vw, 0.70rem);
        letter-spacing: 0.5em;
        margin-left: 0.5em;
    }
}
