/* ============================================
   LJ WEB - FEUILLE DE STYLE GLOBALE
   DA : Bubble + cursive + élégance — fuchsia & corail
   ============================================ */

/* -------- VARIABLES & RESET -------- */
:root {
    /* Palette principale */
    --rose: #E91E8C;
    --rose-clair: #FCE4F0;
    --rose-pale: #FFF0F8;
    --rose-fonce: #B81473;

    /* Touches corail / orange chaleureux */
    --orange: #FF7849;
    --orange-clair: #FFE0CC;
    --orange-pale: #FFF4EC;
    --orange-fonce: #E55A2B;

    /* Neutres */
    --creme: #FFFAF5;
    --blanc: #FFFFFF;
    --gris-tres-clair: #F8F5F2;
    --gris-clair: #EDEAE6;
    --gris-moyen: #8A8580;
    --gris-fonce: #3A3530;
    --noir: #1A1714;

    /* Dégradés signature */
    --gradient-chaud: linear-gradient(135deg, #E91E8C 0%, #FF7849 100%);
    --gradient-doux: linear-gradient(135deg, #FCE4F0 0%, #FFE0CC 100%);
    --gradient-pale: linear-gradient(135deg, #FFF0F8 0%, #FFF4EC 100%);

    /* Typographie */
    --police-titre: 'Fraunces', 'Georgia', serif;
    --police-cursive: 'Caveat', 'Brush Script MT', cursive;
    --police-texte: 'Quicksand', 'Helvetica Neue', Arial, sans-serif;

    /* Effets */
    --ombre-douce: 0 10px 30px rgba(233, 30, 140, 0.08);
    --ombre-rose: 0 12px 30px rgba(233, 30, 140, 0.22);
    --ombre-orange: 0 12px 30px rgba(255, 120, 73, 0.22);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    /* Formes */
    --rayon-s: 14px;
    --rayon: 24px;
    --rayon-xl: 40px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;  /* compense la hauteur du header fixe pour les anchors */
}

/* Sous-titre géolocalisé sous le H1 (SEO local) */
.hero-sousaccroche-geo {
    font-family: var(--police-texte);
    font-size: 1.05rem;
    color: var(--rose);
    font-weight: 600;
    margin: -0.3rem 0 1rem;
    letter-spacing: 0.2px;
}
.hero-sousaccroche-geo strong { color: var(--orange); font-weight: 700; }

/* ============================================
   SECTION ZONE D'INTERVENTION (SEO local)
   ============================================ */
.zone-intervention {
    padding: 5rem 0;
    background: var(--creme);
}
.zone-intervention-contenu {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}
.zone-intervention-contenu .suraccroche {
    display: inline-block;
    margin-bottom: 0.5rem;
}
.zone-intervention-contenu h2 {
    margin-bottom: 1.5rem;
}
.zone-intervention-contenu p {
    color: var(--gris-fonce);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.2rem;
}
.zone-villes {
    list-style: none;
    padding: 0;
    margin: 2rem auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    max-width: 720px;
}
.zone-villes li {
    background: var(--blanc);
    border: 1px solid var(--rose-pale);
    color: var(--rose);
    padding: 0.5rem 1rem;
    border-radius: 24px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: var(--transition);
}
.zone-villes li:hover {
    background: var(--gradient-chaud);
    color: var(--blanc);
    border-color: transparent;
    transform: translateY(-2px);
}

/* ============================================
   CONTENU SEO ENRICHI DES PAGES PRESTATIONS
   ============================================ */
.prestation-contenu-seo {
    max-width: 820px;
    margin: 4rem auto 3rem;
    padding: 2rem 0;
    color: var(--gris-fonce);
}
.prestation-contenu-seo h2 {
    font-size: clamp(1.6rem, 3vw, 2rem);
    color: var(--noir);
    margin: 2.5rem 0 1.2rem;
    font-style: italic;
}
.prestation-contenu-seo h2:first-child { margin-top: 0; }
.prestation-contenu-seo h3 {
    font-size: 1.2rem;
    color: var(--rose);
    margin: 2rem 0 0.8rem;
    font-weight: 600;
    font-family: var(--police-titre);
    font-style: italic;
}
.prestation-contenu-seo p {
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}
.prestation-contenu-seo ul {
    margin: 0 0 1.5rem 0;
    padding-left: 1.4rem;
}
.prestation-contenu-seo ul li {
    line-height: 1.7;
    margin-bottom: 0.5rem;
}
.prestation-contenu-seo a {
    color: var(--rose);
    text-decoration: underline;
    text-decoration-color: rgba(233, 30, 140, 0.3);
    text-underline-offset: 3px;
    font-weight: 500;
}
.prestation-contenu-seo a:hover {
    color: var(--orange);
    text-decoration-color: var(--orange);
}

/* FAQ accordion */
.faq-prestation {
    margin-top: 1.2rem;
}
.faq-item {
    background: var(--blanc);
    border: 1px solid var(--rose-pale);
    border-radius: var(--rayon-m);
    margin-bottom: 0.8rem;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item[open] {
    border-color: var(--rose);
    box-shadow: 0 6px 20px rgba(233, 30, 140, 0.08);
}
.faq-item summary {
    padding: 1rem 1.4rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--noir);
    font-family: var(--police-texte);
    font-size: 1rem;
    list-style: none;
    position: relative;
    padding-right: 3rem;
    transition: var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.6rem;
    color: var(--rose);
    font-weight: 300;
    transition: transform 0.3s ease;
    line-height: 1;
}
.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}
.faq-item summary:hover {
    background: var(--rose-tres-pale);
    color: var(--rose);
}
.faq-item p {
    padding: 0 1.4rem 1.2rem;
    color: var(--gris-fonce);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

body {
    font-family: var(--police-texte);
    font-weight: 400;
    color: var(--gris-fonce);
    background-color: var(--creme);
    line-height: 1.75;
    font-size: 16.5px;
    overflow-x: hidden;
}

/* -------- TYPOGRAPHIE -------- */
h1, h2, h3, h4 {
    font-family: var(--police-titre);
    font-weight: 500;
    color: var(--noir);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 400;
}
h2 { font-size: clamp(2rem, 4.2vw, 3rem); font-weight: 400; }
h3 { font-size: clamp(1.3rem, 2.6vw, 1.65rem); font-weight: 500; }

h1 em, h2 em, h3 em {
    font-style: italic;
    font-family: var(--police-titre);
    color: var(--rose);
    font-weight: 400;
}

.cursive {
    font-family: var(--police-cursive);
    font-weight: 500;
    color: var(--rose);
    font-size: 1.6em;
    line-height: 1;
}

p {
    margin-bottom: 1rem;
    color: var(--gris-fonce);
    font-weight: 400;
}

a {
    color: var(--rose);
    text-decoration: none;
    transition: var(--transition);
}

a:hover { color: var(--orange); }

.accent { color: var(--rose); font-style: italic; }
.accent-orange { color: var(--orange); font-style: italic; }

/* -------- CONTAINER -------- */
.container {
    width: 90%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1rem;
}

section {
    padding: 6rem 0;
    position: relative;
}

/* -------- BOUTONS -------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 36px;
    border-radius: 50px;
    font-family: var(--police-texte);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-principal {
    background: var(--gradient-chaud);
    color: var(--blanc);
    box-shadow: var(--ombre-rose);
}

.btn-principal:hover {
    color: var(--blanc);
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(233, 30, 140, 0.35);
}

.btn-principal i { transition: transform 0.3s; }
.btn-principal:hover i { transform: translateX(4px); }

.btn-secondaire {
    background: var(--blanc);
    color: var(--rose);
    border: 2px solid var(--rose);
}

.btn-secondaire:hover {
    background: var(--rose);
    color: var(--blanc);
    transform: translateY(-3px);
}

.btn-orange {
    background: var(--orange);
    color: var(--blanc);
    box-shadow: var(--ombre-orange);
}

.btn-orange:hover {
    background: var(--orange-fonce);
    color: var(--blanc);
    transform: translateY(-3px);
}

/* -------- SURACCROCHES & TAGS -------- */
.suraccroche {
    display: inline-block;
    color: var(--rose);
    font-family: var(--police-cursive);
    font-size: 1.85rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    transform: rotate(-2deg);
}

.suraccroche-orange { color: var(--orange); }

.tag {
    display: inline-block;
    background: var(--blanc);
    color: var(--rose);
    padding: 7px 20px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: var(--ombre-douce);
    border: 1.5px solid var(--rose-clair);
}

/* ============================================
   HEADER (Sticky + Burger mobile)
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 250, 245, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 0.55rem 0;
    background: rgba(255, 250, 245, 0.96);
    box-shadow: 0 4px 20px rgba(233, 30, 140, 0.06);
}

.header.scrolled .logo img {
    height: 42px;
}

.header.scrolled .nav { min-height: 42px; }

.nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 68px;
}

.logo {
    justify-self: start;
    grid-column: 1;
}

.logo img {
    height: 68px;
    transition: var(--transition);
    display: block;
}

.menu {
    grid-column: 2;
    justify-self: center;
    display: flex;
    list-style: none;
    gap: 2.2rem;
    align-items: center;
}

.menu a {
    color: var(--gris-fonce);
    font-weight: 500;
    font-size: 0.98rem;
    position: relative;
    padding: 4px 0;
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-chaud);
    border-radius: 2px;
    transition: var(--transition);
}

.menu a:hover::after,
.menu a.actif::after { width: 100%; }

.menu a:hover { color: var(--rose); }

.menu .btn { padding: 11px 26px; }

/* Bloc droite du header : Insta + Contact */
.menu-droite {
    grid-column: 3;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-insta {
    color: var(--rose);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--rose-pale);
    transition: var(--transition);
    border: 2px solid var(--rose-clair);
}

.menu-insta:hover {
    background: var(--gradient-chaud);
    color: var(--blanc);
    border-color: transparent;
    transform: rotate(-8deg) scale(1.08);
}

.menu-droite .btn { padding: 11px 26px; }

/* ============================================
   MENU DÉROULANT (Prestations)
   ============================================ */
.menu-item-dropdown {
    position: relative;
}

.menu-dropdown-toggle {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
}

.menu-dropdown-toggle .fa-chevron-down {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.menu-item-dropdown:hover .menu-dropdown-toggle .fa-chevron-down,
.menu-item-dropdown.actif .menu-dropdown-toggle .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: var(--blanc);
    border: 2px solid var(--rose);
    border-radius: var(--rayon);
    box-shadow: 6px 6px 0 var(--orange);
    list-style: none;
    padding: 12px;
    min-width: 270px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
    z-index: 1001;
}

.menu-item-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Petite flèche au-dessus du menu */
.dropdown::before {
    content: '';
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 14px;
    height: 14px;
    background: var(--blanc);
    border-top: 2px solid var(--rose);
    border-left: 2px solid var(--rose);
}

/* Zone invisible pour que le hover ne se coupe pas dans le gap */
.dropdown::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
}

.dropdown li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.dropdown a {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 10px 14px !important;
    border-radius: 12px;
    color: var(--gris-fonce) !important;
    font-size: 0.93rem;
    font-weight: 500;
    transition: all 0.25s;
    white-space: nowrap;
}

.dropdown a:hover {
    background: var(--rose-pale);
    color: var(--rose) !important;
}

.dropdown a::after {
    display: none !important;
}

.dropdown a .icone-drop {
    width: 32px; height: 32px;
    min-width: 32px;
    background: var(--rose-pale);
    color: var(--rose);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all 0.25s;
}

.dropdown li:nth-child(even) a .icone-drop {
    background: var(--orange-pale);
    color: var(--orange);
}

.dropdown a:hover .icone-drop {
    background: var(--rose);
    color: var(--blanc);
    transform: rotate(-8deg) scale(1.08);
}

.dropdown li:nth-child(even) a:hover .icone-drop {
    background: var(--orange);
    color: var(--blanc);
}

.dropdown li:nth-child(even) a:hover {
    color: var(--orange) !important;
    background: var(--orange-pale);
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
    padding: 6px;
}

.burger span {
    width: 28px;
    height: 3px;
    background: var(--rose);
    transition: var(--transition);
    border-radius: 4px;
}

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

/* ============================================
   FORMES DÉCORATIVES (blobs flottants)
   ============================================ */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.blob-rose { background: var(--rose-clair); }
.blob-orange { background: var(--orange-clair); }

/* ============================================
   HÉRO ASYMÉTRIQUE
   ============================================ */
.hero {
    min-height: 92vh;
    padding: 9rem 0 5rem;
    display: flex;
    align-items: center;
    background: var(--creme);
    position: relative;
    overflow: hidden;
}

.hero .blob-rose {
    width: 500px; height: 500px;
    top: -100px; right: -120px;
}
.hero .blob-orange {
    width: 400px; height: 400px;
    bottom: -100px; left: -100px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-texte h1 {
    margin-bottom: 1.5rem;
}

.hero-soustexte {
    font-size: 1.15rem;
    color: var(--gris-moyen);
    margin-bottom: 2.2rem;
    max-width: 540px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-chiffre {
    font-family: var(--police-titre);
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--rose);
    line-height: 1;
    font-style: italic;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gris-moyen);
    font-weight: 500;
}

/* Visuel hero : bulle + carte flottante */
.hero-visuel {
    position: relative;
    height: 520px;
}

/* Cadre principal : fenêtre rétro contenant le logo */
.hero-image-principale {
    position: absolute;
    inset: 0;
    background: var(--blanc);
    border: 3px solid var(--rose);
    border-radius: var(--rayon);
    box-shadow: 10px 10px 0 var(--orange);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.hero-frame-titlebar {
    height: 36px;
    background: var(--gradient-chaud);
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 10px;
    border-bottom: 3px solid var(--rose);
    flex-shrink: 0;
}

.hero-frame-titlebar .dots-mac {
    display: flex;
    gap: 6px;
}

.hero-frame-titlebar .dots-mac span {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--blanc);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.hero-frame-title {
    display: none;
}

.hero-frame-body {
    flex: 1;
    background: var(--gradient-pale);
    background-image:
        radial-gradient(circle at 25% 30%, rgba(233, 30, 140, 0.12), transparent 55%),
        radial-gradient(circle at 75% 70%, rgba(255, 120, 73, 0.14), transparent 55%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1.5rem 5.5rem;
    text-align: center;
    position: relative;
}

.hero-logo-display {
    max-width: 75%;
    height: auto;
    margin-bottom: 0.8rem;
}

.hero-tagline {
    font-family: var(--police-cursive);
    color: var(--rose);
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-tagline .heart {
    color: var(--orange);
    font-size: 1.4rem;
}

.hero-carte-flottante {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--blanc);
    padding: 1.2rem 1.5rem;
    border-radius: var(--rayon);
    box-shadow: var(--ombre-douce);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 2;
}

.hero-carte-flottante .icone-cercle {
    width: 45px; height: 45px;
    background: var(--orange-clair);
    color: var(--orange);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
}

.hero-carte-flottante strong {
    display: block;
    color: var(--noir);
    font-size: 0.95rem;
}

.hero-carte-flottante span {
    color: var(--gris-moyen);
    font-size: 0.78rem;
}

.hero-bulle-deco {
    position: absolute;
    top: 30px;
    right: -20px;
    background: var(--blanc);
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    box-shadow: var(--ombre-douce);
    z-index: 2;
    animation: float-bulle 5s ease-in-out infinite;
}

.hero-bulle-deco .cursive {
    font-size: 1.6rem;
    color: var(--orange);
}

@keyframes float-y {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes float-x {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(8px); }
}

/* Animations qui préservent la rotation des éléments stickers */
@keyframes float-bulle {
    0%, 100% { transform: rotate(5deg) translate(0, 0); }
    50% { transform: rotate(5deg) translate(6px, -6px); }
}

@keyframes float-postit {
    0%, 100% { transform: rotate(6deg) translateY(0); }
    50% { transform: rotate(6deg) translateY(-10px); }
}

/* ============================================
   STICKERS Y2K COLLAGE (héro)
   ============================================ */
.sticker {
    position: absolute;
    z-index: 3;
    user-select: none;
    pointer-events: none;
    line-height: 1;
    font-family: var(--police-titre);
    font-weight: 700;
}

/* Étoiles 4-pointes (signature) */
.sticker-star {
    color: var(--rose);
    text-shadow: 2px 3px 0 var(--orange-clair);
}
.sticker-star.orange { color: var(--orange); text-shadow: 2px 3px 0 var(--rose-clair); }

.sticker-s1 { top: 2%;  left: 6%;  font-size: 2.8rem; transform: rotate(-15deg); }
.sticker-s2 { top: 48%; right: -8px; font-size: 2.2rem; transform: rotate(20deg); }
.sticker-s3 { bottom: 6%; left: 10%; font-size: 1.6rem; transform: rotate(10deg); animation: twinkle 2.5s ease-in-out infinite; }
.sticker-s4 { top: 22%; right: 8%;  font-size: 1.5rem; color: var(--orange); }

/* Papillon */
.sticker-butterfly {
    top: -8px; left: 38%;
    font-size: 2.8rem;
    transform: rotate(-18deg);
    filter: drop-shadow(2px 2px 0 var(--rose-clair));
   }

/* Cœurs */
.sticker-heart {
    color: var(--rose);
    text-shadow: 2px 3px 0 var(--orange-clair);
    font-size: 2.2rem;
   }
.sticker-heart-1 { bottom: 28%; right: -10px; transform: rotate(15deg); }
.sticker-heart-2 { top: 14%; right: 22%; font-size: 1.4rem; color: var(--orange); text-shadow: 2px 2px 0 var(--rose-clair); }

/* Sparkles */
.sticker-sparkle {
    color: var(--orange);
    font-size: 1.3rem;
   }
.sticker-sp1 { top: 35%; left: -4px; animation-delay: 0.3s; }
.sticker-sp2 { bottom: 45%; left: 18%; animation-delay: 1.2s; font-size: 1.1rem; }
.sticker-sp3 { top: 12%; left: 30%; font-size: 1rem; animation-delay: 1.8s; }

/* Carte "Hello!" Y2K — bordure et coin */
.hero-bulle-deco {
    border: 2px solid var(--rose);
    box-shadow: 4px 4px 0 var(--orange) !important;
    transform: rotate(5deg);
}

/* Carte flottante en mode "window" Y2K */
.hero-carte-flottante {
    border: 2px solid var(--rose);
    box-shadow: 5px 5px 0 var(--orange) !important;
    padding: 0 !important;
    overflow: hidden;
}

.hero-carte-flottante-titre {
    background: var(--gradient-chaud);
    color: var(--blanc);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-family: var(--police-texte);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.hero-carte-flottante-titre > span:first-child {
    color: var(--blanc) !important;
}

.hero-carte-flottante-titre .dots {
    display: flex;
    gap: 4px;
}

.hero-carte-flottante-titre .dots span {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.5);
}

.hero-carte-flottante-corps {
    padding: 0.95rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

/* Post-it "to-do" */
.hero-postit {
    position: absolute;
    bottom: 8%;
    right: -10px;
    background: var(--orange-pale);
    padding: 0.9rem 1.1rem 1rem;
    border: 2px solid var(--orange);
    box-shadow: 4px 4px 0 var(--rose);
    transform: rotate(6deg);
    z-index: 3;
    max-width: 145px;
    animation: float-postit 6s ease-in-out infinite;
}

.hero-postit-titre {
    font-family: var(--police-cursive);
    color: var(--rose);
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    line-height: 1;
}

.hero-postit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: var(--police-texte);
    font-size: 0.78rem;
    color: var(--gris-fonce);
    font-weight: 500;
}

.hero-postit-list li {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 2px;
}

.hero-postit-list li::before {
    content: '✦';
    color: var(--rose);
    font-size: 0.7rem;
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1) rotate(var(--r, 0deg)); }
    50% { transform: scale(1.15) rotate(var(--r, 0deg)); }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.4; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.15); }
}

