/* ============================================
   SALON EDEN — editorial & cinematic
   ============================================ */

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

:root {
    --rose:        #f5d7d0;
    --rose-soft:   #fce8e3;
    --rose-deep:   #e5b8ae;
    --ivory:       #fdf9f5;
    --ivory-warm:  #f9f2ea;
    --gold-rose:   #c8a882;
    --gold-deep:   #7d6044;
    --bordeaux:    #6b2e3a;
    --bordeaux-dark: #4a1f28;
    --text:        #2b1a1e;
    --text-soft:   #5a4248;
    --text-muted:  #6e555c;
    --white:       #ffffff;
    --border:      rgba(107, 46, 58, 0.12);

    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --container: 1320px;
    --header-h: 88px;
    --radius: 4px;
    --radius-lg: 14px;
    --shadow-sm: 0 4px 18px rgba(107, 46, 58, 0.06);
    --shadow-md: 0 14px 40px rgba(107, 46, 58, 0.1);
    --shadow-lg: 0 30px 80px rgba(107, 46, 58, 0.18);
}

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

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--ivory);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

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

.skip-link { position: absolute; left: -9999px; background: var(--bordeaux); color: var(--white); padding: 12px 20px; z-index: 9999; }
.skip-link:focus { left: 10px; top: 10px; }
*:focus-visible { outline: 2px solid var(--gold-rose); outline-offset: 3px; }

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

/* ============================================
   CURSEUR CUSTOM
   ============================================ */
.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    pointer-events: none;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}
.cursor-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease;
}
.cursor-ring {
    position: absolute;
    width: 36px;
    height: 36px;
    border: 1px solid var(--white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease, width 0.25s ease, height 0.25s ease, border-color 0.25s ease;
}
.cursor-follower.hover .cursor-ring {
    width: 64px;
    height: 64px;
    border-color: var(--gold-rose);
}
.cursor-follower.hover .cursor-dot {
    transform: translate(-50%, -50%) scale(0);
}
@media (hover: none), (max-width: 900px) {
    .cursor-follower { display: none; }
    html, body, * { cursor: auto; }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.04;
    color: var(--bordeaux);
    letter-spacing: -0.015em;
}
h1 em, h2 em, h3 em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold-deep);
}
p { line-height: 1.75; color: var(--text-soft); }

.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 20px;
    padding-left: 32px;
    position: relative;
}
.section-label::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 22px; height: 1px;
    background: var(--gold-rose);
}

/* ============================================
   BOUTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    line-height: 1;
    border-radius: 40px;
}
.btn-large { padding: 20px 44px; font-size: 0.85rem; }
.btn-primary {
    background: var(--bordeaux);
    color: var(--ivory);
    box-shadow: 0 6px 22px rgba(107, 46, 58, 0.25);
}
.btn-primary:hover { background: var(--bordeaux-dark); color: var(--ivory); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(107, 46, 58, 0.35); }
.btn-ghost { background: transparent; color: var(--bordeaux); border: 1px solid var(--bordeaux); }
.btn-ghost:hover { background: var(--bordeaux); color: var(--ivory); }
.btn-full { width: 100%; padding: 18px; }

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--ivory);
    font-size: 0.82rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 4px 0;
    border-bottom: 1px solid rgba(253, 249, 245, 0.4);
    transition: color 0.3s ease, border-color 0.3s ease;
}
.btn-explore .arrow { transition: transform 0.3s ease; }
.btn-explore:hover { color: var(--rose); border-color: var(--rose); }
.btn-explore:hover .arrow { transform: translateX(6px); }

/* ============================================
   TOP BAR + HEADER
   ============================================ */
.top-bar {
    background: var(--bordeaux);
    color: var(--ivory);
    font-size: 0.78rem;
    padding: 10px 0;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 101;
}
.top-bar-inner { display: flex; justify-content: center; align-items: center; gap: 14px; flex-wrap: wrap; }
.top-bar-item { color: var(--ivory); transition: color 0.3s ease; }
.top-bar-item:hover { color: var(--rose); }
.top-bar-sep { opacity: 0.5; }

.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    height: var(--header-h);
    z-index: 100;
    background: rgba(253, 249, 245, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }

