:root {
    --bg-deep: #070b18;
    --bg-alt: #0c1326;
    --text-primary: #f5f5f2;
    --text-muted: rgba(245, 245, 242, 0.68);
    --accent-start: #f4d7c9;
    --accent-mid: #e8a787;
    --accent-end: #b47a56;
    --accent-glow: rgba(244, 215, 201, 0.2);
    --glass-bg: rgba(12, 19, 38, 0.64);
    --glass-stroke: rgba(244, 215, 201, 0.18);
    --border-soft: rgba(244, 215, 201, 0.12);
    --shadow-soft: 0 15px 45px rgba(3, 6, 14, 0.65);
    --premium-ease: cubic-bezier(0.23, 1, 0.32, 1);
    --bounce-ease: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --max-width: 1180px;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--bg-deep);
}

body {
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    background: radial-gradient(circle at 20% 20%, rgba(244, 215, 201, 0.08), transparent 55%),
                radial-gradient(circle at 80% 10%, rgba(228, 167, 135, 0.05), transparent 50%),
                linear-gradient(140deg, var(--bg-deep), var(--bg-alt));
    overflow-x: hidden;
}

img, svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    letter-spacing: 0.015em;
    margin: 0;
}

p {
    margin: 0;
    line-height: 1.65;
}

.page {
    position: relative;
    min-height: 100vh;
}

.container {
    width: min(92vw, var(--max-width));
    margin: 0 auto;
}

.accent-text {
    background: linear-gradient(120deg, var(--accent-start), var(--accent-mid), var(--accent-end));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.text-white {
    color: var(--text-primary);
}

/* ============================================
   MICRO-ANIMATIONS WOW 
   ============================================ */

/* Fade in up pour hero */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s var(--premium-ease) forwards;
}

/* Glow pulse pour CTA */
@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(244, 215, 201, 0.3), 
                    0 0 40px rgba(244, 215, 201, 0.2),
                    0 15px 45px rgba(180, 122, 86, 0.25);
    }
    50% {
        box-shadow: 0 0 30px rgba(244, 215, 201, 0.5), 
                    0 0 60px rgba(244, 215, 201, 0.3),
                    0 20px 50px rgba(180, 122, 86, 0.35);
    }
}

/* Scroll indicator bounce */
@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

/* Shimmer effect */
@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Float animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(2deg);
    }
    66% {
        transform: translateY(-5px) rotate(-2deg);
    }
}

/* Reveal text */
@keyframes revealText {
    from {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.reveal-text {
    opacity: 0;
    transition: all 1s var(--premium-ease);
}

.reveal-text.is-visible {
    animation: revealText 1.2s var(--premium-ease) forwards;
}

.reveal-fade {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s var(--premium-ease);
}

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

/* ============================================
   BOUTONS PREMIUM AMÉLIORÉS
   ============================================ */

.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 999px;
    border: 1px solid rgba(244, 215, 201, 0.4);
    background: linear-gradient(135deg, rgba(244, 215, 201, 0.18), rgba(12, 19, 38, 0.4));
    color: var(--text-primary);
    letter-spacing: 0.05em;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 350ms var(--premium-ease);
}

/* Effet shimmer au hover */
.btn-premium::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(244, 215, 201, 0.3) 50%,
        transparent 100%
    );
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 400ms;
}

.btn-premium:hover::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out infinite;
}

/* Glow effect */
.btn-premium.btn-glow {
    animation: glowPulse 3s ease-in-out infinite;
}

.btn-premium:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(244, 215, 201, 0.6);
}

.btn-premium:active {
    transform: translateY(1px) scale(0.98);
}

.btn-premium svg {
    transition: transform 300ms var(--bounce-ease);
}

.btn-premium:hover svg {
    transform: translateX(4px);
}

/* ============================================
   HERO SECTION OPTIMISÉ MOBILE (70vh)
   ============================================ */

.hero {
    position: relative;
    min-height: 70vh; /* 🔥 RÉDUIT DE 100vh À 70vh */
    padding: 4rem 0 3rem;
    display: grid;
    place-items: center;
    overflow: hidden;
}