/* ============================================
   TITRES DE SECTION
   ============================================ */
.section-titre {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.section-titre h2 { margin-bottom: 0.8rem; }

.section-titre p {
    color: var(--gris-moyen);
    max-width: 620px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ============================================
   3 PILIERS (sous le héro)
   ============================================ */
.piliers {
    background: var(--blanc);
    padding: 4rem 0;
    border-top: 1px solid var(--rose-clair);
    border-bottom: 1px solid var(--rose-clair);
}

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

.pilier {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.pilier .icone {
    width: 56px; height: 56px;
    min-width: 56px;
    background: var(--rose-pale);
    color: var(--rose);
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    transform: rotate(-5deg);
}

.pilier:nth-child(2) .icone {
    background: var(--orange-pale);
    color: var(--orange);
    transform: rotate(5deg);
}

.pilier:nth-child(3) .icone {
    background: var(--rose-clair);
    color: var(--rose-fonce);
    transform: rotate(-3deg);
}

.pilier h4 {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
    font-family: var(--police-texte);
    font-weight: 700;
    color: var(--noir);
}

.pilier p {
    color: var(--gris-moyen);
    font-size: 0.93rem;
    margin: 0;
}

/* ============================================
   PRÉSENTATION DE LÉA (mise en page magazine)
   ============================================ */
.presentation {
    background: var(--gradient-pale);
    overflow: hidden;
}

.presentation .blob-orange {
    width: 350px; height: 350px;
    top: 50px; right: -50px;
}

.presentation-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Variante : présentation sans photo, contenu centré sur une seule colonne */
.presentation-centree .presentation-contenu {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.presentation-centree .presentation-contenu .suraccroche {
    display: inline-block;
    margin-bottom: 0.6rem;
}

.presentation-centree .presentation-contenu p {
    margin-left: auto;
    margin-right: auto;
}

.presentation-centree .presentation-citation {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.presentation-centree .presentation-contenu .btn {
    margin: 0 auto;
}

.presentation-visuel {
    position: relative;
    padding: 1rem;
}

.presentation-image {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 60% 40% 50% 50% / 50% 50% 45% 55%;
    background: var(--gradient-chaud);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(233, 30, 140, 0.2);
    background-image: linear-gradient(135deg, rgba(233, 30, 140, 0.12), rgba(255, 120, 73, 0.12)),
                      url('assets/images/a-propos.jpg');
    background-size: cover;
    background-position: center 30%;
}

.presentation-badge {
    position: absolute;
    bottom: 30px;
    right: 0;
    background: var(--blanc);
    padding: 1rem 1.5rem;
    border-radius: var(--rayon);
    box-shadow: var(--ombre-douce);
    text-align: center;
}

.presentation-badge .cursive {
    font-size: 1.3rem;
    color: var(--orange);
    display: block;
}

.presentation-badge strong {
    font-family: var(--police-titre);
    font-style: italic;
    color: var(--noir);
    font-size: 1.4rem;
    display: block;
}

.presentation-contenu .suraccroche { margin-bottom: 0.3rem; }

.presentation-contenu h2 { margin-bottom: 1.5rem; }

.presentation-contenu p {
    color: var(--gris-fonce);
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
}

.presentation-citation {
    border-left: 3px solid var(--orange);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-family: var(--police-cursive);
    font-size: 1.8rem;
    color: var(--rose);
    line-height: 1.3;
}

/* ============================================
   PRESTATIONS - CARTES MODERNES
   ============================================ */
.prestations { background: var(--blanc); }

.prestations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Tablette : passe directement à 2 colonnes (jamais 3 + 1) */
@media (max-width: 1100px) {
    .prestations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile : on garde 2 colonnes (jamais 1 seule) */
@media (max-width: 640px) {
    .prestations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

.carte-prestation {
    background: var(--blanc);
    border-radius: var(--rayon);
    overflow: hidden;
    box-shadow: var(--ombre-douce);
    transition: var(--transition);
    border: 1px solid var(--gris-clair);
    display: flex;
    flex-direction: column;
}

.carte-prestation:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(233, 30, 140, 0.18);
    border-color: transparent;
}

.carte-prestation-visuel {
    height: 160px;
    background: var(--gradient-doux);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.carte-prestation:nth-child(2) .carte-prestation-visuel {
    background: linear-gradient(135deg, #FFE0CC, #FCE4F0);
}
.carte-prestation:nth-child(3) .carte-prestation-visuel {
    background: linear-gradient(135deg, #FCE4F0, #FFF4EC);
}
.carte-prestation:nth-child(4) .carte-prestation-visuel {
    background: linear-gradient(135deg, #FFE0CC, #FFF0F8);
}

.carte-prestation-visuel .icone-grand {
    font-size: 3.5rem;
    color: var(--rose);
    transform: rotate(-8deg);
    transition: var(--transition);
}

.carte-prestation:nth-child(even) .carte-prestation-visuel .icone-grand {
    color: var(--orange);
    transform: rotate(8deg);
}

.carte-prestation:hover .carte-prestation-visuel .icone-grand {
    transform: rotate(0) scale(1.15);
}

.carte-prestation-contenu {
    padding: 1.8rem 1.6rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.carte-prestation h3 { margin-bottom: 0.8rem; }

.carte-prestation p {
    color: var(--gris-moyen);
    margin-bottom: 1.3rem;
    font-size: 0.95rem;
    flex-grow: 1;
}

.lien-carte {
    color: var(--rose);
    font-weight: 600;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.lien-carte:hover { color: var(--orange); }
.lien-carte i { transition: transform 0.3s; }
.lien-carte:hover i { transform: translateX(4px); }

/* ============================================
   PROCESSUS (timeline horizontale)
   ============================================ */
.processus {
    background: var(--gradient-pale);
    overflow: hidden;
}

.processus .blob-rose {
    width: 400px; height: 400px;
    bottom: -100px; right: -100px;
}

.processus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.etape {
    text-align: center;
    position: relative;
}

.etape-numero {
    font-family: var(--police-titre);
    font-style: italic;
    font-size: 4.5rem;
    color: var(--rose);
    line-height: 1;
    opacity: 0.4;
    margin-bottom: 0.5rem;
}

.etape:nth-child(even) .etape-numero { color: var(--orange); }

.etape h4 {
    font-family: var(--police-titre);
    font-style: italic;
    font-size: 1.4rem;
    color: var(--noir);
    margin-bottom: 0.6rem;
    font-weight: 400;
}

.etape p {
    color: var(--gris-moyen);
    font-size: 0.92rem;
    margin: 0;
}

/* ============================================
   TÉMOIGNAGES (cartes mosaïque)
   ============================================ */
.temoignages {
    background: var(--blanc);
    position: relative;
}

.temoignages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 460px));
    justify-content: center;
    gap: 1.8rem;
}

/* ============================================
   CAROUSEL TÉMOIGNAGES (2 visibles à la fois, flèches gauche/droite)
   ============================================ */
.temoignages-carousel {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.temoignages-track-wrapper {
    flex: 1;
    overflow: hidden;
}

.temoignages-track {
    display: flex;
    gap: 1.8rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.temoignages-track .carte-temoignage {
    flex: 0 0 calc(50% - 0.9rem);
    margin: 0;
}

/* Flèches de navigation */
.carousel-arrow {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid var(--rose);
    background: var(--blanc);
    color: var(--rose);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--ombre-douce);
    transition: all 0.25s ease;
    flex-shrink: 0;
    z-index: 2;
}

.carousel-arrow:hover:not(:disabled) {
    background: var(--rose);
    color: var(--blanc);
    transform: scale(1.08);
    box-shadow: 0 8px 22px rgba(233, 30, 140, 0.25);
}

.carousel-arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

/* Mobile : 1 seule carte visible à la fois, swipe gauche/droite pour naviguer */
@media (max-width: 768px) {
    .temoignages-carousel {
        gap: 0.5rem;
        position: relative;
    }
    .temoignages-track {
        gap: 1rem;
    }
    .temoignages-track .carte-temoignage {
        flex: 0 0 100%;
        padding: 1.6rem 1.4rem 1.5rem;
        touch-action: pan-y; /* permet le swipe horizontal */
    }
    .temoignages-track .carte-temoignage > p {
        font-size: 0.95rem;
        line-height: 1.55;
    }
    .temoignages-track-wrapper {
        cursor: grab;
    }
    .temoignages-track-wrapper.grabbing {
        cursor: grabbing;
    }
    /* Flèches plus petites mais toujours visibles */
    .carousel-arrow {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
        flex-shrink: 0;
    }
    /* Pagination par points (indicateurs visuels) */
    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 1.2rem;
    }
}

/* Indicateurs (dots) sous le carousel — visibles sur mobile seulement */
.carousel-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
}

.carousel-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--rose-pale);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.actif {
    background: var(--rose);
    width: 24px;
    border-radius: 4px;
}

.temoignage-lien {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--rose);
    margin-top: 4px;
    font-weight: 600;
    transition: var(--transition);
}

.temoignage-lien:hover {
    color: var(--orange);
    transform: translateX(2px);
}

.temoignage-soon {
    display: inline-block;
    margin-top: 4px;
    color: var(--orange) !important;
    font-family: var(--police-cursive);
    font-size: 1rem !important;
}

.carte-temoignage {
    background: var(--blanc);
    padding: 2rem 1.8rem 1.8rem;
    border-radius: var(--rayon);
    box-shadow: var(--ombre-douce);
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--rose-clair);
}

.carte-temoignage:hover {
    transform: translateY(-6px);
    border-color: var(--rose);
}

.carte-temoignage:nth-child(2) { background: var(--rose-pale); }
.carte-temoignage:nth-child(3) { background: var(--orange-pale); }

.etoiles {
    color: var(--orange);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    letter-spacing: 3px;
}

.carte-temoignage > p {
    font-family: var(--police-titre);
    font-style: italic;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: var(--gris-fonce);
    line-height: 1.6;
}

.temoignage-auteur {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--rose-clair);
}

.temoignage-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--gradient-chaud);
    display: flex; align-items: center; justify-content: center;
    color: var(--blanc);
    font-weight: 700;
    font-family: var(--police-titre);
    font-style: italic;
    flex-shrink: 0;
}

/* Variante avec logo image (fond blanc neutre pour mettre le logo en valeur) */
.temoignage-avatar-logo {
    background: #FFFFFF;
    border: 1px solid var(--gris-clair);
    padding: 3px;
    overflow: hidden;
}

.temoignage-avatar-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Variante logo rond qui remplit tout le cercle (pas de padding ni de bordure) */
.temoignage-avatar-logo-plein {
    background: transparent;
    padding: 0;
    border: none;
    overflow: hidden;
}

.temoignage-avatar-logo-plein img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.temoignage-info strong {
    display: block;
    color: var(--noir);
    font-size: 0.95rem;
}

.temoignage-info span {
    font-size: 0.82rem;
    color: var(--gris-moyen);
}

/* ============================================
   BANNIÈRE CTA FINALE
   ============================================ */
.cta-banniere {
    background: var(--gradient-chaud);
    color: var(--blanc);
    border-radius: var(--rayon-xl);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 4rem 0;
    box-shadow: var(--ombre-rose);
}

.cta-banniere::before,
.cta-banniere::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.cta-banniere::before { width: 220px; height: 220px; top: -80px; left: -80px; }
.cta-banniere::after { width: 280px; height: 280px; bottom: -100px; right: -100px; }

.cta-banniere > * { position: relative; z-index: 1; }

.cta-banniere .cursive {
    color: var(--blanc);
    opacity: 0.95;
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
    display: block;
}

.cta-banniere h2 {
    color: var(--blanc);
    margin-bottom: 1rem;
}

.cta-banniere p {
    color: rgba(255, 255, 255, 0.92);
    max-width: 620px;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
}

.cta-banniere .btn {
    background: var(--blanc);
    color: var(--rose);
}

.cta-banniere .btn:hover {
    background: var(--noir);
    color: var(--blanc);
    transform: translateY(-3px);
}

/* ============================================
   SECTION CONTACT HOMEPAGE (formulaire intégré)
   ============================================ */
.contact-home {
    padding: 5rem 0 7rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--blanc), var(--creme));
}

