/* =========================================================
   AG THERAPY — Luxury warm natural
   Palette inspirée de la carte Instagram (marron chocolat,
   beige ecru, touches dorées), structure épurée façon
   saliabeauty.com.
   ========================================================= */

:root {
    /* Palette — dégradé sablé chaud */
    --cream: #E8D4BC;           /* sections alternées (medium warm sand) */
    --cream-light: #F5EAD8;     /* fond principal (warm sand light) */
    --cream-dark: #DEC9B6;      /* éléments enrichis (riche beige chaud) */

    --brown-900: #2A1C13;   /* texte principal */
    --brown-800: #3E2A1E;   /* fond sombre (hero) */
    --brown-700: #5B3E2A;
    --brown-600: #7A563C;
    --brown-500: #9C7954;

    --gold: #C9A668;
    --gold-dark: #A6884F;
    --gold-light: #E2C992;

    --line: #CDB49A;            /* séparateurs assortis */
    --muted: #6E5D4D;

    /* Typography */
    --font-display: "Cormorant Garamond", "Georgia", serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    /* Layout */
    --max-wide: 1240px;
    --max: 1100px;
    --max-narrow: 760px;
    --radius: 4px;
    --radius-lg: 10px;
    --header-h: 80px;

    --shadow-sm: 0 2px 12px rgba(42, 28, 19, 0.05);
    --shadow-md: 0 8px 30px rgba(42, 28, 19, 0.08);
    --shadow-lg: 0 20px 60px rgba(42, 28, 19, 0.12);

    --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--cream-light);
    color: var(--brown-900);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


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

a { color: var(--brown-700); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--gold-dark); }

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--brown-900);
    margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 400; }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 400; }
h3 { font-size: clamp(1.3rem, 2vw, 1.55rem); font-weight: 500; }
h4 { font-size: 1rem; letter-spacing: 0.12em; text-transform: uppercase; font-family: var(--font-body); font-weight: 600; color: var(--brown-700); }

h1 em, h2 em {
    font-style: italic;
    color: var(--gold-dark);
    font-weight: 400;
}

p { margin: 0 0 1.1em; }

.eyebrow,
.section-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 500;
    margin-bottom: 1.2rem;
}

.lead {
    font-size: 1.12rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 620px;
}

/* Layout helpers */
.container { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
.container-wide { max-width: var(--max-wide); margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: var(--max-narrow); margin: 0 auto; padding: 0 1.5rem; }

.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-alt { background: var(--cream); }

.center-cta { text-align: center; margin-top: 3rem; }

.section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4rem;
}
.section-head .section-intro {
    color: var(--muted);
    font-size: 1.05rem;
    margin-top: 1rem;
}

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(245, 234, 216, 0.88);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.scrolled {
    border-bottom-color: var(--line);
    background: rgba(245, 234, 216, 0.97);
}

.nav-inner {
    max-width: var(--max-wide);
    margin: 0 auto;
    padding: 0 1.5rem;
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    display: inline-flex;
    align-items: baseline;
    gap: 0.55rem;
    font-family: var(--font-display);
    color: var(--brown-900);
    line-height: 1;
}
.logo-mark {
    font-size: 1.85rem;
    font-weight: 500;
    font-style: italic;
    color: var(--gold-dark);
    letter-spacing: 0.02em;
}
.logo-amp { color: var(--brown-600); margin: 0 -0.05em; }
.logo-word {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.38em;
    color: var(--brown-700);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.3rem;
    margin-left: auto;
    margin-right: 1.5rem;
}
.nav-links a {
    font-size: 0.92rem;
    color: var(--brown-800);
    font-weight: 500;
    letter-spacing: 0.02em;
    position: relative;
    padding: 0.3rem 0;
}
.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--gold-dark);
    transition: width 0.3s var(--ease), left 0.3s var(--ease);
}
.nav-links a:hover { color: var(--brown-900); }
.nav-links a:hover::after { width: 100%; left: 0; }

.nav-cta { flex-shrink: 0; }

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    width: 34px;
    height: 34px;
    padding: 0;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
}
.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--brown-800);
    border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.9rem;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.25s var(--ease);
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-sm { padding: 0.7rem 1.3rem; font-size: 0.8rem; }
.btn-lg { padding: 1.1rem 2.3rem; font-size: 0.95rem; }

