    /* Skip link pour accessibilité - masqué par défaut */
    .skip-link {
        position: absolute;
        top: -40px;
        left: 6px;
        background: #000000;
        color: #D4A574;
        padding: 8px;
        text-decoration: none;
        border-radius: 4px;
        z-index: 2000;
        font-size: 14px;
        transition: top 0.3s ease;
    }
    
    .skip-link:focus {
        top: 6px;
    }
    
    /* === CATHEDRAL SILENCE - SALZBURG FESTIVAL PROGRAM === */
    
    /* Page Foundation - Dark Mode */
    body {
        background: #1a1a1a !important;
        color: #F5F5F0 !important;
        font-family: 'Lora', 'Georgia', serif !important;
        line-height: 1.8 !important;
    }
    
    /* Variables Cathedral - Dark Mode */
    :root {
        --paper-warm: #1a1a1a;
        --charcoal-deep: #F5F5F0;
        --charcoal-soft: #E0E0E0;
        --gold-accent: #D4A574;
        
        --hero-height: 85vh;
        --section-spacing: 4rem;
        --paragraph-spacing: 3rem;
        --line-height-text: 1.8;
        --line-height-title: 1.2;
        --transition-silence: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    /* === HERO DIAPASON D'OR === */
    .hero-diapason {
        min-height: 100vh;
        background: linear-gradient(135deg, #0a0a0a 0%, #2a2a2a 100%);
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
    }

    /* Container principal */
    .diapason-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
        max-width: 1400px;
        width: 100%;
        margin: 0 auto;
        padding: 0 4rem;
        align-items: center;
        min-height: 100vh;
    }

    /* Section Photo Portrait */
    .portrait-section {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .portrait-frame {
        position: relative;
        width: 500px;
        height: 650px;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    }

    .portrait-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: contrast(1.1) brightness(1.05);
        transition: all 0.6s ease;
    }

    .portrait-frame:hover .portrait-image {
        transform: scale(1.05);
        filter: contrast(1.2) brightness(1.1);
    }

    /* Ondes sonores du diapason */
    .tuning-waves {
        position: absolute;
        top: 20%;
        right: -50px;
        width: 200px;
        height: 200px;
        pointer-events: none;
    }

    .wave-ring {
        position: absolute;
        border: 2px solid rgba(212, 165, 116, 0.3);
        border-radius: 50%;
        animation: wave-expand 3s ease-out infinite;
    }

    .wave-ring:nth-child(1) {
        width: 80px;
        height: 80px;
        top: 60px;
        left: 60px;
        animation-delay: 0s;
    }

    .wave-ring:nth-child(2) {
        width: 120px;
        height: 120px;
        top: 40px;
        left: 40px;
        animation-delay: 0.8s;
    }

    .wave-ring:nth-child(3) {
        width: 160px;
        height: 160px;
        top: 20px;
        left: 20px;
        animation-delay: 1.6s;
    }

    @keyframes wave-expand {
        0% {
            transform: scale(0.1);
            opacity: 1;
        }
        100% {
            transform: scale(1);
            opacity: 0;
        }
    }

    /* Particules musicales supprimées - animation de trop */

    /* Section Contenu */
    .content-section {
        padding-left: 2rem;
    }


    .bio-title {
        font-family: 'Playfair Display', serif;
        font-size: clamp(3.5rem, 6vw, 5rem);
        font-weight: 300;
        line-height: 1.1;
        margin-bottom: 1rem;
        letter-spacing: -0.02em;
    }

    .bio-title .first-name {
        color: #f5f5f0;
    }

    .bio-title .last-name {
        background: linear-gradient(135deg, #D4A574 0%, #f4d794 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .bio-position {
        font-size: clamp(1.2rem, 2vw, 1.6rem);
        font-weight: 300;
        color: #D4A574;
        margin-bottom: 2rem;
        font-style: italic;
    }

    .bio-description {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #cccccc;
        margin-bottom: 2.5rem;
        max-width: 500px;
    }


    /* Boutons d'action */
    .bio-actions {
        display: flex;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .bio-btn {
        padding: 1rem 2rem;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .bio-btn-primary {
        background: linear-gradient(135deg, #D4A574, #c19660);
        color: #0a0a0a;
    }

    .bio-btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(212, 165, 116, 0.4);
    }

    .bio-btn-secondary {
        background: transparent;
        color: #f5f5f0;
        border: 1px solid rgba(245, 245, 240, 0.3);
    }

    .bio-btn-secondary:hover {
        background: rgba(245, 245, 240, 0.1);
        border-color: rgba(212, 165, 116, 0.6);
    }

    /* Responsive Diapason */
    @media (max-width: 1024px) {
        .diapason-container {
            grid-template-columns: 1fr;
            gap: 4rem;
            text-align: center;
        }

        .content-section {
            padding-left: 0;
        }

        .portrait-frame {
            width: 400px;
            height: 520px;
        }
    }

    @media (max-width: 768px) {
        .portrait-frame {
            width: 300px;
            height: 390px;
        }

        .bio-trinity {
            justify-content: center;
        }

        .bio-actions {
            justify-content: center;
        }
    }

    /* === STYLES BIOGRAPHIE === */

    /* === SECTIONS NARRATIVES DARK MODE === */
    .narrative-section {
        padding: var(--section-spacing) 0;
        max-width: 900px;
        margin: 0 auto;
        padding-left: 3rem;
        padding-right: 3rem;
        background: #1a1a1a;
        position: relative;
        z-index: 20;
    }

    .opening-verse {
        font-family: 'Playfair Display', serif;
        font-size: clamp(1.6rem, 3vw, 2.4rem);
        line-height: 1.6;
        color: #F5F5F0;
        margin-bottom: var(--paragraph-spacing);
        text-align: center;
        font-style: italic;
        text-indent: 0;
    }


    .narrative-paragraph {
        font-family: 'Lora', 'Georgia', serif;
        font-size: clamp(1.1rem, 2vw, 1.3rem);
        line-height: 1.8;
        color: rgba(245, 245, 240, 0.9);
        margin-bottom: 2rem;
        text-align: justify;
        text-indent: 2em;
    }

    .section-divider {
        width: 80px;
        height: 1px;
        background: var(--gold-accent);
        margin: calc(var(--section-spacing) * 0.8) auto;
        opacity: 0.6;
        box-shadow: 0 0 20px rgba(212, 165, 116, 0.3);
    }

    /* === TYPOGRAPHY HIERARCHY DARK MODE === */
    .chapter-title {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 600;
        color: #F5F5F0;
        text-align: center;
        margin-bottom: calc(var(--section-spacing) * 0.5);
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    .verse-number {
        font-family: 'Playfair Display', serif;
        font-size: 1rem;
        color: var(--gold-accent);
        margin-bottom: 1rem;
        text-align: center;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        font-weight: 400;
        text-shadow: 0 0 20px rgba(212, 165, 116, 0.3);
    }

    /* === RESPONSIVE ORGAN + DARK MODE === */
    @media (max-width: 768px) {
        :root {
            --hero-height: 70vh;
            --section-spacing: 6rem;
            --paragraph-spacing: 2rem;
        }

        .hero-title {
            font-size: clamp(2.5rem, 8vw, 4rem);
        }
        
        .hero-subtitle {
            font-size: clamp(1rem, 3vw, 1.4rem);
        }
        
        .narrative-section {
            padding-left: 2rem;
            padding-right: 2rem;
        }
        
    }

    @media (max-width: 480px) {
        :root {
            --hero-height: 60vh;
            --section-spacing: 4rem;
        }

        .narrative-section {
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }
        
        .narrative-paragraph,
        .opening-verse {
            text-align: left;
            text-indent: 0;
        }
    }

    /* === NAVIGATION DARK MODE === */
    .navbar-monastery {
        background: rgba(0, 0, 0, 0.8) !important;
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    }

    .navbar-identity,
    .navbar-link {
        color: #F5F5F0 !important;
    }

    .navbar-link:hover {
        color: var(--gold-accent) !important;
    }

    .navbar-link.current {
        color: var(--gold-accent) !important;
        background: rgba(212, 165, 116, 0.1) !important;
    }

    /* === FOOTER DARK MODE === */
    .footer-monastery-v2 {
        background: #0a0a0a !important;
        border-top: 1px solid rgba(212, 165, 116, 0.2);
    }

    .footer-monastery-v2 .footer-section-title-v2,
    .footer-monastery-v2 .artist-name,
    .footer-monastery-v2 .artist-title,
    .footer-monastery-v2 .artist-institution,
    .footer-monastery-v2 .footer-nav-link-v2,
    .footer-monastery-v2 .partner-item-v2,
    .footer-monastery-v2 .footer-social-title-v2,
    .footer-monastery-v2 a {
        color: #F5F5F0 !important;
    }

    .footer-monastery-v2 .partner-item-v2.highlight {
        color: #D4A574 !important;
    }

    .footer-monastery-v2 a:hover {
        color: #D4A574 !important;
    }

    .footer-monastery-v2 .footer-bottom-v2 {
        color: rgba(245, 245, 240, 0.7) !important;
        border-top: 1px solid rgba(212, 165, 116, 0.1) !important;
    }

    .footer-monastery-v2 .footer-bottom-v2 div {
        color: rgba(245, 245, 240, 0.7) !important;
    }

/* === SCROLL INDICATOR === */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-indicator svg {
    width: 30px;
    height: 30px;
    stroke: #D4A574;
    stroke-width: 2;
    fill: none;
}
