html { scroll-behavior: smooth; }
            body { font-family: "Cormorant Garamond", Georgia, serif; background: var(--tc-deep); color: var(--tc-pale); overflow-x: hidden; min-height: 100vh; }
            ::-webkit-scrollbar { width: 6px; }
            ::-webkit-scrollbar-track { background: var(--tc-rich); }
            ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

            /* NAV */
            nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1rem 3rem; background: rgba(26,10,4,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(200,169,110,0.25); transition: padding 0.3s; }
            nav.scrolled { padding: 0.6rem 3rem; }
            .nav-logo { font-family: "Cinzel Decorative", serif; font-size: 1.1rem; color: var(--gold-light); text-decoration: none; letter-spacing: 0.05em; }
            .nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
            .nav-links a { font-family: "Raleway", sans-serif; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--tc-light); text-decoration: none; transition: color 0.2s; position: relative; }
            .nav-links a::after { content: ""; position: absolute; bottom: -3px; left: 0; right: 0; height: 1px; background: var(--gold); transform: scaleX(0); transition: transform 0.3s; }
            .nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
            .nav-links a.active::after, .nav-links a:hover::after { transform: scaleX(1); }
            .nav-back { display: inline-flex; align-items: center; gap: 0.5rem; font-family: "Raleway", sans-serif; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); text-decoration: none; border: 1px solid rgba(200,169,110,0.4); padding: 0.4rem 1rem; transition: background 0.2s, color 0.2s; }
            .nav-back:hover { background: rgba(200,169,110,0.12); }
            .nav-back svg { width: 12px; height: 12px; fill: currentColor; }
            .nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
            .nav-burger span { display: block; width: 24px; height: 2px; background: var(--gold-light); transition: 0.3s; }

            /* HERO GALERIE */
            .galerie-hero {
                padding: 10rem 2rem 5rem;
                text-align: center;
                position: relative;
                overflow: hidden;
            }
            .galerie-hero::before {
                content: "";
                position: absolute;
                inset: 0;
                background: radial-gradient(ellipse at 50% 0%, rgba(184,92,56,0.18) 0%, transparent 70%);
                pointer-events: none;
            }
            .galerie-hero-label { font-family: "Raleway", sans-serif; font-size: 0.65rem; font-weight: 500; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
            .galerie-hero-title { font-family: "Cinzel Decorative", serif; font-size: clamp(2.2rem, 6vw, 4.5rem); color: #fff; line-height: 1.15; }
            .galerie-hero-title em { font-family: "Cormorant Garamond", serif; font-style: italic; color: var(--gold-light); }
            .galerie-hero-sub { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 1.2rem; color: var(--tc-light); margin-top: 1rem; letter-spacing: 0.05em; }
            .hero-divider { width: 80px; height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent); margin: 2rem auto 0; }

            /* FILTRES */
            .filters-wrap {
                display: flex;
                justify-content: center;
                gap: 0.5rem;
                padding: 0 2rem 3rem;
                flex-wrap: wrap;
            }
            .filter-btn {
                font-family: "Raleway", sans-serif;
                font-size: 0.7rem;
                font-weight: 500;
                letter-spacing: 0.2em;
                text-transform: uppercase;
                color: var(--tc-light);
                background: transparent;
                border: 1px solid rgba(200,169,110,0.25);
                padding: 0.6rem 1.8rem;
                cursor: pointer;
                transition: background 0.25s, color 0.25s, border-color 0.25s;
                position: relative;
                overflow: hidden;
            }
            .filter-btn::before {
                content: "";
                position: absolute;
                inset: 0;
                background: var(--gold);
                transform: scaleX(0);
                transform-origin: left;
                transition: transform 0.3s ease;
                z-index: 0;
            }
            .filter-btn span { position: relative; z-index: 1; }
            .filter-btn:hover { border-color: var(--gold); color: var(--tc-deep); }
            .filter-btn:hover::before { transform: scaleX(1); }
            .filter-btn.active { background: var(--gold); color: var(--tc-deep); border-color: var(--gold); }
            .filter-btn.active::before { transform: scaleX(1); }
            .filter-count {
                font-family: "Raleway", sans-serif;
                font-size: 0.6rem;
                color: rgba(200,169,110,0.6);
                letter-spacing: 0.15em;
                text-align: center;
                margin-bottom: 2rem;
                padding: 0 2rem;
            }
            .filter-count span { color: var(--gold); font-weight: 500; }

            /* MASONRY */
            .masonry-wrap { max-width: 1400px; margin: 0 auto; padding: 0 2rem 6rem; }
            .masonry { columns: 3; column-gap: 10px; }
            @media (max-width: 900px) { .masonry { columns: 2; } }
            @media (max-width: 500px) { .masonry { columns: 1; } }
            .masonry-item {
                break-inside: avoid;
                margin-bottom: 10px;
                overflow: hidden;
                cursor: pointer;
                position: relative;
                transition: opacity 0.4s ease, transform 0.4s ease;
            }
            .masonry-item.hidden {
                display: none;
            }
            .masonry-item img { width: 100%; display: block; transition: transform 0.4s ease, filter 0.4s ease; filter: saturate(0.85) brightness(0.9); }
            .masonry-item:hover img { transform: scale(1.04); filter: saturate(1.1) brightness(1.05); }
            .masonry-item::after { content: ""; position: absolute; inset: 0; background: rgba(61,26,14,0); transition: background 0.3s; }
            .masonry-item:hover::after { background: rgba(61,26,14,0.2); }
            .item-overlay {
                position: absolute;
                bottom: 0; left: 0; right: 0;
                padding: 1.5rem 1rem 1rem;
                background: linear-gradient(to top, rgba(26,10,4,0.85) 0%, transparent 100%);
                opacity: 0;
                transition: opacity 0.3s;
                z-index: 1;
            }
            .masonry-item:hover .item-overlay { opacity: 1; }
            .item-cat {
                font-family: "Raleway", sans-serif;
                font-size: 0.58rem;
                letter-spacing: 0.2em;
                text-transform: uppercase;
                color: var(--gold);
            }

            /* No results */
            .no-results {
                text-align: center;
                padding: 4rem 2rem;
                color: var(--tc-light);
                font-style: italic;
                font-size: 1.2rem;
                display: none;
            }

            /* LIGHTBOX */
            .lightbox { display: none; position: fixed; inset: 0; z-index: 200; background: rgba(10,4,2,0.97); align-items: center; justify-content: center; }
            .lightbox.open { display: flex; }
            .lb-img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
            .lb-close { position: absolute; top: 1.5rem; right: 2rem; color: #fff; font-size: 2.5rem; cursor: pointer; opacity: 0.6; transition: opacity 0.2s; background: none; border: none; font-family: inherit; line-height: 1; }
            .lb-close:hover { opacity: 1; }
            .lb-arrow { position: absolute; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,0.5); font-size: 3rem; cursor: pointer; padding: 1rem; transition: color 0.2s; background: none; border: none; font-family: inherit; }
            .lb-arrow:hover { color: var(--gold); }
            .lb-prev { left: 0.5rem; } .lb-next { right: 0.5rem; }
            .lb-info { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.3rem; }
            .lb-counter { color: rgba(255,255,255,0.4); font-family: "Raleway", sans-serif; font-size: 0.7rem; letter-spacing: 0.2em; }
            .lb-cat { font-family: "Raleway", sans-serif; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }

            /* FOOTER */
            footer { background: #0e0503; text-align: center; padding: 3rem 2rem; border-top: 1px solid rgba(200,169,110,0.15); }
            .footer-logo { font-family: "Cinzel Decorative", serif; font-size: 1.3rem; color: var(--gold-light); margin-bottom: 0.5rem; }
            .footer-sub { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 1rem; color: var(--tc-warm); margin-bottom: 2rem; }
            .footer-links { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }
            .footer-links a { font-family: "Raleway", sans-serif; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
            .footer-links a:hover { color: var(--gold); }
            .footer-copy { margin-top: 2rem; font-size: 0.8rem; color: rgba(255,255,255,0.15); }

            /* MOBILE NAV */
            @media (max-width: 900px) {
                nav { padding: 1rem 1.5rem; }
                .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(26,10,4,0.98); padding: 1.5rem; gap: 1.2rem; }
                .nav-links.open { display: flex; }
                .nav-burger { display: flex; }
            }

            /* Fade-in animation */
            @keyframes fadeIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
            .masonry-item { animation: fadeIn 0.5s ease both; }

