@charset "utf-8";

/* ==========================================================================
   VARIABLES GLOBALES
   ========================================================================== */

:root {
    --fond-creme: #fdfaf5;
    --vert-foret: #3e5346;
    --rose-pastel: #e5b0bc;
    --blanc: #ffffff;
    --mj-dark: #444351;
    --mj-sand: #D5CDBC;
    --mj-white: #fdfbf8;
    --mj-sand-bg: rgba(213, 205, 188, 0.2);
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body {
    background-color: var(--fond-creme);
    font-family: 'Poppins', sans-serif;
    color: var(--vert-foret);
    line-height: 1.4;
    overflow-x: hidden;
}

/* ==========================================================================
   HEADER DESKTOP (Nettoyé)
   ========================================================================== */

.main-header {
    width: 100%;
    background-color: var(--vert-foret);
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
}

/* Cache les éléments mobiles par défaut sur PC */
.header-mobile-only, 
.mobile-nav-overlay {
    display: none;
}

/* ON ENCHAÎNE DIRECTEMENT SANS ACCOLADE FERMANTE SAUVAGE */

.header-container {
    width: 100%;
    max-width: 100%;
    padding: 0px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.logo {
    flex: 1 1 0%;
    display: flex;
    justify-content: flex-start;
}

.logo a {
    font-family: Fraunces, serif;
    color: var(--fond-creme);
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
}

.nav-menu {
    flex: 2 1 0%;
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    color: rgba(247, 243, 226, 0.8);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-menu a:hover { color: rgb(229, 176, 188); }

.nav-right {
    flex: 1 1 0%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.btn-work {
    display: inline-block;
    padding: 10px 22px;
    background-color: transparent;
    border: 1.5px solid rgb(229, 176, 188);
    color: rgb(229, 176, 188);
    border-radius: 50px;
    font-family: Poppins, sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.4s ease-in-out;
    text-decoration: none;
}

.btn-work:hover {
    background-color: rgb(229, 176, 188);
    color: rgb(62, 83, 70);
    transform: scale(1.05);
    box-shadow: rgba(229, 176, 188, 0.4) 0px 0px 15px;
}

/* Cache la version mobile par défaut sur ordinateur */
.mobile-title-only { display: none; }

/* ==========================================================================
   HERO SPLIT (PAGE ACCUEIL)
   ========================================================================== */

/* On s'assure que rien ne pousse le haut de la page */
html, body {
    margin: 0 !important;
    padding: 0 !important;
}

/* Le header reste fixe mais on lui retire toute marge externe */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    margin: 0 !important;
    z-index: 9999;
}

/* On crée un élément invisible pour boucher le trou sur TOUTES les pages */
body::before {
    content: "";
    display: block;
    height: 80px; /* La taille exacte de ton header vert */
    width: 100%;
}

/* On force la première section de chaque page à n'avoir AUCUNE marge en haut */
.site-main, 
.hero-split, 
.about-hero, 
section:first-of-type {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
.dot-pink { color: var(--rose-pastel); margin-left: -2px; }

.hero-split {
    display: flex;
    min-height: 90vh;
    background-color: var(--fond-creme);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero-visual-side,
.hero-content-side {
    flex: 1 1 0%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.stripe-pattern {
    position: absolute;
    inset: 0px;
    z-index: 0;
    background: repeating-linear-gradient(90deg, var(--rose-pastel), var(--rose-pastel) 4.5vw, transparent 4.5vw, transparent 9vw);
}

.aesthetic-card {
    position: relative;
    z-index: 10;
    width: 50%;
    background: var(--blanc);
    padding: 15px 15px 60px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 2px;
    box-shadow: rgba(0, 0, 0, 0.1) 15px 20px 35px;
    transform: rotate(-3deg);
    transition: transform 0.4s;
}

.aesthetic-card:hover { transform: rotate(0deg) scale(1.02); }

.photo-inner img { width: 100%; display: block; border-radius: 0px; }

.hero-big-title {
    font-family: 'Fraunces', serif !important;
    font-weight: 900 !important;
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-badge {
    background-color: var(--vert-foret);
    color: var(--fond-creme);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.75rem;
    margin-bottom: 30px;
    display: inline-block;
}

.hero-text-box { margin-bottom: 60px !important; }

.btn-hero-cta.btn-rose {
    display: inline-block;
    background-color: rgba(229, 176, 188, 0.1);
    border: 1.8px solid var(--rose-pastel);
    color: var(--rose-pastel);
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 800;
    transition: 0.3s;
}

.btn-hero-cta.btn-rose:hover { background-color: var(--rose-pastel); color: var(--blanc); }

.horizontal-separator {
    width: 100%;
    height: 2px;
    background-color: var(--rose-pastel);
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0.6;
}

/* ==========================================================================
   EXPERTISES
   ========================================================================== */

.expertises-section {
    padding-top: 60px;
    padding-bottom: 100px;
    background-color: var(--fond-creme);
    position: relative;
    z-index: 100;
}

.content-wrapper {
    max-width: 1400px;
    margin: 0px auto;
    padding: 0px 5%;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Fraunces', serif !important;
    font-weight: 800 !important;
    font-size: 3rem;
    margin-bottom: 60px;
    margin-top: 20px;
    color: var(--vert-foret);
}

.title-star {
    color: var(--rose-pastel);
    font-size: 2.5rem;
    transform: rotate(15deg);
    animation: 8s linear 0s infinite normal none running rotation-douce;
    display: inline-block;
}

@keyframes rotation-douce {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.expertises-visual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.exp-card {
    border: 1px solid var(--rose-pastel);
    padding: 45px;
    border-radius: 25px;
    min-height: 350px;
    position: relative;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
    background-color: var(--blanc) !important;
}

.exp-tag {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 25px;
    display: block;
    text-transform: uppercase;
    color: var(--rose-pastel) !important;
}

.exp-card.highlight {
    border-color: var(--vert-foret);
    background-color: var(--vert-foret) !important;
}

.exp-card.highlight h3 { color: var(--blanc) !important; }
.exp-card.highlight p  { color: var(--fond-creme); }

.exp-card.highlight .card-number {
    color: var(--rose-pastel) !important;
    opacity: 0.4;
}

.exp-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--vert-foret);
}

.exp-card p { color: var(--vert-foret); line-height: 1.6; }

.card-number {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    color: rgba(62, 83, 70, 0.05);
    position: absolute;
    top: 15px;
    right: 25px;
    font-weight: 900;
}

.exp-card:hover {
    transform: translateY(-10px);
    box-shadow: 15px 15px 0px var(--rose-pastel);
}

/* ==========================================================================
   MARQUEE
   ========================================================================== */

.marquee-container {
    background-color: var(--rose-pastel);
    padding: 30px 0px;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    position: relative;
    z-index: 10;
}

.marquee-content {
    display: flex;
    animation: 10s linear 0s infinite normal none running marquee;
}

.marquee-content span {
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    color: var(--fond-creme);
    margin-right: 60px;
    text-transform: uppercase;
    font-weight: 700;
}

@keyframes marquee {
    0%   { transform: translateX(0px); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   HOME NAV (POLAROÏDS)
   ========================================================================== */

.home-nav-section {
    padding: 120px 0px;
    background-color: var(--fond-creme);
    position: relative;
    overflow: hidden;
}

.stripe-pattern-green {
    position: absolute;
    inset: 0px;
    z-index: 1;
    background: repeating-linear-gradient(90deg, rgba(62, 83, 70, 0.3), rgba(62, 83, 70, 0.3) 4vw, transparent 4vw, transparent 8vw) 0% 0% / calc(100% + 4vw) 100%;
}

.home-nav-section .content-wrapper { position: relative; z-index: 10; }

.nav-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.nav-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.polaroid-nav {
    background: var(--blanc);
    padding: 15px 15px 60px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: rgba(0, 0, 0, 0.08) 10px 15px 30px;
    transition: 0.4s;
    width: 320px;
}

.qui-suis-je-polaroid { transform: rotate(3deg); }
.projets-polaroid     { transform: rotate(-3deg); }
.polaroid-nav:hover   { transform: rotate(0deg) translateY(-10px); }

.polaroid-inner { width: 100%; height: 280px; overflow: hidden; }
.polaroid-inner img { width: 100%; height: 100%; object-fit: cover; }

.nav-text {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav-label {
    background: var(--blanc);
    color: var(--rose-pastel);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 4px 12px;
}

.nav-text h2 {
    font-family: "Playfair Display", serif;
    font-size: 2.6rem;
    margin: 15px 0px 25px;
    color: var(--vert-foret);
}

.btn-nav-link {
    background-color: var(--rose-pastel);
    color: var(--blanc);
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
    box-shadow: rgba(229, 176, 188, 0.4) 0px 8px 18px;
}

.btn-nav-link:hover {
    transform: translateY(-3px);
    box-shadow: rgba(229, 176, 188, 0.5) 0px 12px 22px;
    background-color: var(--vert-foret);
}

/* ==========================================================================
   CTA FINAL
   ========================================================================== */

.final-cta-section {
    padding: 150px 0px;
    background-color: var(--fond-creme);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-background-blobs { position: absolute; inset: 0px; z-index: 1; pointer-events: none; }

.blob { position: absolute; border-radius: 50%; filter: blur(80px); z-index: 1; }
.blob-1 { width: 600px; height: 600px; background-color: var(--rose-pastel); top: -200px; left: -200px; opacity: 0.6; }
.blob-2 { width: 600px; height: 600px; background-color: var(--rose-pastel); bottom: -200px; right: -200px; opacity: 0.6; }

.final-cta-section .content-wrapper { position: relative; z-index: 10; }

.cta-box {
    max-width: 800px;
    margin: 0px auto;
    background: var(--blanc);
    padding: 80px 40px;
    border-radius: 40px;
    border: 1px solid rgba(62, 83, 70, 0.05);
    box-shadow: 20px 20px 0px var(--vert-foret);
}

.cta-tag { font-size: 0.8rem; font-weight: 800; color: var(--rose-pastel); letter-spacing: 3px; display: block; margin-bottom: 20px; }

.cta-title {
    font-family: 'Fraunces', serif !important;
    font-weight: 800 !important;
    font-size: 3.2rem;
    color: var(--vert-foret);
    line-height: 1.2;
    margin-bottom: 25px;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--vert-foret);
    opacity: 0.8;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions { display: flex; align-items: center; justify-content: center; gap: 30px; }

.btn-cta-main {
    background-color: var(--vert-foret);
    color: var(--fond-creme);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.btn-cta-main:hover { transform: translateY(-5px); background-color: var(--rose-pastel); color: var(--vert-foret); }

.cta-or { font-family: "Playfair Display", serif; font-style: italic; font-size: 1.1rem; color: var(--vert-foret); opacity: 0.6; }

.cta-secondary-link {
    font-weight: 800;
    color: var(--vert-foret);
    text-decoration-line: underline;
    text-decoration-color: var(--rose-pastel);
    text-underline-offset: 5px;
    transition: 0.3s;
}

.cta-secondary-link:hover { color: var(--rose-pastel); }


/* ==========================================================================
   SECTION FREELANCE UNIVERSE (ULTRA-COMPACT & MINI)
   ========================================================================== */
/* ==========================================================================
   SECTION FREELANCE UNIVERSE (VERSION FINALE NETTOYÉE)
   ========================================================================== */

.l-free-universe-mini {
    padding: 20px 0 80px; /* Padding top réduit pour coller à la section précédente */
    position: relative;
    background-color: var(--fond-creme);
    overflow: hidden;
}

.l-free-container-mini {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

/* --- HEADER & TITRE --- */
.l-free-header-mini {
    text-align: center;
    margin-bottom: 30px;
}

.l-free-label-mini {
    background: var(--blanc);
    color: var(--rose-pastel);
    padding: 8px 20px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    display: inline-block;
}

.l-free-title-mini {
    font-family: 'Fraunces', serif;
    font-size: 3.5rem; 
    font-weight: 800; /* Aligné sur ton titre Expertise & Vision */
    color: var(--vert-foret);
    margin: 20px 0 0;
    line-height: 1.1;
}

.l-free-star-mini { color: var(--rose-pastel); }

/* --- TEXTE STORYTELLING (CORRIGÉ EN POPPINS) --- */
.l-free-storytelling {
    max-width: 750px; 
    margin: 15px auto 50px;
    text-align: center;
}

.l-free-storytelling p {
    font-family: 'Poppins', sans-serif !important; /* Force la police de ta page d'accueil */
    font-size: 1rem;
    line-height: 1.6;
    color: var(--vert-foret);
    opacity: 0.8;
}

.l-free-storytelling strong {
    font-family: 'Poppins', sans-serif;
    color: var(--rose-pastel);
    font-weight: 700;
}

/* --- GRILLE DE POLAROÏDS --- */
.l-free-grid-mini {
    display: flex;
    justify-content: center; 
    gap: 50px;
    flex-wrap: nowrap; 
    padding: 20px 0;
}

.l-free-card-mini {
    background: #ffffff;
    padding: 8px 8px 18px 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    border-radius: 2px;
    width: 200px; 
    flex-shrink: 0; 
}

.l-free-polaroid-mini {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
    margin-bottom: 10px;
}

.l-free-polaroid-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- TEXTES DES CARTES --- */
.l-free-tag-mini {
    font-family: 'Poppins', sans-serif;
    font-size: 0.55rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--rose-pastel);
    display: block;
    margin-bottom: 4px;
}

.l-free-card-mini h3 {
    font-family: 'Fraunces', serif;
    font-size: 1rem; 
    color: var(--vert-foret);
    margin: 0 0 5px;
    line-height: 1.2;
}

.l-free-card-mini p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem; 
    color: var(--vert-foret);
    line-height: 1.4;
    opacity: 0.8;
}

/* --- EFFETS --- */
.l-free-rot-left-mini { transform: rotate(-2.5deg); }
.l-free-rot-right-mini { transform: rotate(2.5deg); }

.l-free-card-mini:hover {
    transform: rotate(0deg) translateY(-8px);
    box-shadow: 0 15px 30px rgba(229, 176, 188, 0.3);
    z-index: 10;
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 768px) {
    .l-free-title-mini {
        font-size: 2.2rem !important; 
    }
    .l-free-storytelling p {
        font-size: 0.95rem;
        padding: 0 15px;
    }
    .l-free-grid-mini {
        flex-wrap: wrap;
        gap: 40px;
    }
    .l-free-card-mini {
        width: 240px;
        transform: none !important;
    }
}
/* ==========================================================================
   FOOTER
   ========================================================================== */

.main-footer {
    background-color: var(--vert-foret);
    color: var(--fond-creme);
    padding: 100px 0px 40px;
    position: relative;
    z-index: 100;
}

.footer-container {
    max-width: 1300px;
    margin: 0px auto;
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.branding { flex: 1.5 1 0%; text-align: left; }

.footer-logo { margin-bottom: 20px; }
.footer-logo a { font-family: Fraunces, serif; color: var(--fond-creme); font-size: 2.2rem; font-weight: 700; }
.branding p { opacity: 0.8; max-width: 350px; font-size: 1rem; line-height: 1.6; }

.links { flex: 1 1 0%; text-align: center; }

.links h4, .social h4 {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--rose-pastel);
    font-weight: 700;
}

.links ul li { margin-bottom: 15px; }
.links ul li a { color: var(--fond-creme); opacity: 0.8; transition: 0.3s; }
.links ul li a:hover { color: var(--rose-pastel); opacity: 1; }

.social { flex: 1.5 1 0%; text-align: right; }

.social-wrapper { display: flex; flex-direction: column; align-items: flex-end; gap: 30px; }
.social-icons   { display: flex; gap: 12px; }

.social-btn {
    background: rgba(247, 243, 226, 0.1);
    border: 1px solid rgba(247, 243, 226, 0.2);
    color: var(--fond-creme);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: 0.3s;
}

.social-btn:hover {
    background: var(--rose-pastel);
    color: var(--vert-foret);
    border-color: var(--rose-pastel);
    transform: translateY(-5px);
}

.footer-email {
    color: var(--rose-pastel);
    font-weight: 800;
    font-size: 1.2rem;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.footer-email:hover { border-bottom: 2px solid var(--rose-pastel); }

.footer-bottom {
    margin-top: 80px;
    border-top: 1px solid rgba(247, 243, 226, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Style pour le bas du footer */
.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px; /* Espace entre le copyright et les liens */
    flex-wrap: wrap;
}

.footer-legal-links {
    display: flex;
    list-style: none;
    gap: 20px; /* Espace entre les deux liens légaux */
    padding: 0;
    margin: 0;
}

.footer-legal-links li a {
    color: var(--fond-creme);
    text-decoration: none;
    transition: 0.3s;
}

.footer-legal-links li a:hover {
    color: var(--rose-pastel);
    opacity: 1;
}

/* On ajuste l'opacité globale du bas pour que ce soit discret mais lisible */
.footer-bottom {
    margin-top: 80px;
    border-top: 1px solid rgba(247, 243, 226, 0.1);
    padding-top: 30px;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ==========================================================================
   PAGE QUI SUIS-JE
   ========================================================================== */
   

  .collab-section {
    font-family: 'Inter', sans-serif;
    padding: 2rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: -50px; /* On remonte la section vers celle du dessus */
    margin-bottom: 20px;
  }
 
  .stripe-top {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 10px;
    background: repeating-linear-gradient(90deg, #F2A7C3 0px, #F2A7C3 24px, #2D5741 24px, #2D5741 48px);
  }
 
  .stripe-bottom {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 10px;
    background: repeating-linear-gradient(90deg, #2D5741 0px, #2D5741 24px, #F2A7C3 24px, #F2A7C3 48px);
  }
 
  .eyebrow-collab {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #2D5741;
    font-weight: 500;
    margin-bottom: 1.2rem;
  }
 
  .collab-title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 2.2rem;
    color: #2A2A2A;
    font-weight: 400;
    margin: 0 0 0.4rem;
    line-height: 1.2;
  }
 
  .collab-title span { color: #D95B8A; }
 
  .collab-subtitle {
    font-size: 13px;
    color: #888;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
  }
 
  .layout-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 680px;
    margin: 0 auto 2rem;
    flex-wrap: wrap;
  }
 
  /* ── PHONE ── */
  .phone-frame {
    width: 160px;
    height: 310px;
    background: #111;
    border-radius: 32px;
    padding: 10px 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18), inset 0 0 0 1.5px #333;
    flex-shrink: 0;
  }
 
  .phone-notch {
    width: 50px;
    height: 10px;
    background: #111;
    border-radius: 0 0 10px 10px;
    margin: 0 auto 4px;
  }
 
  .phone-screen {
    background: #000;
    border-radius: 24px;
    overflow: hidden;
    height: calc(100% - 14px);
    display: flex;
    flex-direction: column;
  }
 
  .br-statusbar {
    display: flex;
    justify-content: space-between;
    padding: 6px 10px 2px;
    font-size: 8px;
    color: #fff;
    font-weight: 500;
  }
 
  .br-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 0 6px;
  }
 
  .br-logo {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
  }
 
  .br-main-photo {
    flex: 1;
    background: linear-gradient(160deg, #1a1a2e 0%, #2d1b4e 40%, #1a2e1a 100%);
    position: relative;
    overflow: hidden;
    margin: 0 4px;
    border-radius: 12px;
  }
 
  .br-scene {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2px;
    opacity: 0.35;
  }
 
  .br-scene-cell { border-radius: 2px; }
  .c1 { background: #F2A7C3; }
  .c2 { background: #2D5741; }
  .c3 { background: #D95B8A; }
  .c4 { background: #4a8f6a; }
 
  .br-selfie-thumb {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 42px;
    height: 52px;
    border-radius: 8px;
    border: 2px solid #fff;
    overflow: hidden;
  }
 
  .br-selfie-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2D5741, #4a8f6a);
  }
 
  .br-photo-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 8px;
  }
 
  .br-username {
    font-size: 7px;
    color: #fff;
    font-weight: 600;
  }
 
  .br-time {
    font-size: 6px;
    color: rgba(255,255,255,0.6);
  }
 
  .br-reactions {
    display: flex;
    gap: 4px;
    margin-top: 4px;
  }
 
  .br-reaction {
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 2px 5px;
    font-size: 6px;
    color: #fff;
  }
 
  .br-bottom-bar {
    padding: 6px 8px;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
 
  .br-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.4);
  }
 
  .br-shutter {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid rgba(255,255,255,0.4);
  }
 
  /* ── RIGHT CONTENT ── */
  .collab-right {
    text-align: left;
    max-width: 320px;
  }
 
  .brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #111;
    color: #fff;
    padding: 7px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
  }
 
  .brand-dot {
    width: 7px;
    height: 7px;
    background: #F2A7C3;
    border-radius: 50%;
    display: inline-block;
  }
 
  .collab-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.75;
    margin: 0 0 1.6rem;
  }
 
  .collab-desc strong {
    color: #2A2A2A;
    font-weight: 500;
  }
 
  .stats-row {
    display: flex;
    border-top: 1px solid #e0d6cc;
    border-bottom: 1px solid #e0d6cc;
    margin-bottom: 1.4rem;
  }
 
  .stat-item {
    flex: 1;
    padding: 1rem 0.6rem;
    border-right: 1px solid #e0d6cc;
    text-align: center;
  }
 
  .stat-item:last-child { border-right: none; }
 
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.7rem;
    color: #D95B8A;
    font-weight: 600;
    line-height: 1;
  }
 
 /* On cible très précisément pour forcer le vert */
.stats-row .stat-item .stat-label {
    color: #3e5346 !important;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 4px;
    opacity: 1; /* Au cas où une opacité le rendrait gris/blanc */
}
 
 
.tag-row {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-start; /* Aligné à gauche sur PC */
}

.tag-group {
    display: flex;
    gap: 6px; /* Garde le même espace entre les tags du groupe */
}

.tag {
    background: #f0e9e1;
    border-radius: 100px;
    padding: 4px 12px;
    font-size: 11px;
    color: #777;
    letter-spacing: 0.04em;
    white-space: nowrap; /* Empêche le texte d'un tag de revenir à la ligne */
    transition: all 0.3s ease; /* Pour tes hovers */
}

.tag.tag-green { background: #EDF4EF; color: #2D5741; }
.tag.tag-pink  { background: #FDF0F6; color: #D95B8A; }

/* Responsive Mobile */
@media (max-width: 768px) {
    .tag-row {
        justify-content: center; /* Centre le tout sur mobile */
    }
} 
  .sparkle-deco { color: #F2A7C3; margin: 0 4px; }

.pricing-hero {
    background-color: #fdfaf5;
    padding: 60px 0px 0px;
    overflow: hidden;
    position: relative;
}

.pricing-hero .editorial-container {
    margin-bottom: 0px;
    display: grid;
    grid-template-columns: 1fr 1.8fr 1fr;
    align-items: stretch;
    max-width: 100%;
    min-height: 80vh;
}

.editorial-side-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.editorial-center-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 10%;
}

.pricing-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1;
    color: rgb(62, 83, 70);
}

.cursive-italic { font-family: Fraunces, serif; font-style: italic; color: rgb(229, 176, 188); }

.star-deco-pink {
    position: absolute;
    top: -20px;
    right: 0px;
    font-size: 4rem;
    color: rgb(229, 176, 188);
    animation: 8s linear 0s infinite normal none running rotation-douce;
    display: inline-block;
}

.cta-wrapper {
    margin-top: 30px; /* Crée l'espace en dessous de "dépote" */
}

.btn-pimp {
    display: inline-block;
    background-color: #e5b0bc; /* Ton rose signature */
    color: #3e5346; /* Ton vert foncé pour le contraste */
    padding: 15px 30px;
    border-radius: 50px; /* Forme pilule très moderne */
    text-decoration: none;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(229, 176, 188, 0.3);
}

.btn-pimp:hover {
    transform: translateY(-3px); /* Petit saut vers le haut */
    box-shadow: 0 6px 20px rgba(229, 176, 188, 0.5);
    background-color: #d49ba8; /* Un rose un poil plus foncé au survol */
    color: #fff;
}
/* =/* =========================================================================
   RUBANS ANIMÉS
   ========================================================================== */

.moving-ribbon {
    width: 100%;
    height: 35px;
    overflow: hidden;
    position: relative;
    background-color: rgb(247, 243, 226);
    z-index: 5;
}

.ribbon-track {
    position: absolute;
    top: 0px; 
    left: 0px;
    width: 200%; /* Permet d'avoir assez de matière pour boucler */
    height: 100%;
    background: repeating-linear-gradient(
        90deg, 
        rgb(229, 176, 188) 0px, 
        rgb(229, 176, 188) 50px, 
        rgb(62, 83, 70) 50px, 
        rgb(62, 83, 70) 100px
    );
}

.ribbon-top .ribbon-track { 
    animation: slide-colors-right 40s linear infinite !important; 
}

.ribbon-bottom .ribbon-track { 
    animation: slide-colors-left 40s linear infinite !important; 
}

/* Keyframes */
@keyframes slide-colors-right {
    0%   { transform: translateX(0px); }
    100% { transform: translateX(-50%); }
}

@keyframes slide-colors-left {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0px); }
}

/* ==========================================================================
   TIMELINE
   ========================================================================== */

.timeline-section {
    padding: 60px 0px 80px;
    background-color: #fdfaf5;
    position: relative;
    z-index: 1;
}

.timeline-title {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    color: rgb(62, 83, 70);
    text-align: center;
    margin-bottom: 40px;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
    align-items: center;
}

.timeline-line {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0px;
    width: 100%;
    height: 1px;
    background-color: rgb(229, 176, 188);
    z-index: 1;
}

.timeline-item { display: flex; flex-direction: column; align-items: center; text-align: center; }

.date-badge { width: 80px; padding: 8px 0px; font-weight: 800; font-family: Poppins, sans-serif; color: rgb(62, 83, 70); border-radius: 8px; margin: 15px 0px; }

.badge-orange { background-color: rgb(255, 216, 196); }
.badge-purple { background-color: rgb(226, 209, 249); }
.badge-pink   { background-color: rgb(229, 176, 188); }
.badge-lime   { background-color: rgb(226, 239, 201); }
.badge-green  { background-color: rgb(184, 212, 190); }

.polaroid-card {
    background: rgb(255, 255, 255);
    padding: 10px 10px 30px;
    width: 150px;
    box-shadow: rgba(0, 0, 0, 0.05) 10px 10px 20px;
    transition: transform 0.3s;
}

.polaroid-card img { width: 100%; height: 120px; object-fit: cover; }
.card-up   { transform: rotate(-5deg); margin-bottom: 15px; }
.card-down { transform: rotate(5deg);  margin-top: 15px; }

/* L'animation de flottaison */
@keyframes float {
    0% { transform: translateY(0px) rotate(-5deg); }
    50% { transform: translateY(-10px) rotate(-3deg); }
    100% { transform: translateY(0px) rotate(-5deg); }
}

@keyframes float-reverse {
    0% { transform: translateY(0px) rotate(5deg); }
    50% { transform: translateY(-10px) rotate(7deg); }
    100% { transform: translateY(0px) rotate(5deg); }
}

/* On applique l'animation aux cartes */
.card-up {
    animation: float 4s ease-in-out infinite;
}

.card-down {
    animation: float-reverse 5s ease-in-out infinite; /* Vitesse différente pour casser la symétrie */
}

.polaroid-card:hover {
    transform: scale(1.1) rotate(0deg) !important; /* Le !important est là pour écraser l'animation de flottaison pendant le hover */
    z-index: 10;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    cursor: pointer;
    animation: none; /* On stoppe la flottaison au survol */
}


/* ==========================================================================
   SOCIAL IMPACT / STATS
   ========================================================================== */

.social-impact {
    background-color: #fdfaf5;
    padding: 80px 0px 100px;
    text-align: center;
}

.intro-passion-block { display: flex; flex-direction: column; align-items: center; margin-bottom: 50px; }

.eyebrow {
    color: rgb(229, 176, 188);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.impact-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    color: rgb(62, 83, 70);
    margin: 0px;
}

.passion-text-clean {
    font-family: Poppins, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: rgb(62, 83, 70);
    max-width: 600px;
    margin: 20px auto 0px;
}

.stats-grid-aura {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0px auto 80px;
}

.stat-card {
    padding: 35px 15px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.4);
    box-shadow: rgba(0, 0, 0, 0.03) 0px 10px 30px;
    transition: 0.3s ease-in-out;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 15px 35px;
    background: rgb(255, 255, 255) !important;
}

.stat-card h3 { font-family: Poppins, sans-serif; font-size: 2.5rem; font-weight: 800; color: rgb(62, 83, 70); margin: 0px; }
.stat-card p  { font-size: 0.8rem; text-transform: uppercase; font-weight: 700; color: rgb(62, 83, 70); margin-top: 10px; }

.card-rose  { background-color: rgb(229, 176, 188); }
.card-vert  { background-color: rgb(184, 212, 190); }
.card-beige { background-color: rgb(232, 226, 208); }

/* ==========================================================================
   LOGOS / MARQUES
   ========================================================================== */

.brand-trust-cloud { padding: 0px 20px; margin-bottom: 60px; margin-top: 140px !important; }

.trust-subtitle { font-family: Fraunces, serif; font-style: italic; font-size: 1.8rem; color: rgb(62, 83, 70); margin-bottom: 50px; }

.logos-grid-new {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1100px;
    margin: 0px auto;
}

.logos-grid-new img {
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.4;
    transition: 0.4s ease-in-out;
    width: 120px !important;
    height: 60px !important;
}

.logos-grid-new img:hover { filter: grayscale(0%); opacity: 1; transform: scale(1.1); }

/* ==========================================================================
   CARTE CRÉATRICE
   ========================================================================== */

.creatrice-mini-card {
    display: block;
    position: relative;
    margin: 80px auto 0px;
    max-width: 700px;
    background-color: transparent;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(229, 176, 188, 0.4);
    border-bottom: 1px solid rgba(229, 176, 188, 0.4);
    padding: 40px 40px 20px;
    border-radius: 0;
    z-index: 5;
    clear: both;
    text-align: center;
    margin: 60px auto 0px !important;
}

.creatrice-card-content { text-align: center; }

.creatrice-tag {
    font-family: Poppins, sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    background: rgb(226, 239, 201);
    color: rgb(62, 83, 70);
    padding: 5px 12px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 15px;
}

.creatrice-text { font-family: Poppins, sans-serif; font-size: 1rem; color: rgb(62, 83, 70); margin-bottom: 15px; }

a.creatrice-link-clean,
a.creatrice-link-clean:visited {
    border-bottom: 1px solid transparent;
    color: rgb(229, 176, 188) !important;
    text-decoration: none !important;
    transition: 0.3s !important;
}

a.creatrice-link-clean:hover {
    color: rgb(62, 83, 70) !important;
    border-bottom: 1px solid rgb(62, 83, 70) !important;
}

/* ==========================================================================
   MOODBOARD SLIDER
   ========================================================================== */

.moodboard-slider-section {
    background-color: #fdfaf5;
    padding-bottom: 60px;
    overflow: hidden;
    width: 100%;
    clear: both;
    padding-top: 20px !important;
    margin-top: 0px !important;
}

.vb-header-simple {
    text-align: center;
    padding: 0px 20px;
    margin-bottom: 20px !important;
    margin-top: 0px !important;
}

.vb-title-clean { font-family: "Playfair Display", serif; font-size: 2.5rem; color: rgb(62, 83, 70); margin-bottom: 8px; }

.cursive-aura { font-family: 'Fraunces', serif; font-style: italic; color: rgb(229, 176, 188); }

.vb-subtitle {
    font-family: Poppins, sans-serif;
    font-size: 0.8rem;
    color: rgb(62, 83, 70);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mood-slider-wrapper { display: flex; width: 100%; }

.mood-track {
    display: flex;
    gap: 30px;
    animation: 60s linear 0s infinite normal none running scroll-mood;
}

.mood-polaroid {
    flex: 0 0 150px;
    background: rgb(255, 255, 255);
    padding: 10px 10px 25px;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 4px 15px;
    transition: transform 0.4s;
}

.mood-polaroid:nth-child(2n+1) { transform: rotate(-2deg); }
.mood-polaroid:nth-child(2n)   { transform: rotate(2deg); }
.mood-track:hover { animation-play-state: paused; }
.mood-polaroid:hover { transform: scale(1.1) rotate(0deg); z-index: 10; box-shadow: rgba(229, 176, 188, 0.3) 0px 10px 25px; }

.pol-inner { width: 130px; height: 130px; overflow: hidden; }
.pol-inner img { width: 100%; height: 100%; object-fit: cover; }

@keyframes scroll-mood {
    0%   { transform: translateX(0px); }
    100% { transform: translateX(calc(-3600px)); }
}

/* ==========================================================================
   TRANSITION AURORE
   ========================================================================== */

.aurore-transition {
    background-color: #fdfaf5;
    background-image: linear-gradient(90deg, rgba(62, 83, 70, 0.08) 50%, rgba(229, 176, 188, 0.1) 50%);
    background-size: 100px 100px;
    background-repeat: repeat;
    padding: 100px 0px 120px;
    position: relative;
    text-align: center;
}

.color-ribbon-divider { display: flex; width: 100%; height: 8px; position: absolute; top: 0px; left: 0px; z-index: 10; }
.ribbon-half { height: 100%; flex: 1 1 0%; }
.pink-bg  { background-color: rgb(229, 176, 188); }
.green-bg { background-color: rgb(62, 83, 70); }

.container-mini { max-width: 800px; margin: 0px auto; padding: 0px 20px; }

.transition-content .eyebrow {
    font-family: Poppins, sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: rgb(229, 176, 188);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.minimal-title {
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    color: rgb(62, 83, 70);
    line-height: 1.4;
    margin-bottom: 35px;
    font-weight: 500;
}

.btn-portfolio-aura {
    display: inline-block;
    background-color: rgb(62, 83, 70);
    color: rgb(247, 243, 226);
    padding: 15px 35px;
    border-radius: 50px;
    font-family: Poppins, sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: rgba(62, 83, 70, 0.15) 0px 4px 15px;
}

.btn-portfolio-aura:hover { background-color: rgb(229, 176, 188); transform: translateY(-3px); box-shadow: rgba(229, 176, 188, 0.3) 0px 8px 20px; }

/* ==========================================================================
   SECTION FLEX COLLAB BEREAL — DA AURA MOOD
   ========================================================================== */
.collab-aura-section {
    background-color: #fdfaf5; /* On revient au fond crème de ta page */
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: #3e5346; /* Ton vert forêt pour le texte */
    margin: 60px 0;
}

/* Le halo lumineux, encore plus doux */
.collab-aura-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 500px;
    background: radial-gradient(circle, rgba(229, 176, 188, 0.25) 0%, rgba(229, 176, 188, 0) 70%);
    filter: blur(60px);
    z-index: 1;
}

.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.collab-badge {
    background: transparent;
    border: 1px solid #e5b0bc; /* Contour rose fin */
    color: #e5b0bc; /* Texte rose */
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.flex-aura-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.flex-text-side { flex: 1.5; text-align: left; }

.collab-title {
    font-family: 'Playfair Display', serif; /* Ta police de titre élégante */
    font-size: 4rem;
    color: #3e5346;
    margin-bottom: 20px;
    line-height: 1.1;
}

.cursive-aura { font-family: 'Fraunces', serif; font-style: italic; color: #e5b0bc; }

.collab-description {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 450px;
}

/* Style des bulles de stats, mais version DA douce */
.flex-stats-side {
    flex: 1;
    display: flex;
    gap: 30px;
}

.aura-stat-card {
    background: #ffffff; /* Fond blanc pur pour les faire ressortir discrètement */
    color: #3e5346;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: rotate(-3deg);
    box-shadow: 0 8px 25px rgba(229, 176, 188, 0.1); /* Ombre rose très douce */
}

/* On alterne les rotations sans changer de DA */
.aura-stat-card:nth-child(even) {
    transform: rotate(4deg);
    margin-top: 30px;
}

.aura-stat-num { font-family: 'Fraunces', serif; font-size: 3rem; font-weight: 900; line-height: 1; color: #e5b0bc; }
.aura-stat-label { font-size: 0.65rem; font-weight: 800; letter-spacing: 2px; margin-top: 5px; opacity: 0.7; }

/* ==========================================================================
   PAGE MES PROJETS
   ========================================================================== */
   

.hero-magazine-v2 {
    height: 70vh !important;
    background-color: #fdfaf5;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 50px;
    padding: 40px 0 !important;
}

/* Le halo rose "Aura" */
.mag-aura-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(229, 176, 188, 0.4) 0%, rgba(229, 176, 188, 0) 70%);
    filter: blur(60px);
    z-index: 1;
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    position: relative;
    z-index: 2;
}

/* Texte géant en fond */
.hero-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: 15rem;
    font-weight: 900;
    color: #f7f0e6; /* Très proche du fond pour la texture */
    letter-spacing: -5px;
    z-index: -1;
    white-space: nowrap;
}

/* Le titre principal */
.hero-main-content {
    text-align: center;
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.title-small {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 10px;
    color: #3e5346;
    margin-bottom: -10px;
}

.title-huge {
    font-family: 'Playfair Display', serif;
    font-size: 9rem;
    color: #3e5346;
    line-height: 0.9;
    font-weight: 800;
}

.title-overlap {
    font-size: 6rem;
    margin-top: -40px;
    margin-left: 150px;
    color: #e5b0bc;
    text-shadow: 2px 2px 10px rgba(253, 250, 245, 0.8);
}

.hero-intro-text {
    max-width: 450px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.6;
    color: #3e5346;
    opacity: 0.8;
}

/* 3. LES POLAROIDS FLOTTANTS (L'asymétrie magique) */
.floating-decorations .mini-pol {
    position: absolute;
    background: #ffffff;
    padding: 10px 10px 30px;
    width: 170px; /* Taille plus impactante */
    box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.05);
    z-index: 5;
    transition: transform 0.4s ease;
}

.floating-decorations img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

/* Placement GAUCHE : Haut et très incliné */
.pol-1 { 
    top: 15%; 
    left: 7%; 
    transform: rotate(-12deg);
    animation: float-soft 6s ease-in-out infinite;
}

/* Placement DROITE : Bas et plus droit */
.pol-2 { 
    bottom: 20%; 
    right: 7%; 
    transform: rotate(6deg);
    animation: float-soft 7s ease-in-out infinite reverse; /* Sens inverse */
}

/* 4. L'ANIMATION (Le côté "Vivant") */
@keyframes float-soft {
    0%, 100% { transform: translateY(0) rotate(-12deg); }
    50% { transform: translateY(-15px) rotate(-10deg); }
}

/* On ajuste l'animation pour le pol-2 spécifiquement */
.pol-2 {
    animation-name: float-soft-right;
}

@keyframes float-soft-right {
    0%, 100% { transform: translateY(0) rotate(6deg); }
    50% { transform: translateY(-15px) rotate(8deg); }
}


/* Scroll invite */
.scroll-invite {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10; /* On le place au-dessus des polaroïds (5) et du texte */
}

.scroll-invite .star-deco-aura {
    font-size: 2.5rem;
    animation: rotation-aura 8s linear infinite;
}



.portfolio-aura-wrapper {
    background-color: #fdfaf5 !important;
    padding-top: 80px !important;
    overflow-x: hidden;
}

.hero-magazine, .cat-section, .moving-ribbon { background-color: #fdfaf5 !important; }

.hero-magazine {
    height: 80vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0 0 0;
}

.mag-text-back {
    position: relative;
    z-index: 1;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 8rem;
    color: #e5b0bc;
    letter-spacing: -2px;
    line-height: 1.2;
    width: 100%;
    text-align: left;
    padding-left: 8%;
    margin-top: 150px;
    transform: translateX(-100%);
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 1s ease;
}

.mag-text-front {
    position: absolute;
    z-index: 3;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 8rem;
    color: #e5b0bc;
    letter-spacing: -2px;
    top: 70%;
    right: 10%;
    line-height: 1;
    text-align: right;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 1s ease;
}

.hero-magazine.animate-now .mag-text-back  { transform: translateX(0); opacity: 0.8; transition-delay: 0s; }
.hero-magazine.animate-now .mag-text-front { transform: translateX(0); opacity: 0.8; transition-delay: 0.4s; }

.mag-photo {
    position: absolute;
    bottom: -280px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    line-height: 0;
}

.mag-photo img { height: 115vh; width: auto; display: block; object-fit: contain; position: relative; z-index: 2; }

.mag-aura-glow {
    position: absolute;
    top: 40%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(229, 176, 188, 0.8) 0%, rgba(229, 176, 188, 0) 70%);
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
}

.cat-section { padding: 60px 0 !important; position: relative; z-index: 1; }

.section-intro-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #3e5346;
    line-height: 1.1;
}

.projects-duo-grid { display: flex; gap: 50px; align-items: flex-start; }

.polaroid-frame {
    background: #ffffff;
    padding: 10px 10px 35px 10px !important;
    width: 210px !important;
    box-shadow: 6px 6px 18px rgba(0,0,0,0.03);
    transition: transform 0.4s ease;
}

.polaroid-frame img { width: 100%; height: 210px !important; object-fit: cover; }

.pol-left  { transform: rotate(-2.5deg); }
.pol-right { transform: rotate(2.5deg); }

.polaroid-frame:hover { transform: scale(1.05) rotate(0deg); box-shadow: 0 15px 30px rgba(229, 176, 188, 0.3); }

.project-item-duo {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 210px !important;
}

.project-info-mini {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.project-info-mini h3 {
    font-family: 'Fraunces', serif !important;
    font-style: italic !important;
    font-size: 1.1rem !important;
    color: #e5b0bc !important;
    margin: 15px 0 5px 0 !important;
    min-height: 2.5em !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.tag {
    font-size: 0.65rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #3e5346 !important;
    opacity: 0.6;
    margin-bottom: 12px !important;
    min-height: 1.2em;
}

.star-deco-aura {
    display: inline-block;
    font-size: 1.8rem !important;
    color: #e5b0bc !important;
    margin-top: 10px;
    animation: rotation-aura 10s linear infinite !important;
}

@keyframes rotation-aura {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.btn-aura-small {
    display: inline-block;
    padding: 6px 18px !important;
    border: 1.5px solid #e5b0bc;
    color: #e5b0bc;
    border-radius: 50px;
    font-size: 0.55rem;
    font-weight: 800;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-aura-small:hover { background-color: #e5b0bc; color: #ffffff; transform: translateY(-2px); }

.polaroid-link { text-decoration: none; display: block; cursor: pointer; }
.polaroid-link:hover .polaroid-frame { transform: scale(1.05) rotate(0deg) !important; box-shadow: 0 15px 30px rgba(229, 176, 188, 0.3) !important; }

/* ==========================================================================
   PAGE PDP — PLACE DES PATRONNES
   ========================================================================== */

.pdp-global-striped-bg {
    background-color: #fdfaf5 !important;
    background-image: none !important;
    min-height: 100vh;
    width: 100%;
}

.pdp-hero-scrapbook {
    padding: 100px 0 !important;
    width: 100%;
    background-image: repeating-linear-gradient(90deg, rgba(178, 193, 181, 0.12) 0px, rgba(178, 193, 181, 0.12) 30px, transparent 30px, transparent 60px) !important;
}

.pdp-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.pdp-hero-intro { flex: 1; padding-right: 50px; }

.pdp-badge {
    background: #3e5346;
    color: #fdfaf5;
    padding: 6px 12px;
    font-size: 0.7rem;
    font-weight: 800;
    border-radius: 4px;
    margin-bottom: 20px;
    display: inline-block;
}

.pdp-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem !important;
    color: #3e5346;
    line-height: 1.1;
    margin: 0;
}

.cursive-pink { font-family: 'Fraunces', serif; font-style: italic; color: #e5b0bc; }

.pdp-intro-text { font-size: 1rem; color: #3e5346; margin-top: 20px; line-height: 1.6; }

.pdp-hero-visual { flex: 1; display: flex; justify-content: flex-end; margin-top: 40px !important; }

.pdp-polaroid-frame {
    background: #ffffff !important;
    padding: 15px 15px 40px 15px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform: rotate(3deg);
    border: 1px solid rgba(0,0,0,0.02);
    width: 330px;
    position: relative;
    z-index: 2;
}

.pdp-polaroid-image { width: 100%; height: 300px; overflow: hidden; }
.pdp-polaroid-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.pdp-polaroid-label {
    font-family: 'Fraunces', serif;
    font-style: italic;
    text-align: center;
    margin-top: 20px !important;
    color: #3e5346;
    font-size: 0.9rem;
}

/* Stats PDP */
.pdp-stats-clean {
    background-color: #3e5346 !important;
    background-image: none !important;
    padding: 80px 0 !important;
    display: block !important;
    width: 100% !important;
}

.stats-container-fixed {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-evenly !important;
    align-items: center !important;
    max-width: 1200px;
    margin: 0 auto;
    background: transparent !important;
}

.pdp-stats-clean .stat-card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 20px !important;
    flex: 1;
    text-align: center;
    border-radius: 30px !important;
    transition: all 0.4s ease !important;
}

.pdp-stats-clean .stat-card:hover {
    background-color: #fdfaf5 !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.pdp-stats-clean .stat-card:hover .stat-label,
.pdp-stats-clean .stat-card:hover .stat-detail { color: #3e5346 !important; }

.stat-number { font-family: 'Playfair Display', serif !important; font-size: 4rem !important; color: #e5b0bc !important; margin-bottom: 10px; }
.stat-label, .stat-detail { color: #fdfaf5 !important; }
.pdp-stats-clean .stat-box-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.1); }

/* Services PDP */
.pdp-services-list {
    padding-top: 140px !important;
    padding-bottom: 80px !important;
    text-align: center !important;
}

.pdp-stars-divider {
    color: #e5b0bc !important;
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 20px;
    margin-top: 60px !important;
    position: relative;
    z-index: 2;
}

.pdp-stars-divider span { display: inline-block !important; animation: spinSelf 4s linear infinite !important; }

@keyframes spinSelf {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.services-main-title {
    font-family: 'Playfair Display', serif !important;
    color: #e5b0bc !important;
    font-size: 2.2rem !important;
    margin: 0 auto 60px auto !important;
    line-height: 1.2;
    text-align: center !important;
}

.pdp-section-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(229, 176, 188, 0.4) !important;
    margin: 80px 0;
    position: relative;
    text-align: center;
}

.divider-label {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: #fdfaf5 !important;
    padding: 0 25px;
    font-size: 0.75rem;
    font-weight: 800;
    color: #e5b0bc !important;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.pdp-portfolio-section,
.pdp-social-gallery {
    padding: 80px 5%;
    text-align: center;
    background-color: #fdfaf5 !important;
    background-image: none !important;
}

.services-icons-grid { display: flex !important; justify-content: center; gap: 60px; max-width: 1100px; margin: 0 auto; }

.icon-wrapper {
    width: 90px; height: 90px;
    margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.2rem; border-radius: 20px;
    background-color: #fcecef !important;
    position: relative; z-index: 1;
    transition: transform 0.4s ease;
}

.icon-wrapper::after {
    content: "";
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(229, 176, 188, 0.8) 0%, transparent 75%);
    filter: blur(15px); border-radius: 50%;
    z-index: -1; opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.2), opacity 0.3s ease;
}

.service-block:hover .icon-wrapper::after { transform: translate(-50%, -50%) scale(1); opacity: 1; }
.service-block:hover .icon-wrapper        { transform: translateY(-10px) rotate(5deg); }

.pdp-video-grid { display: flex; gap: 30px; max-width: 1100px; margin: 0 auto; }
.pdp-video-item { flex: 1; text-align: left; }

.video-thumbnail {
    width: 100%; aspect-ratio: 16/9;
    background-color: #3e5346; border-radius: 25px;
    margin-bottom: 20px; position: relative;
    overflow: hidden; cursor: pointer; transition: 0.3s;
}

.video-thumbnail:hover { transform: scale(1.02); }
.video-overlay { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 2.5rem; color: #fdfaf5; opacity: 0.8; }

/* Grille Instagram */
.pdp-instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 40px auto 0;
    align-items: start;
}

.insta-post {
    background-color: #fcecef;
    border-radius: 20px;
    border: 1px solid rgba(62, 83, 70, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.insta-post:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.insta-post:has(img)   { aspect-ratio: 1/1; }
.insta-post img        { width: 100%; height: 100%; object-fit: cover; display: block; }
.insta-post:has(video) { aspect-ratio: 9/16; }
.insta-post video      { width: 100%; height: 100%; object-fit: cover; display: block; cursor: pointer; }

.insta-post:has(video)::after {
    position: absolute; top: 15px; right: 15px;
    font-size: 1.2rem; z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* Outils */
.pdp-tools-section {
    padding: 100px 5% 150px !important;
    background-color: #fdfaf5 !important;
    text-align: center;
}

.pdp-tools-section .services-main-title { margin-bottom: 80px !important; }

.tools-grid {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: flex-start !important;
    gap: 40px !important;
    max-width: 900px !important;
    margin: 0 auto !important;
}

.tool-item {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    animation: floatTool 4s ease-in-out infinite !important;
}

.tool-icon {
    width: 85px !important; height: 85px !important;
    background: transparent !important;
    display: flex !important; align-items: center !important; justify-content: center !important;
    margin-bottom: 20px !important;
    border: none !important; box-shadow: none !important;
}

.tool-icon img { width: 75px !important; height: 75px !important; object-fit: contain !important; border-radius: 50% !important; }

.tool-name {
    display: block !important;
    font-size: 0.75rem !important; font-weight: 800 !important;
    color: #e5b0bc !important; letter-spacing: 2px !important; text-transform: uppercase !important;
}

@keyframes floatTool {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-20px); }
}

/* Bilan PDP */
.pdp-bilan-section {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important; right: 50% !important;
    margin-left: -50vw !important; margin-right: -50vw !important;
    padding: 120px 0 !important;
    text-align: center; overflow: hidden;
    background-color: #fdfaf5 !important;
    background-image: linear-gradient(90deg, rgba(229, 176, 188, 0.15) 50%, transparent 50%) !important;
    background-size: 80px 100% !important;
    border-top: 1px dashed rgba(229, 176, 188, 0.4);
}

.pdp-bilan-section::before { display: none !important; content: none !important; }

.bilan-container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }

.scrapbook-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 2.2rem !important; color: #e5b0bc !important;
    background: #fff; padding: 15px 40px !important;
    display: inline-block !important;
    box-shadow: 4px 4px 0px rgba(62, 83, 70, 0.1);
    margin-bottom: 80px !important;
    border: 1px solid #eee; transform: rotate(-2deg);
    position: relative; z-index: 2;
}

.bilan-grid {
    display: flex; justify-content: center;
    gap: 40px; max-width: 1100px;
    margin: 0 auto 80px auto; position: relative; z-index: 2;
}

.bilan-note {
    flex: 1;
    background: #fff !important; padding: 45px 30px !important;
    border-radius: 2px; box-shadow: 10px 10px 0px rgba(229, 176, 188, 0.1) !important;
    border: 1px solid #eee !important; cursor: pointer; position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.bilan-note:hover {
    transform: translateY(-10px) !important;
    box-shadow: 15px 20px 30px rgba(229, 176, 188, 0.2) !important;
    border-color: rgba(229, 176, 188, 0.5) !important;
}

.bilan-note::after {
    content: "" !important; position: absolute !important;
    top: -12px !important; left: 50% !important; transform: translateX(-50%) !important;
    width: 60px !important; height: 25px !important;
    background: rgba(253, 250, 245, 0.8) !important;
    border: 1px solid rgba(229, 176, 188, 0.2) !important;
    z-index: 10 !important; display: block !important; transition: all 0.3s ease !important;
}

.bilan-note:hover::after { background: rgba(253, 250, 245, 1) !important; }

/* ==========================================================================
   PAGE THE BK BEAUTY
   ========================================================================== */

.tbk-video-grid { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }

.tbk-video-item { display: flex; flex-direction: column; align-items: center; }

.video-thumbnail.video-portrait {
    position: relative;
    width: 315px;
    aspect-ratio: 9 / 16;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.video-thumbnail.video-portrait video {
    position: absolute;
    inset: 0; width: 100%; height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   PAGE MANUELA JEWELS — CSS COMPLET
   Couleurs : #444351 (dark slate) • #D5CDBC (sable) • #fdfbf8 (blanc chaud)
   ========================================================================== */

:root {
    --mj-dark:    #444351;
    --mj-sand:    #D5CDBC;
    --mj-white:   #fdfbf8;
    --mj-sand-bg: rgba(213, 205, 188, 0.2);
    --mj-sand-mid: rgba(213, 205, 188, 0.5);
}

/* ==========================================================================
   BASE
   ========================================================================== */

.mj-global-bg {
    background-color: var(--mj-white) !important;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.mj-hero-scrapbook {
    padding: 120px 0 80px !important;
    background-image: repeating-linear-gradient(
        90deg,
        rgba(68, 67, 81, 0.05) 0px,
        rgba(68, 67, 81, 0.05) 30px,
        transparent 30px,
        transparent 60px
    ) !important;
}

.mj-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    gap: 60px;
}

.mj-hero-intro {
    flex: 1.2;
    text-align: left;
}

.mj-badge {
    background: var(--mj-dark);
    color: var(--mj-white);
    padding: 6px 14px;
    font-size: 0.7rem;
    font-weight: 800;
    border-radius: 4px;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    display: inline-block;
    text-transform: uppercase;
}

.mj-main-title {
    font-family: 'Fraunces', serif !important;
    font-size: 3.5rem !important;
    color: var(--mj-dark);
    line-height: 1.1;
    font-weight: 900;
    margin: 0 0 20px 0;
}

.mj-cursive {
    font-family: 'Fraunces', serif !important;
    font-style: italic;
    color: var(--mj-sand);
    font-weight: 900;
}

.mj-intro-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--mj-dark);
    line-height: 1.7;
    opacity: 0.85;
    max-width: 480px;
}

.mj-hero-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.mj-polaroid-frame {
    background: #ffffff !important;
    padding: 15px 15px 45px;
    box-shadow: 0 10px 30px rgba(68, 67, 81, 0.1);
    transform: rotate(3deg);
    width: 330px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: transform 0.4s ease;
}

.mj-polaroid-frame:hover {
    transform: rotate(0deg) scale(1.02);
}

.mj-polaroid-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.mj-polaroid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mj-polaroid-label {
    font-family: 'Fraunces', serif;
    font-style: italic;
    text-align: center;
    margin-top: 15px;
    color: var(--mj-dark);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ==========================================================================
   STATS
   ========================================================================== */

.mj-stats-section {
    background-color: var(--mj-dark) !important;
    padding: 80px 0;
}

.mj-stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 0 40px;
}

.mj-stat-card {
    text-align: center;
    color: white;
    flex: 1;
    padding: 20px;
    border-radius: 20px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.mj-stat-card:hover {
    background: rgba(213, 205, 188, 0.1);
    transform: translateY(-5px);
}

.mj-stat-number {
    font-family: 'Fraunces', serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--mj-sand);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.mj-stat-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 10px;
}

.mj-stat-detail {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
    max-width: 200px;
    margin: 0 auto;
}

.mj-stat-divider {
    width: 1px;
    height: 80px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}

/* ==========================================================================
   ÉTOILES DIVIDER
   ========================================================================== */

.mj-stars-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 1.5rem;
    color: var(--mj-sand);
    margin: 60px 0 20px 0;
}

.mj-stars-divider span {
    display: inline-block;
    animation: mjSpin 4s linear infinite;
}

.mj-stars-divider span:nth-child(2) { animation-delay: 0.5s; }
.mj-stars-divider span:nth-child(3) { animation-delay: 1s; }

@keyframes mjSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ==========================================================================
   MISSIONS
   ========================================================================== */

.mj-missions-section {
    padding: 80px 0 100px;
    text-align: center;
    background-color: var(--mj-white);
}

.mj-section-title {
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: 2.2rem;
    text-align: center;
    color: var(--mj-dark);
    margin-bottom: 50px;
}

.mj-missions-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.mj-mission-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.mj-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--mj-sand-bg);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 5px auto;
    border: 1px solid var(--mj-sand-mid);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mj-mission-item:hover .mj-icon-wrapper {
    transform: translateY(-8px) rotate(5deg);
    box-shadow: 0 12px 30px rgba(68, 67, 81, 0.12);
}

.mj-mission-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    text-align: center;
    color: var(--mj-dark);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.6;
}

/* ==========================================================================
   DIVIDER LIGNE
   ========================================================================== */

.mj-divider {
    width: 100%;
    height: 1px;
    background: rgba(68, 67, 81, 0.12);
    margin: 80px 0;
    position: relative;
    text-align: center;
}

.mj-divider-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--mj-white);
    padding: 0 25px;
    color: var(--mj-sand);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}

/* ==========================================================================
   BRANDING — CHARTE GRAPHIQUE
   ========================================================================== */

.mj-branding-section {
    padding: 60px 5% 100px;
    text-align: center;
    background-color: var(--mj-white);
}

/* Image charte graphique pleine largeur */
.mj-charte-wrapper {
    max-width: 900px;
    margin: 0 auto 70px auto;
    box-shadow: 0 15px 50px rgba(68, 67, 81, 0.08);
    border: 1px solid rgba(68, 67, 81, 0.06);
}

.mj-charte-img {
    width: 40%;
    height: auto;
    display: block;
}

/* Grille 3 logos */
.mj-logos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto 70px auto;
}

.mj-logo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 35px 25px 20px;
    border-radius: 4px;
    gap: 15px;
    min-height: 200px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mj-logo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(68, 67, 81, 0.15);
}

.mj-logo-dark {
    background-color: #1a1a24;
}

.mj-logo-sand {
    background-color: var(--mj-sand);
    padding: 0;
}

.mj-logo-circle {
    background-color: var(--mj-white);
    border: 1px solid rgba(68, 67, 81, 0.1);
    box-shadow: 0 5px 20px rgba(68, 67, 81, 0.06);
}

.mj-logo-card img {
    max-width: 200px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.mj-logo-sand img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.mj-logo-caption {
    font-family: 'Poppins', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(68, 67, 81, 0.5);
    position: absolute;
    bottom: 12px;
    left: 0; right: 0;
    text-align: center;
}

.mj-logo-dark .mj-logo-caption { color: rgba(255,255,255,0.4); }
.mj-logo-sand .mj-logo-caption { color: rgba(68, 67, 81, 0.6); }

/* Palette + Typo + Logo */
.mj-brand-details {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.mj-brand-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.mj-color-swatches {
    display: flex;
    gap: 15px;
}

.mj-swatch {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.mj-swatch-dark { background-color: #444351; }
.mj-swatch-sand { background-color: #D5CDBC; border: 1px solid rgba(0,0,0,0.06); }

.mj-swatch-hex {
    font-family: 'Poppins', sans-serif;
    font-size: 0.55rem;
    font-weight: 800;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.5px;
}

.mj-typo-block {
    min-width: 260px;
}

.mj-typo-preview {
    background: var(--mj-sand-bg);
    border: 1px solid var(--mj-sand-mid);
    padding: 25px 30px;
    border-radius: 4px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mj-typo-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--mj-dark);
    display: block;
}

.mj-typo-alpha {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: var(--mj-dark);
    opacity: 0.6;
    display: block;
}

.mj-logo-preview-small img {
    max-width: 180px;
    height: auto;
}

/* ==========================================================================
   CAMPAGNES / PORTFOLIO
   ========================================================================== */

.mj-portfolio-section {
    padding: 60px 5% 100px;
    text-align: center;
    background-color: var(--mj-white);
}

.mj-video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
    align-items: start;
}

.mj-video-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mj-video-thumbnail {
    background: white;
    padding: 10px 10px 45px;
    box-shadow: 0 8px 25px rgba(68, 67, 81, 0.08);
    border-radius: 2px;
    border: 1px solid rgba(68, 67, 81, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mj-video-thumbnail:hover {
    transform: translateY(-8px) rotate(0deg);
    box-shadow: 0 20px 40px rgba(68, 67, 81, 0.12);
}

.mj-video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

/* Polaroïd penché pour l'affiche portrait */
.mj-thumb-portrait {
    transform: rotate(-2deg);
}

.mj-thumb-portrait:nth-child(even) {
    transform: rotate(2deg);
}

.mj-video-item:nth-child(even) .mj-thumb-portrait {
    transform: rotate(2deg);
}

.mj-caption-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    color: var(--mj-dark);
    opacity: 0.5;
    margin-top: 8px;
    font-style: italic;
}

/* Animation au survol améliorée pour les deux affiches */
.mj-video-thumbnail:hover {
    /* On force le retour à 0 degré pour annuler le penché de base */
    transform: translateY(-12px) rotate(0deg) !important;
    box-shadow: 0 25px 50px rgba(68, 67, 81, 0.15);
}

/* On s'assure que la transition est fluide sur toutes les propriétés */
.mj-video-thumbnail {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ==========================================================================
   OUTILS
   ========================================================================== */

.mj-tools-section {
    padding: 80px 5% 120px;
    text-align: center;
    background-color: var(--mj-white);
    background-image: repeating-linear-gradient(
        90deg,
        rgba(68, 67, 81, 0.04) 0px,
        rgba(68, 67, 81, 0.04) 30px,
        transparent 30px,
        transparent 60px
    );
}

.mj-tools-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    max-width: 700px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.mj-tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: mjFloat 4s ease-in-out infinite;
}

.mj-tool-item:nth-child(2) { animation-delay: 0.5s; }
.mj-tool-item:nth-child(3) { animation-delay: 1s; }
.mj-tool-item:nth-child(4) { animation-delay: 1.5s; }

@keyframes mjFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-16px); }
}

.mj-tool-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mj-tool-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 50%;
}

.mj-tool-name {
    font-family: 'Poppins', sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--mj-sand);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ==========================================================================
   BILAN
   ========================================================================== */

/* ==========================================================================
   SECTION BILAN
   ========================================================================== */
.mj-bilan-section {
    padding: 120px 0;
    background-image: linear-gradient(
        90deg,
        rgba(68,67,81,0.04) 50%,
        transparent 50%
    );
    background-size: 80px 100%;
    text-align: center;
    border-top: 1px dashed rgba(68, 67, 81, 0.15);
}

.mj-bilan-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 5%;
}

.mj-bilan-sticker {
    background: #fff;
    padding: 15px 40px !important;
    box-shadow: 6px 6px 0px var(--mj-sand);
    transform: rotate(-1.5deg);
    display: inline-block;
    margin-bottom: 60px !important;
    border: 1px solid rgba(68, 67, 81, 0.08);
    position: relative;
    z-index: 2;
}

.mj-bilan-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 60px auto;
    flex-wrap: wrap;
}

.mj-bilan-note {
    flex: 1;
    min-width: 220px;
    background: #fff;
    padding: 40px 25px;
    border: 1px solid rgba(68, 67, 81, 0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 6px 6px 0px rgba(213, 205, 188, 0.6);
}

.mj-bilan-note:hover {
    transform: translateY(-10px);
    box-shadow: 10px 15px 25px rgba(68, 67, 81, 0.08);
}

/* Scotch décoratif */
.mj-bilan-note::after {
    content: "";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 24px;
    background: rgba(213, 205, 188, 0.55);
    border: 1px solid rgba(0,0,0,0.04);
}

.mj-note-emoji {
    font-size: 2rem;
    display: block;
    margin-bottom: 15px;
}

.mj-bilan-note h4 {
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--mj-dark);
    margin-bottom: 12px;
}

.mj-bilan-note p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: var(--mj-dark);
    opacity: 0.7;
    line-height: 1.6;
}

/* ==========================================================================
   IDENTITÉ VISUELLE (VERSION COMPACTE)
   ========================================================================== */
.mj-branding-main-layout {
    max-width: 950px; /* Ajusté pour cohérence book */
    margin: 0 auto;
    display: flex;
    gap: 25px; 
    padding: 0 20px;
    align-items: stretch; 
}

.mj-branding-visual {
    flex: 1.3; 
}

.mj-charte-frame {
    width: 100%;
    height: 100%;
    border-radius: 2px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(68, 67, 81, 0.05);
    border: 1px solid rgba(68, 67, 81, 0.05);
    overflow: hidden;
    line-height: 0;
}

.mj-charte-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mj-branding-specs {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px; 
}

.mj-spec-card {
    flex: 1;
    padding: 15px 20px !important;
    background: #ffffff;
    border: 1px solid rgba(68, 67, 81, 0.05) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.mj-color-circles { display: flex; gap: 12px; margin-bottom: 5px; }

.mj-circle-swatch { 
    width: 40px !important; 
    height: 40px !important; 
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.mj-typo-box { 
    width: 100%;
    background: var(--mj-sand-bg);
    padding: 12px !important; 
    text-align: center;
}

.mj-typo-main { 
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem !important; 
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--mj-dark);
    display: block;
}

.mj-typo-sub { 
    font-size: 0.7rem !important; 
    color: var(--mj-dark);
    opacity: 0.5;
    display: block;
}

.mj-logo-mini-wrap img { 
    max-height: 100px !important;
    width: auto;
}

.mj-spec-label { 
    margin-top: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.55rem; 
    font-weight: 800; 
    letter-spacing: 2px; 
    color: var(--mj-dark);
    opacity: 0.35; 
    text-transform: uppercase; 
}
/* ==========================================================================
   RESPONSIVE MOBILE — MAX 768px
   ========================================================================== */

@media (max-width: 768px) {

    /* HERO */
    .mj-hero-scrapbook { padding: 90px 0 60px !important; }

    .mj-hero-container {
        flex-direction: column !important;
        padding: 0 20px !important;
        text-align: center !important;
        gap: 40px !important;
    }

    .mj-hero-intro { text-align: center !important; }
    .mj-intro-text { margin: 0 auto !important; }

    .mj-main-title { font-size: 2.2rem !important; }
    .mj-cursive    { display: block !important; font-size: 2.6rem !important; }

    .mj-hero-visual { justify-content: center !important; }
    .mj-polaroid-frame { width: 260px !important; transform: rotate(-2deg) !important; }
    .mj-polaroid-image { height: 240px !important; }

    /* STATS */
    .mj-stats-container {
        flex-direction: column !important;
        gap: 40px !important;
        padding: 40px 20px !important;
    }

    .mj-stat-divider { width: 60px !important; height: 1px !important; }
    .mj-stat-number  { font-size: 3rem !important; }

    /* MISSIONS */
    .mj-missions-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px 20px !important;
        padding: 0 20px !important;
    }

    /* BRANDING */
    .mj-charte-wrapper { margin-bottom: 40px !important; }

    .mj-logos-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 20px !important;
    }

    .mj-logo-card { min-height: 160px !important; }
    .mj-logo-sand img { height: 160px !important; }

    .mj-brand-details {
        flex-direction: column !important;
        gap: 40px !important;
        padding: 0 20px !important;
        align-items: center !important;
    }

    /* CAMPAGNES */
    .mj-video-grid {
        grid-template-columns: 1fr !important;
        gap: 60px !important;
        padding: 0 20px !important;
    }

    .mj-thumb-portrait { transform: none !important; }

    /* OUTILS */
    .mj-tools-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
        padding: 0 30px !important;
    }

    /* BILAN */
    .mj-bilan-section { padding: 80px 0 !important; }

    .mj-bilan-sticker {
        font-size: 1.5rem !important;
        padding: 12px 20px !important;
        width: 90% !important;
        transform: rotate(-1deg) !important;
    }

    .mj-bilan-grid {
        flex-direction: column !important;
        align-items: center !important;
        gap: 50px !important;
        padding: 0 20px !important;
    }

    .mj-bilan-note { width: 100% !important; max-width: 340px !important; }

}

/* ==========================================================================
   PAGE SNEE - STATUT ÉTUDIANT ENTREPRENEUR
   ========================================================================== */

.snee-wrapper {
    padding-bottom: 0;
}

/* CTA Spécifique SNEE */
.snee-cta-simple {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 25px;
    border: 1px solid #e5b0bc;
    border-radius: 50px;
    color: #e5b0bc;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.snee-cta-simple:hover {
    background: #e5b0bc;
    color: #fff;
    transform: translateY(-3px);
}

/* Grille d'infos SNEE */
.snee-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 50px auto 100px;
    padding: 0 40px;
}

.snee-info-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(62, 83, 70, 0.05);
    text-align: center;
    transition: 0.4s ease;
}