/* Sur desktop, on peut remonter un peu */
@media (min-width: 768px) {
    .hero {
        min-height: 85vh;
        padding: 6rem 0 4rem;
    }
}

.hero::before {
    content: "";
    position: absolute;
    inset: -30%;
    background: radial-gradient(circle at center, rgba(244, 215, 201, 0.14), transparent 60%);
    filter: blur(120px);
    opacity: 0.5; /* 🔥 RÉDUIT pour moins de distraction */
}

.hero-content {
    position: relative;
    width: min(92vw, 540px);
    text-align: center;
    z-index: 5;
}

.hero-kicker {
    font-size: 0.85rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: rgba(245, 245, 242, 0.6);
}

.hero-title {
    font-size: clamp(2.2rem, 6vw, 4.2rem); /* 🔥 LÉGÈREMENT RÉDUIT sur mobile */
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    margin-bottom: 3rem;
}

/* Scroll indicator animé */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 245, 242, 0.5);
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator svg {
    opacity: 0.6;
}

/* Hero stage (background) */
.hero-stage {
    position: absolute;
    inset: 0;
    perspective: 1500px;
    z-index: 1;
    opacity: 0.3; /* 🔥 PLUS SUBTIL - arrière-plan discret */
}

.hero-scene {
    position: absolute;
    top: 52%;
    left: 50%;
    width: clamp(280px, 60vw, 520px); /* 🔥 LÉGÈREMENT PLUS PETIT */
    aspect-ratio: 3 / 4;
    transform-style: preserve-3d;
    transform-origin: center;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 35px 90px rgba(3, 6, 14, 0.55);
    transition: filter 450ms var(--premium-ease), transform 600ms var(--premium-ease);
}

/* Animation float subtile */
.hero-scene {
    animation: float 8s ease-in-out infinite;
}

.hero-scene img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateZ(0);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 11, 24, 0.1), rgba(7, 11, 24, 0.7));
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 2.5rem;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: 0.6; /* 🔥 PLUS SUBTIL */
}

.hero-layers {
    position: absolute;
    inset: -20vh;
    pointer-events: none;
    z-index: 0;
}

.hero-layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15; /* 🔥 RÉDUIT */
}

.hero-layer.layer-gradient {
    background: radial-gradient(circle at 70% 30%, rgba(244, 215, 201, 0.2), transparent 60%);
}

.hero-layer.layer-grain {
    background-image: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.08;
    mix-blend-mode: screen;
}

.hero-layer.layer-lines {
    background-image: radial-gradient(circle at center, rgba(244, 215, 201, 0.08) 0%, rgba(244, 215, 201, 0.02) 38%, transparent 65%);
}

.floating-petal {
    position: absolute;
    width: clamp(24px, 7vw, 48px);
    height: clamp(16px, 4.5vw, 30px);
    background: linear-gradient(135deg, rgba(244, 215, 201, 0.7), rgba(180, 122, 86, 0.25));
    border-radius: 48% 52% 70% 30% / 52% 48% 52% 48%;
    filter: blur(0.2px);
    opacity: 0.4; /* 🔥 PLUS SUBTIL */
    transform-style: preserve-3d;
}

.glow-orb {
    position: absolute;
    width: clamp(100px, 20vw, 180px);
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(244, 215, 201, 0.25), transparent 60%);
    filter: blur(20px);
    animation: orbPulse 8s ease-in-out infinite;
    pointer-events: none;
    opacity: 0.5; /* 🔥 PLUS SUBTIL */
}

.glow-orb:nth-child(1) {
    top: 12%;
    left: 16%;
}

.glow-orb:nth-child(2) {
    bottom: 10%;
    right: 22%;
    animation-delay: 2.6s;
}

@keyframes orbPulse {
    0%, 100% { transform: scale(0.9) translateZ(0); opacity: 0.4; }
    50% { transform: scale(1.1) translateZ(0); opacity: 0.6; }
}

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

section {
    position: relative;
    padding: clamp(3.5rem, 8vw, 6rem) 0;
    overflow: hidden;
}

section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 11, 24, 0.08), transparent 55%, rgba(7, 11, 24, 0.08));
    pointer-events: none;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
}