.site-logo .site-title-link { display: flex; flex-direction: column; color: var(--bordeaux); line-height: 1; }
.logo-main { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 500; font-style: italic; letter-spacing: 1px; }
.logo-tagline { font-size: 0.68rem; color: var(--gold-deep); letter-spacing: 3.5px; text-transform: uppercase; margin-top: 2px; font-weight: 500; }

.nav-list { list-style: none; display: flex; gap: 32px; align-items: center; }
.nav-list a { font-size: 0.8rem; font-weight: 500; color: var(--text); padding: 6px 0; position: relative; letter-spacing: 1.5px; text-transform: uppercase; }
.nav-list a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: var(--gold-deep); transition: width 0.3s ease; }
.nav-list a:hover { color: var(--gold-deep); }
.nav-list a:hover::after { width: 100%; }
.nav-cta { background: var(--bordeaux) !important; color: var(--ivory) !important; padding: 10px 22px !important; border-radius: 40px; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--bordeaux-dark) !important; }

.menu-toggle { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { width: 26px; height: 1px; background: var(--bordeaux); transition: all 0.3s ease; }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO SPLIT
   ============================================ */
.hero-split {
    position: relative;
    min-height: calc(100vh - var(--header-h) - 40px);
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 90%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 80px 0;
}

.hero-split-left {
    position: relative;
    z-index: 2;
}

.hero-kicker-line {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}
.kicker-bar {
    width: 60px;
    height: 1px;
    background: var(--gold-rose);
}
.kicker-text {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold-deep);
}

.hero-mega {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: -0.03em;
    color: var(--bordeaux);
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}
.hero-mega span {
    font-size: clamp(3.5rem, 9vw, 7.5rem);
    display: block;
}
.hero-mega .line-2 { margin-left: clamp(20px, 5vw, 70px); }
.hero-mega .line-3 { margin-left: clamp(40px, 9vw, 130px); }
.hero-mega em { font-style: italic; color: var(--gold-deep); font-weight: 400; }

.hero-lead-editorial {
    font-size: 1.08rem;
    color: var(--text-soft);
    max-width: 500px;
    line-height: 1.65;
    margin-bottom: 44px;
    font-weight: 400;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-explore-dark {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--bordeaux);
    font-size: 0.82rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 4px 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.3s ease, border-color 0.3s ease;
}
.btn-explore-dark .arrow { transition: transform 0.3s ease; }
.btn-explore-dark:hover { color: var(--gold-deep); border-color: var(--gold-rose); }
.btn-explore-dark:hover .arrow { transform: translateX(6px); }

.hero-meta {
    display: flex;
    gap: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    max-width: 520px;
}
.meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.meta-item strong {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 500;
    line-height: 1;
    color: var(--bordeaux);
    letter-spacing: -0.02em;
}
.meta-item strong em {
    font-style: italic;
    color: var(--gold-deep);
    font-size: 1.6rem;
    font-weight: 400;
}
.meta-item span {
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Côté droit : cadre image cheveux */
.hero-split-right {
    position: relative;
    aspect-ratio: 4 / 5;
    max-height: 720px;
}
.hero-image-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 260px 260px 20px 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: linear-gradient(180deg, var(--rose-deep) 0%, var(--bordeaux) 60%, var(--bordeaux-dark) 100%);
}
.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    animation: slow-ken-burns 18s ease-in-out infinite;
    will-change: transform;
}
@keyframes slow-ken-burns {
    0%, 100% { transform: scale(1.04); }
    50% { transform: scale(1.14) translateX(-1%); }
}
.hero-image-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(200, 168, 130, 0.2), transparent 60%),
        linear-gradient(to bottom, transparent 50%, rgba(107, 46, 58, 0.35) 100%);
    pointer-events: none;
}

.hero-side-badge {
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-deep);
    z-index: 3;
}
.side-badge-line {
    width: 40px;
    height: 1px;
    background: var(--gold-rose);
}
.side-badge-text { font-weight: 500; }

/* Trait decoratif sous "singularité" */
.hero-mega .line-3 {
    position: relative;
    display: inline-block;
}
.title-underline {
    position: absolute;
    left: 0;
    right: -10%;
    bottom: -8px;
    width: 110%;
    height: clamp(10px, 1.4vw, 22px);
    stroke-dasharray: 700;
    stroke-dashoffset: 700;
    animation: drawLine 2.2s cubic-bezier(0.65, 0, 0.35, 1) 1s forwards;
    pointer-events: none;
}
@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