.contact-home .blob-rose {
    width: 380px; height: 380px;
    top: 50px; right: -120px;
    opacity: 0.5;
}

.contact-home .blob-orange {
    width: 320px; height: 320px;
    bottom: -80px; left: -100px;
    opacity: 0.45;
}

.contact-home-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.contact-home-texte .cursive {
    color: var(--orange);
    font-size: 1.8rem;
    display: block;
    margin-bottom: 0.4rem;
}

.contact-home-texte h2 {
    margin-bottom: 1.2rem;
}

.contact-home-texte > p {
    color: var(--gris-fonce);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.8rem;
    max-width: 480px;
}

.contact-home-points {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0;
}

.contact-home-points li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.7rem;
    font-weight: 500;
    color: var(--gris-fonce);
    font-size: 0.98rem;
}

.contact-home-points li i {
    width: 22px; height: 22px;
    background: var(--gradient-chaud);
    color: var(--blanc);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.contact-home-info {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-top: 0.5rem;
}

.contact-home-info-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.9rem 1.1rem;
    background: var(--blanc);
    border-radius: var(--rayon-m);
    border: 1px solid var(--gris-clair);
    transition: var(--transition);
    color: inherit;
}

.contact-home-info-item:hover {
    border-color: var(--rose);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(233, 30, 140, 0.08);
}