.section-header h2 {
    font-size: clamp(2rem, 4.2vw, 3.2rem);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
}

/* ============================================
   MANIFESTO
   ============================================ */

.manifesto {
    text-align: center;
}

.manifesto blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    line-height: 1.2;
    letter-spacing: 0.015em;
    color: var(--text-primary);
    margin: 0 auto;
    max-width: 780px;
}

.manifesto p {
    margin-top: 2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-inline: auto;
}

/* ============================================
   EXPERIENCE SIGNATURE
   ============================================ */

.experience {
    display: grid;
    gap: clamp(2.4rem, 6vw, 3.5rem);
}

.experience-timeline {
    display: grid;
    gap: 1.5rem;
}

.experience-step {
    background: var(--glass-bg);
    border: 1px solid var(--glass-stroke);
    border-radius: 28px;
    padding: 2rem 1.8rem;
    box-shadow: var(--shadow-soft);
    transform: translateY(60px);
    opacity: 0;
    transition: transform 650ms var(--premium-ease), 
                opacity 650ms var(--premium-ease),
                border-color 300ms var(--premium-ease);
}

/* 🔥 MICRO-ANIMATION: hover effect */
.experience-step:hover {
    border-color: rgba(244, 215, 201, 0.35);
    transform: translateY(-4px);
}

.experience-step.is-visible {
    transform: translateY(0);
    opacity: 1;
}

.experience-step h3 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
}

.experience-step p {
    color: var(--text-muted);
}

.experience-step .step-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(244, 215, 201, 0.75);
    margin-bottom: 1.2rem;
}

/* ============================================
   SERVICES
   ============================================ */

.services-grid {
    display: grid;
    gap: 1.5rem;
}

.service-card {
    position: relative;
    border-radius: 26px;
    padding: 2rem 1.8rem;
    background: linear-gradient(145deg, rgba(12, 19, 38, 0.78), rgba(7, 11, 24, 0.82));
    border: 1px solid var(--border-soft);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-soft);
    transition: transform 400ms var(--premium-ease), 
                border-color 400ms var(--premium-ease), 
                box-shadow 400ms var(--premium-ease);
    transform: translateY(20px);
    opacity: 0;
}

/* 🔥 MICRO-ANIMATION: hover effect magnétique */
.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(244, 215, 201, 0.35);
    box-shadow: 0 20px 60px rgba(3, 6, 14, 0.75),
                0 0 0 1px rgba(244, 215, 201, 0.2);
}

.service-card.is-visible {
    transform: translateY(0);
    opacity: 1;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    border: 1px solid rgba(244, 215, 201, 0.1);
    pointer-events: none;
    transition: border-color 300ms;
}

.service-card:hover::before {
    border-color: rgba(244, 215, 201, 0.25);
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(244, 215, 201, 0.32), rgba(244, 215, 201, 0.05));
    display: grid;
    place-items: center;
    margin-bottom: 1.4rem;
    font-size: 1.5rem;
    transition: transform 300ms var(--bounce-ease);
}

/* 🔥 MICRO-ANIMATION: icon bounce */
.service-card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.service-card span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(244, 215, 201, 0.6);
}

/* ============================================
   MOODBOARD CAROUSEL 3D LED
   ============================================ */

.moodboard {
    perspective: 1200px;
    perspective-origin: center center;
    overflow: hidden;
}

.moodboard-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 0;
}

.moodboard-carousel {
    position: relative;
    width: 100%;
    height: 500px;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.moodboard-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    border-radius: 20px;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: grab;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(244, 215, 201, 0.2);
    background: rgba(7, 11, 24, 0.8);
}

.moodboard-item:active {
    cursor: grabbing;
}

.moodboard-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

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

/* Effet LED/Glow dynamique */
.led-glow {
    position: absolute;
    inset: -30px;
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    background: 
        radial-gradient(circle at 30% 30%, rgba(244, 215, 201, 0.4), transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(232, 167, 135, 0.3), transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(180, 122, 86, 0.3), transparent 50%);
    filter: blur(25px);
    animation: ledPulse 3s ease-in-out infinite;
    transition: opacity 0.6s ease;
}