/* Carte Google rating, posée discrètement sur l'image */
.hero-rating-card {
    position: absolute;
    left: -24px;
    bottom: 50px;
    z-index: 5;
    background: var(--white);
    padding: 18px 22px;
    border-radius: 6px;
    box-shadow: 0 14px 38px rgba(107, 46, 58, 0.14);
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 200px;
    border: 1px solid var(--border);
}
.rating-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-soft);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.rating-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.rating-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 500;
    color: var(--bordeaux);
    line-height: 1;
}
.rating-stars {
    color: #d4a14e;
    font-size: 0.95rem;
    letter-spacing: 1px;
}
.rating-count {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Ciseau qui glisse doucement dans le hero */
.hero-scissors {
    position: absolute;
    top: 18%;
    left: 4%;
    z-index: 4;
    pointer-events: none;
    filter: drop-shadow(0 4px 10px rgba(107, 46, 58, 0.18));
    animation: scissorsFloat 26s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
    transform-origin: center;
    will-change: transform;
}
.scissor-blade-left {
    transform-origin: 30px 33px;
    animation: bladeCut 3s ease-in-out infinite;
}
.scissor-blade-right {
    transform-origin: 30px 33px;
    animation: bladeCutRev 3s ease-in-out infinite;
}
@keyframes scissorsFloat {
    0%   { transform: translate(0, 0) rotate(-10deg); }
    25%  { transform: translate(160px, 80px) rotate(8deg); }
    50%  { transform: translate(320px, 40px) rotate(-6deg); }
    75%  { transform: translate(140px, 180px) rotate(12deg); }
    100% { transform: translate(0, 0) rotate(-10deg); }
}
@keyframes bladeCut {
    0%, 100% { transform: rotate(0deg); }
    50%      { transform: rotate(8deg); }
}
@keyframes bladeCutRev {
    0%, 100% { transform: rotate(0deg); }
    50%      { transform: rotate(-8deg); }
}
@media (prefers-reduced-motion: reduce) {
    .hero-scissors,
    .scissor-blade-left,
    .scissor-blade-right { animation: none; }
}
@media (max-width: 768px) {
    .hero-scissors { display: none; }
}

.hero-scroll-ind {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-deep);
}
.hero-scroll-ind .scroll-bar {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--gold-rose), transparent);
    animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-section {
    background: var(--bordeaux);
    color: var(--ivory);
    padding: 28px 0;
    overflow: hidden;
    border-bottom: 1px solid var(--bordeaux-dark);
}
.marquee { overflow: hidden; }
.marquee-track {
    display: flex;
    gap: 40px;
    align-items: center;
    animation: marquee-scroll 40s linear infinite;
    white-space: nowrap;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-style: italic;
    font-weight: 400;
    color: var(--ivory);
}
.marquee-track span { color: var(--ivory); }
.marquee-track .dot { color: var(--gold-rose); }
@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   SECTIONS GENERAL
   ============================================ */
.section { padding: 140px 0; position: relative; }

.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}
.section-header h2 { font-size: clamp(2.6rem, 6vw, 4.5rem); line-height: 1.03; margin-bottom: 22px; }
.section-header .section-label { margin-left: 50%; transform: translateX(-50%); }
.section-intro { color: var(--text-soft); font-size: 1.02rem; max-width: 640px; margin: 0 auto; }

/* ============================================
   MANIFESTO
   ============================================ */