.contact-home-info-item .icone {
    width: 42px; height: 42px;
    background: var(--rose-pale);
    color: var(--rose);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-home-info-item:nth-child(2) .icone {
    background: var(--orange-pale);
    color: var(--orange);
}

.contact-home-info-item div { display: flex; flex-direction: column; gap: 2px; }
.contact-home-info-item strong { font-size: 0.85rem; color: var(--noir); }
.contact-home-info-item span { font-size: 0.88rem; color: var(--gris-moyen); }

@media (max-width: 992px) {
    .contact-home-grid { grid-template-columns: 1fr; gap: 3rem; }
    .contact-home-texte { text-align: center; }
    .contact-home-texte > p,
    .contact-home-points { margin-left: auto; margin-right: auto; }
    .contact-home-points li { justify-content: center; }
}

/* ============================================
   POPUP COOKIES — stylé, élégant, brand-aligned
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    max-width: 400px;
    background: var(--blanc);
    border-radius: 22px;
    padding: 1.5rem 1.5rem 1.4rem;
    box-shadow: 0 20px 50px rgba(233, 30, 140, 0.15),
                0 4px 14px rgba(0, 0, 0, 0.06);
    border: 1.5px solid var(--rose-pale);
    z-index: 999;
    transform: translateY(120%) scale(0.96);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.34, 1.3, 0.64, 1),
                opacity 0.4s ease;
    font-family: var(--police-texte);
}

.cookie-banner.visible {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Petit accent décoratif coin haut-gauche */
.cookie-banner::before {
    content: '';
    position: absolute;
    top: -1.5px; left: -1.5px;
    width: 60px; height: 60px;
    background: var(--gradient-chaud);
    border-radius: 22px 0 60px 0;
    z-index: 0;
}

.cookie-banner-emoji {
    position: absolute;
    top: 10px; left: 14px;
    font-size: 1.4rem;
    z-index: 2;
    line-height: 1;
}

.cookie-banner-content {
    position: relative;
    z-index: 1;
    padding-left: 3rem;
}

.cookie-banner h4 {
    font-family: var(--police-titre);
    font-size: 1.15rem;
    color: var(--noir);
    margin: 0 0 0.5rem;
    font-weight: 600;
    font-style: italic;
}

.cookie-banner p {
    font-size: 0.85rem;
    line-height: 1.55;
    color: var(--gris-fonce);
    margin: 0 0 1.2rem;
}

.cookie-banner p a {
    color: var(--rose);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(233, 30, 140, 0.3);
    text-underline-offset: 3px;
}

.cookie-banner p a:hover {
    color: var(--rose-fonce);
    text-decoration-color: var(--rose);
}

.cookie-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

/* Bouton "Personnaliser" — version douce entre les 2 autres */
.cookie-btn-personnaliser {
    flex: 1;
    background: transparent;
    color: var(--rose);
    border: 1.5px solid var(--rose-pale);
    padding: 9px 14px;
    border-radius: 12px;
    font-family: var(--police-texte);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.cookie-btn-personnaliser:hover {
    background: var(--rose-tres-pale);
    border-color: var(--rose);
}

.cookie-btn {
    flex: 1;
    padding: 11px 18px;
    border: none;
    border-radius: 12px;
    font-family: var(--police-texte);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--gradient-chaud);
    color: var(--blanc);
    box-shadow: 0 4px 12px rgba(233, 30, 140, 0.25);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(233, 30, 140, 0.35);
}

.cookie-btn-refuse {
    background: var(--gris-clair);
    color: var(--gris-fonce);
}

.cookie-btn-refuse:hover {
    background: var(--rose-tres-pale);
    color: var(--rose);
}

.cookie-banner-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px; height: 28px;
    border: none;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 50%;
    color: var(--gris-moyen);
    cursor: pointer;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 3;
}

.cookie-banner-close:hover {
    background: var(--rose-pale);
    color: var(--rose);
    transform: rotate(90deg);
}

/* Responsive : popup pleine largeur en bas sur mobile */
@media (max-width: 600px) {
    .cookie-banner {
        bottom: 12px;
        right: 12px;
        left: 12px;
        max-width: none;
        padding: 1.2rem 1.2rem 1.2rem;
        border-radius: 18px;
    }
    .cookie-banner-content { padding-left: 2.8rem; }
    .cookie-banner-actions { flex-wrap: wrap; }
    .cookie-btn { font-size: 0.82rem; padding: 10px 14px; }
}

/* ============================================
   MODAL PRÉFÉRENCES COOKIES (fenêtre détaillée)
   ============================================ */
.cookie-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(58, 53, 48, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.cookie-modal-overlay.visible { opacity: 1; }

.cookie-modal {
    background: var(--blanc);
    border-radius: 24px;
    max-width: 540px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(233, 30, 140, 0.18);
    border: 1.5px solid var(--rose-pale);
    transform: translateY(20px) scale(0.97);
    transition: transform 0.4s cubic-bezier(0.34, 1.3, 0.64, 1);
    position: relative;
}
.cookie-modal-overlay.visible .cookie-modal {
    transform: translateY(0) scale(1);
}

.cookie-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 50%;
    color: var(--gris-moyen);
    cursor: pointer;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 2;
}
.cookie-modal-close:hover {
    background: var(--rose-pale);
    color: var(--rose);
    transform: rotate(90deg);
}

.cookie-modal-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--rose-pale);
}
.cookie-modal-emoji {
    font-size: 2.4rem;
    display: block;
    margin-bottom: 0.4rem;
}
.cookie-modal-header h3 {
    font-family: var(--police-titre);
    font-size: 1.5rem;
    color: var(--noir);
    font-style: italic;
    margin: 0 0 0.5rem;
}
.cookie-modal-header p {
    font-size: 0.92rem;
    color: var(--gris-fonce);
    line-height: 1.5;
    margin: 0;
}