/* Animation pulsation LED */
@keyframes ledPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* LED intense sur carte active */
.moodboard-item.active .led-glow {
    opacity: 1;
    animation-duration: 2s;
}

/* Positionnement 3D des cartes */
.moodboard-item:nth-child(1) {
    transform: rotateY(0deg) translateZ(400px);
}
.moodboard-item:nth-child(2) {
    transform: rotateY(120deg) translateZ(400px);
}
.moodboard-item:nth-child(3) {
    transform: rotateY(240deg) translateZ(400px);
}

/* Opacité réduite pour cartes non actives */
.moodboard-item:not(.active) {
    opacity: 0.5;
}

.moodboard-item.active {
    opacity: 1;
    z-index: 10;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(244, 215, 201, 0.6),
        0 0 80px rgba(232, 167, 135, 0.4),
        0 0 120px rgba(180, 122, 86, 0.2);
    border: 2px solid rgba(244, 215, 201, 0.6);
}

/* Contrôles navigation */
.moodboard-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(244, 215, 201, 0.3);
    background: rgba(7, 11, 24, 0.8);
    backdrop-filter: blur(10px);
    color: var(--text-accent);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 100;
}

.moodboard-control:hover {
    background: rgba(244, 215, 201, 0.15);
    border-color: var(--text-accent);
    transform: translateY(-50%) scale(1.1);
}

.moodboard-prev {
    left: -70px;
}

.moodboard-next {
    right: -70px;
}

/* Indicateurs */
.moodboard-indicators {
    display: none; /* Cache les indicateurs */
    justify-content: center;
    gap: 12px;
    margin-top: 3rem;
}

.indicator {
    width: 40px;
    height: 6px;
    border-radius: 3px;
    border: none;
    background: rgba(244, 215, 201, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.indicator::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--text-accent), rgba(232, 167, 135, 0.8));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.indicator.active::before {
    transform: scaleX(1);
}

.indicator:hover {
    background: rgba(244, 215, 201, 0.3);
}

.moodboard-caption {
    margin-top: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* RESPONSIVE MOBILE */
@media (max-width: 768px) {
    .moodboard-carousel {
        height: 400px;
    }
    
    .moodboard-item {
        width: 300px;
        height: 300px;
        margin-left: -150px;
        margin-top: -150px;
    }
    
    .moodboard-item:nth-child(1) {
        transform: rotateY(0deg) translateZ(280px);
    }
    .moodboard-item:nth-child(2) {
        transform: rotateY(120deg) translateZ(280px);
    }
    .moodboard-item:nth-child(3) {
        transform: rotateY(240deg) translateZ(280px);
    }
    
    .moodboard-control {
        width: 40px;
        height: 40px;
    }
    
    .moodboard-prev {
        left: 10px;
    }
    
    .moodboard-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .moodboard-carousel {
        height: 350px;
    }
    
    .moodboard-item {
        width: 250px;
        height: 250px;
        margin-left: -125px;
        margin-top: -125px;
    }
    
    .moodboard-item:nth-child(1) {
        transform: rotateY(0deg) translateZ(220px);
    }
    .moodboard-item:nth-child(2) {
        transform: rotateY(120deg) translateZ(220px);
    }
    .moodboard-item:nth-child(3) {
        transform: rotateY(240deg) translateZ(220px);
    }
}

/* ============================================
   CONTACT
   ============================================ */

.contact {
    display: grid;
    gap: 2.4rem;
}

form {
    display: grid;
    gap: 1.4rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-stroke);
    border-radius: 26px;
    padding: clamp(2.2rem, 5vw, 3rem);
    box-shadow: var(--shadow-soft);
}

.form-group {
    display: grid;
    gap: 0.6rem;
}

label {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(244, 215, 201, 0.58);
}

input, textarea, select {
    border: none;
    border-radius: 18px;
    padding: 0.95rem 1.2rem;
    font: inherit;
    background: rgba(7, 11, 24, 0.65);
    color: var(--text-primary);
    transition: box-shadow 300ms var(--premium-ease), 
                transform 300ms var(--premium-ease), 
                border 300ms var(--premium-ease);
    border: 1px solid transparent;
}

