/* ============================================
   LOLA — Atelier de couleur · Y2K creative studio
   Hot pink, lavande electrique, blobs organiques, energie pop.
   ============================================ */

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

:root {
    /* Palette Y2K : hot pink + lavande + lime accents */
    --cream:        #fef8f0;
    --cream-deep:   #fbeee0;
    --white:        #ffffff;

    --pink:         #ff3d8b;
    --pink-deep:    #b51e62;   /* AA safe sur cream (5.99:1) ET pink-pale (5.47:1) */
    --pink-soft:    #ffd4e3;
    --pink-pale:    #ffe9f0;

    --lavender:     #b497ff;
    --lavender-deep:#614aa5;   /* AA safe sur cream (6.56:1), lavender-soft (5.24:1) et cream-deep (6.06:1) */
    --lavender-soft:#e4dbff;

    --lime:         #d4ff5e;
    --lime-deep:    #93b82e;

    --indigo:       #2a1d6b;
    --ink:          #1a1228;
    --ink-soft:     #3a2d4a;

    --text:         #1a1228;
    --text-soft:    #4a3e5e;
    --text-mute:    #7a6e88;
    --line:         rgba(26, 18, 40, 0.12);

    --font-display: 'Fraunces', Georgia, serif;
    --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-script:  'Caveat', cursive;

    --container: 1280px;
    --header-h: 76px;
    --radius: 24px;
    --radius-lg: 40px;
    --radius-blob: 60% 40% 50% 50% / 50% 50% 60% 40%;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.65;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    padding-top: var(--header-h);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--pink-deep); }

.skip-link {
    position: absolute;
    left: -9999px;
    background: var(--ink);
    color: var(--cream);
    padding: 12px 20px;
    z-index: 9999;
    font-weight: 600;
    border-radius: var(--radius);
}
.skip-link:focus { left: 10px; top: 10px; }
/* Focus indicator visible sur fond clair ET fond sombre : pink outline + halo */
*:focus-visible {
    outline: 3px solid var(--pink);
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.35);
    border-radius: 4px;
}

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

/* ============================================
   BLOBS FLOTTANTS — ambient background
   ============================================ */
.floating-blobs {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.blob {
    position: absolute;
    border-radius: var(--radius-blob);
    filter: blur(60px);
    opacity: 0.55;
    will-change: transform;
}
.blob-1 {
    width: 520px;
    height: 520px;
    background: var(--pink-soft);
    top: -200px;
    left: -150px;
    animation: blobFloat1 26s ease-in-out infinite;
}
.blob-2 {
    width: 460px;
    height: 460px;
    background: var(--lavender-soft);
    top: 30%;
    right: -150px;
    animation: blobFloat2 30s ease-in-out infinite;
}
.blob-3 {
    width: 380px;
    height: 380px;
    background: var(--pink-pale);
    bottom: -120px;
    left: 40%;
    animation: blobFloat3 34s ease-in-out infinite;
}
@keyframes blobFloat1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); border-radius: 60% 40% 50% 50% / 50% 50% 60% 40%; }
    50%      { transform: translate(80px, 60px) rotate(20deg); border-radius: 40% 60% 60% 40% / 60% 40% 50% 50%; }
}
@keyframes blobFloat2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); border-radius: 50% 50% 60% 40% / 60% 40% 50% 50%; }
    50%      { transform: translate(-60px, 80px) rotate(-15deg); border-radius: 60% 40% 40% 60% / 40% 60% 60% 40%; }
}
@keyframes blobFloat3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50%      { transform: translate(40px, -50px) rotate(10deg); }
}
@media (prefers-reduced-motion: reduce) {
    .blob { animation: none; }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.02;
    color: var(--ink);
    letter-spacing: -0.025em;
    font-variation-settings: 'opsz' 144, 'SOFT' 50;
}
h1 em, h2 em, h3 em {
    font-style: italic;
    font-weight: 500;
    color: var(--pink-deep);
}
p { line-height: 1.7; color: var(--text-soft); }

