:root {
            --noir: #1a1a1a;
            --anthracite: #2d2d2d;
            --acier: #4a5568;
            --argent: #a0aec0;
            --or: #c9a84c;
            --or-clair: #e2c972;
            --or-fonce: #a07c2e;
            --blanc-casse: #f7f5f0;
            --blanc: #fefefe;
            --rouge-brique: #8b3a3a;
            --fond-carte: #faf9f6;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Raleway', sans-serif;
            color: var(--noir);
            background: var(--blanc-casse);
            overflow-x: hidden;
        }

        /* ========== HERO ========== */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: linear-gradient(170deg, var(--noir) 0%, #1c2330 40%, #2a2520 70%, var(--anthracite) 100%);
            position: relative;
            overflow: hidden;
            padding: 2rem;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 800px 600px at 30% 20%, rgba(201, 168, 76, 0.06) 0%, transparent 70%),
                radial-gradient(ellipse 600px 400px at 70% 80%, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
            pointer-events: none;
        }

        /* Texture de grain subtile */
        .hero::after {
            content: '';
            position: absolute;
            inset: 0;
            opacity: 0.03;
            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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-block;
            border: 1px solid var(--or);
            color: var(--or);
            font-family: 'Raleway', sans-serif;
            font-weight: 500;
            font-size: 0.75rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            padding: 0.5rem 1.5rem;
            margin-bottom: 2.5rem;
            opacity: 0;
            animation: fadeUp 1s 0.2s forwards;
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(3rem, 8vw, 7rem);
            font-weight: 900;
            color: var(--blanc);
            line-height: 1;
            letter-spacing: -0.02em;
            margin-bottom: 0.3em;
            opacity: 0;
            animation: fadeUp 1s 0.4s forwards;
        }

        .hero-title .accent {
            color: var(--or);
            font-style: italic;
        }

        .hero-subtitle {
            font-family: 'Cinzel', serif;
            font-size: clamp(0.85rem, 2vw, 1.15rem);
            color: var(--argent);
            letter-spacing: 0.25em;
            text-transform: uppercase;
            margin-bottom: 3rem;
            opacity: 0;
            animation: fadeUp 1s 0.6s forwards;
        }

        .hero-separator {
            width: 60px;
            height: 1px;
            background: var(--or);
            margin: 0 auto 2.5rem;
            opacity: 0;
            animation: fadeUp 1s 0.7s forwards;
        }

        .hero-contact {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.6rem;
            opacity: 0;
            animation: fadeUp 1s 0.8s forwards;
        }

        .hero-contact .name {
            font-family: 'Raleway', sans-serif;
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--blanc);
            letter-spacing: 0.08em;
        }

        .hero-contact a {
            color: var(--argent);
            text-decoration: none;
            font-weight: 400;
            font-size: 0.95rem;
            letter-spacing: 0.04em;
            transition: color 0.3s;
        }

        .hero-contact a:hover {
            color: var(--or);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2.5rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            opacity: 0;
            animation: fadeUp 1s 1.2s forwards;
            z-index: 1;
        }

        .scroll-indicator span {
            font-size: 0.65rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--acier);
        }

        .scroll-indicator .arrow {
            width: 1px;
            height: 30px;
            background: var(--or);
            position: relative;
            animation: scrollPulse 2s infinite;
        }

        @keyframes scrollPulse {
            0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
            50% { opacity: 1; transform: scaleY(1); }
        }

        /* ========== SECTION GALERIE ========== */
        .gallery-section {
            padding: 5rem 2rem;
            background: var(--blanc-casse);
        }

        .gallery-grid {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .gallery-item {
            aspect-ratio: 4/3;
            overflow: hidden;
            border-radius: 6px;
            position: relative;
            background: var(--anthracite);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s, transform 0.8s;
        }

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

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

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

        .gallery-placeholder {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            color: var(--argent);
            font-size: 0.8rem;
            letter-spacing: 0.1em;
        }

        .gallery-placeholder svg {
            width: 48px;
            height: 48px;
            stroke: var(--acier);
            fill: none;
            stroke-width: 1;
        }

        /* ========== TARIFS ========== */
        .tarifs-section {
            padding: 6rem 2rem;
            background: var(--blanc);
        }

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

        .tarifs-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            font-weight: 900;
            color: var(--noir);
            margin-bottom: 0.3em;
        }

        .tarifs-header h2 .year {
            color: var(--or);
        }

        .tarifs-header p {
            font-size: 0.85rem;
            color: var(--acier);
            letter-spacing: 0.15em;
            text-transform: uppercase;
        }

        .tarifs-subtitle-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
        }

        .pdf-download {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.35rem 0.9rem;
            background: linear-gradient(135deg, var(--or-fonce), var(--or));
            color: var(--blanc);
            text-decoration: none;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            transition: transform 0.25s, box-shadow 0.25s, background 0.3s;
            white-space: nowrap;
        }

        .pdf-download:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 14px rgba(201, 168, 76, 0.35);
            background: linear-gradient(135deg, var(--or), var(--or-clair));
        }

        .pdf-download:active {
            transform: translateY(0);
        }

        .pdf-download svg {
            width: 14px;
            height: 14px;
            stroke: var(--blanc);
            fill: none;
            stroke-width: 2.2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .tarifs-header .sep {
            width: 50px;
            height: 2px;
            background: var(--or);
            margin: 1.5rem auto 0;
        }

        .tarifs-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .tarif-card {
            background: var(--fond-carte);
            border: 1px solid #e8e5de;
            border-radius: 8px;
            padding: 2.5rem 2rem 2rem;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s, transform 0.7s, box-shadow 0.3s;
        }

        .tarif-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .tarif-card:hover {
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
        }

        .tarif-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--or-fonce), var(--or), var(--or-clair));
        }

        .tarif-card-icon {
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.2rem;
            background: linear-gradient(135deg, var(--or), var(--or-clair));
            border-radius: 50%;
            color: var(--noir);
        }

        .tarif-card-icon svg {
            width: 22px;
            height: 22px;
            stroke: var(--noir);
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .tarif-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--noir);
            margin-bottom: 1.5rem;
        }

        .tarif-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .tarif-list li {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            font-size: 0.9rem;
            color: var(--anthracite);
            padding-bottom: 0.7rem;
            border-bottom: 1px solid #eae7e0;
            gap: 0.5rem;
        }

        .tarif-list li:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .tarif-list .item-name {
            flex: 1;
        }

        .tarif-list .item-price {
            font-weight: 600;
            color: var(--or-fonce);
            white-space: nowrap;
            font-size: 0.88rem;
        }

        .tarif-list .supplement {
            font-size: 0.78rem;
            color: var(--acier);
            font-style: italic;
        }

        /* ========== SERVICES SUPPLÉMENTAIRES ========== */
        .services-extra {
            max-width: 800px;
            margin: 3rem auto 0;
            text-align: center;
            padding: 2rem;
            background: linear-gradient(135deg, var(--noir) 0%, var(--anthracite) 100%);
            border-radius: 8px;
            color: var(--blanc);
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.7s, transform 0.7s;
        }

        .services-extra.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .services-extra h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--or);
        }

        .services-extra p {
            font-size: 0.9rem;
            line-height: 1.7;
            color: var(--argent);
        }

        /* ========== NOTE DE BAS ========== */
        .note-bottom {
            text-align: center;
            margin-top: 2.5rem;
            font-size: 0.8rem;
            color: var(--acier);
            font-style: italic;
        }

        /* ========== CONTACT / FOOTER ========== */
        .footer {
            background: var(--noir);
            padding: 4rem 2rem 2rem;
            text-align: center;
            color: var(--argent);
        }

        .footer-brand {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 900;
            color: var(--blanc);
            margin-bottom: 0.3em;
        }

        .footer-brand .accent {
            color: var(--or);
        }

        .footer-tagline {
            font-family: 'Cinzel', serif;
            font-size: 0.7rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--acier);
            margin-bottom: 2rem;
        }

        .footer-contact-grid {
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
            margin-bottom: 2.5rem;
        }

        .footer-contact-item {
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }

        .footer-contact-item svg {
            width: 20px;
            height: 20px;
            stroke: var(--or);
            fill: none;
            stroke-width: 2;
        }

        .footer-contact-item a {
            color: var(--argent);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        .footer-contact-item a:hover {
            color: var(--or);
        }

        .footer-sep {
            width: 40px;
            height: 1px;
            background: var(--acier);
            margin: 0 auto 1.5rem;
        }

        .footer-copy {
            font-size: 0.75rem;
            color: var(--acier);
        }

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

        /* ========== RESPONSIVE ========== */
        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
                max-width: 400px;
            }

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

            .hero {
                padding: 2rem 1.5rem;
                min-height: 100svh;
            }

            .footer-contact-grid {
                flex-direction: column;
                align-items: center;
                gap: 1.5rem;
            }

            .tarif-card {
                padding: 2rem 1.5rem 1.5rem;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