.manifesto-section { background: var(--ivory-warm); }
.manifesto-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
    align-items: center;
}
.manifesto-big-num {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.num-count {
    font-family: var(--font-heading);
    font-size: clamp(8rem, 22vw, 18rem);
    font-weight: 300;
    line-height: 0.85;
    color: var(--bordeaux);
    letter-spacing: -0.05em;
    display: inline-block;
}
.num-unit {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-style: italic;
    color: var(--gold-deep);
    margin-top: -30px;
    margin-left: 20px;
}
.num-caption {
    font-size: 0.95rem;
    color: var(--text-soft);
    margin-top: 20px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    max-width: 320px;
}

.manifesto-text h2 { font-size: clamp(2.2rem, 5vw, 4rem); margin-bottom: 32px; }
.manifesto-text p { margin-bottom: 20px; color: var(--text-soft); }
.manifesto-text p.lead { font-size: 1.15rem; line-height: 1.65; color: var(--text); }

.manifesto-pillars {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 44px;
    padding-top: 36px;
    border-top: 1px solid var(--border);
}
.manifesto-pillars li {
    display: flex;
    gap: 26px;
    align-items: baseline;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.manifesto-pillars li:last-child { border-bottom: none; }
.manifesto-pillars strong {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-style: italic;
    color: var(--gold-deep);
    min-width: 40px;
}
.manifesto-pillars span {
    font-size: 1rem;
    color: var(--text);
    font-weight: 400;
}

/* ============================================
   COLOR LAB
   ============================================ */
.color-lab {
    background: linear-gradient(180deg, var(--rose-soft) 0%, var(--ivory) 100%);
}

.section-header-editorial {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    margin-bottom: 70px;
    align-items: end;
}
.section-header-editorial .header-left h2 {
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 1.02;
}
.section-header-editorial .header-right {
    color: var(--text-soft);
    font-size: 1.05rem;
    line-height: 1.7;
}

.color-lab-stage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}
/* Portail editorial : forme qui se remplit du degrade racine -> pointe de la teinte */
.color-lab-visual {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 300px 300px 12px 12px;
    box-shadow: var(--shadow-lg);
    background: var(--ivory-warm);
}
.lab-shape {
    position: absolute;
    inset: 0;
    z-index: 1;
    transition: background 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Satin shine qui glisse lentement sur la teinte */
.lab-shape-shine {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: screen;
    background: linear-gradient(105deg,
        transparent 35%,
        rgba(255, 240, 220, 0) 45%,
        rgba(255, 240, 220, 0.30) 50%,
        rgba(255, 240, 220, 0) 55%,
        transparent 65%);
    background-size: 250% 100%;
    background-repeat: no-repeat;
    animation: labShineSlide 7s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}
@keyframes labShineSlide {
    0%, 25%   { background-position: -100% 0; }
    65%, 100% { background-position: 200% 0; }
}
.lab-shape-vignette {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    box-shadow: inset 0 -60px 90px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}
@media (prefers-reduced-motion: reduce) {
    .lab-shape-shine { animation: none; }
}

.color-lab-tag {
    position: absolute;
    bottom: 22px;
    left: 22px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px 10px 12px;
    background: rgba(253, 249, 245, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 40px;
    box-shadow: 0 6px 22px rgba(43, 26, 30, 0.2);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--bordeaux);
    letter-spacing: 0.3px;
}
.tag-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--white);
    transition: background 0.6s ease;
}
.tag-name { transition: opacity 0.3s ease; }
.color-lab-tag.is-switching .tag-name { opacity: 0; }

.color-lab-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}
.lab-panel-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 30px;
}
.palette-swatches-big {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 30px;
}
.swatch-big {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 20px 24px;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    text-align: left;
    cursor: pointer;
    transition: background-color 0.4s ease, padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    position: relative;
}
.swatch-big::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 2px;
    background: var(--bordeaux);
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.swatch-big:hover { background: rgba(255, 255, 255, 0.6); }
.swatch-big.active {
    background: var(--white);
    padding-left: 32px;
    box-shadow: var(--shadow-sm);
}
.swatch-big.active::before { transform: scaleY(1); }

.sw-disc {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow:
        0 0 0 3px var(--white),
        0 0 0 4px var(--border),
        0 6px 18px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.swatch-big:hover .sw-disc { transform: scale(1.06); }
.swatch-big.active .sw-disc { transform: scale(1.1); }

.sw-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
}
.sw-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--bordeaux);
    line-height: 1.1;
}
.sw-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    font-style: italic;
}
.palette-current {
    font-size: 0.82rem;
    color: var(--text-soft);
    text-align: left;
    padding-left: 24px;
    border-left: 2px solid var(--gold-rose);
    font-style: italic;
}
.palette-current .palette-current-name {
    color: var(--bordeaux);
    font-weight: 600;
    font-style: normal;
    font-family: var(--font-heading);
    font-size: 1.05rem;
}

/* ============================================
   SERVICES EDITORIAL
   ============================================ */