.script {
    font-family: var(--font-script);
    font-weight: 500;
    line-height: 1;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--lavender-deep);
    margin-bottom: 28px;
    padding: 8px 18px;
    background: var(--lavender-soft);
    border-radius: 100px;
}
.eyebrow::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lavender-deep);
}
.eyebrow-pink {
    color: var(--pink-deep);
    background: var(--pink-pale);
}
.eyebrow-pink::before { background: var(--pink-deep); }

.section-title {
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: 0.98;
    margin-bottom: 30px;
}
.section-title em { font-style: italic; color: var(--pink-deep); }

.section-lead {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 1.4vw, 1.25rem);
    line-height: 1.6;
    color: var(--text-soft);
    max-width: 580px;
    margin-bottom: 32px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-pink {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 32px;
    font-family: var(--font-body);
    font-size: 0.94rem;
    font-weight: 600;
    color: var(--white);
    background: var(--ink);
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(255, 61, 139, 0.25);
}
.btn-pink:hover {
    background: var(--pink);
    color: var(--ink);  /* texte sombre sur pink = 5.42:1 AA */
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(255, 61, 139, 0.4);
}
.btn-pink .arrow { transition: transform 0.3s ease; font-weight: 600; }
.btn-pink:hover .arrow { transform: translateX(6px); }
.btn-large { padding: 22px 42px; font-size: 1rem; }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 32px;
    font-family: var(--font-body);
    font-size: 0.94rem;
    font-weight: 600;
    color: var(--ink);
    background: var(--white);
    border: 2px solid var(--ink);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}
.btn-ghost:hover {
    background: var(--ink);
    color: var(--white);
    transform: translateY(-2px);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(254, 248, 240, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 14px 0;
    transition: padding 0.3s ease, background 0.3s ease;
}
.site-header.scrolled {
    background: rgba(254, 248, 240, 0.97);
    box-shadow: 0 4px 24px rgba(26, 18, 40, 0.06);
}
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
    .admin-bar .site-header { top: 46px; }
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
}
.brand-mark { display: flex; align-items: center; transition: transform 0.4s ease; }
.site-brand:hover .brand-mark { transform: rotate(-15deg); }
.brand-name {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--ink);
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}
.nav-list a {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--ink);
    font-weight: 500;
    padding: 8px 4px;
    position: relative;
    transition: color 0.3s ease;
}
.nav-list a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 2px;
    width: 0;
    height: 2px;
    background: var(--pink);
    transition: width 0.3s ease, left 0.3s ease;
    border-radius: 2px;
}
.nav-list a:hover { color: var(--pink-deep); }
.nav-list a:hover::after { width: 100%; left: 0; }
.nav-cta {
    background: var(--ink);
    color: var(--cream) !important;
    padding: 10px 22px !important;
    border-radius: 100px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--pink); color: var(--ink) !important; transform: translateY(-1px); }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.menu-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; }

/* ============================================
   HERO — title pop + organic blob
   ============================================ */
.hero-lola {
    position: relative;
    z-index: 1;
    padding: 80px 0 100px;
    min-height: calc(100vh - var(--header-h));
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-soft);
    margin-bottom: 32px;
    box-shadow: 0 4px 14px rgba(26, 18, 40, 0.05);
}
.hero-eyebrow-pill .dot {
    width: 10px;
    height: 10px;
    background: var(--pink);
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.3); opacity: 0.7; }
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(3.5rem, 8.5vw, 7.5rem);
    line-height: 0.92;
    color: var(--ink);
    letter-spacing: -0.04em;
    margin-bottom: 36px;
    font-variation-settings: 'opsz' 144, 'SOFT' 80;
}
.hero-title .accent-pink { color: var(--pink-deep); font-style: italic; font-weight: 500; }
.hero-title .accent-script {
    font-family: var(--font-script);
    color: var(--lavender-deep);
    font-size: 0.85em;
    font-weight: 600;
    transform: rotate(-3deg);
    display: inline-block;
}

