/* ═══════════════════════════════════════════════
   KS THERAPY — Dark Gold Theme
   ═══════════════════════════════════════════════ */

/* ─── Variables ─── */
:root {
    --bg-deep: #06060A;
    --bg-primary: #0B0B10;
    --bg-secondary: #111118;
    --bg-card: #16161F;
    --bg-card-hover: #1C1C28;

    --gold: #C8A55A;
    --gold-light: #E4CC8A;
    --gold-dark: #9A7B3C;
    --gold-glow: rgba(200, 165, 90, 0.15);
    --gold-gradient: linear-gradient(135deg, #C8A55A 0%, #E4CC8A 50%, #C8A55A 100%);

    --text: #F2F0EB;
    --text-secondary: #B8B5AD;
    --text-muted: #6E6D75;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', -apple-system, sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);

    --container: 1280px;
    --gap: clamp(1rem, 3vw, 2rem);
}

/* ─── Scrollbar ─── */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--gold-dark) var(--bg-deep);
}
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text);
    background: var(--bg-deep);
    overflow-x: hidden;
    line-height: 1.7;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold-light); }
ul { list-style: none; }
strong { font-weight: 500; color: var(--gold-light); }

.container {
    width: min(var(--container), 100% - var(--gap) * 2);
    margin: 0 auto;
}

.gold { color: var(--gold); }

.section {
    padding: clamp(4rem, 10vw, 8rem) 0;
    position: relative;
}

.section__label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2.5rem;
}
.section__label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2rem;
    height: 1px;
    background: var(--gold);
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.section__desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
}

.section__header {
    text-align: center;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}
.section__header .section__label { padding-left: 0; }
.section__header .section__label::before { display: none; }
.section__header .section__desc { margin: 0 auto; }


/* ═══════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}
.btn--gold {
    background: var(--gold-gradient);
    color: var(--bg-deep);
    box-shadow: 0 4px 24px rgba(200, 165, 90, 0.25);
}
.btn--gold:hover {
    color: var(--bg-deep);
    box-shadow: 0 8px 40px rgba(200, 165, 90, 0.4);
    transform: translateY(-2px);
}
.btn--outline {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.2);
}
.btn--outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.btn--lg { padding: 1rem 2.5rem; font-size: 0.9rem; }
.btn--sm { padding: 0.625rem 1.5rem; font-size: 0.8rem; }


/* ═══════════════════════════════════════════════
   LOADER
   ═══════════════════════════════════════════════ */
.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader__logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.loader__icon {
    width: 60px;
    height: 60px;
    animation: loaderPulse 1.5s ease-in-out infinite;
}
@keyframes loaderPulse {
    0%, 100% { opacity: 0.4; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1.05); }
}
.loader__bar {
    width: 120px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}
.loader__progress {
    width: 0%;
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 2px;
    transition: width 0.3s ease;
}