.snee-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.snee-info-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #3e5346;
    margin: 15px 0;
}

.snee-info-card p {
    font-size: 0.9rem;
    color: #3e5346;
    opacity: 0.8;
    line-height: 1.6;
}

/* Couleur des étoiles qui tournent (Vert site) */
.mj-stars-divider, 
.pdp-stars-divider {
    color: #3e5346 !important; /* Ton vert forêt */
}

/* Animation de rotation si elle n'est pas déjà active sur ces classes */
.mj-stars-divider span, 
.pdp-stars-divider span {
    display: inline-block;
    animation: spinStars 4s linear infinite;
}

@keyframes spinStars {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}


/* ==========================================================================
   PAGE POLAR LENS 2026
   ========================================================================== */

/* Infos Badge Hero */
.polar-info-box {
    margin-top: 20px;
    padding-left: 15px;
    border-left: 2px solid #e5b0bc;
}
.polar-info-box p { font-size: 0.9rem; color: #3e5346; margin-bottom: 5px; }

.polarinsta-post {
    background-color: #fcecef;
    border-radius: 20px;
    border: 1px solid rgba(62, 83, 70, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    
    /* On définit un ratio vertical (Largeur / Hauteur) */
    /* 3/4 est le standard portrait sur Instagram */
    aspect-ratio: 3 / 4; 
}

.polarinsta-post img {
    width: 100%;
    height: 100%;
    /* "cover" permet de remplir le cadre sans déformer l'image */
    object-fit: cover; 
    display: block;
}

.polarinsta-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}







/* Section Lieux */
.polar-loc-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 900px;
    margin: 40px auto 0;
}