.cookie-modal-body {
    padding: 1.5rem 2rem;
}

.cookie-option {
    padding: 1.2rem 0;
    border-bottom: 1px dashed var(--gris-clair);
}
.cookie-option:last-child { border-bottom: none; }

.cookie-option-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.4rem;
}
.cookie-option-header strong {
    font-family: var(--police-titre);
    font-size: 1.05rem;
    color: var(--noir);
    font-style: italic;
}
.cookie-option p {
    font-size: 0.86rem;
    color: var(--gris-fonce);
    line-height: 1.5;
    margin: 0;
}

/* Toggle switch */
.cookie-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}
.cookie-toggle input { position: absolute; opacity: 0; pointer-events: none; }

.cookie-toggle-track {
    width: 44px;
    height: 24px;
    background: var(--gris-clair);
    border-radius: 12px;
    position: relative;
    transition: background 0.25s ease;
    display: inline-block;
    flex-shrink: 0;
}
.cookie-toggle-thumb {
    position: absolute;
    top: 2px; left: 2px;
    width: 20px; height: 20px;
    background: var(--blanc);
    border-radius: 50%;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
.cookie-toggle input:checked + .cookie-toggle-track {
    background: linear-gradient(135deg, var(--rose), var(--orange));
}
.cookie-toggle input:checked + .cookie-toggle-track .cookie-toggle-thumb {
    transform: translateX(20px);
}

.cookie-toggle-locked .cookie-toggle-track {
    background: linear-gradient(135deg, var(--rose), var(--orange));
    opacity: 0.5;
}
.cookie-toggle-locked .cookie-toggle-thumb {
    transform: translateX(20px);
}
.cookie-toggle-label {
    font-size: 0.78rem;
    color: var(--gris-moyen);
    font-style: italic;
}

.cookie-modal-footer {
    padding: 1.2rem 2rem 1.8rem;
    border-top: 1px solid var(--rose-pale);
    display: flex;
    gap: 0.8rem;
    background: var(--rose-tres-pale);
    border-radius: 0 0 24px 24px;
}
.cookie-modal-footer .cookie-btn { flex: 1; padding: 13px 18px; font-size: 0.9rem; }

@media (max-width: 540px) {
    .cookie-modal-header { padding: 1.5rem 1.3rem 1rem; }
    .cookie-modal-body { padding: 1rem 1.3rem; }
    .cookie-modal-footer { padding: 1rem 1.3rem 1.4rem; flex-direction: column-reverse; }
    .cookie-option-header { flex-wrap: wrap; }
    .cookie-modal-header h3 { font-size: 1.3rem; }
}

/* ============================================
   PAGE TARIFS
   ============================================ */
.page-tarifs { padding-top: 11rem; position: relative; overflow: hidden; }

.page-tarifs .blob-rose { width: 350px; height: 350px; top: 100px; left: -100px; }
.page-tarifs .blob-orange { width: 350px; height: 350px; top: 200px; right: -100px; }

/* Cartes tarif (au lieu d'un tableau brut) */
.tarifs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.carte-tarif {
    background: var(--blanc);
    border-radius: var(--rayon);
    padding: 2.2rem 1.6rem 2rem;
    box-shadow: var(--ombre-douce);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
}

.carte-tarif:hover {
    transform: translateY(-10px);
    border-color: var(--rose);
}

.carte-tarif.vedette {
    background: var(--gradient-chaud);
    color: var(--blanc);
    transform: scale(1.03);
}

.carte-tarif.vedette:hover { transform: scale(1.03) translateY(-10px); }

.carte-tarif.vedette .carte-tarif-nom,
.carte-tarif.vedette .carte-tarif-prix,
.carte-tarif.vedette .carte-tarif-pages { color: var(--blanc); }

.carte-tarif-badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: var(--blanc);
    padding: 5px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.carte-tarif-nom {
    font-family: var(--police-titre);
    font-style: italic;
    font-size: 1.6rem;
    color: var(--rose);
    margin-bottom: 0.5rem;
}

.carte-tarif-pages {
    color: var(--gris-moyen);
    font-size: 0.9rem;
    margin-bottom: 1.4rem;
}

.carte-tarif-prix {
    font-family: var(--police-titre);
    font-style: italic;
    font-size: 2.8rem;
    color: var(--noir);
    margin-bottom: 2.2rem;  /* aération avant le bouton "En savoir plus" */
    line-height: 1;
}

.carte-tarif-prix-tva {
    color: var(--gris-moyen);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.carte-tarif.vedette .carte-tarif-prix-tva { color: rgba(255, 255, 255, 0.85); }

.mention-legale {
    text-align: center;
    color: var(--gris-moyen);
    font-size: 0.86rem;
    font-style: italic;
    margin-top: 1.5rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

/* Options à la carte */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.option-item {
    background: var(--blanc);
    border-radius: var(--rayon);
    padding: 1.8rem 1.5rem;
    box-shadow: var(--ombre-douce);
    transition: var(--transition);
    border-left: 5px solid var(--rose);
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    position: relative;
}

.option-item:nth-child(2) { border-left-color: var(--orange); }
.option-item:nth-child(3) { border-left-color: var(--rose-fonce); }

.option-item:hover {
    transform: translateX(6px) translateY(-4px);
    box-shadow: 0 15px 35px rgba(233, 30, 140, 0.15);
    border-left-width: 8px;
}

.option-fleche {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--rose);
    font-size: 0.95rem;
    transition: transform 0.3s;
}

.option-item:nth-child(2) .option-fleche { color: var(--orange); }
.option-item:nth-child(3) .option-fleche { color: var(--rose-fonce); }

.option-item:hover .option-fleche { transform: translateX(6px); }

.option-item h4 {
    font-family: var(--police-titre);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--noir);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.option-item .option-prix {
    font-family: var(--police-titre);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--rose);
    line-height: 1;
}

.option-item:nth-child(2) .option-prix { color: var(--orange); }

.option-item p {
    color: var(--gris-moyen);
    font-size: 0.88rem;
    margin: 0.5rem 0 0;
}

/* ============================================
   PAGE À PROPOS (storytelling magazine)
   ============================================ */
.story-hero {
    padding: 11rem 0 4rem;
    position: relative;
    overflow: hidden;
    background: var(--creme);
}

.story-hero .blob-rose { width: 400px; height: 400px; top: 50px; right: -100px; }
.story-hero .blob-orange { width: 350px; height: 350px; bottom: -50px; left: -80px; }

.story-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Cadre photo Léa : fenêtre rétro Y2K */
.story-portrait-wrapper {
    position: relative;
    padding: 1rem;
}

.story-portrait-frame {
    background: var(--blanc);
    border: 3px solid var(--rose);
    border-radius: var(--rayon);
    box-shadow: 10px 10px 0 var(--orange);
    overflow: hidden;
    aspect-ratio: 4/5;
    display: flex;
    flex-direction: column;
}

.story-portrait-titlebar {
    height: 36px;
    background: var(--gradient-chaud);
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 10px;
    border-bottom: 3px solid var(--rose);
    flex-shrink: 0;
}

.story-portrait-titlebar .dots-mac {
    display: flex;
    gap: 6px;
}

.story-portrait-titlebar .dots-mac span {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--blanc);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.story-portrait-titlebar .title {
    display: none;
}

.story-portrait-photo {
    flex: 1;
    background-image: url('assets/images/fondatrice.jpg');
    background-size: cover;
    background-position: 30% 30%;
    position: relative;
}

.story-portrait-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.06), rgba(255, 120, 73, 0.04));
    mix-blend-mode: multiply;
}

/* Stickers autour du portrait */
.story-portrait-wrapper .sticker {
    position: absolute;
    z-index: 3;
    font-family: var(--police-titre);
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.story-portrait-wrapper .sticker-s1 { top: -5px; left: -10px; font-size: 3rem; color: var(--orange); text-shadow: 3px 3px 0 var(--rose-clair); transform: rotate(-15deg); }
.story-portrait-wrapper .sticker-s2 { bottom: 15%; right: -15px; font-size: 2.2rem; color: var(--rose); text-shadow: 3px 3px 0 var(--orange-clair); transform: rotate(20deg); }
.story-portrait-wrapper .sticker-heart { top: 30%; right: -20px; font-size: 2.5rem; color: var(--rose); text-shadow: 2px 3px 0 var(--orange-clair); }
.story-portrait-wrapper .sticker-butterfly { top: 8%; right: 5%; font-size: 2.4rem; transform: rotate(-15deg); filter: drop-shadow(2px 2px 0 var(--rose-clair)); }
.story-portrait-wrapper .sticker-sparkle { bottom: 8%; left: -5px; font-size: 1.4rem; color: var(--orange); }

.story-portrait-badge {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) rotate(-3deg);
    background: var(--orange-pale);
    border: 2px solid var(--orange);
    box-shadow: 4px 4px 0 var(--rose);
    padding: 0.5rem 1.4rem;
    border-radius: 50px;
    z-index: 4;
    white-space: nowrap;
}

.story-portrait-badge .cursive {
    color: var(--rose);
    font-size: 1.4rem;
    line-height: 1;
}

.story-blocs {
    background: var(--blanc);
    padding: 6rem 0;
}