/* ═══════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem clamp(1.5rem, 4vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: padding 0.5s var(--ease-out-expo), background 0.5s var(--ease-out-expo), border-color 0.5s var(--ease-out-expo);
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
    padding: 0.75rem clamp(1.5rem, 4vw, 3rem);
    background: rgba(11, 11, 16, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom-color: rgba(200, 165, 90, 0.08);
}
.nav__logo img {
    height: 100px;
    width: auto;
    transition: all 0.4s var(--ease-out-expo);
}
.nav.is-scrolled .nav__logo img {
    height: 70px;
}
.nav__logo:hover img { transform: scale(1.05); }

.nav__links {
    display: flex;
    gap: 2.5rem;
}
.nav__links a {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    position: relative;
    padding-bottom: 4px;
}
.nav__links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s var(--ease-out-expo);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { display: inline-flex; }

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}
.nav__burger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--text);
    transition: all 0.3s ease;
    transform-origin: center;
}
.nav__burger.is-active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-active span:nth-child(2) { opacity: 0; }
.nav__burger.is-active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(6, 6, 10, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-out-expo);
    padding: 6rem 2rem 3rem;
}
.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
}
.mobile-menu__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    max-width: 280px;
}
.mobile-menu__links li {
    width: 100%;
    text-align: center;
}
.mobile-menu__links a {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--text);
    transition: color 0.3s;
    display: block;
    padding: 0.6rem 1rem;
    border-radius: 8px;
}
.mobile-menu__links a:hover { color: var(--gold); background: rgba(200, 165, 90, 0.05); }
.mobile-menu__links .btn {
    font-family: var(--font-body);
    font-size: 0.85rem;
    margin-top: 1.5rem;
    width: auto;
    min-width: 220px;
    justify-content: center;
    padding: 1rem 2rem;
}


/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.hero__bg-img {
    position: absolute;
    inset: -15% 0 -15% 0;
    width: 100%;
    height: 130%;
    object-fit: cover;
    object-position: center 25%;
    will-change: transform;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg,
            rgba(6, 6, 10, 0.5) 0%,
            rgba(6, 6, 10, 0.35) 25%,
            rgba(6, 6, 10, 0.4) 50%,
            rgba(6, 6, 10, 0.5) 75%,
            rgba(6, 6, 10, 0.75) 100%
        ),
        linear-gradient(90deg,
            rgba(6, 6, 10, 0.4) 0%,
            rgba(6, 6, 10, 0.15) 30%,
            rgba(6, 6, 10, 0.15) 70%,
            rgba(6, 6, 10, 0.4) 100%
        );
}
/* Smooth fade into next section */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    z-index: 1;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(11, 11, 16, 0.02) 20%,
        rgba(11, 11, 16, 0.08) 35%,
        rgba(11, 11, 16, 0.2) 50%,
        rgba(11, 11, 16, 0.45) 65%,
        rgba(11, 11, 16, 0.75) 80%,
        var(--bg-primary) 100%
    );
    pointer-events: none;
}
.hero__grain {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 128px 128px;
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 var(--gap);
    max-width: 900px;
    width: 100%;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
}
.hero__badge-line {
    display: block;
    width: 3rem;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}

.hero__title {
    font-family: var(--font-heading);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 40px rgba(0,0,0,0.4);
}
.hero__title-line {
    display: block;
}
.hero__title-line span {
    display: inline-block;
    font-size: clamp(3.2rem, 10vw, 7rem);
    letter-spacing: 0.02em;
    background: linear-gradient(180deg, #FFFFFF 0%, #E4CC8A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__sep {
    margin-bottom: 1.5rem;
}
.hero__logo-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    filter: drop-shadow(0 0 20px rgba(200, 165, 90, 0.3));
}

.hero__subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.hero__tagline {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.8vw, 1.6rem);
    font-weight: 300;
    font-style: italic;
    color: var(--gold-light);
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}
.hero__scroll span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
    50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
    50.01% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 1; }
}

/* Hero decorations */
.hero__decor-left, .hero__decor-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0;
    pointer-events: none;
}
.hero__decor-left { left: clamp(1rem, 3vw, 3rem); }
.hero__decor-right { right: clamp(1rem, 3vw, 3rem); }
.hero__wave {
    width: clamp(60px, 10vw, 140px);
    filter: brightness(0) invert(1);
    opacity: 0.5;
}


/* ═══════════════════════════════════════════════
   TRUST STRIP
   ═══════════════════════════════════════════════ */
.trust-strip {
    position: relative;
    z-index: 2;
    background: var(--bg-secondary);
    border-top: 1px solid rgba(200, 165, 90, 0.1);
    border-bottom: 1px solid rgba(200, 165, 90, 0.1);
    padding: 1.25rem 0;
}
.trust-strip .container {
    display: flex;
    justify-content: center;
    gap: clamp(2rem, 5vw, 4rem);
    flex-wrap: wrap;
}
.trust-strip__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text);
    transition: color 0.3s;
}
a.trust-strip__item:hover {
    color: var(--gold-light);
}
a.trust-strip__item:hover .trust-strip__badge {
    border-color: var(--gold);
    background: rgba(200, 165, 90, 0.15);
}
.trust-strip__badge {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(200, 165, 90, 0.3);
    background: rgba(200, 165, 90, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}
.trust-strip__badge svg {
    stroke: var(--gold);
}
.trust-strip__text {
    display: flex;
    flex-direction: column;
}
.trust-strip__label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gold);
    line-height: 1.2;
}
.trust-strip__desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.3;
}

@media (max-width: 600px) {
    .trust-strip .container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* ═══════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════ */
.about { background: var(--bg-primary); }

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}
.about__images {
    position: relative;
}
.about__img-main {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.about__img-main img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}
.about__img-main:hover img { transform: scale(1.03); }