.hero-tagline {
    font-size: 1.18rem;
    color: var(--text-soft);
    max-width: 480px;
    margin-bottom: 40px;
    line-height: 1.65;
}

.hero-cta-row {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-stat {
    margin-top: 60px;
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}
.hero-stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hero-stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1;
    font-style: italic;
}
.hero-stat-label {
    font-size: 0.78rem;
    color: var(--text-mute);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}
.hero-stat-divider {
    width: 1px;
    height: 30px;
    background: var(--line);
}

/* Visuel hero : blob organique avec photo */
.hero-visual {
    position: relative;
    aspect-ratio: 4/5;
    max-width: 480px;
    margin-left: auto;
}
.hero-photo-blob {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-blob);
    box-shadow:
        0 30px 70px rgba(255, 61, 139, 0.2),
        0 0 0 12px rgba(255, 255, 255, 0.6);
    animation: blobMorph 12s ease-in-out infinite;
}
.hero-photo-blob img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}
.hero-photo-blob:hover img { transform: scale(1.06); }

@keyframes blobMorph {
    0%, 100% { border-radius: 60% 40% 50% 50% / 50% 50% 60% 40%; }
    25%      { border-radius: 50% 50% 60% 40% / 40% 60% 50% 50%; }
    50%      { border-radius: 40% 60% 40% 60% / 60% 40% 60% 40%; }
    75%      { border-radius: 50% 50% 40% 60% / 50% 60% 40% 50%; }
}
@media (prefers-reduced-motion: reduce) {
    .hero-photo-blob { animation: none; border-radius: var(--radius-blob); }
    .hero-eyebrow-pill .dot { animation: none; }
    .hero-sticker,
    .hero-sticker-1,
    .hero-sticker-2 { animation: none; }
}

/* Etiquettes flottantes decoratives autour de l'image */
.hero-sticker {
    position: absolute;
    z-index: 3;
    padding: 12px 20px;
    background: var(--white);
    border-radius: 100px;
    font-family: var(--font-script);
    font-size: 1.4rem;
    color: var(--pink-deep);
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(26, 18, 40, 0.1);
    border: 2px solid var(--pink-pale);
}
.hero-sticker-1 {
    top: 8%;
    left: -10%;
    transform: rotate(-8deg);
    animation: stickerWiggle1 4s ease-in-out infinite;
}
.hero-sticker-2 {
    bottom: 18%;
    right: -8%;
    transform: rotate(6deg);
    background: var(--lime);
    color: var(--ink);
    border-color: var(--lime);
    animation: stickerWiggle2 5s ease-in-out infinite;
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
@keyframes stickerWiggle1 {
    0%, 100% { transform: rotate(-8deg) translateY(0); }
    50%      { transform: rotate(-4deg) translateY(-8px); }
}
@keyframes stickerWiggle2 {
    0%, 100% { transform: rotate(6deg) translateY(0); }
    50%      { transform: rotate(10deg) translateY(-6px); }
}

/* ============================================
   PALETTE — Color is the language
   ============================================ */
.palette-section {
    position: relative;
    z-index: 1;
    padding: 130px 0;
}
.palette-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
.palette-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.color-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
    box-shadow: 0 8px 30px rgba(26, 18, 40, 0.05);
    cursor: pointer;
}
.color-card:hover {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: 0 20px 50px rgba(26, 18, 40, 0.12);
}
.color-disc {
    width: 100%;
    aspect-ratio: 1.2/1;
    position: relative;
    overflow: hidden;
}
.color-disc::after {
    content: '';
    position: absolute;
    top: 18%;
    left: 14%;
    width: 32%;
    height: 22%;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    filter: blur(8px);
}
.color-info {
    padding: 26px 28px 30px;
}
.color-name {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 8px;
    font-style: italic;
}
.color-hex {
    font-family: var(--font-body);
    font-size: 0.76rem;
    color: var(--text-mute);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: block;
}
.color-desc {
    font-size: 0.92rem;
    color: var(--text-soft);
    line-height: 1.6;
}