.loc-card {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(62, 83, 70, 0.05);
}
.loc-card h4 { font-family: 'Playfair Display', serif; color: #e5b0bc; margin-bottom: 10px; font-size: 1.3rem; }

/* Vidéo Verticale Split */
.polar-vertical-video {
    padding: 100px 5%;
    max-width: 1100px;
    margin: 0 auto;
}
.video-container-split {
    display: flex;
    align-items: center;
    gap: 60px;
}
.video-text-side { flex: 1; }
.video-vertical-frame {
    flex: 0 0 320px; /* Largeur fixe pour le format téléphone */
    aspect-ratio: 9/16;
    background: #000;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.video-vertical-frame video { width: 100%; height: 100%; object-fit: cover; }

/* Ajustements Interviews */
.polar-caption { font-size: 0.8rem; color: #3e5346; opacity: 0.6; font-style: italic; }
.polar-sub-desc { color: #3e5346; opacity: 0.7; margin-bottom: 40px; }

/* On garde les étoiles en vert site */
.mj-stars-divider, .pdp-stars-divider {
    color: #3e5346 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .video-container-split { flex-direction: column; text-align: center; }
    .video-text-side h2 { text-align: center !important; }
    .polar-loc-grid { flex-direction: column; }
    .video-vertical-frame { margin: 0 auto; width: 280px; }
}


/* ==========================================================================
   PAGE GEPETTO - DESIGN & STRATÉGIE
   ========================================================================== */

/* Tags */
.gepetto-tags {
    margin-top: 25px;
    display: flex;
    gap: 10px;
}
.gepetto-tags span {
    font-size: 0.7rem;
    font-weight: 800;
    padding: 6px 15px;
    border: 1px solid rgba(62, 83, 70, 0.15);
    border-radius: 50px;
    color: #3e5346;
    text-transform: uppercase;
}

/* Audio Section */
.gepetto-audio-section {
    padding: 80px 5%;
    max-width: 1000px;
    margin: 0 auto;
}
.audio-content-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(62, 83, 70, 0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.audio-text { flex: 1; }
.audio-player-box {
    flex: 0 0 300px;
    text-align: center;
}
.audio-icon { font-size: 3rem; margin-bottom: 15px; }

audio {
    width: 100%;
    filter: sepia(20%) hue-rotate(320deg) opacity(80%); /* Pour matcher ton rose/vert */
}

/* Mockups Grid */
.gepetto-mockups {
    padding: 80px 0;
}

/* Harmonisation des étoiles */
.mj-stars-divider, .pdp-stars-divider {
    color: #3e5346 !important;
}

@media (max-width: 768px) {
    .audio-content-wrapper { flex-direction: column; text-align: center; }
    .audio-player-box { flex: 1; width: 100%; }
    .gepetto-info-grid { grid-template-columns: 1fr; }
}

/* Rajoute de l'espace entre les outils et le bilan */
.mj-tools-section {
    padding-bottom: 120px !important; /* Augmente cette valeur selon l'espace voulu */
}

/* Optionnel : tu peux aussi ajouter une marge au-dessus du bilan si besoin */
.mj-bilan-section {
    margin-top: 40px; 
}

/* 1. Décaler les polaroïds des bords de la page */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8%; /* Ajoute de l'espace à gauche et à droite */
    max-width: 1400px; /* Empêche que ce soit trop écarté sur très grand écran */
    margin: 0 auto;
    gap: 40px;
}

/* 2. Inversion de la section du milieu (Parcours Entrepreneurial) */
.header-container.reverse-layout {
    flex-direction: row-reverse; /* Aligne le titre à droite et les polaroïds à gauche */
}

/* 3. Ajustement des titres dans la version inversée */
.reverse-layout .section-intro-title {
    text-align: right; /* Aligne le texte à droite quand il est à droite */
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8%; /* Ajoute de l'espace à gauche et à droite */
    max-width: 1400px; /* Empêche que ce soit trop écarté sur très grand écran */
    margin: 0 auto;
    gap: 40px;
}

/* 2. Inversion de la section du milieu (Parcours Entrepreneurial) */
.header-container.reverse-layout {
    flex-direction: row-reverse; /* Aligne le titre à droite et les polaroïds à gauche */
}

/* 3. Ajustement des titres dans la version inversée */
.reverse-layout .section-intro-title {
    text-align: right; /* Aligne le texte à droite quand il est à droite */
}


/* ==========================================================================
   VERSION ÉDITORIALE - MENTIONS LÉGALES
   ========================================================================== */

.legal-wrapper {
    padding: 150px 5%;
    background-color: #fdfaf8; /* Un crème très léger pour le côté papier */
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: transparent; /* On enlève le gros bloc blanc pour plus de légèreté */
}

.legal-header {
    text-align: left; /* Aligné à gauche pour un look plus "presse" */
    margin-bottom: 100px;
    border-left: 4px solid var(--rose-pastel);
    padding-left: 30px;
}

.pdp-main-title {
    font-size: 4.5rem;
    line-height: 0.9;
    letter-spacing: -2px;
}

/* On stylise les sections de façon plus moderne */
.legal-content-body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.legal-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--vert-foret);
    margin-bottom: 25px;
    border-bottom: none; /* On enlève la barre pour un look plus propre */
}

.legal-section p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #444;
    max-width: 700px;
}

/* On remplace les liens classiques par quelque chose de plus fin */
.legal-content-body a {
    color: var(--vert-foret);
    text-decoration: none;
    border-bottom: 1px solid var(--rose-pastel);
    transition: all 0.3s ease;
}

.legal-content-body a:hover {
    background-color: var(--rose-pastel);
    color: white;
}

/* Séparateur minimaliste */
.pdp-stars-divider {
    margin-top: 100px;
    justify-content: flex-start;
    opacity: 0.3;
}

/* Style spécifique pour les listes dans le contenu légal */
.legal-content-body ul {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.legal-content-body ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    color: #444;
}

.legal-content-body ul li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--rose-pastel);
    font-size: 0.9rem;
}