.about__img-accent {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 45%;
    border-radius: 12px;
    overflow: hidden;
    z-index: 2;
    border: 3px solid var(--bg-primary);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.about__img-accent img {
    width: 100%;
    object-fit: cover;
}
.about__decor {
    position: absolute;
    top: -3.5rem;
    left: -3.5rem;
    z-index: 1;
}
.about__leaf {
    width: 120px;
    filter: brightness(0) saturate(100%) invert(76%) sepia(34%) saturate(502%) hue-rotate(7deg) brightness(92%) contrast(87%);
}

.about__content {
    padding: 1rem 0;
}

.about__text {
    margin-bottom: 2rem;
}
.about__text p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1.02rem;
}

.about__values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}
.about__value {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.125rem 1.25rem;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.04);
    transition: all 0.3s ease;
    min-height: 60px;
    min-width: 0;
}
.about__value:hover {
    border-color: rgba(200, 165, 90, 0.15);
    background: var(--bg-card-hover);
}
.about__value-icon {
    color: var(--gold);
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 165, 90, 0.08);
    border-radius: 8px;
}
.about__value-icon svg {
    width: 20px;
    height: 20px;
}
.about__value span {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.35;
    min-width: 0;
    word-wrap: break-word;
}

.about__formation {
    position: relative;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 12px;
    border-left: 3px solid var(--gold);
}
.about__brush {
    position: absolute;
    top: -8px;
    right: 1rem;
    width: 80px;
    opacity: 0.08;
    filter: brightness(0) invert(1);
}
.about__formation p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}


/* ═══════════════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════════════ */
.marquee {
    padding: 1.5rem 0;
    overflow: hidden;
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.marquee__track {
    display: flex;
    gap: 2rem;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}
.marquee__track span {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    color: var(--text-muted);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.marquee__dot {
    display: inline-flex !important;
    align-items: center;
}
.marquee__dot::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.5;
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* ═══════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════ */
.services {
    background: var(--bg-deep);
}

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

.service-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.04);
    transition: all 0.5s var(--ease-out-expo);
    cursor: default;
}
.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 165, 90, 0.15);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px var(--gold-glow);
}
.service-card__img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}
.service-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out-expo);
}
.service-card:hover .service-card__img img { transform: scale(1.08); }
.service-card__img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(6, 6, 10, 0.8) 100%);
}

.service-card__content {
    padding: 1.5rem;
}
.service-card__icon {
    color: var(--gold);
    margin-bottom: 1rem;
    opacity: 0.8;
}
.service-card__content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}
.service-card__content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}


/* ═══════════════════════════════════════════════
   PARALLAX DIVIDER
   ═══════════════════════════════════════════════ */
.parallax-divider {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.parallax-divider__img {
    position: absolute;
    top: -30%;
    left: 0;
    width: 100%;
    height: 160%;
    object-fit: cover;
    object-position: center center;
    min-width: 100vw;
}
.parallax-divider__overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 6, 10, 0.75);
}
.parallax-divider__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 var(--gap);
    max-width: 800px;
}
.parallax-divider__quote p {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.4;
    color: var(--text);
    margin-bottom: 1.5rem;
}
.parallax-divider__quote cite {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-style: normal;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}


/* ═══════════════════════════════════════════════
   SOINS COMPLÉMENTAIRES
   ═══════════════════════════════════════════════ */
.soins { background: var(--bg-primary); }

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

.soin-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.04);
    transition: all 0.5s var(--ease-out-expo);
}
.soin-card:hover {
    border-color: rgba(200, 165, 90, 0.12);
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

.soin-card__visual {
    position: relative;
    overflow: hidden;
}
.soin-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out-expo);
}
.soin-card:hover .soin-card__visual img { transform: scale(1.06); }
.soin-card__visual::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, transparent 0%, rgba(6, 6, 10, 0.6) 100%);
    pointer-events: none;
}

.soin-card__number {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    z-index: 1;
}

.soin-card__body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.soin-card__body h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}
.soin-card__body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}


/* ═══════════════════════════════════════════════
   GALERIE
   ═══════════════════════════════════════════════ */
.galerie {
    background: var(--bg-deep);
    padding-bottom: clamp(4rem, 10vw, 8rem);
}