/* ============================================
   PRESTATIONS
   ============================================ */
.prestations-section {
    position: relative;
    z-index: 1;
    background: var(--ink);
    color: var(--cream);
    padding: 140px 0;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.prestations-section h2,
.prestations-section h3 { color: var(--cream); }
.prestations-section p { color: rgba(254, 248, 240, 0.75); }

.prestations-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
.prestations-section .eyebrow {
    background: rgba(255, 255, 255, 0.08);
    color: var(--lime);
}
.prestations-section .eyebrow::before { background: var(--lime); }
.prestations-section .section-title em { color: var(--pink); }

.prestations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}
.prestation-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 38px 36px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}
.prestation-card::before {
    content: '';
    position: absolute;
    top: -50%; right: -30%;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: var(--pink);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.6s ease;
    filter: blur(40px);
}
.prestation-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-6px);
    border-color: var(--pink);
}
.prestation-card:hover::before { opacity: 0.4; }
.prestation-card > * { position: relative; z-index: 1; }

.prestation-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 18px;
}
.prestation-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.05;
    margin-bottom: 16px;
    color: var(--cream);
    font-style: italic;
}
.prestation-desc {
    font-size: 0.96rem;
    color: rgba(254, 248, 240, 0.75);
    margin-bottom: 22px;
}
.prestation-foot {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.prestation-duration {
    font-size: 0.78rem;
    color: rgba(254, 248, 240, 0.6);
    letter-spacing: 1px;
}
.prestation-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--cream);
}
.prestation-price strong {
    font-weight: 500;
    color: var(--pink);
}

/* ============================================
   EQUIPE
   ============================================ */
.equipe-section {
    position: relative;
    z-index: 1;
    padding: 140px 0;
    background: var(--cream-deep);
}
.equipe-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.equipe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}
.team-card {
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.team-card:hover { transform: translateY(-8px) rotate(-1deg); }
.team-photo-wrap {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    margin-bottom: 24px;
    box-shadow: 0 14px 40px rgba(26, 18, 40, 0.1);
}
.team-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}
.team-card:hover .team-photo-wrap img { transform: scale(1.05); }
.team-signature {
    position: absolute;
    bottom: 18px;
    left: 18px;
    padding: 6px 14px;
    background: var(--white);
    border-radius: 100px;
    font-family: var(--font-script);
    font-size: 1.1rem;
    color: var(--pink-deep);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(26, 18, 40, 0.08);
}
.team-name {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 4px;
    font-style: italic;
}
.team-role {
    display: block;
    font-size: 0.82rem;
    color: var(--lavender-deep);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
}
.team-bio {
    font-size: 0.92rem;
    color: var(--text-soft);
    max-width: 320px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================
   LOOKBOOK / AVANT-APRES
   ============================================ */
.lookbook-section {
    position: relative;
    z-index: 1;
    padding: 140px 0;
}
.lookbook-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.lookbook-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 18px;
}
.look-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0 8px 30px rgba(26, 18, 40, 0.08);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.look-card:hover { transform: scale(1.02); }
.look-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}
.look-card:hover img { transform: scale(1.08); }
.look-card-tall { grid-row: span 2; }
.look-card-wide { grid-column: span 2; }
.look-card-label {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 14px;
    background: var(--white);
    border-radius: 100px;
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ============================================
   RDV
   ============================================ */
.rdv-section {
    position: relative;
    z-index: 1;
    padding: 140px 0;
    background: var(--cream);
}
.rdv-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}
.rdv-text { padding-top: 20px; }
.rdv-info {
    list-style: none;
    margin-top: 44px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.rdv-info li {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 18px 22px;
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(26, 18, 40, 0.04);
}
.rdv-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--lavender-deep);
}
.rdv-value {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--ink);
    font-weight: 500;
}

