    :root {
            --gold: #D4AF37;
            --gold-light: #f1d592;
            --dark: #0A0F14;
            --dark-lighter: #161d25;
            --white: #ffffff;
            --gray: #a0a0a0;
            --font-serif: 'Playfair Display', serif;
            --font-sans: 'Montserrat', sans-serif;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            background-color: var(--white);
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        html, body {
    overflow-x: hidden;
}


/* --- PRELOADER --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark); /* Fond noir profond */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Toujours au-dessus */
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.loader-content {
    text-align: center;
}

.logo-loader {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 3px;
    opacity: 0;
    animation: fadeInLogo 1s ease forwards;
}

.logo-loader span {
    color: var(--gold);
}

.loader-bar {
    width: 0;
    height: 2px;
    background: var(--gold);
    margin: 0 auto;
    animation: loadingWidth 1.5s ease-in-out forwards;
}

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

@keyframes loadingWidth {
    0% { width: 0; }
    100% { width: 200px; }
}

/* Classe pour cacher le preloader */
.preloader-hidden {
    transform: translateY(-100%); /* Le rideau remonte vers le haut */
}


        /* --- NAVIGATION --- */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 8%;
            position: fixed;
            width: 100%;
            z-index: 1000;
            background: rgba(10, 15, 20, 0.85);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        }

        .logo {
            color: var(--white);
            font-family: var(--font-serif);
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: 1px;
        }

        .logo span { color: var(--gold); }

        nav ul { display: flex; list-style: none; }

        nav ul li a {
            color: var(--white);
            text-decoration: none;
            margin: 0 20px;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: 0.3s;
        }

        nav ul li a:hover { color: var(--gold); }

        .btn-cta {
            background: var(--gold);
            color: var(--dark);
            padding: 12px 28px;
            text-decoration: none;
            border-radius: 2px; /* Style plus luxueux que le full-rounded */
            font-weight: 600;
            font-size: 0.8rem;
            text-transform: uppercase;
            transition: 0.4s;
        }

        .btn-cta:hover { background: var(--white); transform: translateY(-2px); }


        /* BURGER */
/* --- Style du bouton Toggle --- */
.menu-toggle {
    display: none; /* Caché sur desktop */
    font-size: 28px;
    cursor: pointer;
    color: #D4AF37;
    transition: transform 0.3s ease;
    z-index: 1001;
}

.menu-toggle.open {
    transform: rotate(90deg); /* Petit effet de rotation à l'ouverture */
}

/* --- Menu Mobile (Mobile First / Responsive) --- */
@media (max-width: 992px) {
    .menu-toggle {
        display: block; /* On l'affiche sur mobile/tablette */
    }

    #nav-menu {
        position: fixed;
        top: 0;
        right: -100%; /* Caché à droite par défaut */
        width: 80%;
        height: 100vh;
        background: #111; /* Fond sombre premium */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

    #nav-menu.active {
        right: 0; /* On l'affiche */
    }

    #nav-menu ul {
        flex-direction: column;
        text-align: center;
        padding: 0;
    }

    #nav-menu ul li {
        margin: 20px 0;
    }

    #nav-menu ul li a {
        font-size: 20px;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    /* On cache le bouton CTA original dans le flux normal sur mobile si besoin 
       ou on l'intègre dans le menu pour gagner de la place */
    .navbar .btn-cta {
        display: none; /* On peut le cacher dans la barre et le mettre dans le menu <ul> */
    }
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background: #D4AF37;
    margin: 6px 0;
    transition: 0.4s;
}