.galerie__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 0.75rem;
    padding: 0 var(--gap);
    max-width: 1400px;
    margin: 0 auto;
}
.galerie__item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.galerie__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo), filter 0.6s ease;
    filter: brightness(0.85) saturate(0.9);
}
.galerie__item:hover img {
    transform: scale(1.08);
    filter: brightness(1) saturate(1.1);
}
.galerie__item::after {
    content: attr(data-label);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 1rem 1rem;
    background: linear-gradient(180deg, transparent 0%, rgba(6, 6, 10, 0.7) 100%);
    color: var(--text);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}
.galerie__item:hover::after {
    opacity: 1;
    transform: translateY(0);
}
.galerie__item--tall { grid-row: span 2; }


/* ═══════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════ */
.cta-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: var(--bg-secondary);
}
.cta-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: clamp(2.5rem, 5vw, 4rem);
    background: linear-gradient(135deg, var(--bg-card), rgba(200, 165, 90, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(200, 165, 90, 0.12);
    position: relative;
    overflow: hidden;
}
.cta-block::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 165, 90, 0.08), transparent 70%);
    pointer-events: none;
}
.cta-block__content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 300;
    margin-bottom: 0.75rem;
}
.cta-block__content p {
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
    font-size: 1.05rem;
}

.cta-block__qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    padding: 2.5rem 3rem;
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.06);
}
.cta-block__qr-frame {
    position: relative;
    padding: 1rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.3), 0 0 60px rgba(200, 165, 90, 0.1);
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
}
.cta-block__qr-frame:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 50px rgba(0,0,0,0.4), 0 0 80px rgba(200, 165, 90, 0.15);
}
.cta-block__qr-frame img {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    display: block;
}
.cta-block__qr span {
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
}
.cta-block__qr-hint {
    font-size: 0.7rem !important;
    color: var(--text-muted) !important;
    letter-spacing: 0.02em !important;
    text-transform: none !important;
    font-weight: 300 !important;
}
#qrEasterEgg { cursor: pointer; }
.qr-text {
    transition: opacity 0.3s, text-decoration 0.3s;
}
.qr-letter {
    display: inline-block;
    transition: transform 0.15s ease;
    perspective: 200px;
    color: var(--gold);
}
.qr-letter--done {
    color: var(--text-secondary);
    transform: rotateX(0deg) !important;
}
@keyframes qrPop {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.4); }
    100% { transform: scale(1); opacity: 1; }
}


/* ═══════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════ */
.contact { background: var(--bg-primary); }

.contact__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* ── Sidebar (infos + réseaux + map) ── */
.contact__sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact__details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact__detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.04);
    transition: border-color 0.3s ease;
}
.contact__detail:hover {
    border-color: rgba(200, 165, 90, 0.12);
}
.contact__detail-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.contact__detail-icon img {
    width: 22px;
    height: 22px;
    filter: brightness(0) saturate(100%) invert(76%) sepia(34%) saturate(502%) hue-rotate(7deg) brightness(92%) contrast(87%);
}
.contact__detail-icon svg {
    color: var(--gold);
}
.contact__detail h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 0.15rem;
    color: var(--text);
}
.contact__detail p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.contact__detail a {
    color: var(--gold);
}

/* Réseaux sociaux */
.contact__social {
    display: flex;
    gap: 0.75rem;
}
.contact__social-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex: 1;
    padding: 0.85rem 1rem;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.04);
    transition: all 0.3s ease;
    color: var(--text-secondary);
    font-size: 0.8rem;
}
.contact__social-link:hover {
    border-color: rgba(200, 165, 90, 0.12);
    color: var(--gold);
}
.contact__social-link img {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(76%) sepia(34%) saturate(502%) hue-rotate(7deg) brightness(92%) contrast(87%);
    flex-shrink: 0;
}

/* Google Review */
.contact__google-review {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(200, 165, 90, 0.08);
    border: 1px solid rgba(200, 165, 90, 0.2);
    border-radius: 12px;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}
.contact__google-review:hover {
    background: rgba(200, 165, 90, 0.15);
    border-color: var(--gold);
    color: var(--gold-light);
}
.contact__google-review svg {
    flex-shrink: 0;
}

/* Map */
.contact__map {
    border-radius: 14px;
    overflow: hidden;
    height: 220px;
    border: 1px solid rgba(255,255,255,0.06);
}
.contact__map iframe {
    filter: grayscale(0.6) invert(0.9) contrast(0.9) brightness(1.05) sepia(0.1) hue-rotate(10deg);
}