/* 🔥 MICRO-ANIMATION: focus effect */
input:focus, textarea:focus, select:focus {
    outline: none;
    border: 1px solid rgba(244, 215, 201, 0.45);
    box-shadow: 0 0 0 6px rgba(244, 215, 201, 0.18);
    transform: translateY(-2px);
}

textarea {
    min-height: 160px;
    resize: vertical;
}

.form-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-status {
    font-size: 0.9rem;
    min-height: 1.4rem;
}

.form-status.success {
    color: rgba(244, 215, 201, 0.9);
}

.form-status.error {
    color: #ff9aa8;
}

.atelier-cta {
    text-align: center;
    padding: clamp(2.5rem, 6vw, 3.5rem);
    background: linear-gradient(135deg, rgba(244, 215, 201, 0.14), rgba(7, 11, 24, 0.7));
    border-radius: 26px;
    border: 1px solid rgba(244, 215, 201, 0.18);
    box-shadow: var(--shadow-soft);
    transition: border-color 300ms, box-shadow 300ms;
}

.atelier-cta:hover {
    border-color: rgba(244, 215, 201, 0.3);
    box-shadow: 0 20px 60px rgba(3, 6, 14, 0.75);
}

.atelier-cta h3 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    margin-bottom: 1rem;
}

.atelier-cta p {
    color: var(--text-muted);
    margin-bottom: 1.8rem;
}

.floating-calendar {
    display: inline-flex;
    padding: 0.4rem 0.9rem;
    border-radius: 12px;
    border: 1px solid rgba(244, 215, 201, 0.32);
    background: rgba(7, 11, 24, 0.65);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 350ms var(--premium-ease), transform 350ms var(--premium-ease);
}

.atelier-cta:hover .floating-calendar,
.atelier-cta:focus-within .floating-calendar {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RIPPLE SCROLL ACCENT
   ============================================ */

.scroll-ripple {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 50% 0%, rgba(244, 215, 201, 0.18), transparent 60%);
    opacity: 0;
    transition: opacity 400ms var(--premium-ease);
    z-index: -1;
}

/* ============================================
   RESPONSIVE LAYOUT
   ============================================ */

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .experience {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: center;
    }
}

@media (min-width: 960px) {
    .services-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* ============================================
   VISIBILITY CLASSES
   ============================================ */

.stagger-parent > * {
    transition-delay: calc(var(--stagger-index, 0) * 0.08s);
}

.is-visible {
    opacity: 1 !important;
}

/* ============================================
   LUX TOUCH CURSOR
   ============================================ */

.lux-touch {
    position: fixed;
    width: 180px;
    aspect-ratio: 1;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(244, 215, 201, 0.4), rgba(244, 215, 201, 0));
    mix-blend-mode: screen;
    opacity: 0;
    transition: opacity 280ms ease;
    transform: translate(-50%, -50%);
    z-index: 20;
}

/* Masquer le badge reCAPTCHA */
.grecaptcha-badge {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* ============================================
   BOUTON WHATSAPP FLOTTANT
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 4px 12px rgba(37, 211, 102, 0.4),
        0 8px 24px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    overflow: hidden;
}

.whatsapp-float:hover {
    width: 160px;
    border-radius: 30px;
    background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
    box-shadow: 
        0 8px 24px rgba(37, 211, 102, 0.6),
        0 12px 36px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover svg {
    transform: scale(1.1);
}

.whatsapp-text {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    margin-left: 8px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
    transform: translateX(0);
}

/* Animation de pulsation */
@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 
            0 4px 12px rgba(37, 211, 102, 0.4),
            0 8px 24px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 
            0 4px 12px rgba(37, 211, 102, 0.6),
            0 8px 24px rgba(0, 0, 0, 0.2),
            0 0 0 8px rgba(37, 211, 102, 0.2);
    }
}

.whatsapp-float {
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    animation: none;
}

/* Responsive mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    
    .whatsapp-float:hover {
        width: 56px;
        border-radius: 50%;
    }
    
    .whatsapp-text {
        display: none; /* Cache le texte sur mobile pour garder le bouton rond */
    }
}