.services-editorial { background: var(--ivory); }
.services-list-editorial {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.service-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    padding: 80px 0;
    border-top: 1px solid var(--border);
}
.service-row:last-child { border-bottom: 1px solid var(--border); }
.service-row:nth-child(even) {
    grid-template-columns: 1.2fr 1fr;
}
.service-row:nth-child(even) .service-row-visual { order: 2; }
.service-row:nth-child(even) .service-row-text { order: 1; }

.service-row-visual {
    aspect-ratio: 5/4;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.service-row-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}
.service-row:hover .service-row-visual img { transform: scale(1.06); }

.service-row-num {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 300;
    font-style: italic;
    color: var(--gold-rose);
    display: block;
    margin-bottom: 12px;
    line-height: 1;
}
.service-row-text h3 {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}
.title-main {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 0.95;
    color: var(--bordeaux);
    letter-spacing: -0.02em;
    font-weight: 500;
}
.title-sub {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-style: italic;
    font-weight: 400;
    color: var(--gold-deep);
    margin-left: 40px;
}
.service-row-text p {
    font-size: 1.05rem;
    max-width: 480px;
    margin-bottom: 24px;
    color: var(--text-soft);
}
.service-row-price {
    display: inline-block;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--bordeaux);
    padding: 8px 24px;
    border: 1px solid var(--gold-rose);
    border-radius: 40px;
}

/* ============================================
   AVANT / APRÈS
   ============================================ */
.avant-apres-section { background: var(--rose-soft); }
.ba-container {
    position: relative;
    aspect-ratio: 16/9;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    cursor: ew-resize;
    user-select: none;
    background: var(--ivory-warm);
}
.ba-img { position: absolute; inset: 0; overflow: hidden; }
.ba-img img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-before { z-index: 1; }
.ba-after {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.05s linear;
}
.ba-tag {
    position: absolute;
    top: 24px;
    padding: 10px 22px;
    color: var(--ivory);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border-radius: 40px;
    z-index: 3;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.ba-before .ba-tag { right: 24px; background: rgba(42, 26, 30, 0.8); }
.ba-after .ba-tag  { left: 24px; background: rgba(107, 46, 58, 0.9); }

.ba-slider-line {
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0;
    width: 3px;
    background: var(--ivory);
    z-index: 4;
    transform: translateX(-50%);
    pointer-events: none;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--ivory);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    color: var(--bordeaux);
    font-size: 1.3rem;
    box-shadow: 0 4px 24px rgba(107, 46, 58, 0.3);
    pointer-events: auto;
}

/* ============================================
   ÉQUIPE EDITORIAL
   ============================================ */
.equipe-editorial { background: var(--ivory); }
.equipe-grid-editorial {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.team-editorial { display: flex; flex-direction: column; }
.team-visual {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: var(--radius-lg);
    margin-bottom: 22px;
}
.team-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.35) contrast(1.02);
    transition: filter 0.6s ease, transform 0.8s ease;
}
.team-editorial:hover .team-visual img {
    filter: grayscale(0);
    transform: scale(1.05);
}
.team-num {
    position: absolute;
    top: 18px;
    left: 18px;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-style: italic;
    font-weight: 400;
    color: var(--ivory);
    background: rgba(107, 46, 58, 0.85);
    backdrop-filter: blur(6px);
    padding: 6px 16px;
    border-radius: 30px;
}
.team-info h3 {
    font-size: 2rem;
    margin-bottom: 4px;
}
.team-role {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 12px;
}
.team-info p {
    font-size: 0.9rem;
    color: var(--text-soft);
    line-height: 1.65;
}

/* ============================================
   TARIFS
   ============================================ */
.tarifs-section { background: var(--ivory-warm); }
.tarifs-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.tarifs-column h3 {
    font-size: 2rem;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gold-rose);
    color: var(--bordeaux);
}
.tarifs-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.tarifs-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 18px;
    padding-bottom: 14px;
    border-bottom: 1px dotted var(--border);
    font-size: 0.94rem;
}
.tarifs-list li:last-child { border-bottom: none; padding-bottom: 0; }
.tarifs-list span { color: var(--text-soft); }
.tarifs-list em {
    font-style: normal;
    font-weight: 500;
    color: var(--bordeaux);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    white-space: nowrap;
}