/* ── Formulaire ── */
.contact__form-wrapper {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.04);
}
.contact__form-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
}
.contact__form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.contact__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.contact__form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.contact__form-group label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 400;
}
.contact__form-group label .required {
    color: var(--gold);
}
.contact__form-group input,
.contact__form-group textarea {
    background: var(--bg-secondary);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    transition: border-color 0.3s ease;
    outline: none;
    resize: vertical;
}
.contact__form-group input::placeholder,
.contact__form-group textarea::placeholder {
    color: var(--text-muted);
}
.contact__form-group input:focus,
.contact__form-group textarea:focus {
    border-color: var(--gold);
}
.contact__form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.contact__form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--gold);
    flex-shrink: 0;
    cursor: pointer;
}
.contact__form-checkbox label {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
    cursor: pointer;
}
.contact__form-checkbox label .required {
    color: var(--gold);
}
.contact__form-checkbox label a {
    color: var(--gold);
    text-decoration: underline;
}
.contact__form-btn {
    align-self: flex-start;
    margin-top: 0.5rem;
}
.contact__form-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.contact__form-feedback {
    display: none;
    padding: 0.85rem 1.25rem;
    border-radius: 8px;
    font-size: 0.85rem;
    line-height: 1.5;
}
.contact__form-feedback--success {
    display: block;
    background: rgba(72, 187, 120, 0.1);
    border: 1px solid rgba(72, 187, 120, 0.3);
    color: #68D391;
}
.contact__form-feedback--error {
    display: block;
    background: rgba(245, 101, 101, 0.1);
    border: 1px solid rgba(245, 101, 101, 0.3);
    color: #FC8181;
}

/* Hide reCAPTCHA badge — disclosure is in the RGPD checkbox */
.grecaptcha-badge { visibility: hidden !important; }


/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer {
    background: var(--bg-deep);
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.04);
}
.footer__top {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 2rem;
}
.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.footer__col {
    display: flex;
    flex-direction: column;
}
.footer__logo { width: 140px; height: auto; }
.footer__brand p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.footer__brand-tagline {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--gold);
    opacity: 0.7;
}
.footer__col-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 1.25rem;
}
.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.footer__links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color 0.3s;
}
.footer__links a:hover { color: var(--gold); }
.footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.footer__contact-item img {
    width: 16px;
    height: 16px;
    margin-top: 3px;
    filter: brightness(0) saturate(100%) invert(76%) sepia(34%) saturate(502%) hue-rotate(7deg) brightness(92%) contrast(87%);
    flex-shrink: 0;
}
.footer__social {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 0.5rem;
}
.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s ease;
}
.footer__social a:hover {
    border-color: var(--gold);
    background: rgba(200, 165, 90, 0.1);
    transform: translateY(-2px);
}
.footer__social a img {
    width: 18px;
    height: 18px;
    opacity: 0.7;
    filter: brightness(0) invert(1);
    transition: all 0.3s;
}
.footer__social a:hover img { opacity: 1; filter: brightness(0) saturate(100%) invert(76%) sepia(34%) saturate(502%) hue-rotate(7deg) brightness(92%) contrast(87%); }
.footer__doctena {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: auto !important;
    height: auto !important;
    padding: 0.5rem 1rem;
    border-radius: 20px !important;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--gold) !important;
    text-transform: uppercase;
}
.footer__doctena img {
    width: 16px;
    height: 16px;
    filter: none !important;
    opacity: 1 !important;
    border-radius: 3px;
}
.footer__bottom {
    text-align: center;
    padding-top: 0.5rem;
}
.footer__bottom p {
    font-size: 0.75rem;
    color: var(--text-muted);
}
.footer__legal-link {
    color: var(--text-muted);
    text-decoration: underline;
    margin-left: 0.5rem;
    transition: color 0.3s;
}
.footer__legal-link:hover {
    color: var(--gold);
}
.footer__conception {
    display: inline-block;
    margin-top: 1rem;
}
.footer__conception img {
    height: 30px;
    width: auto;
    opacity: 0.5;
    transition: opacity 0.3s;
}
.footer__conception:hover img {
    opacity: 0.8;
}


/* ═══════════════════════════════════════════════
   REVEAL ANIMATIONS (base states)
   ═══════════════════════════════════════════════ */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
}
.img-reveal {
    clip-path: inset(100% 0 0 0);
}