.menu-toggle.open span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}
.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -7px);
}



    
        /* --- HERO SECTION --- */
        .hero {
            height: 100vh;
            /* Image plus "Fine Art" / Humanitaire chic */
            background: url('https://images.unsplash.com/photo-1593113598332-cd288d649433?auto=format&fit=crop&q=80') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            position: relative;
        }

        .hero-overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(to bottom, rgba(10,15,20,0.4), rgba(10,15,20,0.9));
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            padding: 0 20px;
        }

        .hero-content h1 {
            font-family: var(--font-serif);
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            margin-bottom: 25px;
            line-height: 1.1;
        }

        .gold-text { color: var(--gold); }

        .hero-content p {
            font-size: 1.2rem;
            font-weight: 300;
            margin-bottom: 40px;
            letter-spacing: 1px;
            color: #e0e0e0;
        }

        .hero-btns a {
            text-decoration: none;
            padding: 18px 40px;
            margin: 0 10px;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 2px;
            display: inline-block;
            transition: 0.4s;
        }

        .btn-primary { background: var(--gold); color: var(--dark); border: 1px solid var(--gold); }
        .btn-outline { border: 1px solid var(--white); color: var(--white); }
        .btn-primary:hover { background: transparent; color: var(--white); }





        /* --- MISSIONS SECTION --- */
        .missions { padding: 100px 8%; background: var(--white); }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-family: var(--font-serif);
            font-size: 2.8rem;
            color: var(--dark);
        }

        .section-title .bar {
            width: 80px;
            height: 3px;
            background: var(--gold);
            margin: 20px auto;
        }

        .grid-missions {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .mission-card {
            padding: 40px;
            background: var(--light);
            border-bottom: 4px solid transparent;
            transition: 0.4s;
            text-align: center;
        }

        .mission-card:hover {
            transform: translateY(-10px);
            border-bottom: 4px solid var(--gold);
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        }

        .mission-card h3 {
            font-family: var(--font-serif);
            margin: 20px 0;
            font-size: 1.5rem;
        }

        /* --- INFO STRIPE --- */
        .info-stripe { background: var(--dark); color: var(--white); padding: 80px 0; border-top: 1px solid #222; }
        .container-flex { display: flex; justify-content: space-around; max-width: 1200px; margin: 0 auto; flex-wrap: wrap; gap: 40px; }
        .info-item { text-align: center; max-width: 300px; }
        .info-item h3 { color: var(--gold); font-family: var(--font-serif); font-size: 2.2rem; margin-bottom: 10px; }





        /* VISION SECTION */
/* SECTION */
.vision-section {
    padding: 100px 8%;
    background: #fff;
}

/* TITRE */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: bold;
    color: #0A0F14;
}

/* LAYOUT */
.vision-section .row {
    display: flex;
    align-items: center;
}

/* IMAGE */
.vision-image-wrapper {
    position: relative;
    max-width: 85%;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
}

.vision-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
    transition: 0.5s;
}

.vision-image-wrapper:hover .vision-img {
    transform: scale(1.05);
}

/* BADGE */
.vision-experience-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(10, 15, 20, 0.85);
    padding: 12px 18px;
    border-left: 3px solid #D4AF37;
    border-radius: 8px;
}

.gold-text {
    color: #D4AF37;
    font-weight: bold;
}

/* TEXTE */
.vision-content {
    padding-left: 30px;
}

.sub-title {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #777;
}

.section-title-premium {
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
    margin: 15px 0 25px;
}

.section-title-premium span {
    color: #D4AF37;
}

/* QUOTE */
.vision-quote {
    font-style: italic;
    border-left: 3px solid #D4AF37;
    padding-left: 20px;
    margin-bottom: 20px;
}

