
      :root {
            --blanc-casse: #FCF7F0;
            --beige: #EFE8DC;
            --taupe: #C9B797;
            --dore: #BF9C41;
            --noir: #191612;
        }

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

        body {
            font-family: 'DM Sans', sans-serif;
            background-color: var(--blanc-casse);
            color: var(--noir);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* NAVBAR ULTRA MODERNE */
:root {
    --blanc-casse: #FCF7F0;
    --beige: #EFE8DC;
    --taupe: #C9B797;
    --dore: #BF9C41;
    --noir: #191612;
}

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

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--blanc-casse);
    color: var(--noir);
    line-height: 1.6;
    overflow-x: hidden;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: block;
    line-height: 0;
}

.logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.logo img:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .logo img {
        height: 60px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .logo img {
        height: 35px;
    }
}
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(25, 22, 18, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(25, 22, 18, 0.98);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo animé */
.logo {
    z-index: 10001;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-link {
    text-decoration: none;
}

.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--blanc-casse);
    letter-spacing: 3px;
    display: block;
    transition: color 0.3s ease;
}

.logo-sub {
    font-size: 0.6rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--blanc-casse);
    opacity: 0.7;
    margin-top: 2px;
    transition: opacity 0.3s ease;
    text-align: center;
}

.logo:hover .logo-main {
    color: var(--dore);
}

.logo:hover .logo-sub {
    opacity: 1;
}

/* Navigation Desktop */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--blanc-casse);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    display: block;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--dore);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--dore);
}

/* Bouton Connexion Desktop - Style ultra moderne */
.nav-login-item {
    margin-left: 1rem;
    z-index: 9998;
    position: relative;
}

.nav-login-link {
    position: relative;
    border: 1px solid rgba(191, 156, 65, 0.3);
    padding: 0.6rem 1.2rem !important;
    border-radius: 2px;
    background: rgba(191, 156, 65, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex !important;
    align-items: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.nav-login-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(191, 156, 65, 0.1), transparent);
    transition: left 0.6s ease;
}

.nav-login-link:hover::before {
    left: 100%;
}

.nav-login-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--dore);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-login-link:hover::after {
    width: 100%;
}

.nav-login-link:hover {
    border-color: var(--dore);
    background: rgba(191, 156, 65, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(191, 156, 65, 0.2);
}

.login-text {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.login-icon {
    display: flex;
    align-items: center;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0.8;
}

.nav-login-link:hover .login-icon {
    transform: scale(1.1) rotate(5deg);
    opacity: 1;
}

/* Hamburger Menu Spectaculaire */
.hamburger {
    display: none;
    width: 35px;
    height: 35px;
    position: relative;
    cursor: pointer;
    z-index: 10002;
    background: none;
    border: none;
    padding: 0;
}

.hamburger-box {
    width: 35px;
    height: 24px;
    position: relative;
}

.hamburger-inner {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--blanc-casse);
    position: absolute;
    left: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: var(--blanc-casse);
    position: absolute;
    left: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger-inner {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-inner::before {
    top: -10px;
    width: 80%;
}

.hamburger-inner::after {
    bottom: -10px;
    width: 60%;
}

.hamburger:hover .hamburger-inner::before {
    width: 100%;
}

.hamburger:hover .hamburger-inner::after {
    width: 100%;
}

/* Hamburger Active State */
.hamburger.active .hamburger-inner {
    transform: translateY(-50%) rotate(45deg);
    background: var(--dore);
}

.hamburger.active .hamburger-inner::before {
    top: 0;
    width: 100%;
    transform: rotate(90deg);
    background: var(--dore);
}

.hamburger.active .hamburger-inner::after {
    bottom: 0;
    width: 100%;
    opacity: 0;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(25, 22, 18, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 9998;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Panel */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--noir);
    z-index: 10000;
    transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: 100px 2rem 2rem;
}

.mobile-nav {
    list-style: none;
}

.mobile-nav-item {
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateX(30px);
}

.mobile-menu.active .mobile-nav-item {
    animation: slideInMobile 0.5s forwards;
}

.mobile-nav-item:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav-item:nth-child(2) { animation-delay: 0.15s; }
.mobile-nav-item:nth-child(3) { animation-delay: 0.2s; }
.mobile-nav-item:nth-child(4) { animation-delay: 0.25s; }
.mobile-nav-item:nth-child(5) { animation-delay: 0.3s; }
.mobile-nav-item:nth-child(6) { animation-delay: 0.35s; }

@keyframes slideInMobile {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-nav-link {
    color: var(--blanc-casse);
    text-decoration: none;
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    font-weight: 300;
    display: block;
    padding: 0.8rem 0;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: var(--dore);
    transition: width 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--dore);
    padding-left: 15px;
}

.mobile-nav-link:hover::before,
.mobile-nav-link.active::before {
    width: 15px;
}

/* Version Mobile - Style épuré */
.mobile-login-item {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(191, 156, 65, 0.2);
    position: relative;
}

.mobile-login-item::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 40px;
    height: 1px;
    background: var(--dore);
}

.mobile-login-link {
    border: 1px solid rgba(191, 156, 65, 0.3) !important;
    background: rgba(191, 156, 65, 0.08) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border-radius: 2px !important;
    padding: 1rem 1.5rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    position: relative;
    overflow: hidden;
    font-size: 1.4rem !important;
}

.mobile-login-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(191, 156, 65, 0.1), transparent);
    transition: left 0.6s ease;
}

.mobile-login-link:hover::before {
    left: 100%;
}

.mobile-login-link:hover {
    border-color: var(--dore) !important;
    background: rgba(191, 156, 65, 0.15) !important;
    transform: translateX(8px) !important;
    padding-left: 2rem !important;
}