.btn-primary {
    background: var(--brown-800);
    color: var(--cream-light);
    border-color: var(--brown-800);
}
.btn-primary:hover {
    background: var(--brown-900);
    color: var(--gold-light);
    border-color: var(--brown-900);
}

.btn-outline {
    background: transparent;
    color: var(--brown-800);
    border-color: var(--brown-800);
}
.btn-outline:hover {
    background: var(--brown-800);
    color: var(--cream-light);
}

.btn-ghost {
    background: transparent;
    color: var(--brown-900);
    border-color: var(--brown-500);
}
.btn-ghost:hover {
    background: var(--brown-900);
    color: var(--cream-light);
    border-color: var(--brown-900);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
    position: relative;
    min-height: calc(100vh - var(--header-h));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--cream-light);
    padding: 6rem 1.5rem 5rem;
    text-align: center;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    z-index: 0;
}
.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(20, 11, 5, 0.62) 0%,
        rgba(30, 16, 8, 0.55) 50%,
        rgba(20, 11, 5, 0.72) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
}
.hero .eyebrow {
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    letter-spacing: 0.22em;
    margin-bottom: 1.8rem;
}
.hero h1 {
    color: var(--cream-light);
    margin-bottom: 1.8rem;
    font-size: clamp(1.9rem, 4.2vw, 3.2rem);
}
.hero h1 em {
    color: var(--gold-light);
    font-style: italic;
}
.hero .lead {
    color: rgba(245, 237, 224, 0.85);
    margin: 0 auto 2.5rem;
    max-width: 560px;
    font-size: 0.97rem;
}
.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.hero .btn-ghost {
    color: var(--cream-light);
    border-color: rgba(245, 237, 224, 0.5);
}
.hero .btn-ghost:hover {
    background: var(--cream-light);
    color: var(--brown-900);
    border-color: var(--cream-light);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    color: rgba(245, 237, 224, 0.6);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(var(--gold-light), transparent);
}

/* =========================================================
   FOND PHOTO — Histoire → CTA
   ========================================================= */
.sections-bg {
    position: relative;
}
.sections-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../images/histoire-bg.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    opacity: 0.22;
    z-index: 0;
    pointer-events: none;
}
/* Desktop — parallaxe + opacité réduite */
@media (min-width: 769px) and (hover: hover) {
    .sections-bg::before {
        background-attachment: fixed;
        background-position: center 25%;
        opacity: 0.17;
    }
}
.sections-bg > * {
    position: relative;
    z-index: 1;
}

/* =========================================================
   HISTOIRE
   ========================================================= */
.histoire {
    text-align: center;
}
.histoire .container-narrow > h2 { margin-bottom: 2.5rem; }
.histoire-body {
    text-align: left;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--brown-900);
}
.histoire-body p { color: var(--brown-900); }

.signature-quote {
    margin: 4rem auto 0;
    max-width: 560px;
    text-align: center;
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.35;
    color: var(--brown-800);
    position: relative;
    padding: 2.5rem 1.5rem;
    border-top: 2px solid rgba(62, 42, 30, 0.22);
    border-bottom: 2px solid rgba(62, 42, 30, 0.22);
}
.signature-quote::before,
.signature-quote::after {
    content: "◆";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.5rem;
    color: var(--brown-700);
    opacity: 0.55;
    background: var(--cream-light);
    padding: 0 0.6rem;
    line-height: 1;
}
.signature-quote::before { top: -0.4rem; }
.signature-quote::after  { bottom: -0.4rem; }
.signature-quote .quote-mark {
    display: block;
    font-size: 3rem;
    color: var(--gold);
    line-height: 0.3;
    margin-bottom: 1.2rem;
    font-family: var(--font-display);
}
.signature-quote footer {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    font-family: var(--font-body);
    font-style: normal;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dark);
}

/* =========================================================
   SOINS PREVIEW GRID
   ========================================================= */
.soins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.soin-card {
    background: var(--cream-light);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2.2rem 1.8rem;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}
.soin-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}
.soin-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-light);
}
.soin-card:hover::before { transform: scaleX(1); }

.soin-origine {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 500;
    margin-bottom: 0.8rem;
}
.soin-card h3 { margin-bottom: 0.6rem; }
.soin-accroche {
    color: var(--muted);
    font-size: 0.98rem;
    margin-bottom: 1.5rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brown-800);
    transition: gap 0.25s var(--ease);
}
.link-arrow:hover { color: var(--gold-dark); gap: 0.8rem; }