/* Story alterné — bloc image / texte (LEGACY) */
.story-bloc {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.story-bloc:last-child { margin-bottom: 0; }

/* ============================================
   STYLE ÉDITORIAL (À propos)
   ============================================ */
.story-edito {
    max-width: 820px;
    margin: 0 auto;
    padding: 5rem 0 3rem;
    position: relative;
}

.story-chapitre {
    position: relative;
    margin-bottom: 5rem;
    padding-left: 6rem;
}

.story-chapitre:last-child { margin-bottom: 3rem; }

/* Grand numéro en italique sur le côté */
.story-chapitre-numero {
    position: absolute;
    left: 0;
    top: -1rem;
    font-family: var(--police-titre);
    font-style: italic;
    font-size: 5.5rem;
    color: var(--rose);
    line-height: 1;
    opacity: 0.85;
    font-weight: 400;
}

.story-chapitre:nth-of-type(2) .story-chapitre-numero { color: var(--orange); }
.story-chapitre:nth-of-type(3) .story-chapitre-numero { color: var(--rose-fonce); }

/* Petite ligne décorative qui descend du numéro */
.story-chapitre-numero::after {
    content: '';
    position: absolute;
    left: 50%;
    top: calc(100% + 0.5rem);
    transform: translateX(-50%);
    width: 2px;
    height: 80px;
    background: currentColor;
    opacity: 0.3;
}

.story-chapitre .suraccroche {
    display: block;
    margin-bottom: 0.3rem;
}

.story-chapitre h2 {
    margin-bottom: 1.8rem;
    font-size: clamp(1.8rem, 3.8vw, 2.6rem);
}

/* Premier paragraphe avec lettrine */
.story-chapitre p {
    color: var(--gris-fonce);
    font-size: 1.1rem;
    line-height: 1.85;
    margin-bottom: 1.4rem;
}

.story-chapitre p.lettrine::first-letter {
    font-family: var(--police-titre);
    font-style: italic;
    font-size: 4.5rem;
    color: var(--rose);
    float: left;
    line-height: 0.85;
    margin: 0.4rem 0.8rem -0.2rem 0;
    font-weight: 400;
}

.story-chapitre:nth-of-type(2) p.lettrine::first-letter { color: var(--orange); }
.story-chapitre:nth-of-type(3) p.lettrine::first-letter { color: var(--rose-fonce); }

/* Accents cursive dans le texte courant */
.story-chapitre .accent-cursif {
    font-family: var(--police-cursive);
    font-weight: 600;
    font-style: normal;
    font-size: 1.4em;
    color: var(--rose);
    line-height: 0.9;
}

.story-chapitre:nth-of-type(2) .accent-cursif { color: var(--orange); }
.story-chapitre:nth-of-type(3) .accent-cursif { color: var(--rose-fonce); }

/* Phrase mise en exergue (sortie du flux) */
.story-chapitre .pullquote {
    display: block;
    font-family: var(--police-titre);
    font-style: italic;
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--rose);
    line-height: 1.4;
    margin: 1.8rem 0 1.8rem 1rem;
    padding-left: 1.2rem;
    border-left: 3px solid var(--rose-clair);
}

.story-chapitre:nth-of-type(2) .pullquote { color: var(--orange); border-left-color: var(--orange-clair); }
.story-chapitre:nth-of-type(3) .pullquote { color: var(--rose-fonce); border-left-color: var(--rose-clair); }

/* Étoile en fin de paragraphe pour rythmer */
.story-chapitre-fin {
    text-align: center;
    font-size: 1.5rem;
    color: var(--orange);
    margin-top: 2.5rem;
    letter-spacing: 1rem;
    padding-right: 1rem;
}

@media (max-width: 768px) {
    /* Sur mobile : tout est centré, le numéro au-dessus du contenu */
    .story-edito { padding: 3rem 0 2rem; }
    .story-chapitre {
        padding-left: 0;
        padding-top: 0;
        text-align: center;
        margin-bottom: 4rem;
        margin-top: 4rem;  /* aération avant le numéro */
    }
    .story-chapitre:first-of-type { margin-top: 0; }

    /* Plus d'espace entre la citation centrale et le chapitre suivant */
    .story-citation + .story-chapitre {
        margin-top: 5rem;
    }

    .story-chapitre-numero {
        position: static;
        display: block;
        font-size: 3.6rem;
        margin: 0 auto 0.4rem;
        line-height: 1;
        text-align: center;
    }
    .story-chapitre-numero::after { display: none; }
    .story-chapitre .suraccroche {
        text-align: center;
        display: block;
    }
    .story-chapitre h2 {
        text-align: center;
        margin-bottom: 1.4rem;
    }
    .story-chapitre p {
        text-align: center;
        line-height: 1.75;
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
        max-width: 480px;
    }
    /* La lettrine ne fonctionne pas avec du texte centré → on la désactive */
    .story-chapitre p.lettrine::first-letter {
        font-size: inherit;
        color: inherit;
        float: none;
        line-height: inherit;
        margin: 0;
        font-style: normal;
        font-family: inherit;
        font-weight: inherit;
    }
    .story-chapitre .pullquote {
        font-size: 1.2rem;
        margin-left: auto;
        margin-right: auto;
        max-width: 460px;
        text-align: center;
        border-left: none;
        border-top: 2px solid var(--rose);
        border-bottom: 2px solid var(--rose);
        padding: 1rem 0.5rem;
    }
    .story-chapitre-fin {
        text-align: center;
        margin-top: 1.5rem;
    }
}

.story-bloc-image {
    aspect-ratio: 5/4;
    border-radius: var(--rayon-xl);
    background: var(--gradient-doux);
    overflow: hidden;
    box-shadow: var(--ombre-douce);
    background-size: cover;
    background-position: center;
}

.story-bloc:nth-child(1) .story-bloc-image {
    background-image: url('assets/images/voyage.jpg');
    background-size: cover;
    background-position: center;
}
.story-bloc:nth-child(2) .story-bloc-image {
    background-image: linear-gradient(135deg, rgba(255, 224, 204, 0.4), rgba(252, 228, 240, 0.4)),
                      url('https://images.unsplash.com/photo-1551836022-deb4988cc6c0?w=800&q=80');
}
.story-bloc:nth-child(3) .story-bloc-image {
    background-image: linear-gradient(135deg, rgba(252, 228, 240, 0.4), rgba(255, 244, 236, 0.4)),
                      url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?w=800&q=80');
}

.story-bloc:nth-child(even) .story-bloc-image { order: 2; }

.story-bloc-texte .suraccroche { margin-bottom: 0.5rem; }

.story-bloc-texte h2 { margin-bottom: 1.2rem; }

.story-bloc-texte p {
    color: var(--gris-fonce);
    font-size: 1.02rem;
    margin-bottom: 1rem;
}

.story-citation {
    background: var(--gradient-pale);
    border-radius: var(--rayon-xl);
    padding: 3.5rem 2rem;
    text-align: center;
    margin: 3rem 0;
    position: relative;
}

.story-citation::before {
    content: '"';
    font-family: var(--police-titre);
    font-style: italic;
    font-size: 8rem;
    color: var(--rose);
    line-height: 0.5;
    position: absolute;
    top: 30px; left: 50%;
    transform: translateX(-50%);
    opacity: 0.3;
}

.story-citation p {
    font-family: var(--police-titre);
    font-style: italic;
    font-size: 1.6rem;
    color: var(--noir);
    max-width: 700px;
    margin: 1rem auto 0.5rem;
    line-height: 1.4;
}

.story-citation .cursive {
    font-size: 1.4rem;
    color: var(--orange);
}

.story-signature {
    text-align: right;
    margin-top: 2rem;
}

.story-signature .cursive {
    font-size: 3rem;
    color: var(--rose);
    line-height: 1;
}

.story-signature span {
    display: block;
    color: var(--gris-moyen);
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

/* ============================================
   PAGE CONTACT
   ============================================ */
.contact-page {
    padding-top: 11rem;
    padding-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

.contact-page .blob-rose { width: 380px; height: 380px; top: 100px; left: -100px; }
.contact-page .blob-orange { width: 380px; height: 380px; bottom: 100px; right: -100px; }

.contact-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr;  /* le formulaire (1er) prend + de place que les coordonnées */
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
    align-items: start;
}

.contact-infos {
    background: var(--blanc);
    padding: 2.5rem;
    border-radius: var(--rayon);
    box-shadow: var(--ombre-douce);
    height: fit-content;
}

.contact-infos h3 {
    margin-bottom: 2rem;
    font-style: italic;
}

.contact-infos > .cursive {
    font-size: 1.5rem;
    color: var(--orange);
    margin-bottom: 1.5rem;
    display: block;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.6rem;
    padding-bottom: 1.6rem;
    border-bottom: 1px dashed var(--gris-clair);
}

.contact-info-item:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }

.contact-info-item .icone {
    width: 46px; height: 46px;
    min-width: 46px;
    background: var(--rose-pale);
    color: var(--rose);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.05rem;
}

.contact-info-item:nth-child(even) .icone {
    background: var(--orange-pale);
    color: var(--orange);
}

.contact-info-item strong {
    display: block;
    color: var(--noir);
    margin-bottom: 2px;
    font-weight: 600;
    font-size: 0.95rem;
}

.contact-info-item span {
    color: var(--gris-moyen);
    font-size: 0.9rem;
}

.formulaire {
    background: var(--blanc);
    padding: 3rem;
    border-radius: var(--rayon);
    box-shadow: var(--ombre-douce);
}

/* Intro sobre */
.formulaire-intro {
    margin-bottom: 2.5rem;
    text-align: left;
}

