        /* === HERO CATHÉDRALE SONORE === */
        .hero-cathedral {
            min-height: 100vh;
            background: radial-gradient(ellipse at center, #1a1a1a 0%, #0a0a0a 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        /* Tuyaux d'orgue interactifs */
        .organ-pipes-container {
            position: absolute;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            opacity: 0.15;
            transition: opacity 0.6s ease;
        }

        .hero-cathedral:hover .organ-pipes-container {
            opacity: 0.25;
        }

        .organ-pipe {
            width: 2%;
            margin: 0 0.5%;
            background: linear-gradient(180deg, #D4A574 0%, #c19660 50%, #0a0a0a 100%);
            border-radius: 4px 4px 0 0;
            transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
            transform-origin: bottom;
            animation: pipe-breathe 8s ease-in-out infinite;
        }

        .organ-pipe:nth-child(1) { height: 30%; animation-delay: 0s; }
        .organ-pipe:nth-child(2) { height: 45%; animation-delay: 0.2s; }
        .organ-pipe:nth-child(3) { height: 60%; animation-delay: 0.4s; }
        .organ-pipe:nth-child(4) { height: 80%; animation-delay: 0.6s; }
        .organ-pipe:nth-child(5) { height: 90%; animation-delay: 0.8s; }
        .organ-pipe:nth-child(6) { height: 95%; animation-delay: 1s; }
        .organ-pipe:nth-child(7) { height: 100%; animation-delay: 1.2s; }
        .organ-pipe:nth-child(8) { height: 95%; animation-delay: 1.4s; }
        .organ-pipe:nth-child(9) { height: 90%; animation-delay: 1.6s; }
        .organ-pipe:nth-child(10) { height: 80%; animation-delay: 1.8s; }
        .organ-pipe:nth-child(11) { height: 60%; animation-delay: 2s; }
        .organ-pipe:nth-child(12) { height: 45%; animation-delay: 2.2s; }
        .organ-pipe:nth-child(13) { height: 30%; animation-delay: 2.4s; }

        @keyframes pipe-breathe {
            0%, 100% { transform: scaleY(1) translateY(0); }
            50% { transform: scaleY(1.05) translateY(-10px); }
        }

        /* Contenu central */
        .cathedral-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 900px;
            padding: 0 2rem;
        }

        .cathedral-badge {
            display: inline-block;
            background: rgba(212, 165, 116, 0.1);
            border: 1px solid rgba(212, 165, 116, 0.3);
            color: #D4A574;
            padding: 0.75rem 1.5rem;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
        }

        .cathedral-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 300;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
            background: linear-gradient(180deg, #f5f5f0 0%, #D4A574 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .cathedral-subtitle {
            font-size: clamp(1.2rem, 2.5vw, 1.8rem);
            font-weight: 300;
            color: #D4A574;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cathedral-description {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #999;
            max-width: 600px;
            margin: 0 auto 3rem;
        }

        /* Boutons d'action */
        .cathedral-actions {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cathedral-btn {
            padding: 1rem 2.5rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
        }

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

        .cathedral-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
        }

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

        .cathedral-btn-secondary:hover {
            background: rgba(245, 245, 240, 0.05);
            border-color: rgba(212, 165, 116, 0.5);
        }

        /* Ondes sonores subtiles */
        .sound-waves {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .sound-wave {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 100px;
            height: 100px;
            border: 1px solid rgba(212, 165, 116, 0.2);
            border-radius: 50%;
            animation: wave-expand 4s ease-out infinite;
        }

        .sound-wave:nth-child(2) { animation-delay: 1s; }
        .sound-wave:nth-child(3) { animation-delay: 2s; }
        .sound-wave:nth-child(4) { animation-delay: 3s; }

        @keyframes wave-expand {
            0% {
                width: 100px;
                height: 100px;
                opacity: 0.8;
            }
            100% {
                width: 800px;
                height: 800px;
                opacity: 0;
            }
        }

        /* Particules flottantes */
        .floating-notes {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .note {
            position: absolute;
            font-family: 'Playfair Display', serif;
            color: rgba(212, 165, 116, 0.3);
            font-size: 1.5rem;
            animation: float-up 15s linear infinite;
        }

        .note:nth-child(1) { left: 10%; animation-delay: 0s; }
        .note:nth-child(2) { left: 25%; animation-delay: 3s; }
        .note:nth-child(3) { left: 40%; animation-delay: 6s; }
        .note:nth-child(4) { left: 60%; animation-delay: 9s; }
        .note:nth-child(5) { left: 75%; animation-delay: 12s; }
        .note:nth-child(6) { left: 90%; animation-delay: 15s; }

        @keyframes float-up {
            0% {
                bottom: -50px;
                transform: translateX(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.5;
            }
            90% {
                opacity: 0.5;
            }
            100% {
                bottom: 110%;
                transform: translateX(50px) rotate(360deg);
                opacity: 0;
            }
        }

        /* Responsive Cathédrale */
        @media (max-width: 768px) {
            .cathedral-title {
                font-size: clamp(2rem, 10vw, 4rem);
            }
            
            .cathedral-subtitle {
                font-size: clamp(1rem, 4vw, 1.4rem);
            }
            
            .cathedral-actions {
                flex-direction: column;
                align-items: center;
            }
            
            .cathedral-btn {
                width: 80%;
                justify-content: center;
            }
        }

        /* === STYLES DES SECTIONS === */
        .section {
            padding: 6rem 0;
            background: #1a1a1a;
        }
        
        /* Sections avec fond clair pour lisibilité */
        .section.light-bg {
            background: #f8f8f8;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        /* Styles de base pour tous les titres */
        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        /* === TITRES SECTION VIDÉO & GALERIE (Fond Blanc) === */
        .section.light-bg .section-title {
            color: #1a1a1a !important;
            font-weight: 600 !important;
            text-shadow: none !important;
            margin-bottom: 1rem !important;
        }
        
        .section.light-bg .section-subtitle {
            color: #555555 !important;
            font-weight: 400 !important;
        }
        
        /* === TITRES SECTION PRESSE (Fond Noir) === */
        .section:not(.light-bg) .section-title {
            color: #D4A574 !important;
            font-weight: 400 !important;
            text-shadow: none !important;
        }
        
        .section:not(.light-bg) .section-subtitle {
            color: #cccccc !important;
            font-weight: 300 !important;
        }

        /* Videos Grid */
        .videos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .video-card {
            background: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }

        .video-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        }

        .video-thumbnail {
            position: relative;
            height: 200px;
            background: #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-size: 1.1rem;
            font-weight: 500;
        }

        .video-placeholder {
            text-align: center;
            padding: 2rem;
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: rgba(212, 165, 116, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .video-card:hover .play-button {
            background: #D4A574;
            transform: translate(-50%, -50%) scale(1.1);
        }

        .video-content {
            padding: 1.5rem;
        }

        .video-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #2c2c2c;
            margin-bottom: 0.5rem;
            line-height: 1.4;
        }

        .video-description {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 1rem;
        }

        .video-meta {
            display: flex;
            justify-content: space-between;
            font-size: 0.85rem;
            color: #999;
        }

        /* Photos Grid - 15 photos premium */
        .photos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

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

        @media (min-width: 1200px) {
            .photos-grid {
                grid-template-columns: repeat(6, 1fr);
                gap: 1.5rem;
            }
        }

        /* Animation d'apparition aléatoire */
        .photo-card {
            opacity: 0;
            transform: translateY(20px);
            animation: photo-fade-in 0.6s ease-out forwards;
            position: relative;
            cursor: pointer;
        }

        .photo-card:hover {
            transform: scale(1.03);
        }

        .photo-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 2rem 1rem 1rem;
            font-size: 0.9rem;
            font-weight: 500;
            text-align: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            border-radius: 0 0 8px 8px;
        }

        .photo-card:hover .photo-caption {
            opacity: 1;
        }

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

        .photo-card {
            position: relative;
            height: 250px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

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

        .photo-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }


        /* Press Kit */
        .press-kit {
            background: #0a0a0a;
            padding: 4rem 0 2rem;
            color: #cccccc;
            border-top: 1px solid #1a1a1a;
        }

        .press-kit .section-title {
            color: #D4A574;
        }

        .press-kit .section-subtitle {
            color: #cccccc;
        }

        .download-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .download-item {
            background: rgba(212, 165, 116, 0.05);
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid rgba(212, 165, 116, 0.1);
            text-align: center;
        }

        .download-icon {
            font-size: 2rem;
            color: #D4A574;
            margin-bottom: 1rem;
            display: block;
        }

        .download-item h3 {
            color: #D4A574;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .download-item p {
            color: #cccccc;
            margin-bottom: 1.5rem;
        }

        .btn-download {
            background: #D4A574;
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-download:hover {
            background: #c19660;
            transform: translateY(-2px);
        }

        .press-contact {
            text-align: center;
            margin-top: 4rem;
            padding: 2rem;
            background: rgba(212, 165, 116, 0.05);
            border-radius: 12px;
            border: 1px solid rgba(212, 165, 116, 0.1);
        }

        .press-contact h3 {
            color: #D4A574;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .press-contact p {
            color: #cccccc;
            line-height: 1.6;
        }

        /* Responsive pour sections */
        @media (max-width: 768px) {
            .videos-grid {
                grid-template-columns: 1fr;
            }

            .photos-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }

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

        /* === MAGAZINE STYLE PRESSE === */
        .press-magazine {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            grid-gap: 2rem;
            margin-bottom: 3rem;
        }

        /* Article principal - grande carte */
        .press-featured {
            grid-column: span 8;
            grid-row: span 2;
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .press-featured:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .press-featured-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .press-featured:hover .press-featured-image {
            transform: scale(1.05);
        }

        .press-featured-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            padding: 3rem 2rem 2rem;
            color: white;
        }

        .press-featured-category {
            display: inline-block;
            background: #D4A574;
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 1rem;
        }

        .press-featured-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 400;
            margin-bottom: 0.8rem;
            line-height: 1.3;
        }

        .press-featured-excerpt {
            font-size: 1rem;
            opacity: 0.9;
            line-height: 1.5;
            margin-bottom: 1rem;
        }

        .press-featured-meta {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* Articles secondaires - grid vertical */
        .press-secondary {
            grid-column: span 4;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .press-card-small {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .press-card-small:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(212, 165, 116, 0.2);
        }

        .press-card-small-image {
            width: 100%;
            height: 120px;
            object-fit: cover;
        }

        .press-card-small-content {
            padding: 1.5rem;
        }

        .press-card-small-category {
            display: inline-block;
            background: rgba(212, 165, 116, 0.1);
            color: #D4A574;
            padding: 0.3rem 0.8rem;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.8rem;
        }

        .press-card-small-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            font-weight: 400;
            color: #2c2c2c;
            margin-bottom: 0.8rem;
            line-height: 1.3;
        }

        .press-card-small-excerpt {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 1rem;
        }

        .press-card-small-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: #999;
            font-size: 0.8rem;
        }

        /* Responsive magazine */
        @media (max-width: 768px) {
            .press-magazine {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .press-featured,
            .press-secondary {
                grid-column: span 1;
            }

            .press-featured {
                grid-row: span 1;
            }

            .press-featured-image {
                height: 250px;
            }
        }