/* =========================================================
   SOIN DETAIL (page /soins)
   ========================================================= */
.soin-detail {
    padding: 3.5rem 0;
    border-bottom: 1px solid var(--line);
}
.soin-detail:last-of-type { border-bottom: 0; }

.soin-detail-head { margin-bottom: 2.5rem; max-width: 720px; }
.soin-accroche-big {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--gold-dark);
    margin-top: 0.4rem;
}

.soin-detail-body {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 3rem;
    align-items: start;
}
.soin-text p { font-size: 1.02rem; line-height: 1.8; }
.soin-pour-qui { color: var(--muted); font-size: 0.95rem; }

.soin-benefits {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border-top: 3px solid var(--gold);
}
.soin-benefits h3 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brown-700);
    font-weight: 600;
    margin-bottom: 1.2rem;
}
.soin-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.8rem;
}
.soin-benefits li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.4rem;
    font-size: 0.98rem;
    color: var(--brown-900);
    border-bottom: 1px dashed var(--line);
}
.soin-benefits li:last-child { border-bottom: 0; }
.soin-benefits li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.1rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

/* =========================================================
   CUPPING SHOWCASE
   ========================================================= */
.cupping-showcase {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
    margin-top: 0;
}

.cupping-img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    box-shadow: 0 30px 80px rgba(42, 28, 19, 0.22);
}

.cupping-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    opacity: 0;
    transition: opacity 1s ease, transform 0.8s var(--ease);
    display: block;
}

.cupping-slide.active {
    opacity: 1;
    position: absolute;
}

.relaxant-img-wrap:hover .cupping-slide.active,
.cupping-img-wrap:hover .cupping-slide.active {
    transform: scale(1.04);
}

/* Dots */
.cupping-dots {
    position: absolute;
    bottom: 3.8rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}
.cupping-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(245, 237, 224, 0.45);
    transition: background 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}
.cupping-dot.active {
    background: var(--gold-light);
    transform: scale(1.3);
}

.cupping-img-label {
    position: absolute;
    bottom: 1.4rem;
    left: 1.4rem;
    background: rgba(20, 11, 5, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(201, 166, 104, 0.35);
    border-radius: 6px;
    padding: 0.45rem 1rem;
}

.cupping-img-label span {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold-light);
}

.cupping-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-top: 0.5rem;
}

/* Relaxant — image plus petite, cadrage plus large */
.relaxant-showcase {
    display: grid;
    grid-template-columns: 0.75fr 1.4fr;
    gap: 4rem;
    align-items: center;
}

/* Variante image à droite (tonifiant) */
.relaxant-showcase--reverse {
    grid-template-columns: 1.4fr 0.75fr;
}

.relaxant-img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    box-shadow: 0 20px 60px rgba(42, 28, 19, 0.18);
}

.relaxant-img-wrap .cupping-img {
    object-position: center center;
}

.relaxant-img-wrap .cupping-img-label,
.relaxant-img-wrap .cupping-dots {
    /* hérite des styles déjà définis */
}

@media (max-width: 900px) {
    .cupping-showcase,
    .relaxant-showcase {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .cupping-img-wrap {
        aspect-ratio: 4 / 3;
        max-height: 420px;
    }
    .relaxant-img-wrap {
        aspect-ratio: 4 / 3;
        max-height: 380px;
    }
}

/* =========================================================
   AVIS
   ========================================================= */
.avis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.avis-card {
    background: var(--cream-light);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.avis-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.avis-head {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    margin-bottom: 1rem;
}
.avis-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--line);
}
.avis-avatar--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--brown-900);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
}
.avis-date {
    font-size: 0.8rem;
    color: var(--muted);
    margin: 0.15rem 0 0;
}
.stars {
    color: #FFD700;
    letter-spacing: 0.15em;
    font-size: 1rem;
    margin-bottom: 1rem;
}
.avis-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--brown-900);
    margin-bottom: 1.2rem;
}
.avis-author {
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    color: var(--brown-900);
    font-weight: 600;
    margin: 0;
}