.formulaire-intro h3 {
    font-family: var(--police-titre);
    font-style: italic;
    font-weight: 500;
    color: var(--noir);
    font-size: 1.7rem;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.formulaire-intro p {
    color: var(--gris-moyen);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Champs : espacement plus aéré */
.formulaire .champs-row {
    margin-bottom: 1.6rem;
}

.formulaire > .champ {
    margin-bottom: 1.8rem;
}

/* Bouton CTA */
.formulaire-cta {
    width: 100%;
    justify-content: center;
    margin-top: 0.8rem;
    padding: 15px 32px !important;
}

/* Réassurance simple, une ligne */
.formulaire-reassurance {
    text-align: center;
    margin: 1.4rem 0 0 0;
    color: var(--gris-moyen);
    font-size: 0.85rem;
    font-style: italic;
}

/* Messages de retour formulaire (succès / erreur) */
.formulaire-message {
    margin-top: 1.6rem;
    padding: 1.4rem 1.6rem;
    border-radius: var(--rayon-m);
    text-align: center;
    animation: messageApparition 0.4s ease-out;
}

.formulaire-message-icone {
    display: inline-block;
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
}

.formulaire-message strong {
    display: block;
    font-family: var(--police-titre);
    font-size: 1.15rem;
    margin-bottom: 0.3rem;
}

.formulaire-message p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.formulaire-message a {
    color: inherit;
    font-weight: 600;
    text-decoration: underline;
}

.formulaire-succes {
    background: linear-gradient(135deg, #FFF0F8 0%, #FFFAF5 100%);
    border: 2px solid var(--rose);
    color: var(--rose);
}

.formulaire-erreur {
    background: #FFF5F0;
    border: 2px solid var(--orange);
    color: #C44820;
}

@keyframes messageApparition {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Focus états subtils */
.formulaire .champ input:focus,
.formulaire .champ textarea:focus {
    box-shadow: 0 0 0 4px rgba(233, 30, 140, 0.08);
}

.formulaire .champ label {
    transition: color 0.2s;
}

.formulaire .champ:focus-within label {
    color: var(--rose);
}

@media (max-width: 768px) {
    .formulaire { padding: 2rem 1.5rem; }
}

.champ { margin-bottom: 1.3rem; }

.champ label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gris-fonce);
    font-size: 0.9rem;
}

.champ input, .champ textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gris-clair);
    border-radius: var(--rayon-s);
    font-family: var(--police-texte);
    font-size: 0.98rem;
    background: var(--creme);
    color: var(--gris-fonce);
    transition: var(--transition);
}

.champ input:focus, .champ textarea:focus {
    outline: none;
    border-color: var(--rose);
    background: var(--blanc);
    box-shadow: 0 0 0 4px rgba(233, 30, 140, 0.08);
}

.champ textarea { resize: vertical; min-height: 130px; }

.champs-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* ============================================
   PAGES PRESTATIONS
   ============================================ */
.prestation-page {
    padding-top: 11rem;
    padding-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

.prestation-page .blob-rose { width: 350px; height: 350px; top: 50px; right: -100px; }
.prestation-page .blob-orange { width: 350px; height: 350px; bottom: 200px; left: -100px; }

.prestation-hero {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

.prestation-hero-image {
    width: 100%;
    aspect-ratio: 21/9;
    max-height: 350px;
    border-radius: var(--rayon-xl);
    background: var(--gradient-chaud);
    margin-bottom: 4rem;
    background-image: linear-gradient(135deg, rgba(233, 30, 140, 0.4), rgba(255, 120, 73, 0.4)),
                      url('https://images.unsplash.com/photo-1581291518857-4e27b48ff24e?w=1200&q=80');
    background-size: cover;
    background-position: center;
    box-shadow: 0 25px 60px rgba(233, 30, 140, 0.2);
    position: relative;
    z-index: 1;
}

.prestation-blocs {
    max-width: 920px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.prestation-bloc {
    background: var(--blanc);
    padding: 2.8rem;
    border-radius: var(--rayon);
    box-shadow: var(--ombre-douce);
    margin-bottom: 2rem;
    border-left: 5px solid var(--rose);
}

.prestation-bloc:nth-child(even) { border-left-color: var(--orange); }

.prestation-bloc h2 {
    color: var(--rose);
    margin-bottom: 1rem;
    font-style: italic;
}

.prestation-bloc:nth-child(even) h2 { color: var(--orange); }

.prestation-bloc ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.prestation-bloc ul li {
    padding-left: 2.2rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.prestation-bloc ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-size: 1.3rem;
    top: -2px;
}

.prestation-bloc:nth-child(even) ul li::before { color: var(--rose); }

/* ============================================
   PAGES LÉGALES
   ============================================ */
.page-legale {
    padding-top: 11rem;
    padding-bottom: 5rem;
    background: var(--creme);
    position: relative;
    overflow: hidden;
}

.page-legale .blob-rose { width: 300px; height: 300px; top: 100px; right: -80px; }

.page-legale .container { max-width: 900px; position: relative; z-index: 1; }

.page-legale h1 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.page-legale > .container > .cursive {
    text-align: center;
    display: block;
    color: var(--orange);
    margin-bottom: 3rem;
    font-size: 1.8rem;
}

.page-legale-contenu {
    background: var(--blanc);
    padding: 3rem;
    border-radius: var(--rayon);
    box-shadow: var(--ombre-douce);
}

.page-legale h2 {
    color: var(--rose);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 500;
}

.page-legale h2:first-of-type { margin-top: 0; }

.page-legale p, .page-legale ul {
    margin-bottom: 1rem;
    color: var(--gris-fonce);
}

.page-legale ul { padding-left: 2rem; }
.page-legale ul li { margin-bottom: 0.4rem; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--noir);
    color: var(--gris-clair);
    padding: 4rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: var(--gradient-chaud);
}

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

.footer-marque .footer-logo img {
    height: 70px;
    margin-bottom: 1rem;
    display: block;
}

.footer-marque p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    max-width: 320px;
}

.footer-colonne h4 {
    color: var(--blanc);
    margin-bottom: 1.4rem;
    font-size: 1.05rem;
    font-family: var(--police-titre);
    font-style: italic;
    font-weight: 500;
}

.footer-colonne ul { list-style: none; }
.footer-colonne ul li { margin-bottom: 0.7rem; }

.footer-colonne a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.93rem;
    transition: var(--transition);
}

.footer-colonne a:hover {
    color: var(--orange);
    padding-left: 6px;
}

.footer-reseaux {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.footer-reseaux a {
    width: 44px; height: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--blanc);
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
    font-size: 1.05rem;
}

.footer-reseaux a:hover {
    background: var(--gradient-chaud);
    transform: translateY(-3px) rotate(-5deg);
    padding-left: 0;
}

.footer-bas {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
}

.footer-bas .cursive {
    color: var(--orange);
    font-size: 1.2rem;
}