.rdv-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 48px 48px;
    box-shadow: 0 14px 50px rgba(26, 18, 40, 0.08);
}
.form-row { margin-bottom: 22px; }
.form-row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 22px;
}
.form-row label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
}
.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 0.96rem;
    color: var(--ink);
    background: var(--cream-deep);
    border: 2px solid transparent;
    border-radius: 14px;
    transition: all 0.3s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    border-color: var(--pink);
    background: var(--white);
}
.form-row input:focus-visible,
.form-row select:focus-visible,
.form-row textarea:focus-visible {
    outline: 3px solid var(--pink);
    outline-offset: 2px;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.4);
}
.form-row textarea { resize: vertical; min-height: 90px; line-height: 1.6; }
.btn-pink.btn-full { width: 100%; padding: 20px; justify-content: center; }
.form-note {
    margin-top: 18px;
    font-size: 0.82rem;
    color: var(--text-mute);
    text-align: center;
    font-style: italic;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    position: relative;
    z-index: 1;
    background: var(--ink);
    color: var(--cream);
    padding: 90px 0 30px;
}
.footer-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding-bottom: 70px;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}
.footer-shout {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 500;
    color: var(--cream);
    line-height: 1.05;
    letter-spacing: -0.02em;
}
.footer-shout em { color: var(--pink); font-style: italic; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 70px;
}
.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--cream);
    margin: 14px 0 14px;
    letter-spacing: 1px;
    font-weight: 600;
}
.footer-brand p { color: rgba(254, 248, 240, 0.65); max-width: 320px; }
.footer-col h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--lime);
    margin-bottom: 22px;
    font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-col li {
    color: rgba(254, 248, 240, 0.7);
    font-size: 0.95rem;
}
.footer-col a:hover { color: var(--pink); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.84rem;
    color: rgba(254, 248, 240, 0.5);
}
.footer-tag {
    color: var(--pink);
    font-weight: 600;
    letter-spacing: 1px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.anim-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.9s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.anim-fade-up.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    .anim-fade-up { transition: none; opacity: 1; transform: none; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    .hero-grid { grid-template-columns: 1fr; gap: 60px; }
    .hero-visual { max-width: 400px; margin: 0 auto; }
    .palette-grid { grid-template-columns: repeat(2, 1fr); }
    .equipe-grid { grid-template-columns: repeat(2, 1fr); }
    .prestations-grid { grid-template-columns: 1fr; }
    .lookbook-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
    .look-card-wide { grid-column: span 2; }
    .rdv-grid { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .main-nav {
        position: fixed;
        top: 0; right: -100%;
        width: 85%;
        max-width: 360px;
        height: 100vh;
        background: var(--white);
        padding: 100px 30px 30px;
        transition: right 0.4s ease;
        z-index: 99;
        box-shadow: -20px 0 60px rgba(26, 18, 40, 0.15);
    }
    .main-nav.open { right: 0; }
    .nav-list { flex-direction: column; gap: 24px; align-items: flex-start; }
    .nav-list a { font-size: 1.05rem; }

    .hero-lola { min-height: auto; padding: 50px 0 70px; }
    .hero-title { font-size: 3.4rem; }
    .hero-cta-row { flex-direction: column; align-items: stretch; }
    .btn-pink, .btn-ghost { justify-content: center; }
    .hero-stat { gap: 24px; flex-wrap: wrap; }
    .hero-stat-divider { display: none; }
    .hero-sticker { display: none; }

    .palette-section, .prestations-section, .equipe-section, .lookbook-section, .rdv-section { padding: 80px 0; }

    .palette-grid { grid-template-columns: 1fr; }
    .equipe-grid { grid-template-columns: 1fr; }
    .lookbook-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
    .look-card-wide { grid-column: 1; }
    .footer-hero { flex-direction: column; align-items: flex-start; text-align: left; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .form-row-split { grid-template-columns: 1fr; }
    .rdv-form { padding: 32px 24px; }
}