/* Badge note globale Google */
.google-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
    padding: 0.7rem 1.3rem;
    background: var(--cream-light);
    border: 1px solid var(--line);
    border-radius: 100px;
    box-shadow: var(--shadow-sm);
    font-family: var(--font-body);
}
.google-logo { display: inline-flex; }
.rating-score {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--brown-900);
}
.rating-stars { color: #d9d9d9; letter-spacing: 0.1em; }
.rating-stars .filled { color: #FFD700; }
.rating-count { font-size: 0.88rem; color: var(--muted); }

/* État vide — page Google pas encore créée */
.avis-empty {
    max-width: 560px;
    margin: 0 auto;
    padding: 3.5rem 2rem;
    text-align: center;
    background: var(--cream-light);
    border: 1px dashed var(--gold);
    border-radius: var(--radius-lg);
    position: relative;
}
.avis-empty-stars {
    color: var(--gold);
    font-size: 1.4rem;
    letter-spacing: 0.3em;
    margin-bottom: 1.2rem;
    opacity: 0.4;
}
.avis-empty h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.avis-empty p {
    color: var(--muted);
    margin-bottom: 0.8rem;
}
.avis-empty-sub { font-style: italic; margin-bottom: 1.5rem !important; }

/* =========================================================
   CTA FINAL
   ========================================================= */
.cta-final { text-align: center; }
.cta-final h2 { margin-bottom: 1rem; }
.cta-final p { color: var(--muted); margin-bottom: 2rem; }
.cta-final .hero-ctas { margin-top: 1.5rem; }

/* =========================================================
   PAGE HEADER (sub-pages)
   ========================================================= */
.page-header {
    padding: clamp(5rem, 10vw, 8rem) 0 clamp(3rem, 5vw, 5rem);
    text-align: center;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
}
.page-header h1 { margin-bottom: 1.2rem; }
.page-header .lead { margin: 0 auto; }

/* =========================================================
   TARIFS
   ========================================================= */
.tarif-groupe { margin-bottom: 4rem; }
.tarif-groupe:last-of-type { margin-bottom: 2rem; }
.tarif-groupe-titre {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gold);
    margin-bottom: 2rem;
}
.tarif-list {
    display: flex;
    flex-direction: column;
}
.tarif-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    padding: 1.8rem 0;
    border-bottom: 1px dashed var(--line);
}
.tarif-row:last-child { border-bottom: 0; }
.tarif-main { flex: 1; }
.tarif-head {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.35rem;
}
.tarif-head h3 {
    margin: 0;
    font-size: 1.3rem;
    font-family: var(--font-display);
    font-weight: 500;
}
.tarif-duree {
    font-size: 0.82rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
}
.tarif-desc { color: var(--muted); font-size: 0.97rem; margin: 0; }
.tarif-price {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--gold-dark);
    white-space: nowrap;
    min-width: 90px;
    text-align: right;
}
.tarif-note {
    color: var(--muted);
    font-size: 0.88rem;
    font-style: italic;
    text-align: center;
    margin-top: 3rem;
}

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

/* Bloc réservation hero — centré, mis en avant */
.rdv-hero {
    position: relative;
    margin: 0 auto 3.5rem;
    max-width: 820px;
    padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 3.5rem);
    text-align: center;
    color: var(--cream-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    isolation: isolate;
    box-shadow: var(--shadow-lg);
}
.rdv-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(201, 166, 104, 0.25), transparent 55%),
        radial-gradient(ellipse at 80% 80%, rgba(123, 77, 44, 0.35), transparent 55%),
        linear-gradient(135deg, #2A1C13 0%, #4A3020 100%);
}
.rdv-hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.9  0 0 0 0 0.82  0 0 0 0 0.65  0 0 0 0.10 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    opacity: 0.4;
    mix-blend-mode: overlay;
}
.rdv-hero .section-eyebrow { color: var(--gold-light); }
.rdv-hero h2 { color: var(--cream-light); margin-bottom: 1rem; }
.rdv-hero h2 em { color: var(--gold-light); }
.rdv-hero p {
    color: rgba(245, 237, 224, 0.85);
    max-width: 480px;
    margin: 0 auto 2rem;
}
.rdv-hero .btn-primary {
    background: var(--gold);
    color: var(--brown-900);
    border-color: var(--gold);
}
.rdv-hero .btn-primary:hover {
    background: var(--gold-light);
    color: var(--brown-900);
    border-color: var(--gold-light);
}

/* Grille 3 colonnes pour les infos pratiques */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.contact-grid--three {
    grid-template-columns: repeat(3, 1fr);
}
.contact-grid--two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 820px;
    margin: 0 auto;
}
@media (max-width: 900px) {
    .contact-grid--three,
    .contact-grid--two { grid-template-columns: 1fr; }
}