.mobile-login-text {
    font-family: 'Playfair Display', serif;
    font-weight: 300;
}

.mobile-login-icon {
    display: flex;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0.7;
}

.mobile-login-link:hover .mobile-login-icon {
    transform: scale(1.1) rotate(10deg);
    opacity: 1;
}

.mobile-menu-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(252, 247, 240, 0.1);
}

.mobile-contact {
    margin-bottom: 2rem;
}

.mobile-contact p {
    color: var(--beige);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.mobile-contact a {
    color: var(--dore);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-contact a:hover {
    color: var(--blanc-casse);
}

.mobile-social {
    display: flex;
    gap: 1rem;
}

.mobile-social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(252, 247, 240, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--beige);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.mobile-social-link:hover {
    background: var(--dore);
    border-color: var(--dore);
    color: var(--noir);
    transform: translateY(-3px);
}

/* Animation pour le SVG */
.login-icon svg,
.mobile-login-icon svg {
    transition: all 0.3s ease;
}

.nav-login-link:hover .login-icon svg path,
.nav-login-link:hover .login-icon svg circle,
.mobile-login-link:hover .mobile-login-icon svg path,
.mobile-login-link:hover .mobile-login-icon svg circle {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawSVG 0.8s ease-in-out forwards;
}

@keyframes drawSVG {
    to {
        stroke-dashoffset: 0;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-container {
        padding: 1.2rem 2rem;
    }
    
    .nav-menu {
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .nav-container {
        padding: 1rem 2rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.7rem;
    }
    
    .nav-login-link {
        padding: 0.5rem 1rem !important;
    }
    
    .login-text {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .logo-main {
        font-size: 1.6rem;
    }
    
    .logo-sub {
        font-size: 0.55rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }
    
    .logo-main {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }
    
    .logo-sub {
        font-size: 0.5rem;
        letter-spacing: 3px;
    }
    
    .mobile-menu {
        width: 90%;
    }
    
    .mobile-nav-link {
        font-size: 1.6rem;
    }
    
    .mobile-login-link {
        font-size: 1.2rem !important;
    }
}

/* Responsive visibilité bouton connexion */
@media (max-width: 768px) {
    .nav-login-item {
        display: none;
    }
}

@media (min-width: 769px) {
    .mobile-login-item {
        display: none;
    }
}

/* Amélioration performance et accessibilité */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states pour l'accessibilité */
.nav-link:focus,
.nav-login-link:focus,
.mobile-nav-link:focus,
.hamburger:focus {
    outline: 2px solid var(--dore);
    outline-offset: 2px;
}

/* États actifs pour les liens */
.nav-link.active {
    color: var(--dore);
}

.nav-link.active::before {
    width: 100%;
}

.mobile-nav-link.active {
    color: var(--dore);
    padding-left: 15px;
}

.mobile-nav-link.active::before {
    width: 15px;
}

        /* Hero Section */

        .home-serif {
            font-family: 'Playfair Display', serif;
        }

        /* Hero Section */
        .home-hero {
            height: 100vh;
            position: relative;
            overflow: hidden;
            margin-top: 80px;
        }

        .home-hero-bg {
            position: absolute;
            top: -20%;
            left: 0;
            width: 100%;
            height: 120%;
            background: url('https://images.unsplash.com/photo-1606800052052-a08af7148866?auto=format&fit=crop&w=2400&q=80') center/cover;
            will-change: transform;
        }

        .home-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(25, 22, 18, 0.7), rgba(191, 156, 65, 0.3));
        }

        .home-hero-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--blanc-casse);
            padding: 0 2rem;
        }

        .home-hero-text {
            max-width: 800px;
        }

        .home-hero-subtitle {
            font-size: 0.9rem;
            letter-spacing: 0.3rem;
            text-transform: uppercase;
            color: var(--dore);
            margin-bottom: 2rem;
            opacity: 0;
            animation: fadeInUp 1s ease 0.5s forwards;
        }

        .home-hero h1 {
            font-size: clamp(3.5rem, 8vw, 7rem);
            font-weight: 300;
            line-height: 1.1;
            margin-bottom: 2rem;
            opacity: 0;
            animation: fadeInUp 1s ease 0.7s forwards;
        }

        .home-hero-description {
            font-size: 1.4rem;
            font-weight: 300;
            margin-bottom: 3rem;
            opacity: 0;
            animation: fadeInUp 1s ease 0.9s forwards;
        }

        .home-hero-scroll {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            writing-mode: vertical-rl;
            text-orientation: mixed;
            font-size: 0.8rem;
            letter-spacing: 0.2rem;
            color: var(--blanc-casse);
            opacity: 0.7;
            animation: bounce 2s infinite;
        }

        /* About Section */
        .home-about {
            padding: 8rem 0;
            background: var(--blanc-casse);
        }

        .home-about-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .home-about-text {
            font-size: 1.3rem;
            line-height: 1.8;
            color: var(--taupe);
            font-weight: 300;
        }

        .home-about-text .highlight {
            color: var(--noir);
            font-weight: 500;
        }

        .home-signature {
            margin-top: 3rem;
            font-size: 2rem;
            color: var(--dore);
            font-style: italic;
        }

        .home-about-image {
            height: 600px;
            position: relative;
            transform: rotate(2deg);
            transition: transform 0.3s ease;
        }

        .home-about-image:hover {
            transform: rotate(0deg);
        }

        .home-about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(30%);
            transition: filter 0.3s ease;
        }

        .home-about-image:hover img {
            filter: grayscale(0%);
        }

        .home-about-image::after {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: -20px;
            bottom: -20px;
            border: 3px solid var(--dore);
            z-index: -1;
            transition: all 0.3s ease;
        }

        .home-about-image:hover::after {
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }

        /* Services - Images avec texte permanent */
        .home-services {
            padding: 8rem 0;
            background: var(--blanc-casse);
        }

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

        .home-services-title {
            text-align: center;
            font-size: 3.5rem;
            font-weight: 300;
            margin-bottom: 6rem;
            color: var(--noir);
        }

        .home-services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .home-service-item {
            position: relative;
            overflow: hidden;
            background-size: cover;
            background-position: center;
            height: 500px;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }

        .home-service-item:hover {
            transform: translateY(-5px);
        }

        .home-service-item:nth-child(1) {
            background-image: url('https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=1200&q=80');
        }

        .home-service-item:nth-child(2) {
            background-image: url('https://images.unsplash.com/photo-1516589178581-6cd7833ae3b2?auto=format&fit=crop&w=1200&q=80');
        }

        .home-service-item:nth-child(3) {
            background-image: url('../images/equestre.jpg');
        }

        .home-service-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(25, 22, 18, 0.9));
            padding: 3rem 2rem 2rem;
            color: var(--blanc-casse);
        }

        .home-service-content h3 {
            font-size: 2rem;
            font-weight: 400;
            color: var(--blanc-casse);
            margin-bottom: 0.5rem;
        }

        .home-service-content p {
            color: var(--taupe);
            font-size: 1rem;
            opacity: 0.9;
        }

        .home-service-badge {
            position: absolute;
            top: 2rem;
            left: 2rem;
            background: var(--dore);
            color: var(--noir);
            padding: 0.8rem 1.5rem;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1rem;
            border-radius: 30px;
        }

        /* Galerie */
        .home-portfolio {
            padding: 8rem 0;
            background: var(--beige);
        }

        .home-portfolio-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            text-align: center;
        }

        .home-portfolio-title {
            font-size: 3.5rem;
            font-weight: 300;
            margin-bottom: 2rem;
            color: var(--noir);
        }

        .home-portfolio-subtitle {
            font-size: 1.2rem;
            color: var(--taupe);
            margin-bottom: 4rem;
            font-weight: 300;
        }

        .home-portfolio-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .home-portfolio-item {
            aspect-ratio: 4/5;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            filter: grayscale(20%);
            border-radius: 4px;
        }

        .home-portfolio-item:hover {
            filter: grayscale(0%);
            transform: translateY(-10px);
        }

        .home-portfolio-item:nth-child(1) {
            background-image: url('https://images.unsplash.com/photo-1606800052052-a08af7148866?auto=format&fit=crop&w=800&q=80');
        }

        .home-portfolio-item:nth-child(2) {
            background-image: url('https://images.unsplash.com/photo-1516589178581-6cd7833ae3b2?auto=format&fit=crop&w=800&q=80');
        }

        .home-portfolio-item:nth-child(3) {
            background-image: url('https://images.unsplash.com/photo-1511285560929-80b456fea0bc?auto=format&fit=crop&w=800&q=80');
        }

        .home-portfolio-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(25, 22, 18, 0.8));
            padding: 2rem;
            color: var(--blanc-casse);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .home-portfolio-item:hover .home-portfolio-overlay {
            opacity: 1;
        }

        .home-portfolio-content h4 {
            font-size: 1.2rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .home-portfolio-content p {
            font-size: 0.9rem;
            color: var(--taupe);
        }

        .home-portfolio-link {
            display: inline-block;
            padding: 1rem 2rem;
            background: var(--noir);
            color: var(--blanc-casse);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .home-portfolio-link:hover {
            background: var(--dore);
            color: var(--noir);
        }

        /* Contact Section */
        .home-contact {
            padding: 8rem 0;
            background: var(--noir);
            color: var(--blanc-casse);
            text-align: center;
        }

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

        .home-contact h2 {
            font-size: 3.5rem;
            font-weight: 300;
            margin-bottom: 2rem;
            color: var(--blanc-casse);
        }

        .home-contact p {
            font-size: 1.3rem;
            color: var(--taupe);
            margin-bottom: 3rem;
            font-weight: 300;
        }

        .home-contact-btn {
            display: inline-block;
            padding: 1.5rem 3rem;
            background: var(--dore);
            color: var(--noir);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.1rem;
        }

        .home-contact-btn:hover {
            background: var(--blanc-casse);
            color: var(--noir);
            transform: translateY(-3px);
        }

        /* Footer */
        .home-footer {
            background: var(--noir);
            color: var(--blanc-casse);
            padding: 4rem 0 2rem;
            border-top: 1px solid rgba(201, 183, 151, 0.2);
        }

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

        .home-footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }

        .home-footer-section h4 {
            font-size: 1.2rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
            color: var(--dore);
        }

        .home-footer-section p,
        .home-footer-section a {
            color: var(--taupe);
            text-decoration: none;
            font-weight: 300;
            line-height: 1.7;
            transition: color 0.3s ease;
        }

        .home-footer-section a:hover {
            color: var(--blanc-casse);
        }

        .home-footer-section ul {
            list-style: none;
        }

        .home-footer-section ul li {
            margin-bottom: 0.8rem;
        }

        .home-footer-social {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .home-footer-social a {
            padding: 0.5rem;
            border: 1px solid var(--taupe);
            transition: all 0.3s ease;
        }

        .home-footer-social a:hover {
            border-color: var(--dore);
            color: var(--dore);
        }

        .home-footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(201, 183, 151, 0.2);
            color: var(--taupe);
            font-size: 0.9rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        .home-fade-in {
            opacity: 0;
            transform: translateY(50px);
            transition: all 1s ease;
        }

        .home-fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .home-services-grid {
                grid-template-columns: 1fr;
                height: auto;
            }

            .home-service-item {
                height: 50vh;
            }

            .home-portfolio-masonry {
                columns: 2;
            }

            .home-footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 3rem;
            }
        }

        @media (max-width: 768px) {
            .home-hero {
                margin-top: 60px;
                height: 80vh;
            }

            .home-hero h1 {
                font-size: 3rem;
            }

            .home-hero-description {
                font-size: 1.1rem;
            }

            .home-about-container {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
            }

            .home-about-text {
                font-size: 1.1rem;
            }

            .home-about-image {
                height: 400px;
                transform: none;
            }

            .home-about-image::after {
                display: none;
            }

            .home-services-title {
                font-size: 2.5rem;
            }

            .home-service-item {
                height: 40vh;
            }

            .home-portfolio-masonry {
                columns: 1;
            }

            .home-portfolio-title {
                font-size: 2.5rem;
            }

            .home-contact h2 {
                font-size: 2.5rem;
            }

            .home-footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .home-footer-social {
                justify-content: center;
            }

            .home-services,
            .home-about,
            .home-portfolio,
            .home-contact {
                padding: 4rem 0;
            }

            .home-footer {
                padding: 3rem 0 2rem;
            }
        }

        @media (max-width: 480px) {
            .home-hero h1 {
                font-size: 2.5rem;
            }

            .home-hero-description {
                font-size: 1rem;
            }

            .home-about-text {
                font-size: 1rem;
            }

            .home-signature {
                font-size: 1.3rem;
            }

            .home-service-overlay {
                padding: 2rem;
            }

            .home-service-content h3 {
                font-size: 1.5rem;
            }

            .home-portfolio-title,
            .home-contact h2 {
                font-size: 2rem;
            }

            .home-footer-container {
                padding: 0 1rem;
            }

            .home-services,
            .home-about,
            .home-portfolio,
            .home-contact {
                padding: 3rem 0;
            }
        }

		

    .services-serif {
      font-family: 'Playfair Display', serif;
    }

    /* Hero Section */
    .services-hero {
      height: 100vh;
      position: relative;
      overflow: hidden;
      margin-top: 80px;
    }

    .services-hero-bg {
      position: absolute;
      top: -20%;
      left: 0;
      width: 100%;
      height: 120%;
      background: url('https://images.unsplash.com/photo-1516589178581-6cd7833ae3b2?auto=format&fit=crop&w=2400&q=80') center/cover;
      will-change: transform;
    }

    .services-hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(25, 22, 18, 0.7), rgba(191, 156, 65, 0.3));
    }

    .services-hero-content {
      position: relative;
      z-index: 2;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: var(--blanc-casse);
      padding: 0 2rem;
    }

    .services-hero-text {
      max-width: 800px;
    }

    .services-hero-subtitle {
      font-size: 0.9rem;
      letter-spacing: 0.3rem;
      text-transform: uppercase;
      color: var(--dore);
      margin-bottom: 2rem;
      opacity: 0;
      animation: fadeInUp 1s ease 0.5s forwards;
    }

    .services-hero h1 {
      font-size: clamp(3.5rem, 8vw, 6rem);
      font-weight: 300;
      line-height: 1.1;
      margin-bottom: 2rem;
      opacity: 0;
      animation: fadeInUp 1s ease 0.7s forwards;
    }

    .services-hero-description {
      font-size: 1.4rem;
      font-weight: 300;
      margin-bottom: 3rem;
      opacity: 0;
      animation: fadeInUp 1s ease 0.9s forwards;
    }

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

    /* Section */
    .services-section {
      padding: 8rem 0;
    }

    .services-section-title {
      text-align: center;
      font-size: 3.5rem;
      font-weight: 300;
      margin-bottom: 2rem;
      color: var(--noir);
    }

    .services-section-sub {
      text-align: center;
      font-size: 1.1rem;
      color: var(--taupe);
      max-width: 700px;
      margin: 0 auto 5rem;
      line-height: 1.7;
      font-weight: 300;
    }

    /* Grille services */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3rem;
    }

    .services-card {
      background: white;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(25, 22, 18, 0.08);
      transition: all 0.4s ease;
      border: 1px solid var(--beige);
    }

    .services-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 60px rgba(25, 22, 18, 0.15);
    }

    .services-image {
      height: 300px;
      background-size: cover;
      background-position: center;
      position: relative;
    }

    .services-badge {
      position: absolute;
      top: 1.5rem;
      left: 1.5rem;
      background: var(--dore);
      color: var(--noir);
      padding: 0.5rem 1rem;
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1rem;
      border-radius: 20px;
    }

    .services-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(transparent, rgba(25, 22, 18, 0.8));
      padding: 2rem;
      color: var(--blanc-casse);
    }

    .services-overlay h4 {
      font-size: 1.2rem;
      font-weight: 500;
      margin-bottom: 0.3rem;
    }

    .services-overlay p {
      font-size: 0.9rem;
      opacity: 0.9;
      color: var(--taupe);
    }

    .services-content {
      padding: 2rem;
    }

    .services-eyebrow {
      color: var(--dore);
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1rem;
      margin-bottom: 0.5rem;
    }

    .services-title {
      font-size: 1.8rem;
      font-weight: 400;
      margin-bottom: 1rem;
      color: var(--noir);
    }

    .services-description {
      color: var(--taupe);
      margin-bottom: 1.5rem;
      line-height: 1.7;
      font-weight: 300;
    }

    .services-features {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 1.5rem;
    }

    .services-feature {
      background: var(--beige);
      color: var(--noir);
      padding: 0.3rem 0.8rem;
      font-size: 0.8rem;
      font-weight: 500;
      border-radius: 15px;
    }

    .services-includes {
      list-style: none;
      margin-bottom: 2rem;
    }

    .services-includes li {
      padding: 0.3rem 0;
      color: var(--taupe);
      font-size: 0.9rem;
      position: relative;
      padding-left: 1.2rem;
    }

    .services-includes li::before {
      content: '•';
      color: var(--dore);
      position: absolute;
      left: 0;
      font-weight: bold;
    }

    .services-pricing {
      text-align: center;
      margin-bottom: 1.5rem;
      padding: 1.5rem;
      background: var(--beige);
      border-radius: 4px;
    }

    .services-price {
      font-size: 2rem;
      font-weight: 700;
      color: var(--noir);
      margin-bottom: 0.3rem;
    }

    .services-price-note {
      font-size: 0.9rem;
      color: var(--taupe);
      font-weight: 400;
    }

    .services-btn {
      display: block;
      width: 100%;
      padding: 1rem;
      background: var(--dore);
      color: var(--noir);
      text-decoration: none;
      font-weight: 600;
      text-align: center;
      transition: all 0.3s ease;
      border-radius: 4px;
      text-transform: uppercase;
      letter-spacing: 0.05rem;
      font-size: 0.9rem;
    }

    .services-btn:hover {
      background: var(--noir);
      color: var(--blanc-casse);
    }

    .services-btn-secondary {
      background: transparent;
      color: var(--noir);
      border: 2px solid var(--noir);
    }

    .services-btn-secondary:hover {
      background: var(--noir);
      color: var(--blanc-casse);
    }

    /* Options */
    .services-options {
      background: var(--beige);
    }

    .services-option-card {
      background: white;
      padding: 2.5rem;
      border-radius: 8px;
      border: 1px solid var(--beige);
      transition: all 0.4s ease;
      height: 100%;
    }

    .services-option-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(25, 22, 18, 0.1);
    }

    /* Process */
    .services-process {
      background: var(--noir);
      color: var(--blanc-casse);
    }

    .services-process .services-section-title {
      color: var(--blanc-casse);
    }

    .services-process .services-section-sub {
      color: var(--taupe);
    }

    .services-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 3rem;
    }

    .services-step {
      text-align: center;
    }

    .services-step-number {
      width: 60px;
      height: 60px;
      background: var(--dore);
      color: var(--noir);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: 700;
      margin: 0 auto 1.5rem;
    }

    .services-step h4 {
      font-size: 1.2rem;
      font-weight: 500;
      margin-bottom: 1rem;
      color: var(--blanc-casse);
    }

    .services-step p {
      color: var(--taupe);
      line-height: 1.6;
      font-weight: 300;
    }

    /* FAQ */
    .services-faq-section {
      background: var(--blanc-casse);
    }

    .services-faq {
      max-width: 800px;
      margin: 0 auto;
    }

    .services-faq-item {
      border-bottom: 1px solid var(--beige);
      margin-bottom: 1rem;
    }

    .services-faq-q {
      width: 100%;
      background: none;
      border: none;
      padding: 1.5rem 0;
      font-family: inherit;
      font-size: 1.1rem;
      font-weight: 500;
      color: var(--noir);
      text-align: left;
      cursor: pointer;
      transition: color 0.3s ease;
    }

    .services-faq-q:hover {
      color: var(--dore);
    }

    .services-faq-a {
      display: none;
      padding-bottom: 1.5rem;
      color: var(--taupe);
      line-height: 1.7;
      font-weight: 300;
    }

    /* Footer */
    .services-footer {
      background: var(--noir);
      color: var(--blanc-casse);
      padding: 4rem 0 2rem;
    }

    .services-footer-content {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3rem;
      margin-bottom: 2rem;
    }

    .services-footer-section h4 {
      font-size: 1.1rem;
      font-weight: 500;
      margin-bottom: 1rem;
      color: var(--dore);
    }

    .services-footer-section p,
    .services-footer-section a {
      color: var(--taupe);
      text-decoration: none;
      font-weight: 300;
      line-height: 1.6;
      transition: color 0.3s ease;
    }

    .services-footer-section a:hover {
      color: var(--blanc-casse);
    }

    .services-footer-section ul {
      list-style: none;
    }

    .services-footer-section ul li {
      margin-bottom: 0.5rem;
    }

    .services-footer-social {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }

    .services-footer-social a {
      padding: 0.5rem;
      border: 1px solid var(--taupe);
      transition: all 0.3s ease;
      font-size: 0.8rem;
    }

    .services-footer-social a:hover {
      border-color: var(--dore);
      color: var(--dore);
    }

    .services-footer-bottom {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid rgba(201, 183, 151, 0.2);
      color: var(--taupe);
      font-size: 0.9rem;
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(50px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .services-fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
    }

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

    /* Responsive */
    @media (max-width: 768px) {
      .services-hero {
        margin-top: 60px;
        height: 80vh;
      }

      .services-hero h1 {
        font-size: 3rem;
      }

      .services-container {
        padding: 0 1rem;
      }

      .services-section {
        padding: 4rem 0;
      }

      .services-section-title {
        font-size: 2.5rem;
      }

      .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .services-content {
        padding: 1.5rem;
      }

      .services-footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
      }

      .services-footer-social {
        justify-content: center;
      }
    }

	  .gallery-serif {
      font-family: 'Playfair Display', serif;
    }

    /* Hero */
    .gallery-hero {
      height: 90vh;
      position: relative;
      overflow: hidden;
      margin-top: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .gallery-hero-bg {
      position: absolute;
      top: -20%;
      left: 0;
      width: 100%;
      height: 120%;
      background: url('../images/paysage12.webp') center/cover;
      will-change: transform;
    }

    .gallery-hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(25, 22, 18, 0.7), rgba(191, 156, 65, 0.3));
    }

    .gallery-hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      color: var(--blanc-casse);
      padding: 0 2rem;
      max-width: 900px;
    }

    .gallery-hero-badge {
      display: inline-block;
      padding: 0.8rem 2rem;
      background: transparent;
      border: 1px solid var(--dore);
      color: var(--dore);
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.2rem;
      text-transform: uppercase;
      margin-bottom: 2.5rem;
      opacity: 0;
      animation: fadeInUp 1s ease 0.5s forwards;
    }

    .gallery-hero h1 {
      font-size: clamp(4rem, 9vw, 7rem);
      font-weight: 300;
      line-height: 1.1;
      margin-bottom: 2rem;
      opacity: 0;
      animation: fadeInUp 1s ease 0.7s forwards;
    }

    .gallery-hero-description {
      font-size: 1.3rem;
      font-weight: 300;
      opacity: 0;
      animation: fadeInUp 1s ease 0.9s forwards;
    }

    /* Container */
    .gallery-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    /* Section */
    .gallery-section {
      padding: 8rem 0;
    }

    .gallery-section-title {
      text-align: center;
      font-size: 3.5rem;
      font-weight: 300;
      margin-bottom: 1.5rem;
      color: var(--noir);
    }

    .gallery-section-sub {
      text-align: center;
      font-size: 1.2rem;
      color: var(--taupe);
      max-width: 700px;
      margin: 0 auto 5rem;
      line-height: 1.7;
      font-weight: 300;
    }

    /* Filters */
    .gallery-filters {
      display: flex;
      justify-content: center;
      gap: 2.5rem;
      margin-bottom: 5rem;
      flex-wrap: wrap;
    }

    .gallery-filter-btn {
      background: none;
      border: none;
      padding: 1rem 0;
      font-family: inherit;
      font-size: 1rem;
      font-weight: 400;
      color: var(--taupe);
      cursor: pointer;
      position: relative;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 0.15rem;
    }

    .gallery-filter-btn::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 2px;
      background: var(--dore);
      transition: width 0.3s ease;
    }

    .gallery-filter-btn.active,
    .gallery-filter-btn:hover {
      color: var(--noir);
    }

    .gallery-filter-btn.active::after,
    .gallery-filter-btn:hover::after {
      width: 100%;
    }

    /* Gallery Grid */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-bottom: 4rem;
    }

    .gallery-item {
      position: relative;
      aspect-ratio: 4/5;
      overflow: hidden;
      background: var(--beige);
      cursor: pointer;
      transition: all 0.4s ease;
    }

    .gallery-item:hover {
      transform: translateY(-8px);
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.5s ease;
      filter: grayscale(20%);
    }

    .gallery-item:hover img {
      filter: grayscale(0%);
      transform: scale(1.08);
    }

    .gallery-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(transparent, rgba(25, 22, 18, 0.85));
      padding: 3rem 2rem 2rem;
      color: var(--blanc-casse);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }

    .gallery-category {
      display: inline-block;
      padding: 0.4rem 1rem;
      background: var(--dore);
      color: var(--noir);
      font-size: 0.7rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1rem;
      margin-bottom: 0.8rem;
      border-radius: 20px;
    }

    .gallery-title {
      font-size: 1.3rem;
      font-weight: 400;
      margin-bottom: 0.3rem;
    }

    .gallery-location {
      font-size: 0.9rem;
      color: var(--taupe);
      font-weight: 300;
    }

    /* Featured */
    .gallery-featured {
      background: var(--beige);
    }

    .gallery-featured-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .gallery-featured-content h3 {
      font-size: 2.5rem;
      font-weight: 300;
      margin-bottom: 1.5rem;
      color: var(--noir);
    }

    .gallery-featured-content p {
      font-size: 1.1rem;
      color: var(--taupe);
      line-height: 1.8;
      margin-bottom: 1.5rem;
      font-weight: 300;
    }

    .gallery-featured-tags {
      display: flex;
      gap: 0.8rem;
      flex-wrap: wrap;
      margin-bottom: 2rem;
    }

    .gallery-featured-tag {
      padding: 0.5rem 1.2rem;
      background: white;
      color: var(--noir);
      font-size: 0.8rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.05rem;
      border-radius: 20px;
    }

    .gallery-featured-image {
      height: 600px;
      background-size: cover;
      background-position: center;
      border-radius: 4px;
      filter: grayscale(20%);
      transition: filter 0.3s ease;
      position: relative;
    }

    .gallery-featured-image:hover {
      filter: grayscale(0%);
    }

    .gallery-featured-image::after {
      content: '';
      position: absolute;
      top: 20px;
      right: -20px;
      bottom: -20px;
      left: 20px;
      border: 3px solid var(--dore);
      z-index: -1;
      transition: all 0.3s ease;
    }

    .gallery-featured-image:hover::after {
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
    }

    .gallery-btn {
      display: inline-block;
      padding: 1rem 2.5rem;
      background: var(--noir);
      color: var(--blanc-casse);
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 0.1rem;
      font-size: 0.9rem;
    }

    .gallery-btn:hover {
      background: var(--dore);
      color: var(--noir);
    }

    /* Testimonials */
    .gallery-testimonials {
      background: var(--noir);
      color: var(--blanc-casse);
    }

    .gallery-testimonials .gallery-section-title {
      color: var(--blanc-casse);
    }

    .gallery-testimonials .gallery-section-sub {
      color: var(--taupe);
    }

    .gallery-quotes {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 3rem;
    }

    .gallery-quote {
      background: rgba(252, 247, 240, 0.05);
      padding: 3rem;
      border: 1px solid rgba(252, 247, 240, 0.1);
      border-radius: 4px;
    }

    .gallery-quote-text {
      font-size: 1.2rem;
      line-height: 1.8;
      font-style: italic;
      font-weight: 300;
      margin-bottom: 2rem;
      color: var(--blanc-casse);
    }

    .gallery-quote-author {
      color: var(--dore);
      font-style: normal;
      font-weight: 500;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.1rem;
    }

    /* CTA */
    .gallery-cta {
      text-align: center;
    }

    /* Lightbox */
    .gallery-lightbox {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(25, 22, 18, 0.96);
      z-index: 10000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 2rem;
    }

    .gallery-lightbox.open {
      display: flex;
    }

    .gallery-lb-inner {
      position: relative;
      max-width: 90vw;
      max-height: 90vh;
    }

    .gallery-lb-img {
      max-width: 100%;
      max-height: 90vh;
      object-fit: contain;
    }

    .gallery-lb-close,
    .gallery-lb-prev,
    .gallery-lb-next {
      position: absolute;
      background: var(--blanc-casse);
      border: none;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 1.5rem;
      color: var(--noir);
      transition: all 0.3s ease;
      border-radius: 4px;
    }

    .gallery-lb-close {
      top: -70px;
      right: 0;
    }

    .gallery-lb-prev {
      left: -70px;
      top: 50%;
      transform: translateY(-50%);
    }

    .gallery-lb-next {
      right: -70px;
      top: 50%;
      transform: translateY(-50%);
    }

    .gallery-lb-close:hover,
    .gallery-lb-prev:hover,
    .gallery-lb-next:hover {
      background: var(--dore);
      color: var(--noir);
    }

    .gallery-lb-caption {
      position: absolute;
      bottom: -60px;
      left: 0;
      right: 0;
      text-align: center;
      color: var(--blanc-casse);
      font-size: 1rem;
      font-weight: 300;
    }

    /* Footer */
    .gallery-footer {
      background: var(--noir);
      color: var(--blanc-casse);
      padding: 4rem 0 2rem;
    }

    .gallery-footer-content {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3rem;
      margin-bottom: 2rem;
    }

    .gallery-footer-section h4 {
      font-size: 1.1rem;
      font-weight: 500;
      margin-bottom: 1rem;
      color: var(--dore);
    }

    .gallery-footer-section p,
    .gallery-footer-section a {
      color: var(--taupe);
      text-decoration: none;
      font-weight: 300;
      line-height: 1.6;
      transition: color 0.3s ease;
    }

    .gallery-footer-section a:hover {
      color: var(--blanc-casse);
    }

    .gallery-footer-section ul {
      list-style: none;
    }

    .gallery-footer-section ul li {
      margin-bottom: 0.5rem;
    }

    .gallery-footer-social {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }

    .gallery-footer-social a {
      padding: 0.5rem;
      border: 1px solid var(--taupe);
      transition: all 0.3s ease;
      font-size: 0.8rem;
    }

    .gallery-footer-social a:hover {
      border-color: var(--dore);
      color: var(--dore);
    }

    .gallery-footer-bottom {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid rgba(201, 183, 151, 0.2);
      color: var(--taupe);
      font-size: 0.9rem;
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(50px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .gallery-fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
    }

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

    /* Responsive */
    @media (max-width: 1024px) {
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .gallery-featured-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .gallery-quotes {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .gallery-hero {
        margin-top: 60px;
        height: 80vh;
      }

      .gallery-hero h1 {
        font-size: 3rem;
      }

      .gallery-container {
        padding: 0 1rem;
      }

      .gallery-section {
        padding: 4rem 0;
      }

      .gallery-section-title {
        font-size: 2.5rem;
      }

      .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .gallery-filters {
        gap: 1.5rem;
      }

      .gallery-filter-btn {
        font-size: 0.85rem;
      }

      .gallery-featured-image {
        height: 400px;
      }

      .gallery-featured-image::after {
        display: none;
      }

      .gallery-featured-content h3 {
        font-size: 2rem;
      }

      .gallery-footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
      }

      .gallery-footer-social {
        justify-content: center;
      }

      .gallery-lb-close {
        top: 20px;
        right: 20px;
      }

      .gallery-lb-prev,
      .gallery-lb-next {
        bottom: 20px;
        top: auto;
        transform: none;
      }

      .gallery-lb-prev {
        left: 20px;
      }

      .gallery-lb-next {
        right: 20px;
      }

      .gallery-lb-caption {
        bottom: 80px;
        font-size: 0.9rem;
      }
    }





	
	.contact-serif {
      font-family: 'Playfair Display', serif;
    }

    /* Hero */
    .contact-hero {
      height: 70vh;
      position: relative;
      overflow: hidden;
      margin-top: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .contact-hero-bg {
      position: absolute;
      top: -20%;
      left: 0;
      width: 100%;
      height: 120%;
      background: url('../images/paysage14.webp') center/cover;
      will-change: transform;
    }

    .contact-hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(25, 22, 18, 0.75), rgba(191, 156, 65, 0.4));
    }

    .contact-hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      color: var(--blanc-casse);
      padding: 0 2rem;
      max-width: 800px;
    }

    .contact-hero-badge {
      display: inline-block;
      padding: 0.8rem 2rem;
      background: transparent;
      border: 1px solid var(--dore);
      color: var(--dore);
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.2rem;
      text-transform: uppercase;
      margin-bottom: 2rem;
      opacity: 0;
      animation: fadeInUp 1s ease 0.5s forwards;
    }

    .contact-hero h1 {
      font-size: clamp(3.5rem, 8vw, 6rem);
      font-weight: 300;
      line-height: 1.1;
      margin-bottom: 1.5rem;
      opacity: 0;
      animation: fadeInUp 1s ease 0.7s forwards;
    }

    .contact-hero-description {
      font-size: 1.2rem;
      font-weight: 300;
      opacity: 0;
      animation: fadeInUp 1s ease 0.9s forwards;
    }

    /* Container */
    .contact-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    /* Section */
    .contact-section {
      padding: 8rem 0;
    }

    .contact-section-title {
      text-align: center;
      font-size: 3.5rem;
      font-weight: 300;
      margin-bottom: 1rem;
      color: var(--noir);
    }

    .contact-section-subtitle {
      text-align: center;
      font-size: 1.1rem;
      color: var(--taupe);
      margin-bottom: 5rem;
      font-weight: 300;
    }

    /* Form Section */
    .contact-form-section {
      background: var(--blanc-casse);
    }

    .contact-form-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 8rem;
      align-items: start;
    }

    .contact-form-wrapper {
      max-width: 650px;
    }

    .contact-form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      margin-bottom: 2rem;
    }

    .contact-form-group {
      margin-bottom: 2rem;
    }

    .contact-form-input,
    .contact-form-textarea {
      width: 100%;
      padding: 1.2rem 0;
      border: none;
      border-bottom: 1px solid var(--taupe);
      background: transparent;
      font-family: inherit;
      font-size: 1rem;
      color: var(--noir);
      transition: all 0.3s ease;
    }

    .contact-form-input::placeholder,
    .contact-form-textarea::placeholder {
      color: var(--taupe);
      font-weight: 300;
    }

    .contact-form-input:focus,
    .contact-form-textarea:focus {
      outline: none;
      border-bottom-color: var(--dore);
    }

    .contact-form-textarea {
      resize: vertical;
      min-height: 150px;
      margin-top: 1rem;
    }

    .contact-form-submit {
      padding: 1.2rem 3rem;
      background: transparent;
      color: var(--noir);
      border: 2px solid var(--noir);
      font-family: inherit;
      font-size: 0.9rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1rem;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .contact-form-submit:hover {
      background: var(--noir);
      color: var(--blanc-casse);
    }

    .contact-form-note {
      font-size: 0.85rem;
      color: var(--taupe);
      margin-top: 1.5rem;
      font-weight: 300;
    }

    /* Success Message */
    .contact-success {
      display: none;
      background: var(--dore);
      color: var(--noir);
      padding: 1.2rem;
      margin-bottom: 2rem;
      text-align: center;
      font-weight: 500;
    }

    .contact-success.show {
      display: block;
      animation: fadeInUp 0.5s ease;
    }

    /* Info Cards */
    .contact-info-cards {
      display: flex;
      flex-direction: column;
      gap: 3rem;
      position: sticky;
      top: 120px;
    }

    .contact-info-card {
      padding-bottom: 2rem;
      border-bottom: 1px solid var(--beige);
    }

    .contact-info-card:last-child {
      border-bottom: none;
    }

    .contact-info-card h3 {
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 1rem;
      color: var(--dore);
      text-transform: uppercase;
      letter-spacing: 0.1rem;
    }

    .contact-info-card p {
      color: var(--noir);
      line-height: 1.8;
      font-weight: 400;
      margin-bottom: 0.3rem;
      font-size: 1.05rem;
    }

    .contact-info-card a {
      color: var(--noir);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .contact-info-card a:hover {
      color: var(--dore);
    }

    /* Footer */
    .contact-footer {
      background: var(--noir);
      color: var(--blanc-casse);
      padding: 4rem 0 2rem;
    }

    .contact-footer-content {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3rem;
      margin-bottom: 2rem;
    }

    .contact-footer-section h4 {
      font-size: 1.1rem;
      font-weight: 500;
      margin-bottom: 1rem;
      color: var(--dore);
    }

    .contact-footer-section p,
    .contact-footer-section a {
      color: var(--taupe);
      text-decoration: none;
      font-weight: 300;
      line-height: 1.6;
      transition: color 0.3s ease;
    }

    .contact-footer-section a:hover {
      color: var(--blanc-casse);
    }

    .contact-footer-section ul {
      list-style: none;
    }

    .contact-footer-section ul li {
      margin-bottom: 0.5rem;
    }

    .contact-footer-social {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }

    .contact-footer-social a {
      padding: 0.5rem 1rem;
      border: 1px solid var(--taupe);
      transition: all 0.3s ease;
      font-size: 0.8rem;
    }

    .contact-footer-social a:hover {
      border-color: var(--dore);
      color: var(--dore);
    }

    .contact-footer-bottom {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid rgba(201, 183, 151, 0.2);
      color: var(--taupe);
      font-size: 0.9rem;
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(50px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .contact-fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
    }

    .contact-fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 5rem;
      }

      .contact-info-cards {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;
      }

      .contact-info-card {
        flex: 1;
        min-width: 250px;
      }
    }

    @media (max-width: 768px) {
      .contact-hero {
        margin-top: 60px;
        height: 60vh;
      }

      .contact-hero h1 {
        font-size: 3rem;
      }

      .contact-container {
        padding: 0 1rem;
      }

      .contact-section {
        padding: 4rem 0;
      }

      .contact-section-title {
        font-size: 2.5rem;
      }

      .contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
      }

      .contact-info-cards {
        flex-direction: column;
      }

      .contact-footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
      }

      .contact-footer-social {
        justify-content: center;
      }
    }

	.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 100px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .footer-logo img {
        height: 70px;
    }
}