/* ==========================================================================
   ██████╗ ███████╗███████╗██████╗  ██████╗ ███╗   ██╗███████╗██╗██╗   ██╗███████╗
   ██╔══██╗██╔════╝██╔════╝██╔══██╗██╔═══██╗████╗  ██║██╔════╝██║██║   ██║██╔════╝
   ██████╔╝█████╗  ███████╗██████╔╝██║   ██║██╔██╗ ██║███████╗██║██║   ██║█████╗  
   ██╔══██╗██╔══╝  ╚════██║██╔═══╝ ██║   ██║██║╚██╗██║╚════██║██║╚██╗ ██╔╝██╔══╝  
   ██║  ██║███████╗███████║██║     ╚██████╔╝██║ ╚████║███████║██║ ╚████╔╝ ███████╗
   MOBILE — MAX 768px (UNIQUE)
   ========================================================================== */
@media (max-width: 768px) {
    /* 1. On masque le header desktop pour éviter les conflits */
    .main-header .nav-menu, 
    .main-header .nav-right, 
    .main-header .logo { 
        height: 65px !important;
        display: none !important; 
    }

    /* 2. On affiche le bandeau mobile (le vert avec le burger) */
    .header-mobile-only {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        height: 80px !important;
        background-color: #3e5346 !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        z-index: 999999 !important;
        padding: 0 20px !important;
    }

    /* 3. LE BOUTON BURGER (Le rendre visible et cliquable) */
    .burger-menu {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        gap: 5px !important;
        width: 30px !important;
        height: 30px !important;
        background: none !important;
        border: none !important;
        cursor: pointer !important;
        z-index: 10000000 !important; /* Niveau max */
        position: relative !important;
    }

    .burger-menu span {
        display: block !important;
        width: 25px !important;
        height: 2px !important;
        background-color: #ffffff !important;
        transition: 0.3s !important;
    }

    /* Animation du Burger quand il a la classe .open */
    .burger-menu.open span:nth-child(1) { transform: translateY(7px) rotate(45deg) !important; }
    .burger-menu.open span:nth-child(2) { opacity: 0 !important; }
    .burger-menu.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg) !important; }
    
    /* ==========================================================================
       FLÈCHE DE RETOUR DU MENU ROSE
       ========================================================================== */
    .close-menu-btn {
        position: absolute;
        top: 20px;
        left: 20px; /* Aligné en haut à gauche */
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
        z-index: 1000000;
        transition: transform 0.3s ease;
    }

    .close-menu-btn:hover {
        transform: translateX(-5px); /* Petit effet sympa au clic/survol */
    }

    /* 4. LE MENU ROSE (Fermé par défaut) */
    .mobile-nav-overlay {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        bottom: 0 !important; /* <-- Fix 1 : on l'accroche en bas */
        height: 100vh !important; /* Fallback pour vieux navigateurs */
        width: 100vw !important;
        height: 100vh !important;
        background-color: #e5b0bc !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 30px !important;
        z-index: 9999999 !important; /* Juste sous le burger */
        
        /* Caché par défaut */
        visibility: hidden !important;
        opacity: 0 !important;
        transform: translateY(-100%) !important; /* Optionnel : le fait descendre du haut */
        transition: all 0.4s ease-in-out !important;
    }

    /* 5. LA COMMANDE D'OUVERTURE (Le déclic !) */
    .mobile-nav-overlay.open {
        visibility: visible !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    /* Style des liens dans le menu rose */
    .mobile-nav-overlay a {
        color: white !important;
        font-family: 'Poppins', sans-serif !important;
        font-size: 1.8rem !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
    }

.logo-mobile { display: flex !important; align-items: center !important; height: 100% !important; }
.logo-mobile a { color: #ffffff !important; font-family: 'Fraunces', serif !important; font-size: 1.3rem !important; font-weight: 700 !important; text-decoration: none !important; line-height: 1 !important; padding-top: 4px !important; }

    .linkedin-mobile {
        display: flex !important; justify-content: flex-end !important;
        align-items: center !important; flex-shrink: 0 !important; width: 30px !important;
    }

    /* ===== HERO SPLIT ===== */
    .hero-split { margin-top: 60px !important; flex-direction: column !important; min-height: auto !important; padding: 0 !important; }

    .hero-visual-side { width: 100% !important; height: auto !important; padding: 40px 0 20px !important; display: flex !important; justify-content: center !important; }
    .aesthetic-card   { width: 180px !important; margin: 0 auto !important; }

    .hero-content-side { width: 100% !important; padding: 10px 25px 50px !important; text-align: center !important; }
    .hero-big-title    { font-size: 2.2rem !important; line-height: 1.15 !important; }
    .hero-badge        { font-size: 0.65rem !important; }
    .hero-text-box     { margin-bottom: 30px !important; font-size: 0.9rem !important; }

    /* ===== EXPERTISES ===== */
    .expertises-visual-grid { grid-template-columns: 1fr !important; padding: 0 15px !important; gap: 20px !important; }
    .section-title { font-size: 2rem !important; text-align: center !important; justify-content: center !important; flex-wrap: wrap !important; margin-bottom: 35px !important; }
    .exp-card { padding: 30px 25px !important; min-height: auto !important; }
    .exp-card h3 { font-size: 1.5rem !important; }

    /* ===== STATS GRID ===== */
    .stats-grid-aura {
        display: grid !important; grid-template-columns: repeat(2, 1fr) !important;
        gap: 40px 20px !important; padding: 0 20px !important;
        width: 100% !important; margin: 40px 0 !important; justify-items: center !important;
    }

    .stat-card { display: flex !important; flex-direction: column !important; align-items: center !important; text-align: center !important; width: 100% !important; }
    .stat-card h3 { font-size: 2.2rem !important; margin: 0 0 5px 0 !important; line-height: 1 !important; }
    .stat-card p  { font-size: 0.7rem !important; text-transform: uppercase !important; letter-spacing: 1px !important; margin: 0 !important; white-space: nowrap !important; }

    .stats-grid-aura + h2, .stats-grid-aura + .section-title { margin-top: 60px !important; }

    /* ===== MARQUEE ===== */
    .marquee-content span { font-size: 1.1rem !important; margin-right: 40px !important; }

    /* ===== HOME NAV POLAROÏDS ===== */
    .nav-grid        { grid-template-columns: 1fr !important; gap: 50px !important; padding: 0 20px !important; }
    .polaroid-nav    { width: 260px !important; margin: 0 auto !important; }
    .nav-text h2     { font-size: 2rem !important; }

    /* ===== CTA ===== */
    .cta-title   { font-size: 2rem !important; }
    .cta-box     { padding: 40px 20px !important; margin: 0 15px !important; box-shadow: 10px 10px 0px var(--vert-foret) !important; }
    .cta-actions { flex-direction: column !important; gap: 20px !important; }
    .blob        { width: 350px; height: 350px; filter: blur(50px); }

    /* ===== FOOTER ===== */
    .footer-container { flex-direction: column !important; align-items: center !important; text-align: center !important; gap: 50px !important; }
    .branding, .links, .social, .social-wrapper { text-align: center !important; align-items: center !important; width: 100% !important; }

    /* ===== LOGOS ===== */
    .logos-grid-new { gap: 20px; }
    .logos-grid-new img { width: 100px !important; height: 50px !important; }

    /* ===== PAGE PROJETS ===== */
    /* ==========================================================================
   RESPONSIVE HERO MAGAZINE
   ========================================================================== */

    .hero-magazine-v2 {
        height: auto !important;
        min-height: 85vh; /* On laisse de la place sur mobile */
        padding: 100px 20px 60px !important;
    }

    /* 1. On réduit drastiquement les titres */
    .title-huge {
        font-size: 4.5rem !important; /* Moitié moins gros */
        line-height: 1;
    }

    .title-overlap {
        font-size: 3rem !important;
        margin-top: -15px !important;
        margin-left: 0 !important; /* On recentre */
        text-align: center;
    }

    .title-small {
        font-size: 0.9rem !important;
        letter-spacing: 5px !important;
    }

    /* 2. On réduit l'aura pour ne pas qu'elle bave */
    .mag-aura-glow {
        width: 300px;
        height: 300px;
    }

    /* 3. On repositionne les polaroids pour qu'ils n'étouffent pas le texte */
 .floating-decorations {
        position: relative !important;
        display: flex !important;
        justify-content: center !important;
        gap: 15px !important; /* Espace entre les deux photos */
        margin-top: 30px !important; /* Espace après le texte */
        padding-bottom: 20px !important; /* Espace avant l'étoile */
    }

    /* 2. On réinitialise les styles absolus des polaroids */
    .floating-decorations .mini-pol {
        position: relative !important; /* On sort de l'absolute */
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 130px !important; /* Taille ajustée pour qu'ils tiennent à deux */
        margin: 0 !important;
    }

    .floating-decorations img {
        height: 130px !important;
    }

    /* 3. On garde un petit côté organique avec des rotations légères */
    .pol-1 {
        transform: rotate(-5deg) !important;
        animation: none !important; /* On stoppe l'anim pour plus de clarté */
    }

    .pol-2 {
        transform: rotate(5deg) !important;
        animation: none !important;
    }

    /* 4. On s'assure que l'intro ne prend pas trop de place */
    .hero-intro-text {
        margin-bottom: 10px !important;
    }

    

    .portfolio-aura-wrapper {
        padding-top: 100px !important;
        display: flex !important; flex-direction: column !important;
        align-items: center !important; width: 100% !important; overflow: hidden !important;
    }

    .portfolio-aura-wrapper .header-container {
        display: flex !important; flex-direction: column !important;
        align-items: center !important; padding: 20px !important; width: 100% !important;
    }

    .section-intro-title { text-align: center !important; width: 100% !important; margin-bottom: 40px !important; }
    .section-intro-title h2 { font-size: 2.2rem !important; line-height: 1.1 !important; display: block !important; }
    .section-intro-title .cursive-aura { font-size: 2.8rem !important; display: block !important; margin-top: 10px !important; }

    .projects-duo-grid {
        display: flex !important; flex-direction: column !important;
        align-items: center !important; justify-content: center !important;
        width: 100% !important; gap: 50px !important; padding: 0 !important;
    }

    .project-item-duo { width: 100% !important; display: flex !important; flex-direction: column !important; align-items: center !important; margin: 0 auto !important; }

    .polaroid-frame { width: 280px !important; height: auto !important; margin: 0 auto !important; transform: none !important; }
    .polaroid-frame img { width: 100% !important; height: 280px !important; object-fit: cover !important; }

    .project-item-duo:nth-child(odd)  .polaroid-frame { transform: rotate(-3deg) !important; }
    .project-item-duo:nth-child(even) .polaroid-frame { transform: rotate(3deg) !important; }

    /* ===== TIMELINE ===== */
    .timeline-grid {
        display: grid !important; grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px 15px !important; padding: 0 15px !important;
    }

    .timeline-item:last-child { grid-column: span 2 !important; margin-top: 20px !important; }

    .timeline-item { display: flex !important; flex-direction: column !important; align-items: center !important; }
    .timeline-item .polaroid-card { order: 1 !important; margin-bottom: 10px !important; }
    .timeline-item .date-badge    { order: 2 !important; margin-bottom: 5px !important; }
    .timeline-item .timeline-text { order: 3 !important; font-size: 0.85rem !important; }
    .item-reversed { flex-direction: column !important; }
    .timeline-line { display: none !important; }

    /* ===== PAGE QUI SUIS-JE ===== */
    
 
    
/* Version Desktop */
.presque-tag {
    display: inline;
    font-style: italic;
    opacity: 0.8;
}

/* Version Mobile */

    .presque-tag {
        display: block; /* Passe à la ligne */
        font-size: 0.8rem; /* Plus petit pour l'esthétique */
        margin-top: 4px;
        color: #e5b0bc; /* Rappel de ton rose déco pour que ce soit joli */
    }

    .star-deco-pink, .floating-star-top, .title-with-star::after { display: none !important; }

    body .pricing-hero .editorial-container {
        display: flex !important; flex-direction: column !important;
        padding-top: 60px !important; align-items: center !important;
        min-height: auto !important; background: #fdfaf5 !important;
    }

    body .editorial-center-content { width: 100% !important; padding: 20px 25px !important; text-align: center !important; order: 1 !important; }
    body .pricing-title   { font-size: 2.2rem !important; }
    body .cursive-italic  { font-size: 2.5rem !important; display: block !important; }

    body .editorial-side-photo.photo-left {
        display: block !important; order: 2 !important;
        width: 180px !important; height: auto !important;
        margin: 30px auto 50px auto !important;
        padding: 10px 10px 30px 10px !important; background: #ffffff !important;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08) !important; transform: rotate(-3deg) !important;
    }

    body .editorial-side-photo.photo-left img { width: 100% !important; height: 180px !important; object-fit: cover !important; }
    body .editorial-side-photo.photo-right { display: none !important; }

    /* ===== TITRE MOBILE UNIQUEMENT ===== */
    .desktop-title-only { display: none !important; }

    .mobile-title-only { display: block !important; text-align: center !important; font-size: 2rem !important; line-height: 1 !important; color: #3e5346 !important; }
    .mobile-title-only .cursive-italic { display: inline-block !important; font-size: 2.6rem !important; color: #e5b0bc !important; margin-top: 2px !important; }

    /* ===== PDP HERO ===== */
    .pdp-global-striped-bg { background-image: none !important; }

    .pdp-hero-container { flex-direction: column !important; padding: 40px 20px !important; text-align: center !important; gap: 20px !important; }
    .pdp-hero-intro     { padding-right: 0 !important; }
    .pdp-main-title     { font-size: 2.2rem !important; line-height: 1.1 !important; }
    .pdp-main-title .cursive-pink { display: block !important; font-size: 2.8rem !important; margin-top: 10px !important; }

    .pdp-hero-visual    { justify-content: center !important; margin-top: 30px !important; }
    .pdp-polaroid-frame { width: 280px !important; padding: 12px 12px 35px 12px !important; transform: rotate(-2deg) !important; }
    .pdp-polaroid-image { height: 260px !important; }

    /* ===== PDP STATS ===== */
    .pdp-stats-clean { padding: 50px 0 !important; height: auto !important; display: block !important; }

    .pdp-stats-clean .stats-container-fixed {
        display: flex !important; flex-direction: column !important;
        justify-content: center !important; align-items: center !important;
        gap: 50px !important; width: 100% !important;
        max-width: 100% !important; margin: 0 auto !important; height: auto !important;
    }

    .pdp-stats-clean .stat-card {
        flex: none !important; width: 100% !important; max-width: 280px !important;
        padding: 0 !important; margin: 0 auto !important; display: block !important;
        background: transparent !important; box-shadow: none !important; transform: none !important;
    }

    .pdp-stats-clean .stat-number { font-size: 3.5rem !important; display: block !important; margin-bottom: 5px !important; text-align: center !important; }

    .pdp-stats-clean .stat-label,
    .pdp-stats-clean .stat-detail { display: block !important; width: 100% !important; white-space: normal !important; text-align: center !important; margin: 0 auto !important; }

    .pdp-stats-clean .stat-detail { line-height: 1.4 !important; padding: 0 10px !important; }
    .pdp-stats-clean .stat-box-divider { display: none !important; }

    /* ===== PDP MISSIONS ===== */
    .services-icons-grid { display: grid !important; grid-template-columns: repeat(2, 1fr) !important; gap: 30px 15px !important; padding: 0 20px !important; }
    .icon-wrapper  { width: 70px !important; height: 70px !important; font-size: 1.8rem !important; }
    .service-label { font-size: 0.75rem !important; }

    /* ===== PDP VIDÉOS ===== */
    .pdp-video-grid { flex-direction: column !important; gap: 40px !important; padding: 0 20px !important; }
    .video-thumbnail { aspect-ratio: 16/9 !important; height: auto !important; }

    /* ===== PDP INSTAGRAM ===== */
    .pdp-instagram-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; padding: 0 15px !important; }
    .insta-post:has(video) { aspect-ratio: 9/16 !important; }
    .insta-post img { aspect-ratio: 1/1 !important; object-fit: cover !important; border-radius: 10px !important; }

    /* ===== PDP OUTILS ===== */
    .tools-grid { display: grid !important; grid-template-columns: repeat(2, 1fr) !important; gap: 30px !important; padding: 0 40px !important; flex-direction: unset !important; }
    .tool-icon     { width: 65px !important; height: 65px !important; }
    .tool-icon img { width: 55px !important; height: 55px !important; }

    /* ===== PDP BILAN ===== */
    .pdp-bilan-section { padding: 60px 0 !important; width: 100% !important; left: 0 !important; margin-left: 0 !important; }
    .bilan-grid    { flex-direction: column !important; align-items: center !important; gap: 40px !important; padding: 0 20px !important; }
    .scrapbook-title { font-size: 1.6rem !important; padding: 10px 20px !important; width: 90% !important; }
    .bilan-note    { width: 100% !important; max-width: 320px !important; padding: 35px 25px !important; }

    .pdp-portfolio-section, .pdp-social-gallery { padding: 50px 0 !important; }
    .services-main-title { font-size: 1.5rem !important; margin-bottom: 40px !important; }
    .pdp-section-divider { margin: 60px 0 !important; }

    /* ===== THE BK BEAUTY ===== */
    .tbk-video-grid { display: flex !important; flex-direction: column !important; align-items: center !important; gap: 40px !important; padding: 0 20px !important; }
    .tbk-video-item { margin-bottom: 40px !important; }

    .tbk-video-item .service-label { margin-top: 20px !important; margin-bottom: 20px !important; text-align: center !important; font-size: 0.85rem !important; line-height: 1.3 !important; width: 100% !important; }

    .video-thumbnail.video-portrait { width: 100% !important; max-width: 280px !important; margin: 0 auto !important; aspect-ratio: 9 / 16 !important; border-radius: 20px !important; }

    .tbk-intro-text { padding: 0 20px !important; font-size: 0.95rem !important; line-height: 1.5 !important; }

    /* ===== CARTE CRÉATRICE ===== */
    .creatrice-mini-card { padding: 30px 20px !important; }
    .creatrice-text { font-size: 0.9rem !important; line-height: 1.4 !important; text-align: center !important; }
    .creatrice-text .cursive-italic { display: inline-block !important; font-size: 1.8rem !important; color: #e5b0bc !important; vertical-align: middle !important; margin: 0 5px !important; }
    .creatrice-link-clean { font-size: 0.8rem !important; text-transform: uppercase; letter-spacing: 1px; }

    /* ===== SOCIAL IMPACT ===== */
    .impact-header-group .eyebrow { display: block !important; margin-bottom: 25px !important; letter-spacing: 0.15em !important; }
    .impact-title { display: flex !important; flex-direction: column !important; align-items: center !important; line-height: 1 !important; margin-bottom: 20px !important; }
    .impact-title .cursive-italic { display: block !important; margin-top: -8px !important; font-size: 2.8rem !important; }

    /* ===== MOODBOARD ===== */
    .moodboard-slider-section { padding-top: 0 !important; margin-top: -50px !important; }
    .vb-header-simple { margin-bottom: 15px !important; }
    .vb-title-clean   { font-size: 2.1rem !important; display: block !important; text-align: center !important; line-height: 1.1 !important; }
    .vb-title-clean .cursive-aura { display: block !important; font-size: 1.6rem !important; margin-top: 5px !important; }
    .vb-subtitle      { padding-bottom: 20px !important; display: block !important; }

    .moodboard-slider-section .swiper-container,
    .moodboard-slider-section .moodboard-wrapper,
    .moodboard-slider-section .slider-container { margin-top: 40px !important; padding-top: 10px !important; }

    .aurore-transition .cursive-aura { font-size: 2rem !important; display: inline-block !important; line-height: 1 !important; }

    /* ===== MANUELA PROJET MOBILE ===== */
    .mj-hero-container { flex-direction: column !important; padding: 40px 20px !important; text-align: center !important; }
    .mj-hero-visual    { justify-content: center !important; margin-top: 30px !important; }
    .mj-main-title     { font-size: 2rem !important; }
    .mj-polaroid-frame { width: 260px !important; }
    .mj-video-grid     { grid-template-columns: 1fr !important; padding: 0 20px !important; }

    .mj-stats-container { flex-direction: column !important; gap: 40px !important; padding: 0 20px !important; }
    .mj-stat-divider    { display: none !important; }
    .mj-missions-grid, .mj-branding-grid { display: grid !important; grid-template-columns: repeat(2, 1fr) !important; gap: 20px !important; padding: 0 20px !important; }
    

    
    /* On force le layout principal en colonne */
    .mj-branding-main-layout {
        flex-direction: column !important;
        align-items: center;
        gap: 40px;
    }

    /* On s'assure que l'image de gauche prend toute la largeur */
    .mj-branding-visual {
        width: 100% !important;
        max-width: 450px; /* Pour ne pas qu'elle soit trop immense sur tablette */
    }

    /* LA CORRECTION CRITIQUE : Les petites cartes de droite */
    .mj-branding-specs {
        flex-direction: column !important; /* Elles s'empilent verticalement */
        width: 100% !important;
        gap: 20px !important;
    }

    .mj-spec-card {
        width: 100% !important; /* Elles prennent toute la largeur disponible */
        min-height: auto !important;
        padding: 25px !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* Ajustement des cercles de couleur pour qu'ils ne soient pas écrasés */
    .mj-color-circles {
        justify-content: center;
        margin-bottom: 15px;
    }

    /* Ajustement de la typo pour qu'elle reste lisible */
    .mj-typo-main {
        font-size: 1.2rem !important;
        line-height: 1.2;
    }
    
    /* On cache les retours à la ligne forcés */
    .hide-mobile {
        display: none;
    }

    .hero-text-box p {
        text-align: center; /* Ou left selon ta préférence */
        font-size: 0.95rem; /* Un poil plus petit pour que ça tienne mieux */
        line-height: 1.5;   /* Donne un peu d'air entre les lignes */
        padding: 0 10px;    /* Évite que le texte colle aux bords de l'écran */
    }
    
    .hero-text-box br {
        display: none; /* Sécurité : on désactive tous les BR dans la box sur mobile */
    }
    
    /* Mais on garde celui après "Master" pour marquer le bloc */
    .hero-text-box strong + br {
        display: block;
        content: "";
        margin-top: 10px;
    }
    
} /* fin @media (max-width: 768px) */