.footer-blurb {
    font-size: 0.92rem;
    color: rgba(245, 237, 224, 0.7);
    margin-bottom: 1rem;
    max-width: 220px;
}
.contact-card {
    background: var(--cream-light);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.contact-card h2 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
}

.contact-list, .horaires-list { list-style: none; padding: 0; margin: 0; }
.contact-list li {
    padding: 0.7rem 0;
    border-bottom: 1px dashed var(--line);
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list .label {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 500;
}
.horaires-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.7rem 0;
    border-bottom: 1px dashed var(--line);
}
.horaires-list li:last-child { border-bottom: 0; }
.h-jour { font-weight: 500; }
.h-creneau { color: var(--muted); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
    background: var(--brown-900);
    color: rgba(245, 237, 224, 0.75);
    padding: 5rem 1.5rem 2rem;
    margin-top: 5rem;
}
.footer-inner {
    max-width: var(--max-wide);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(245, 237, 224, 0.12);
}
.footer-col h4 {
    color: var(--gold-light);
    font-size: 0.78rem;
    margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: 0.3rem 0; }
.footer-col a {
    color: rgba(245, 237, 224, 0.75);
    font-size: 0.92rem;
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-light); }
.logo-footer .logo-mark { color: var(--gold-light); }
.logo-footer .logo-word { color: rgba(245, 237, 224, 0.7); }
.tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--gold-light);
    margin-top: 1rem;
    max-width: 280px;
}
.footer-bottom {
    max-width: var(--max-wide);
    margin: 2rem auto 0;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(245, 237, 224, 0.5);
}
.footer-bottom p { margin: 0; }

.site-footer .btn-outline {
    color: var(--gold-light);
    border-color: var(--gold);
}
.site-footer .btn-outline:hover {
    background: var(--gold);
    color: var(--brown-900);
    border-color: var(--gold);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
    .soin-detail-body {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 720px) {
    .nav-links, .nav-cta { display: none; }
    .nav-toggle { display: flex; }

    body.nav-open .nav-links {
        display: flex;
        position: fixed;
        top: var(--header-h);
        left: 0; right: 0;
        flex-direction: column;
        background: var(--cream-light);
        padding: 2rem 1.5rem;
        gap: 1.2rem;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-md);
    }
    body.nav-open .nav-cta {
        display: inline-flex;
        position: fixed;
        top: calc(var(--header-h) + 260px);
        left: 1.5rem; right: 1.5rem;
        justify-content: center;
    }

    .hero { min-height: auto; padding: 5rem 1.5rem; }
    .hero h1 br { display: none; }

    .tarif-row {
        flex-direction: column;
        gap: 0.6rem;
    }
    .tarif-price { text-align: left; }

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

    .signature-quote { font-size: 1.3rem; padding: 1.5rem 0.5rem; }
}

@media (max-width: 480px) {
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { width: 100%; }
}

/* =========================================================
   ===============  EFFETS / ANIMATIONS  ===================
   ========================================================= */

/* ---- Scroll progress bar (top) ---- */
.scroll-progress {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-dark));
    transform: scaleX(0);
    transform-origin: left;
    z-index: 101;
    transition: transform 0.05s linear;
    box-shadow: 0 0 8px rgba(201, 166, 104, 0.6);
}

/* ---- Navbar hide on scroll down ---- */
.site-header {
    transition: border-color 0.3s var(--ease),
                background 0.3s var(--ease),
                transform 0.4s var(--ease);
}
.site-header.hidden { transform: translateY(-100%); }

/* ---- Reveal (fade + up) ---- */
.reveal, .reveal-stagger > * {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible, .reveal-stagger > *.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-stagger > *:nth-child(1).is-visible { transition-delay: 0.00s; }
.reveal-stagger > *:nth-child(2).is-visible { transition-delay: 0.08s; }
.reveal-stagger > *:nth-child(3).is-visible { transition-delay: 0.16s; }
.reveal-stagger > *:nth-child(4).is-visible { transition-delay: 0.24s; }
.reveal-stagger > *:nth-child(5).is-visible { transition-delay: 0.32s; }
.reveal-stagger > *:nth-child(6).is-visible { transition-delay: 0.40s; }

/* ---- Hero : photo background ---- */
.hero-bg {
    will-change: transform;
}
.hero-orb { display: none; }
.hero-orb-1 { display: none; }
.hero-orb-2 { display: none; }

.hero-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.9  0 0 0 0 0.82  0 0 0 0 0.65  0 0 0 0.12 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    opacity: 0.5;
    mix-blend-mode: overlay;
    pointer-events: none;
}

