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

      :root {
            --rouge:#a92021;
            --rouge-dark:#8A1B1B;
            --creme:#FFF7F0;
            --noir:#1A1A1A;
            --gris:#F5F5F5;
			--beige:#DACAA4;
            --gris-text:#6B6B6B;
            --terracotta:#D65A3A;
        }

        html {
            scroll-behavior:smooth;
        }

        body {
            font-family:'Inter', sans-serif;
            color:var(--noir);
            background:white;
            line-height:1.6;
            font-size:16px;
            -webkit-font-smoothing:antialiased;
        }

        h1, h2, h3 {
            font-family:'Playfair Display', serif;
            font-weight:900;
            letter-spacing:-0.02em;
        }

        h2 {
            font-size:clamp(2.5rem, 6vw, 4rem);
            line-height:1.1;
        }

        h3 {
            font-size:clamp(1.5rem, 3vw, 2rem);
            line-height:1.2;
        }

        .container {
            max-width:1400px;
            margin:0 auto;
            padding:0 40px;
        }

        /* SVG Icons */
        .icon {
            width:1.2em;
            height:1.2em;
            fill:currentColor;
            vertical-align:middle;
        }
        .icon-lg { width:4rem;height:4rem;}
        .icon-md { width:3rem;height:3rem;}

        /* HEADER MODERNE */
        header.main-header {
            position:fixed;
            top:0;
            left:0;
            right:0;
            z-index:1000;
            background:rgba(255, 255, 255, 0.95);
            backdrop-filter:blur(20px);
            border-bottom:1px solid rgba(0, 0, 0, 0.05);
            transition:all 0.3s ease;
        }

        header.scrolled {
            box-shadow:0 4px 30px rgba(0, 0, 0, 0.08);
        }

        .header-content {
            max-width:1600px;
            margin:0 auto;
            padding:0 40px;
            display:flex;
            justify-content:space-between;
            align-items:center;
            height:90px;
        }

        .logo-header {
            height:55px;
        }

        .logo-header img {
            height:100%;
            width:auto;
        }

        nav.main-nav ul {
            display:flex;
            gap:50px;
            list-style:none;
            align-items:center;
        }

        nav.main-nav a {
            color:var(--noir);
            text-decoration:none;
            font-weight:600;
            font-size:0.95rem;
            transition:color 0.3s;
            position:relative;
        }

        nav.main-nav a::after {
            content:'';
            position:absolute;
            bottom:-5px;
            left:0;
            width:0;
            height:2px;
            background:var(--rouge);
            transition:width 0.3s;
        }

        nav.main-nav a:hover::after,
        nav.main-nav a:focus::after {
            width:100%;
        }

        nav.main-nav a:hover,
        nav.main-nav a:focus {
            color:var(--rouge);
        }

        .cta-nav {
            background:var(--rouge);
            color:white !important;
            padding:14px 32px;
            border-radius:50px;
            transition:all 0.3s;
        }

        .cta-nav::after {
            display:none;
        }

        .cta-nav:hover {
            background:var(--rouge-dark);
            transform:translateY(-2px);
            box-shadow:0 10px 30px rgba(163, 32, 32, 0.3);
        }

        .burger {
            display:none;
            flex-direction:column;
            gap:6px;
            cursor:pointer;
            padding:12px;
            background:transparent;
            border:none;
            z-index:1001;
        }

        .burger span {
            width:30px;
            height:2px;
            background:var(--noir);
            transition:all 0.3s;
            border-radius:2px;
        }

        .burger.active span:nth-child(1) {
            transform:rotate(45deg) translate(9px, 9px);
        }
        .burger.active span:nth-child(2) {
            opacity:0;
        }
        .burger.active span:nth-child(3) {
            transform:rotate(-45deg) translate(7px, -7px);
        }

        /* HERO ULTRA MODERNE */
        .hero {
            min-height:100vh;
            background:
                linear-gradient(135deg, rgba(163, 32, 32, 0.95) 0%, rgba(138, 27, 27, 0.7) 100%),
                url('img/hero-bg.jpg');
            background-size:cover;
            background-position:center;
            background-attachment:fixed;
            display:flex;
            align-items:center;
            justify-content:center;
            text-align:center;
            padding:140px 40px 80px;
            position:relative;
            overflow:hidden;
        }

        .hero::before {
            content:'';
            position:absolute;
            top:0;
            left:0;
            right:0;
            bottom:0;
            background:radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
        }

        .hero-content {
            position:relative;
            z-index:1;
            max-width:1000px;
        }

        .hero h1 {
            font-size:clamp(3rem, 9vw, 7rem);
            color:white;
            margin-bottom:30px;
            line-height:1;
            text-shadow:0 20px 60px rgba(0, 0, 0, 0.3);
            animation:fadeInUp 0.8s ease;
        }

        .hero-subtitle {
            font-size:clamp(1.2rem, 3vw, 1.8rem);
            color:rgba(255, 255, 255, 0.95);
            margin-bottom:50px;
            font-weight:400;
            letter-spacing:0.02em;
            animation:fadeInUp 0.8s ease 0.2s both;
        }

        .hero-cta {
            display:inline-flex;
            align-items:center;
            gap:12px;
            padding:20px 50px;
            background:white;
            color:var(--rouge);
            text-decoration:none;
            font-weight:700;
            font-size:1.1rem;
            border-radius:50px;
            transition:all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow:0 20px 60px rgba(0, 0, 0, 0.3);
            animation:fadeInUp 0.8s ease 0.4s both;
        }

        .hero-cta:hover {
            transform:translateY(-5px);
            box-shadow:0 30px 80px rgba(0, 0, 0, 0.4);
        }

        @keyframes fadeInUp {
            from {
                opacity:0;
                transform:translateY(30px);
            }
            to {
                opacity:1;
                transform:translateY(0);
            }
        }

        /* SECTIONS MODERNES */
        section {
            padding:140px 0;
            position:relative;
        }

        section:nth-child(even) {
            background:var(--gris);
        }

        .section-header {
            text-align:center;
            max-width:900px;
            margin:0 auto 80px;
        }

        .section-header h2 {
            color:var(--noir);
            margin-bottom:25px;
        }

        .section-subtitle {
            font-size:1.3rem;
            color:var(--gris-text);
            font-weight:400;
            line-height:1.6;
        }

        /* ABOUT MODERNE */
        .about {
            background:white;
        }

        .about-grid {
            display:grid;
            grid-template-columns:1fr 1fr;
            gap:100px;
            align-items:center;
        }

        .about-content h2 {
            margin-bottom:40px;
            color:var(--rouge);
        }

        .about-text {
            font-size:1.15rem;
            color:var(--gris-text);
            margin-bottom:30px;
            line-height:1.8;
        }

        .about-highlight {
            background:linear-gradient(135deg, var(--gris) 0%, #fff 100%);
            padding:40px;
            border-radius:20px;
            border-left:4px solid var(--rouge);
            margin:40px 0;
        }

        .about-images {
            display:grid;
            grid-template-columns:repeat(2, 1fr);
            gap:25px;
        }

        .about-img {
            border-radius:20px;
            overflow:hidden;
            box-shadow:0 20px 60px rgba(0, 0, 0, 0.1);
            transition:transform 0.4s;
            height:250px;
            background-size:cover;
            background-position:center;
        }

        .about-img:first-child {
            grid-column:1 / -1;
            height:350px;
        }

        .about-img:hover {
            transform:translateY(-10px);
        }

        /* STATS ULTRA MODERNE */
        .stats {
            background:var(--beige)!important;
            padding: 100px 0;
            position: relative;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 60px;
            text-align: center;
        }

        .stat-item {
            padding: 50px 40px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.3s;
        }

        .stat-item:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-10px);
            border-color: var(--rouge);
            box-shadow: 0 20px 60px rgba(169, 32, 33, 0.3);
        }

        .stat-item .icon {
            color: var(--rouge);
            margin-bottom: 30px;
        }

        .stat-number {
            font-size: clamp(3rem, 6vw, 5rem);
            color: #000000;
            font-weight: 900;
            line-height: 1;
            margin-bottom: 20px;
        }

        .stat-text {
            font-size: 1.2rem;
            color: #000000;
            line-height: 1.5;
            font-weight: 400;
        }


        /* ENJEUX SECTION */
        .enjeux {
            background:white;
        }

        .enjeux-content {
            max-width:1000px;
            margin:0 auto;
        }

        .enjeux-text {
            font-size:1.2rem;
            color:var(--gris-text);
            line-height:1.9;
            margin-bottom:30px;
        }

        .enjeux-highlight {
            background:linear-gradient(135deg, var(--rouge) 0%, var(--terracotta) 100%);
            color:white;
            padding:60px;
            border-radius:30px;
            margin:60px 0;
            box-shadow:0 30px 80px rgba(163, 32, 32, 0.3);
        }

        .enjeux-highlight h3 {
            margin-bottom:25px;
            font-size:2.5rem;
        }

        .enjeux-list {
            list-style:none;
            display:grid;
            grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
            gap:30px;
            margin-top:40px;
        }

        .enjeux-list li {
            display:flex;
            align-items:center;
            gap:15px;
            font-size:1.1rem;
        }

        .enjeux-list svg {
            flex-shrink:0;
        }

        /* OFFERS ULTRA MODERNE */
        .offers {
            background:var(--gris);
        }

        .cards {
            display:grid;
            grid-template-columns:repeat(3, 1fr);
            gap:40px;
        }

        .card {
            background:white;
            border-radius:30px;
            padding:50px 40px;
            transition:all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position:relative;
            overflow:hidden;
            border:1px solid rgba(0, 0, 0, 0.05);
        }

        .card::before {
            content:'';
            position:absolute;
            top:0;
            left:0;
            right:0;
            height:6px;
            background:linear-gradient(90deg, var(--rouge), var(--terracotta));
        }

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

        .card .icon {
            color:var(--rouge);
            margin-bottom:30px;
        }

        .card h3 {
            color:var(--noir);
            margin-bottom:15px;
        }

        .card-duration {
            color:var(--terracotta);
            font-weight:700;
            margin-bottom:30px;
            font-size:0.95rem;
            text-transform:uppercase;
            letter-spacing:0.05em;
        }

        .card ul {
            list-style:none;
            margin-bottom:40px;
        }

        .card li {
            padding:15px 0;
            border-bottom:1px solid rgba(0, 0, 0, 0.05);
            display:flex;
            align-items:flex-start;
            gap:15px;
            font-size:1rem;
            color:var(--gris-text);
        }

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

        .card li .icon {
            margin-top:3px;
            flex-shrink:0;
        }

        .card-btn {
            display:inline-flex;
            align-items:center;
            gap:10px;
            padding:16px 35px;
            background:var(--rouge);
            color:white;
            text-decoration:none;
            border-radius:50px;
            font-weight:700;
            transition:all 0.3s;
            width:100%;
            justify-content:center;
        }

        .card-btn:hover {
            background:var(--rouge-dark);
            transform:translateY(-3px);
            box-shadow:0 15px 40px rgba(163, 32, 32, 0.4);
        }

        /* SERVICES MODERNE */
        .services {
            background:white;
        }

        .services-grid {
            display:grid;
            grid-template-columns:repeat(3, 1fr);
            gap:35px;
            margin-bottom:70px;
        }

        .service-item {
            background:linear-gradient(135deg, var(--gris) 0%, white 100%);
            padding:50px 40px;
            border-radius:25px;
            text-align:center;
            transition:all 0.3s;
            border:1px solid rgba(0, 0, 0, 0.05);
        }

        .service-item:hover {
            background:linear-gradient(135deg, var(--rouge) 0%, var(--terracotta) 100%);
            color:white;
            transform:translateY(-10px);
            box-shadow:0 30px 80px rgba(163, 32, 32, 0.3);
        }

        .service-item .icon {
            color:var(--rouge);
            margin-bottom:25px;
            transition:color 0.3s;
        }

        .service-item:hover .icon {
            color:white;
        }

        .service-item h3 {
            font-size:1.3rem;
            line-height:1.4;
            font-weight:700;
        }

        .service-cta {
            text-align:center;
        }

        .btn-primary {
            display:inline-flex;
            align-items:center;
            gap:12px;
            padding:20px 50px;
            background:var(--rouge);
            color:white;
            text-decoration:none;
            font-weight:700;
            font-size:1.1rem;
            border-radius:50px;
            transition:all 0.3s;
            box-shadow:0 20px 60px rgba(163, 32, 32, 0.3);
        }

        .btn-primary:hover {
            background:var(--rouge-dark);
            transform:translateY(-5px);
            box-shadow:0 30px 80px rgba(163, 32, 32, 0.4);
        }

        /* GALLERY MASONRY MODERNE */
        .gallery {
            background: var(--gris);
        }

        .gallery-grid {
            column-count: 3;
            column-gap: 25px;
        }

        .gallery-item {
            display: inline-block;
            width: 100%;
            margin-bottom: 25px;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            break-inside: avoid;
        }

        .gallery-item img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.4s;
        }

        .gallery-item::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(169, 32, 33, 0);
            transition: background 0.3s;
            z-index: 1;
            pointer-events: none;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
        }

        .gallery-item:hover::before {
            background: rgba(169, 32, 33, 0.3);
        }

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

        /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.95);
            z-index: 10000;
            align-items: center;
            justify-content: center;
            padding: 20px;
            animation: fadeIn 0.3s;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox img {
            max-width: 90%;
            max-height: 90vh;
            object-fit: contain;
            border-radius: 10px;
            box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8);
        }

        .lightbox-close {
            position: absolute;
            top: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            backdrop-filter: blur(10px);
        }

        .lightbox-close:hover {
            background: var(--rouge);
            transform: rotate(90deg);
        }

        .lightbox-close::before,
        .lightbox-close::after {
            content: '';
            position: absolute;
            width: 25px;
            height: 3px;
            background: white;
            border-radius: 2px;
        }

        .lightbox-close::before {
            transform: rotate(45deg);
        }

        .lightbox-close::after {
            transform: rotate(-45deg);
        }

        .lightbox-prev,
        .lightbox-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.15);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            backdrop-filter: blur(10px);
            color: white;
            font-size: 28px;
            font-weight: bold;
            z-index: 10001;
        }

        .lightbox-prev:hover,
        .lightbox-next:hover {
            background: var(--rouge);
        }

        .lightbox-prev {
            left: 30px;
        }

        .lightbox-next {
            right: 30px;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @media (max-width: 1024px) {
            .gallery-grid {
                column-count: 2;
            }

            .lightbox-prev,
            .lightbox-next {
                width: 45px;
                height: 45px;
                font-size: 22px;
            }

            .lightbox-prev {
                left: 15px;
            }

            .lightbox-next {
                right: 15px;
            }

            .lightbox-close {
                top: 15px;
                right: 15px;
                width: 45px;
                height: 45px;
            }
        }


        /* WHY MODERNE */
        .why {
            background:
                linear-gradient(135deg, rgba(218, 202, 164, 0.95) 0%, rgba(42, 42, 42, 0.92) 100%),
                url('img/why-bg.jpg') !important;
            background-size:cover;
            background-position:center;
            background-attachment:fixed;
            color:white;
        }

        .why-grid {
            display:grid;
            grid-template-columns:repeat(3, 1fr);
            gap:50px;
        }

        .why-item {
            background:rgba(255, 255, 255, 0.05);
            padding:50px 45px;
            border-radius:25px;
            backdrop-filter:blur(20px);
            border:1px solid rgba(255, 255, 255, 0.1);
            transition:all 0.3s;
        }

        .why-item:hover {
            background:rgba(255, 255, 255, 0.1);
            transform:translateY(-10px);
            border-color:rgba(255, 255, 255, 0.2);
        }

        .why-item .icon {
            color:var(--rouge);
            margin-bottom:30px;
        }

        .why-item h3 {
            font-size:1.8rem;
            margin-bottom:20px;
        }

        .why-item p {
            font-size:1.15rem;
            color:rgba(255, 255, 255, 0.8);
            line-height:1.7;
        }

        /* CONTACT MODERNE */
        .contact {
            background:white;
        }

        .contact-wrapper {
            display:grid;
            grid-template-columns:1fr 1fr;
            gap:100px;
            max-width:1200px;
            margin:0 auto;
        }

        .contact-form {
            background:var(--gris);
            padding:60px;
            border-radius:30px;
        }

        .form-group {
            margin-bottom:30px;
        }

        .form-group label {
            display:flex;
            align-items:center;
            gap:10px;
            margin-bottom:12px;
            font-weight:600;
            color:var(--noir);
            font-size:1rem;
        }

        .form-group input,
        .form-group textarea {
            width:100%;
            padding:18px 24px;
            border:2px solid transparent;
            border-radius:15px;
            font-family:'Inter', sans-serif;
            font-size:1rem;
            background:white;
            transition:all 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline:none;
            border-color:var(--rouge);
            box-shadow:0 10px 30px rgba(163, 32, 32, 0.1);
        }

        .form-group textarea {
            height:150px;
            resize:vertical;
        }

        .contact-info {
            display:flex;
            flex-direction:column;
            justify-content:center;
        }

        .contact-info h3 {
            font-size:2.5rem;
            margin-bottom:30px;
            color:var(--rouge);
        }

        .contact-info p {
            margin-bottom:25px;
            font-size:1.15rem;
            color:var(--gris-text);
            line-height:1.8;
        }

        .contact-info strong {
            color:var(--noir);
            font-weight:700;
            display:block;
            margin-bottom:15px;
            font-size:1.2rem;
        }

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

        .contact-info a:hover {
            color:var(--rouge-dark);
        }

        .contact-detail {
            display:flex;
            align-items:flex-start;
            gap:15px;
            margin-bottom:20px;
        }

        .contact-detail .icon {
            color:var(--rouge);
            margin-top:3px;
            flex-shrink:0;
        }

        /* FOOTER MODERNE */
        footer {
            background:var(--noir);
            color:white;
            padding:80px 0 40px;
        }

        .footer-content {
            display:flex;
            justify-content:space-between;
            align-items:center;
            margin-bottom:50px;
            flex-wrap:wrap;
            gap:40px;
        }

        .footer-links a {
            color:rgba(255, 255, 255, 0.7);
            text-decoration:none;
            transition:color 0.3s;
        }

        .footer-links a:hover {
            color:white;
        }

        .social-links {
            display:flex;
            gap:20px;
        }

        .social-links a {
            width:50px;
            height:50px;
            background:rgba(255, 255, 255, 0.05);
            border-radius:50%;
            display:flex;
            align-items:center;
            justify-content:center;
            color:white;
            transition:all 0.3s;
            border:1px solid rgba(255, 255, 255, 0.1);
        }

        .social-links a:hover {
            background:var(--rouge);
            transform:translateY(-5px);
            border-color:var(--rouge);
        }

        .footer-bottom {
            text-align:center;
            padding-top:40px;
            border-top:1px solid rgba(255, 255, 255, 0.1);
            color:rgba(255, 255, 255, 0.5);
        }

        /* RESPONSIVE */
        @media (max-width:1024px) {
            .services-grid, .cards, .why-grid {
                grid-template-columns:repeat(2, 1fr);
            }
            .hero, .why {
                background-attachment:scroll;
            }
        }

        @media (max-width:768px) {
            .container {
                padding:0 25px;
            }

            section {
                padding:80px 0;
            }

            .burger {
                display:flex;
            }

            nav.main-nav {
                position:fixed;
                top:90px;
                left:0;
                right:0;
                background:white;
                max-height:0;
                overflow:hidden;
                transition:max-height 0.3s ease;
                box-shadow:0 20px 60px rgba(0, 0, 0, 0.1);
                z-index:999;
            }

            nav.main-nav.active {
                max-height:500px;
                overflow-y:auto;
            }

            nav.main-nav ul {
                flex-direction:column;
                padding:30px;
                gap:0;
            }

            nav.main-nav li {
                width:100%;
                border-bottom:1px solid rgba(0, 0, 0, 0.05);
            }

            nav.main-nav a {
                width:100%;
                padding:20px 0;
                display:block;
            }

            .about-grid,
            .contact-wrapper,
            .why-grid {
                grid-template-columns:1fr;
                gap:60px;
            }

            .services-grid,
            .cards,
            .gallery-grid {
                grid-template-columns:1fr;
            }
			
			.gallery-item {
				height:auto;
			}

            .footer-content {
                flex-direction:column;
                text-align:center;
            }
        }