/* TEXT */
.vision-text {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

/* SIGNATURE */
.signature {
    margin-top: 25px;
}

.signature .name {
    font-weight: bold;
}

.signature .role {
    font-size: 0.85rem;
    color: #888;
}

/* TEXTE BAS */
.vision-bottom-text {
    margin-top: 60px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.vision-bottom-text p {
    color: #555;
    line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .vision-section .row {
        flex-direction: column;
    }

    .vision-content {
        padding-left: 0;
        margin-top: 30px;
        text-align: center;
    }

    .vision-image-wrapper {
        max-width: 100%;
    }

    .vision-img {
        height: 300px;
    }

    .main-title {
        font-size: 2rem;
    }
}







/* --- SECTION IMPACT DOUCE --- */
.impact-section {
    background-color: #F9F7F2; /* Beige champagne très chic */
    padding: 100px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.impact-item {
    text-align: center;
    padding: 30px;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.impact-number {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    color: var(--dark);
    font-weight: 800;
    margin-bottom: 5px;
}

.impact-number span {
    color: var(--gold); /* Chiffres en Or */
}

.impact-label {
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
}

.impact-bar {
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 15px;
    transition: width 0.4s ease;
}

.impact-item p {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
}

/* Animation au survol */
.impact-item:hover {
    transform: translateY(-10px);
}

.impact-item:hover .impact-bar {
    width: 80px; /* La petite barre dorée s'allonge au survol */
}

/* Responsivité Mobile */
@media (max-width: 991px) {
    .impact-item {
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }
    .col-12:last-child .impact-item {
        border-bottom: none;
    }
}






/* --- TIMELINE SECTION --- */
.timeline-section {
    padding: 100px 0;
    background: #ffffff;
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

/* La ligne verticale dorée */
.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    margin-bottom: 30px;
}

/* Alternance Gauche / Droite */
.timeline-item:nth-child(odd) { left: 0; text-align: right; }
.timeline-item:nth-child(even) { left: 50%; text-align: left; }

/* Le point doré sur la ligne */
.timeline-dot {
    position: absolute;
    top: 25px;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.timeline-item:nth-child(odd) .timeline-dot { right: -6px; }
.timeline-item:nth-child(even) .timeline-dot { left: -6px; }

.timeline-date {
    font-family: var(--font-sans);
    font-weight: 700;
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.timeline-content {
    background: #FDFBF7;
    padding: 25px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: 0.3s;
}

.timeline-content h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--dark);
}

.timeline-content p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.timeline-content:hover {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: var(--gold);
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 768px) {
    .timeline-container::before { left: 20px; }
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 50px;
        text-align: left !important;
    }
    .timeline-dot { left: 14px !important; }
}


/* SECTION */
.why-us-section {
    padding: 100px 8%;
    background: #fff;
}

/* TITRE */
.section-header {
    margin-bottom: 60px;
}

.sub-title {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #888;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-top: 10px;
}

.main-title span {
    color: #D4AF37;
}

/* IMAGE */
.why-image-wrapper {
    max-width: 90%;
    margin: auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.why-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: 0.5s;
}

.why-image-wrapper:hover .why-img {
    transform: scale(1.05);
}

/* TEXTE */
.why-content {
    padding-left: 30px;
}

.lead-text {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

/* LISTE */
.why-list {
    margin-top: 20px;
    padding: 0;
    list-style: none;
}

.why-list li {
    margin-bottom: 10px;
    color: #333;
    position: relative;
    padding-left: 25px;
}

.why-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #D4AF37;
}

/* BOUTON */
.btn-why {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 25px;
    background: #D4AF37;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-why:hover {
    background: #000;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .why-content {
        padding-left: 0;
        text-align: center;
        margin-top: 20px;
    }

    .why-img {
        height: 300px;
    }

    .main-title {
        font-size: 2rem;
    }

    .why-list li {
        text-align: left;
    }
}




/* --- JOURNAL / GALLERY SECTION --- */
.journal-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.journal-card {
    position: relative;
    overflow: hidden;
    height: 300px; /* Hauteur par défaut */
    background: var(--dark);
    border-radius: 0; /* Garder un look carré/droit est plus premium */
}

.journal-card.large { height: 500px; }
.journal-card.tall { height: 500px; }

.journal-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s;
    opacity: 0.8;
}

.journal-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.journal-overlay .date {
    display: block;
    color: var(--gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.journal-overlay h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.journal-overlay p {
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.5s;
    line-height: 1.4;
}

/* Hover Effects */
.journal-card:hover img {
    transform: scale(1.05);
    opacity: 1;
}

.journal-card:hover .journal-overlay {
    transform: translateY(0);
}

.journal-card:hover .journal-overlay p {
    opacity: 1;
}

@media (max-width: 991px) {
    .journal-card, .journal-card.large, .journal-card.tall {
        height: 350px;
    }
}











/* --- CTA PREMIUM --- */   


.cta-premium {
    padding: 80px 0;
    background: #fff;
}

.cta-box {
    background: #0a0f14; /* Le noir profond du projet */
    padding: 60px;
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--gold);
}

.cta-title {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-title span {
    color: var(--gold);
    font-style: italic;
}

.cta-text {
    color: #aaa;
    font-size: 1.1rem;
    max-width: 600px;
}

.btn-gold-lg {
    display: inline-block;
    padding: 18px 35px;
    background: var(--gold);
    color: #000;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-gold-lg:hover {
    background: #fff;
    color: #000;
    transform: scale(1.05);
}





/* --- TESTIMONIALS --- */
/* Conteneur qui cache ce qui dépasse */
.testimonial-wrapper {
    overflow: hidden;
    padding: 20px 0;
}

/* La ligne qui contient tous les témoignages */
.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    gap: 20px; /* Espace entre les cartes */
}

/* Taille des colonnes */
.testimonial-col {
    flex: 0 0 calc(25% - 15px); /* 4 cartes par ligne sur Desktop */
    min-width: calc(25% - 15px);
}

/* TABLETTE : 2 cartes */
@media (max-width: 992px) {
    .testimonial-col {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
}

/* MOBILE : 1 seule carte */
@media (max-width: 576px) {
    .testimonial-col {
        flex: 0 0 100%;
        min-width: 100%;
    }
}

/* On garde ton style de carte actuel (en ajoutant une hauteur fixe pour l'harmonie) */
.testimonial-card {
    background: #fff;
    padding: 30px;
    height: 100%; /* Important pour que toutes les cartes aient la même taille */
    border: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.4s;
}



/* --- PAGE CONTACT --- */

/* Hero Section */
.contact-hero {
    height: 50vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.font-serif span { color: #D4AF37; font-style: italic; }

.text-gold { color: #D4AF37 !important; }

/* Wrapper Main */
.contact-main-section {
    padding: 100px 0;
    margin-top: -100px; /* Chevauchement sur le Hero pour le style */
    position: relative;
    z-index: 10;
}

.contact-wrapper-shadow {
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    background: #fff;
}

/* Panneau Info (Gauche) */
.contact-info-panel {
    background: #0a0f14;
    color: #fff;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-card-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.contact-card-item .icon {
    font-size: 1.5rem;
    color: #D4AF37;
}

.contact-card-item span {
    display: block;
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-card-item a, .contact-card-item p {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-reveal {
    background: transparent;
    border: 1px dashed #D4AF37;
    color: #D4AF37;
    font-size: 0.9rem;
    padding: 5px 15px;
    cursor: pointer;
}

/* --- PANNEAU FORMULAIRE (BLANC) --- */
.form-floating-premium {
    position: relative;
    border-bottom: 1px solid #e0e0e0;
}

.form-floating-premium input, 
.form-floating-premium textarea {
    width: 100%;
    border: none;
    padding: 30px 0 10px 0;
    outline: none;
    background: transparent;
    font-size: 1rem;
    color: #333;
}

.form-floating-premium label {
    position: absolute;
    top: 30px;
    left: 0;
    color: #999;
    transition: 0.3s ease all;
    pointer-events: none;
}

.form-floating-premium input:focus + label,
.form-floating-premium input:not(:placeholder-shown) + label,
.form-floating-premium textarea:focus + label,
.form-floating-premium textarea:not(:placeholder-shown) + label {
    top: 5px;
    font-size: 0.75rem;
    color: #D4AF37;
    font-weight: 700;
}

.btn-submit-luxury {
    background: #000;
    color: #fff;
    border: 1px solid #000;
    padding: 18px 45px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.4s;
    cursor: pointer;
}

.btn-submit-luxury:hover {
    background: #D4AF37;
    border-color: #D4AF37;
    color: #000;
}

/* --- ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.scroll-down-indicator {
    position: absolute;
    bottom: 30px;
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, #D4AF37, transparent);
    animation: pulseScroll 2s infinite;
}

@keyframes pulseScroll {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Responsive */
@media (max-width: 991px) {
    .contact-main-section { margin-top: 0; padding: 60px 0; }
    .contact-info-panel, .form-panel { padding: 40px; }
}



        /* --- FOOTER --- */
        




        /* FOOTER PREMIUM */
/* FOOTER */
.footer-premium {
    background: #0A0F14;
    color: #fff;
    padding: 80px 10% 30px;
}

/* CONTAINER */
.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* LOGO */
.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
}

.footer-logo span {
    color: #D4AF37;
}

/* TEXT */
.footer-description {
    margin: 20px 0;
    color: #aaa;
    font-size: 0.9rem;
}

/* TITLES */
.footer-title {
    margin-bottom: 20px;
    color: #D4AF37;
}

/* LINKS */
.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #aaa;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #D4AF37;
    padding-left: 5px;
}

/* SOCIAL */
.footer-socials a {
    margin-right: 10px;
    color: #fff;
    background: rgba(255,255,255,0.05);
    padding: 10px;
    border-radius: 50%;
    transition: 0.3s;
}

.footer-socials a:hover {
    background: #D4AF37;
    color: #000;
}

/* CONTACT */
.footer-contact {
    color: #aaa;
    font-size: 0.9rem;
}

/* BADGE */
.footer-badge {
    margin-top: 15px;
    padding: 8px 12px;
    border: 1px solid #D4AF37;
    color: #D4AF37;
    display: inline-block;
    font-size: 0.8rem;
}

/* BOTTOM */
.footer-bottom {
    margin-top: 50px;
    border-top: 1px solid #222;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #777;
}

/* RESPONSIVE */
@media(max-width: 992px){
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px){
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}