/* ---- Hero title letter-by-letter ---- */
.hero h1 .word {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    line-height: 1.1;
}
.hero h1 .word > span {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 1s var(--ease);
}
.hero h1.animate-in .word > span { transform: translateY(0); }
.hero h1.animate-in .word:nth-child(1) > span { transition-delay: 0.10s; }
.hero h1.animate-in .word:nth-child(2) > span { transition-delay: 0.15s; }
.hero h1.animate-in .word:nth-child(3) > span { transition-delay: 0.20s; }
.hero h1.animate-in .word:nth-child(4) > span { transition-delay: 0.25s; }
.hero h1.animate-in .word:nth-child(5) > span { transition-delay: 0.30s; }
.hero h1.animate-in .word:nth-child(6) > span { transition-delay: 0.35s; }
.hero h1.animate-in .word:nth-child(7) > span { transition-delay: 0.40s; }
.hero h1.animate-in .word:nth-child(8) > span { transition-delay: 0.45s; }
.hero h1.animate-in .word:nth-child(9) > span { transition-delay: 0.50s; }
.hero h1.animate-in .word:nth-child(10) > span { transition-delay: 0.55s; }

.hero .eyebrow,
.hero .lead,
.hero-ctas {
    animation: hero-fade 1.1s 0.6s both var(--ease);
}
.hero .lead { animation-delay: 0.75s; }
.hero-ctas { animation-delay: 0.9s; }
@keyframes hero-fade {
    from { opacity: 0; transform: translateY(15px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Le scroll hint a sa propre animation pour préserver translateX(-50%) */
.hero-scroll {
    animation: hero-scroll-in 1.1s 1.1s both var(--ease);
}
@keyframes hero-scroll-in {
    from { opacity: 0; transform: translate(-50%, 15px); }
    to   { opacity: 1; transform: translate(-50%, 0); }
}

.scroll-line {
    animation: scroll-pulse 2.2s ease-in-out infinite;
    transform-origin: top;
}
@keyframes scroll-pulse {
    0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
    50%      { transform: scaleY(1);   opacity: 1; }
}

/* ---- Marquee band ---- */
.marquee {
    background: var(--brown-900);
    color: var(--gold-light);
    padding: 1.4rem 0;
    overflow: hidden;
    border-top: 1px solid var(--gold-dark);
    border-bottom: 1px solid var(--gold-dark);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.5rem;
}
.marquee-track {
    display: flex;
    gap: 2.5rem;
    white-space: nowrap;
    animation: marquee 40s linear infinite;
    will-change: transform;
}
.marquee-track span { flex-shrink: 0; }
.marquee .dot { color: var(--gold); font-size: 1rem; }
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ---- Soin card — numéro décoratif ---- */
.soin-card { position: relative; }
.soin-index {
    position: absolute;
    top: 1rem;
    right: 1.3rem;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--gold-light);
    opacity: 0.45;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), color 0.3s var(--ease);
}
.soin-card:hover .soin-index {
    opacity: 1;
    color: var(--gold-dark);
    transform: scale(1.3) translate(4px, -4px);
}

.tilt { transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); will-change: transform; }

/* ---- Stats ---- */
.stats .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.stat { padding: 1.5rem 0.5rem; border-left: 1px solid var(--line); }
.stat:first-child { border-left: 0; }
.stat-num {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--gold-dark);
    line-height: 1;
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}
.stat-label {
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
}
@media (max-width: 720px) {
    .stats .container { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .stat { border-left: 0; }
    .stat:nth-child(odd) { border-right: 1px solid var(--line); }
}

/* ---- CTA final : fond décoré ---- */
.cta-final {
    position: relative;
    overflow: hidden;
}
.cta-final .cta-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(201, 166, 104, 0.12), transparent 55%),
        radial-gradient(ellipse at 80% 50%, rgba(123, 77, 44, 0.08), transparent 55%);
    pointer-events: none;
    z-index: 0;
}
.cta-final .container-narrow { position: relative; z-index: 1; }