/* Hero-specific initial states */
.hero__scroll {
    opacity: 0;
}
.hero__decor-left, .hero__decor-right {
    opacity: 0;
}
.hero__sep {
    transform: translateY(40px) scale(0.8);
}


/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .galerie__grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; }
    .about__grid { gap: 3rem; }
    .nav__links { display: none; }
    .nav__cta { display: none; }
    .nav__burger { display: flex; }
    .nav__logo img { height: 80px; }
    .nav.is-scrolled .nav__logo img { height: 60px; }
    .footer__top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
    .nav { padding: 1rem clamp(1.25rem, 4vw, 2rem); }
    .nav.is-scrolled { padding: 0.6rem clamp(1.25rem, 4vw, 2rem); }
    .nav__logo img { height: 65px; }
    .nav.is-scrolled .nav__logo img { height: 50px; }
    .nav__burger { padding: 8px; }

    .about__grid { grid-template-columns: 1fr; }
    .about__images { max-width: 500px; margin: 0 auto 2rem; }
    .about__img-accent { position: relative; bottom: auto; right: auto; width: 60%; margin-top: -3rem; margin-left: auto; }
    .about__values { grid-template-columns: 1fr 1fr; }

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

    .soins__grid { grid-template-columns: 1fr; }
    .soin-card { grid-template-columns: 1fr; }
    .soin-card__visual { aspect-ratio: 16/9; }

    .galerie__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
    .galerie__item--tall { grid-row: span 1; }

    .cta-block { flex-direction: column; text-align: center; }
    .cta-block__content { display: flex; flex-direction: column; align-items: center; }
    .cta-block__qr { width: 100%; padding: 2rem; }
    .cta-block__qr-frame img { width: 180px; height: 180px; }

    .contact__grid { grid-template-columns: 1fr; }
    .contact__map { height: 220px; }
    .contact__form-row { grid-template-columns: 1fr; }
    .contact__social { flex-direction: column; }

    .footer__top { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .footer__brand { align-items: center; }
    .footer__col { align-items: center; }
    .footer__links { align-items: center; }
    .footer__contact-list { align-items: center; }
    .footer__contact-item { text-align: center; }
    .footer__social { justify-content: center; }

    .hero__decor-left, .hero__decor-right { display: none; }

    .mobile-menu__links a { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .galerie__grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
    .hero__title-line span { font-size: 2.8rem; }
    .hero__actions { flex-direction: column; align-items: center; }
    .hero__actions .btn { width: 100%; justify-content: center; }
    .mobile-menu__links a { font-size: 1.35rem; }
    .mobile-menu__links .btn { min-width: 200px; font-size: 0.8rem; }
    .nav { padding: 0.75rem 1rem; }
    .nav.is-scrolled { padding: 0.5rem 1rem; }
    .nav__logo img { height: 55px; }
    .nav.is-scrolled .nav__logo img { height: 42px; }
    .about__values { grid-template-columns: 1fr; }
    .cta-block__qr-frame img { width: 160px; height: 160px; }
    .footer__logo { width: 110px; }
}


/* ═══════════════════════════════════════════════
   CUSTOM CURSOR GLOW (desktop only)
   ═══════════════════════════════════════════════ */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 165, 90, 0.04), transparent 70%);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    will-change: transform;
}

@media (hover: none) {
    .cursor-glow { display: none; }
}

/* ═══════════════════════════════════════════════
   MENTIONS LEGALES PAGE
   ═══════════════════════════════════════════════ */
.legal-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--bg-deep);
}
.legal-page__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem clamp(1.5rem, 5vw, 4rem);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.legal-page__back {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.3s;
}
.legal-page__back:hover { color: var(--gold); }
.legal-page__logo {
    height: 60px;
    width: auto;
}
.legal-page__content {
    flex: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem clamp(1.5rem, 5vw, 2rem);
    width: 100%;
}
.legal-page__content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 300;
    margin-bottom: 2.5rem;
}
.legal-page__body h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--gold-light);
    margin: 2rem 0 0.75rem;
}
.legal-page__body p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}
.legal-page__body ul {
    list-style: none;
    padding-left: 1rem;
    margin-bottom: 1rem;
}
.legal-page__body ul li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    position: relative;
    padding-left: 1rem;
}
.legal-page__body ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
}
.legal-page__footer {
    text-align: center;
    padding: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.04);
    font-size: 0.75rem;
    color: var(--text-muted);
}