/* ============================================
   AVIS
   ============================================ */
.avis-section { background: var(--ivory); }
.avis-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.avis-card {
    background: var(--white);
    padding: 40px 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    margin: 0;
    position: relative;
}
.avis-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.avis-stars { color: var(--gold-rose); font-size: 1.05rem; margin-bottom: 18px; letter-spacing: 3px; }
.avis-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.5;
    color: var(--text);
    margin-bottom: 26px;
}
.avis-card footer { padding-top: 18px; border-top: 1px solid var(--border); }
.avis-card cite {
    font-style: normal;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--bordeaux);
    display: block;
    margin-bottom: 3px;
}
.avis-date { font-size: 0.78rem; color: var(--text-muted); }

/* ============================================
   RDV
   ============================================ */
.rdv-section {
    background: linear-gradient(135deg, var(--bordeaux) 0%, var(--bordeaux-dark) 100%);
    color: var(--ivory);
}
.rdv-section .section-label { color: var(--rose); }
.rdv-section .section-label::before { background: var(--rose); }
.rdv-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.2fr;
    gap: 80px;
    align-items: start;
}
.rdv-text h2 { color: var(--ivory); font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 24px; }
.rdv-text h2 em { color: var(--rose); }
.rdv-text > p { color: rgba(253, 249, 245, 0.8); font-size: 1.02rem; margin-bottom: 42px; }
.rdv-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding-top: 30px;
    border-top: 1px solid rgba(253, 249, 245, 0.2);
}
.rdv-info li { display: flex; flex-direction: column; gap: 4px; }
.ri-label { font-size: 0.7rem; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--rose); }
.ri-value { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 500; color: var(--ivory); }
a.ri-value:hover { color: var(--rose); }

.rdv-form {
    background: var(--ivory);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    color: var(--text);
}
.rdv-form h3 { font-size: 2rem; margin-bottom: 30px; color: var(--bordeaux); }
.form-row { margin-bottom: 20px; }
.form-row-split { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.form-row label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--bordeaux);
    margin-bottom: 8px;
}
.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--gold-rose);
    box-shadow: 0 0 0 3px rgba(200, 168, 130, 0.2);
}
.form-row textarea { resize: vertical; font-family: var(--font-body); }
.form-note { margin-top: 16px; font-size: 0.8rem; color: var(--text-muted); text-align: center; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: var(--bordeaux-dark); color: rgba(253, 249, 245, 0.7); padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr; gap: 50px; margin-bottom: 50px; }
.footer-brand h3 { font-family: var(--font-heading); font-size: 2.4rem; font-style: italic; color: var(--rose); margin-bottom: 14px; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 2.5px; color: var(--rose); margin-bottom: 22px; font-weight: 500; }
.footer-col p { font-size: 0.9rem; line-height: 1.75; color: rgba(253, 249, 245, 0.55); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(253, 249, 245, 0.7); font-size: 0.9rem; transition: color 0.3s ease; }
.footer-col a:hover { color: var(--rose); }
.footer-hours li { display: flex; justify-content: space-between; gap: 12px; font-size: 0.88rem; }
.footer-hours em { font-style: normal; font-family: var(--font-heading); color: var(--rose); font-size: 0.98rem; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; padding-top: 30px; border-top: 1px solid rgba(253, 249, 245, 0.08); font-size: 0.8rem; color: rgba(253, 249, 245, 0.4); }

/* ============================================
   ANIMATIONS
   ============================================ */
.anim-fade-up { opacity: 0; transform: translateY(40px); }
.anim-hero { opacity: 0; transform: translateY(30px); }

/* Barre de progression du scroll */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: linear-gradient(to right, var(--gold-rose), var(--bordeaux));
    transform-origin: left center;
    transform: scaleX(0);
    z-index: 999;
    pointer-events: none;
}