/* ============================================
   ANIMATIONS RÉVÉLATION
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .hero-grid,
    .presentation-grid,
    .story-hero-grid,
    .story-bloc,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story-bloc:nth-child(even) .story-bloc-image { order: 0; }

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

    .processus-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }

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

@media (max-width: 768px) {
    section { padding: 4rem 0; }

    .hero {
        padding: 8rem 0 4rem;
        min-height: auto;
        text-align: center;
    }

    .hero-ctas, .hero-stats { justify-content: center; }

    .hero-visuel { height: 360px; max-width: 360px; margin: 0 auto; }

    .nav {
        display: flex;
        justify-content: space-between;
        grid-template-columns: none;
    }

    /* ============================================
       BURGER : bouton flottant blanc au coin sup. droit
       ============================================ */
    .burger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        z-index: 1020;
        position: fixed;
        top: 1.1rem;
        right: 1.1rem;
        background: var(--blanc);
        padding: 14px 12px;
        border-radius: 14px;
        box-shadow: 0 6px 18px rgba(233, 30, 140, 0.14);
        transition: background 0.3s ease;
        width: 50px;
        height: 50px;
    }

    .burger span {
        width: 22px;
        height: 2.5px;
        background: var(--rose);
        border-radius: 4px;
        transition: transform 0.3s ease, opacity 0.2s ease;
    }

    .burger.actif span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .burger.actif span:nth-child(2) { opacity: 0; }
    .burger.actif span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .burger.actif { background: var(--rose-tres-pale); }
    .burger.actif span { background: var(--rose-fonce); }

    /* ============================================
       MENU MOBILE — drawer plein écran propre
       ============================================ */
    .menu {
        position: fixed;
        top: 0; right: -100%;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: var(--creme);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        transition: right 0.45s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: none;
        padding: 7rem 0 2rem 0;
        margin: 0;
        list-style: none;
        overflow-y: auto;
        z-index: 1010;
    }

    .menu.actif { right: 0; }

    /* Logo (image) en haut du drawer */
    .menu::before {
        content: '';
        position: absolute;
        top: 1.4rem;
        left: 1.4rem;
        width: 110px;
        height: 80px;
        background-image: url('assets/images/logo.png');
        background-size: contain;
        background-position: left center;
        background-repeat: no-repeat;
        z-index: 1;
    }

    /* Items de menu : grandes lignes propres */
    .menu li {
        list-style: none;
        margin: 0;
        padding: 0;
        width: 100%;
        text-align: left;
    }

    .menu > li > a {
        display: block;
        padding: 1.1rem 1.5rem;
        font-family: var(--police-titre);
        font-size: 1.35rem;
        font-weight: 500;
        color: var(--gris-fonce);
        border-bottom: 1px solid rgba(233, 30, 140, 0.08);
        letter-spacing: -0.2px;
        line-height: 1.3;
        text-decoration: none;
    }

    .menu a.actif {
        color: var(--rose) !important;
        font-style: italic;
    }

    .menu a::after { content: none !important; display: none !important; }

    /* Dropdown Prestations : titre avec chevron à droite */
    .menu-item-dropdown {
        text-align: left;
        width: 100%;
    }

    .menu-item-dropdown > a.menu-dropdown-toggle {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
    }

    .menu-item-dropdown .fa-chevron-down {
        font-size: 0.7rem;
        color: var(--rose);
        opacity: 0.6;
        transition: transform 0.3s ease;
        display: inline-block !important;
    }

    .menu-item-dropdown.actif .fa-chevron-down {
        transform: rotate(180deg);
        opacity: 1;
    }

    /* Sous-liste prestations : items compacts */
    .dropdown {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none !important;
        border: none !important;
        background: var(--rose-tres-pale) !important;
        padding: 0 !important;
        margin: 0 !important;
        min-width: 0 !important;
        width: 100% !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        border-radius: 0 !important;
        list-style: none;
    }

    .dropdown::before,
    .dropdown::after { display: none !important; }

    .menu-item-dropdown.actif .dropdown {
        max-height: 500px;
        border-bottom: 1px solid rgba(233, 30, 140, 0.08);
    }

    .dropdown li { margin: 0 !important; padding: 0 !important; }

    .dropdown a {
        display: flex !important;
        align-items: center;
        gap: 10px;
        padding: 0.95rem 1.5rem !important;
        font-family: var(--police-texte) !important;
        font-size: 0.92rem !important;
        font-weight: 500 !important;
        color: var(--gris-fonce) !important;
        background: transparent !important;
        border-radius: 0 !important;
        white-space: normal !important;
        line-height: 1.3 !important;
        text-align: left !important;
        justify-content: flex-start !important;
    }

    .dropdown a:hover,
    .dropdown a:active {
        background: rgba(233, 30, 140, 0.06) !important;
        color: var(--rose) !important;
    }

    .dropdown a .icone-drop {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        border-radius: 9px !important;
        font-size: 0.75rem !important;
        flex-shrink: 0;
    }

    /* ============================================
       FIX SAFARI iOS — backdrop-filter sur .header crée un containing block
       qui empêche position:fixed des enfants. On le désactive sur mobile.
       ============================================ */
    .header {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: rgba(255, 250, 245, 0.98) !important;
    }

    /* ============================================
       INSTA + CONTACT — intégrés au flux du menu (pas de panel séparé)
       ============================================ */
    .menu-droite {
        position: fixed;
        bottom: 0;
        top: auto;
        left: 0;
        right: -100%;
        width: 100%;
        padding: 1.4rem 1.5rem calc(1.4rem + env(safe-area-inset-bottom));
        background: var(--creme);  /* même couleur que le menu = pas de séparation visible */
        z-index: 1012;
        display: flex;
        flex-direction: row;        /* Insta + Contact côte à côte */
        justify-content: center;
        align-items: center;
        gap: 0.8rem;
        transition: right 0.45s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: none;
        border-top: none;
    }

    .menu.actif ~ .menu-droite { right: 0; }

    /* Instagram : rond pâle élégant */
    .menu-droite .menu-insta {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
        flex-shrink: 0;
        border-radius: 50%;
        background: var(--rose-tres-pale);
        border: 1.5px solid var(--rose-pale);
        color: var(--rose);
        transition: all 0.3s ease;
    }
    .menu-droite .menu-insta:hover,
    .menu-droite .menu-insta:active {
        background: var(--gradient-chaud);
        border-color: transparent;
        color: var(--blanc);
        transform: scale(1.08);
    }

    /* Bouton Contact : prend le reste de la largeur */
    .menu-droite .btn-principal {
        flex: 1;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.98rem;
        border-radius: 14px;
        margin: 0;
        box-shadow: 0 8px 22px rgba(233, 30, 140, 0.18);
    }

    .formulaire { padding: 2rem 1.5rem; }
    .champs-row { grid-template-columns: 1fr; }

    /* ============================================
       FOOTER MOBILE — version premium
       ============================================ */
    .footer {
        padding: 3.5rem 0 1.2rem;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem 1rem;
        margin-bottom: 2rem;
        text-align: left;
    }

    /* Bloc marque : prend toute la largeur, centré */
    .footer-marque {
        grid-column: 1 / -1;
        text-align: center;
        padding-bottom: 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-marque .footer-logo img {
        margin: 0 auto 1.2rem;
        height: 64px;
    }

    .footer-marque p {
        margin: 0 auto;
        max-width: 300px;
        font-size: 0.93rem;
        line-height: 1.6;
    }

    .footer-reseaux {
        justify-content: center;
        margin-top: 1.5rem;
    }

    .footer-reseaux a {
        width: 48px; height: 48px;
        font-size: 1.15rem;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.08);
    }

    /* Colonnes de liens : 3 cols compactes, headers nets */
    .footer-colonne {
        text-align: left;
    }

    .footer-colonne h4 {
        font-size: 0.85rem;
        margin-bottom: 0.9rem;
        letter-spacing: 0.5px;
        color: var(--blanc);
        font-style: normal;
        font-family: var(--police-texte);
        font-weight: 700;
        text-transform: uppercase;
    }

    .footer-colonne ul li {
        margin-bottom: 0.65rem;
    }

    .footer-colonne a {
        font-size: 0.83rem;
        color: rgba(255, 255, 255, 0.62);
        line-height: 1.45;
        display: inline-block;
        padding: 2px 0;
    }

    .footer-colonne a:hover {
        color: var(--orange);
        padding-left: 4px;
    }

    .footer-bas {
        padding-top: 1.5rem;
        font-size: 0.75rem;
        line-height: 1.55;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        margin-top: 0.5rem;
    }
    .footer-bas .cursive {
        font-size: 1rem;
    }

    .prestation-bloc { padding: 2rem 1.5rem; }
    .page-legale-contenu { padding: 2rem 1.5rem; }

    .cta-banniere { padding: 3rem 1.5rem; border-radius: var(--rayon); }

    .story-citation { padding: 3rem 1.5rem; }
    .story-citation p { font-size: 1.3rem; }

    /* ============================================
       FIXES MOBILE — Suppression des débordements
       ============================================ */

    /* Évite le scroll horizontal global causé par les éléments décoratifs */
    body { overflow-x: hidden; }

    /* HÉRO : on cache TOUT le visuel à droite sur mobile (cadre + cartes + stickers) */
    .hero-visuel {
        display: none !important;
    }

    /* Hero stats : 3 chiffres-clés bien centrés et empilés proprement */
    .hero-stats {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem 1rem;
        justify-items: center;
    }
    .hero-stats .stat:nth-child(3) {
        grid-column: 1 / -1;
    }

    /* PRESTATIONS : on garde 2 par 2 sur mobile (pas 1 colonne) */
    .prestations-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
    .carte-prestation-contenu { padding: 1rem 0.9rem 1.2rem; }
    .carte-prestation h3 { font-size: 1rem; }
    .carte-prestation p { font-size: 0.85rem; }

    /* PAGE À PROPOS : plus d'air et centrage sur mobile */
    .story-hero {
        padding: 7rem 0 3rem !important;
        text-align: center;
    }
    .story-hero-texte {
        text-align: center;
        padding: 0 0.5rem;
    }
    .story-hero-texte .cursive,
    .story-hero-texte .suraccroche {
        display: inline-block;
    }
    .story-portrait-wrapper {
        margin: 2rem auto 3.5rem;
        width: 94%;
        max-width: 440px;
        padding: 1.2rem;
    }
    /* Photo bien plus grande, recadrée sur le visage */
    .story-portrait-frame {
        aspect-ratio: 4 / 5;
        border-width: 3px;
        box-shadow: 10px 10px 0 var(--orange);
    }
    .story-portrait-photo {
        background-position: center 25% !important;
        background-size: cover !important;
    }
    /* On atténue les stickers qui sortent du cadre sur mobile */
    .story-portrait-wrapper .sticker-s1 { font-size: 2.2rem; top: -8px; left: -8px; }
    .story-portrait-wrapper .sticker-s2 { font-size: 1.6rem; }
    .story-portrait-wrapper .sticker-heart { font-size: 1.8rem; right: -10px; }
    .story-portrait-wrapper .sticker-butterfly { font-size: 1.8rem; }
    .story-portrait-wrapper .sticker-sparkle { font-size: 1.2rem; }
    /* Badge "Hey c'est moi !" SOUS la photo (plus en chevauchement) */
    .story-portrait-badge {
        position: static;
        transform: rotate(-3deg);
        margin: 1.2rem auto 0;
        padding: 0.5rem 1.3rem;
        display: inline-block;
    }
    .story-portrait-wrapper {
        text-align: center;
    }
    .story-portrait-badge .cursive { font-size: 1.2rem; }

    /* Blocs storytelling : centrer + aérer + recentrer les images */
    .story-blocs {
        padding: 4rem 0 !important;
    }
    .story-bloc {
        padding: 0 0.6rem;
        gap: 2rem !important;
        margin-bottom: 3.5rem;
    }
    .story-bloc:last-child { margin-bottom: 0; }
    .story-bloc-texte {
        text-align: center;
    }
    .story-bloc-texte > * { margin-left: auto !important; margin-right: auto !important; }
    .story-bloc-numero {
        margin: 0 auto 0.5rem !important;
    }
    .story-bloc-titre h2 {
        font-size: 1.7rem !important;
        line-height: 1.2;
    }
    .story-bloc-texte p {
        font-size: 0.98rem;
        line-height: 1.7;
        max-width: 400px;
    }
    /* Lettrine ("C" stylisée) plus discrète sur mobile */
    .story-bloc-texte p:first-of-type::first-letter,
    .story-lettrine {
        font-size: 3.5rem !important;
        margin-right: 0.4rem !important;
    }
    .story-bloc-image {
        margin: 1.5rem auto 0;
        max-width: 320px;
    }
    .story-citation {
        margin: 3rem 0.5rem !important;
        padding: 2.5rem 1.5rem !important;
    }
    .story-citation p { font-size: 1.15rem !important; }
}

@media (max-width: 480px) {
    .container { width: 92%; }

    .processus-grid { grid-template-columns: 1fr; }

    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { width: 100%; justify-content: center; }

    .btn { padding: 13px 28px; font-size: 0.88rem; }

    .suraccroche { font-size: 1.5rem; }
    .stat-chiffre { font-size: 1.8rem; }
}