/* ---- Boutons : shimmer doré ---- */
.btn-primary { position: relative; overflow: hidden; isolation: isolate; }
.btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 35%, rgba(226, 201, 146, 0.4) 50%, transparent 65%);
    transform: translateX(-120%);
    transition: transform 0.8s var(--ease);
    z-index: -1;
}
.btn-primary:hover::before { transform: translateX(120%); }

/* ---- Back to top ---- */
.to-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--brown-800);
    color: var(--gold-light);
    border: 1px solid var(--gold);
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s var(--ease), visibility 0.3s, transform 0.3s var(--ease), background 0.3s;
    z-index: 90;
    box-shadow: var(--shadow-lg);
}
.to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.to-top:hover { background: var(--brown-900); }

/* ---- Navbar mobile : animation burger ---- */
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---- Client Vedette ---- */
.client-vedette { background: var(--cream); }
.client-vedette-inner {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto;
}
.client-vedette-img-wrap {
    position: relative;
    flex-shrink: 0;
}
.client-vedette-img {
    width: 320px;
    height: 400px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
    box-shadow: 0 20px 60px rgba(42,28,19,.18);
}
.client-vedette-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--gold);
    color: #fff;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .3rem .8rem;
    border-radius: 2px;
}
.client-vedette-content { flex: 1; }
.client-vedette-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--brown-900);
    margin: .25rem 0 .5rem;
}
.client-vedette-titre {
    font-size: .85rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}
.client-vedette-quote {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--brown-700);
    border-left: 3px solid var(--gold);
    padding-left: 1.25rem;
    margin: 0;
    line-height: 1.7;
}
@media (max-width: 720px) {
    .client-vedette-inner { flex-direction: column; gap: 2rem; }
    .client-vedette-img { width: 100%; height: 320px; }
}

/* =========================================================
   ACCENTS MARRON CHOCOLAT — Détails luxueux
   ========================================================= */

/* — Section-eyebrow flanqué de lignes fines — */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}
.section-eyebrow::before,
.section-eyebrow::after {
    content: "";
    width: 22px;
    height: 1px;
    background: var(--brown-700);
    opacity: 0.38;
    flex-shrink: 0;
}

/* — Fins séparateurs chocolat entre les blocs — */
.histoire       { border-top: 1px solid rgba(62, 42, 30, 0.1); }
.soins-preview  { border-top: 1px solid rgba(62, 42, 30, 0.1); }
.stats          { border-top: 1px solid rgba(62, 42, 30, 0.1); }
.avis           { border-top: 1px solid rgba(62, 42, 30, 0.1); }

/* — Ornement centré sous le titre de l'histoire — */
.histoire .container-narrow > h2 {
    position: relative;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}
.histoire .container-narrow > h2::after {
    content: "◆";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.45rem;
    color: var(--brown-700);
    opacity: 0.45;
    letter-spacing: 0;
}

/* — Page header (sous-pages) — trait centré enrichi — */
.page-header {
    position: relative;
}
.page-header::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--brown-700), transparent);
    opacity: 0.4;
}

/* — Soin detail head — trait gauche marron chocolat — */
.soin-detail-head {
    position: relative;
    padding-bottom: 2.2rem;
    margin-bottom: 2.2rem;
}
.soin-detail-head::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    background: var(--brown-700);
    opacity: 0.4;
    border-radius: 2px;
}

/* — Encart bienfaits — ombre gauche chocolat subtile — */
.soin-benefits {
    box-shadow: -3px 0 0 rgba(62, 42, 30, 0.28), var(--shadow-sm);
}

/* — Liste bienfaits — puce diamant chocolat — */
.soin-benefits li::before {
    content: "◆";
    background: none;
    width: auto;
    height: auto;
    border-radius: 0;
    top: 0.55rem;
    font-size: 0.42rem;
    color: var(--brown-700);
    opacity: 0.65;
    line-height: 1;
}

/* — Avis card — accent gauche chocolat — */
.avis-card {
    border-left: 3px solid rgba(62, 42, 30, 0.18);
}

/* — Stats — fine ligne décorative sous les chiffres — */
.stat-num {
    display: inline-block;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(62, 42, 30, 0.18);
    margin-bottom: 0.6rem;
}

/* — CTA final — ornement au-dessus de l'eyebrow — */
.cta-final .section-eyebrow {
    margin-top: 0.5rem;
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001s !important;
        transition-duration: 0.001s !important;
    }
    .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
    .hero h1 .word > span { transform: none; }
    .hero-orb, .marquee-track { animation: none; }
}