/* Elements decoratifs flottants */
.floating-deco {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.deco-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-rose);
    opacity: 0.4;
}
.deco-dot-1 {
    top: 18%; left: 8%;
    animation: floatA 14s ease-in-out infinite;
}
.deco-dot-2 {
    top: 62%; right: 12%;
    background: var(--rose-deep);
    animation: floatB 18s ease-in-out infinite;
}
.deco-dot-3 {
    top: 35%; right: 42%;
    background: var(--bordeaux);
    opacity: 0.25;
    animation: floatC 22s ease-in-out infinite;
}
.deco-circle {
    position: absolute;
    border: 1px solid var(--gold-rose);
    border-radius: 50%;
    opacity: 0.25;
}
.deco-circle-1 {
    width: 240px; height: 240px;
    top: 10%; right: -80px;
    animation: pulseRing 12s ease-in-out infinite;
}
.deco-circle-2 {
    width: 180px; height: 180px;
    bottom: 15%; left: -60px;
    border-color: var(--rose-deep);
    opacity: 0.2;
    animation: pulseRing 16s ease-in-out infinite reverse;
}
@keyframes floatA {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(24px, -18px) scale(1.2); }
    66%      { transform: translate(-12px, 20px) scale(0.9); }
}
@keyframes floatB {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(-28px, -28px) scale(1.25); }
}
@keyframes floatC {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.25; }
    50%      { transform: translate(20px, 22px) scale(1.3); opacity: 0.4; }
}
@keyframes pulseRing {
    0%, 100% { transform: scale(1); opacity: 0.25; }
    50%      { transform: scale(1.1); opacity: 0.4; }
}

/* Reveal clip-path sur images */
.clip-reveal {
    clip-path: inset(0 100% 0 0);
}

/* Reveal texte par ligne */
.line-reveal-wrap {
    overflow: hidden;
    display: block;
}
.line-reveal {
    display: block;
    transform: translateY(105%);
    opacity: 0;
}

/* Magnetic buttons : transition douce */
.btn-primary,
.btn-large,
.btn-ghost {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.4s ease, box-shadow 0.4s ease, color 0.4s ease;
    will-change: transform;
}

/* Tilt 3D sur cartes */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    .deco-dot, .deco-circle { animation: none; }
    .scroll-progress { display: none; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    .hero-split { grid-template-columns: 1fr; gap: 50px; padding: 50px 0; }
    .hero-split-right { aspect-ratio: 4 / 4.5; max-height: 500px; order: -1; }
    .hero-image-frame { border-radius: 180px 180px 16px 16px; }
    .hero-side-badge { display: none; }
    .hero-scroll-ind { display: none; }
    .hero-rating-card { left: auto; right: 16px; bottom: 16px; padding: 16px 20px; min-width: 160px; }
    .title-underline { display: none; }
    .manifesto-grid { grid-template-columns: 1fr; gap: 60px; text-align: center; }
    .section-header-editorial { grid-template-columns: 1fr; gap: 30px; }
    .color-lab-stage { grid-template-columns: 1fr; gap: 40px; }
    .color-lab-panel { padding: 20px 0; }
    .service-row { grid-template-columns: 1fr; gap: 30px; padding: 50px 0; }
    .service-row:nth-child(even) { grid-template-columns: 1fr; }
    .service-row:nth-child(even) .service-row-visual { order: 0; }
    .service-row:nth-child(even) .service-row-text { order: 1; }
    .equipe-grid-editorial { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .tarifs-wrapper { grid-template-columns: 1fr; gap: 30px; padding: 36px 30px; }
    .avis-grid { grid-template-columns: 1fr; gap: 20px; }
    .rdv-grid { grid-template-columns: 1fr; gap: 60px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@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(--ivory);
        padding: 110px 40px 40px;
        transition: right 0.4s ease;
        border-left: 1px solid var(--border);
    }
    .main-nav.open { right: 0; }
    .nav-list { flex-direction: column; gap: 24px; align-items: flex-start; }
    .nav-list a { font-size: 1rem; letter-spacing: 2px; }

    .section { padding: 80px 0; }
    .hero-full { padding-bottom: 60px; }
    .hero-content-full { padding-top: 90px; }
    .hero-mega .line-2 { margin-left: 20px; }
    .equipe-grid-editorial { grid-template-columns: 1fr; }
    .form-row-split { grid-template-columns: 1fr; }
    .rdv-form { padding: 32px 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .top-bar-sep { display: none; }
    .hero-scroll-ind { display: none; }
}

@media (max-width: 480px) {
    .hero-cta-group { flex-direction: column; align-items: flex-start; gap: 20px; }
    .btn { width: 100%; }
}
