/*================== FONTS ==================*/
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900&display=swap');

/*================== VARIABLES ==================*/
:root {
  --font-primaire: "Poppins", sans-serif;
  --font-secondaire: "Dancing Script", cursive;
  --font-color-primaire: #333;

  --color-fonce: #9a8b78;
  --color-moyenne: #c4baae;
  --color-claire: #e3ded9;
  --color-paire: #ebeeee;
  --color-brun-chaud: #4a3f34;
  --color-red: #c0392b;
}

* {
    box-sizing: border-box;
    text-decoration: none;
}

html {  
    overflow-x: hidden;
}


/******** INTEGRATION D'UNE POLICE DYS *******/
@font-face {
    font-family: 'OpenDyslexic';
    src: url('../font/OpenDyslexic-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
body.dislexic-mode,
body.dislexic-mode input,
body.dislexic-mode button,
body.dislexic-mode select,
body.dislexic-mode .btn-reservation {
    font-family: 'OpenDyslexic', sans-serif;
    font-size: 0.7rem;
    line-height: 1.8;
    letter-spacing: 0.03em;
}
body.dislexic-mode .menu ul a {
    font-size: 0.85rem;
}
body.dislexic-mode .card-rond p {
    font-size: 0.75rem;
}

/*================== BODY ==================*/
body {
    font-family: var(--font-primaire);
    color: var(--font-color-primaire);
    background-color: var(--color-claire);
    margin: 0;
}

/*================== HEADER ==================*/
header {
    background-color: var(--color-brun-chaud);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(0.5rem, 1.5vw, 1rem)
             clamp(2rem, 5vw, 5rem);
}

header h1 {
    font-size: clamp(0.9rem, 1vw + 0.75rem, 2rem);
    font-family: var(--font-secondaire);
    color: var(--color-moyenne);
    margin: 0;
    padding: 0;
}
header h1 span {
    font-family: var(--font-primaire);
    font-size: clamp(0.6rem, 0.5vw + 0.75rem, 0.8rem);
    font-weight: lighter;
}

/* Bouton réservation (header + nav) */
.btn-reservation {
    padding: clamp(0.3rem, 0.8vw, 0.5rem)
             clamp(1.2rem, 3vw, 2.5rem);
    font-size: clamp(0.7rem, 1vw + 0.5rem, 1rem);
    background-color: var(--color-claire);
    color: var(--color-red);
    border-radius: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-reservation:hover,
.btn-reservation:focus-visible {
    background-color: var(--color-fonce);
    color: var(--color-claire);
    transform: translateY(-3px);
}




/*=====================================================================
                                NAV
=====================================================================*/
nav {
    position: sticky;
    top: 0;
    z-index: 100;

    background-color: var(--color-moyenne);
    padding: clamp(0.5rem, 1.5vw, 1rem)
             clamp(1.1rem, 4vw, 2rem);

    display: flex;
    align-items: center;
    justify-content: space-between;

    height: 100px;
    border-top: 1px solid var(--color-claire);
    border-bottom: 1px solid var(--color-claire);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Logo */
.logo {
    width: 110px;
    height: auto;
    margin-left: 25px;
    transition: opacity 0.2s ease;
}

.logo:hover {
    opacity: 0.75;
}

/* Bouton réservation dans la nav (caché par défaut) */
.nav-reservation {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

nav.show-nav-cta .nav-reservation {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}


/*================== MENU ==================*/
.menu ul {
    list-style: none;
    display: flex;
    gap: clamp(0.75rem, 1.1vw, 1rem);
    margin-right: 30px;
}
.menu ul a {
    color: var(--color-brun-chaud);
    font-size: clamp(0.75rem, 1vw + 0.8rem, 1.1rem);
    font-weight: 400;
    transition: color 0.3s ease, filter 0.3s ease;
}

.menu ul a.active {
    color: var(--color-paire);
}

.menu > ul:hover > li > a:not(:hover) {
    filter: blur(1px);
    /* color: var(--color-paire); */
}

/*================== DROPDOWN ==================*/
.menu .dropdown {
    position: relative;
}
.menu .dropdown ul {
    position: absolute;
    top: 30px;
    background-color: var(--color-claire);
    width: max-content;
    margin: 0;
    padding: 30px;
    border-radius: 7px;
    flex-direction: column;
    box-shadow: 0 5px 7px rgba(0,0,0,0.3);

    visibility: hidden;
    transform: translateY(-40px);
    transition: transform 1s, opacity 0.5s;
    opacity: 0;
}
.menu .dropdown.active > ul {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.menu .dropdown li a:hover {
    opacity: 0.75;
}
.menu .dropdown > a i {
    transition: transform 0.5s;
}
.menu .dropdown.active > a i {
    transform: rotate(-180deg);
}

/*================== BURGER ==================*/
.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--color-brun-chaud);
}

/*================== ACCESSIBILITÉ ==================*/
a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--color-red);
    outline-offset: 3px;
}
/*=====================================================================
                                NAV .End
=====================================================================*/








/*=====================================================================
                                MAIN
=====================================================================*/
.justify {
    text-align: justify;
}
.paire {
    background-color: var(--color-paire);
}
section {
    padding: clamp(1.2rem, 2vw, 2rem)
             clamp(1.1rem, 4vw, 5.4rem);
}

/** SECTION#home-presentation */
#home-presentation {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;

    background-image: url("../img/bg-home-presentation.webp");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    position: relative;
    padding: clamp(2rem, 4vw, 3rem);

    /* Effet parallaxe via JS */
    overflow: hidden;
}

/* Voile pour lisibilité */
#home-presentation::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 0;
}

/* Contenu au-dessus du voile */
#home-presentation > div {
    position: relative;
    z-index: 1;
    flex: 1 1 400px;
    max-width: 500px;
    margin: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Photo */
.home-photo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

/* Infos Catherine */
.home-info {
    background-color: rgba(255,255,255,0.9);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.home-info h3 {
    margin: 0 0 0.5rem;
    font-family: var(--font-secondaire);
    font-size: 1.8rem;
    color: var(--color-fonce);
}

.home-info p {
    margin: 0;
    color: #444;
    line-height: 1.5;
}

/* Quote / message */
.home-quote {
    background-color: rgba(255,255,255,0.85);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    font-style: italic;
    font-size: 1.2rem;
    color: #333;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
/** SECTION#home-presentation .End */

/* SECTION .flexbox-moderne */
.flexbox-moderne {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.1rem, 2vw, 4rem);
    align-items: center;
}
.flexbox-moderne div {
    flex: 1 1 320px;
}
.flexbox-moderne div img {
    border-radius: clamp(0.5rem, 1vw, 1.25rem);
    width: 100%;
    height: auto;
    display: block;
}
.flexbox-moderne article {
    flex: 1 1 320px;
    min-width: 0;
}
.flexbox-moderne article h2 {
    font-size: clamp(1.5rem, 1vw + 1.1rem, 2rem);
    margin-top: 0;
    font-family: var(--font-secondaire);
    color: var(--color-brun-chaud)
}
.flexbox-moderne article p {
    font-size: clamp(0.8rem, 0.3vw + 0.95rem, 1.05rem);
    text-align: justify;
}
.flexbox-moderne picture,
.flexbox-moderne div {
    display: flex;
    justify-content: center;
    align-items: center;
}
.reverse {
    flex-direction: row-reverse;
}
/** SECTION #mes-inspirations */
#mes-inspirations h2 {
    font-family: var(--font-secondaire);
    font-size: clamp(1.8rem, 1.2vw + 1.3rem, 2.5rem);
    color: var(--color-brun-chaud);
    text-align: center;
    margin-bottom: clamp(0.8rem, 2vw, 1.5rem);
}
.intro-inspirations {
    background-color: var(--color-brun-chaud);
    color: var(--color-claire);
    padding: clamp(1rem,2vw, 1.5rem);
    border-radius: clamp(0.5rem, 1vw, 1.25rem);
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    font-size: clamp(0.9rem, 0.3vw + 0.95rem, 1.1rem);
    line-height: 1.7;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.intro-inspirations p {
    margin: 0;
    text-align: justify;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(2rem, 3vw,2.2rem);
    justify-content: center;
    /* padding: clamp(2rem, 4vw, 3rem); */
}
.cards > div {
    background-color: var(--color-paire);
    padding: clamp(0.8rem, 3vw, 1rem);
    border-radius: clamp(0.5rem, 0.8vw, 1rem);
    flex: 1 1 350px;
    min-width: 0;
    border: 1px solid #ddd;
}
.cards > div img {
    width: 100%;
    border-radius: clamp(0.5rem, 0.8vw, 1rem);
}
.cards > div h3 {
    font-size: clamp(1.5rem, 0.4vw + 1rem, 2.3rem);
    margin-top: 5px;
    text-align: center;
    color: var(--color-brun-chaud);
    font-family: var(--font-secondaire);
}
.cards > div p {
    text-align: justify;
    font-size: clamp(1rem, 0.4vw + 0.9rem, 1.1rem);
}
.card-rond {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background-color: var(--font-color-primaire);

    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;

    align-self: center;
    flex-shrink: 0; /* Empêche le cercle de s'écraser si l'écran est petit */
}
.card-rond p {
    color: var(--color-claire);
    text-align: center;
    font-size: 1rem;
}
/** SECTION #mes-inspirations .End */

/*=====================================================================
                                MAIN .End
=====================================================================*/






/*=====================================================================
                                FOOTER
=====================================================================*/

footer {
    margin-top: 25px;
    background-color: var(--color-fonce);
    color: var(--color-claire);
    padding-top: clamp(2rem, 4vw, 3rem);
    font-size: 0.95rem;
}

/* Conteneur principal */
.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(2rem, 4vw, 3rem);
    padding: 0 clamp(1.5rem, 5vw, 5rem);
    max-width: 1400px;
    margin: 0 auto;
}

/* Colonnes */
.footer-column {
    flex: 1 1 220px;
    min-width: 220px;
}

.footer-column h4 {
    font-family: var(--font-secondaire);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--color-brun-chaud);
}

/* Textes */
.footer-column p {
    line-height: 1.6;
    margin: 0 0 0.8rem;
    color: #f4f2ef;
}

/* Liens */
footer a {
    color: var(--color-claire);
    transition: opacity 0.3s ease, color 0.3s ease;
}

footer a:hover,
footer a:focus-visible {
    opacity: 0.75;
    text-decoration: underline;
}

/* Liste liens rapides */
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.6rem;
}

/* Icônes */
.footer-column i {
    margin-right: 0.5rem;
    color: var(--color-brun-chaud);
    font-size: 1.3rem;
}

/* Réseaux sociaux */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    font-size: 1.4rem;
}

.fa-facebook,
.fa-instagram {
    font-size: 2rem !important;
    color: var(--color-claire) !important;
}

/* Accessibilité */
#boxdys {
    /* background-color: rgba(255,255,255,0.85); */
    color: var(--font-color-primaire);
    padding: 1.2rem;
    border-radius: 12px;
}

#boxdys h4 {
    color: var(--color-brun-chaud);
}

#boxdys label {
    font-style: italic;
}

#boxdys a {
    color: var(--color-brun-chaud);
}

.qrcode {
    width: 95px;
}

/* Switch aligné */
.dys-switch {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.8rem;
}

/* Barre inférieure */
.footer-bottom {
    margin-top: clamp(2rem, 4vw, 3rem);
    padding: 1.2rem;
    text-align: center;
    background-color: rgba(0,0,0,0.15);
    font-size: 0.85rem;
}

.footer-bottom p {
    margin: 0.3rem 0;
}

.footer-creator a {
    font-weight: 500;
}

.phone-info {
    display: block;
    margin-top: 10px;
}

.footer-address {
    font-style: normal;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 0.8rem;
}

.footer-address strong {
    /* font-family: var(--font-secondaire); */
    font-size: 0.9rem;
    color: #fff;
}

.map-link {
    display: inline-block;
    margin-top: 0.3rem;
    color: var(--color-claire);
    font-size: 0.9rem;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.map-link:hover,
.map-link:focus-visible {
    opacity: 0.75;
}


/*** SWITCH DYS **/ 
#boxdys h6 { 
    font-size: 1rem; 
    color: #a2793b; 
    text-transform: capitalize; 
    text-align: center; 
    margin-top: 0; 
    margin-bottom: 15px; 
} 
#boxdys label { 
    font-size: 0.9rem; 
    color: #333; 
    font-style: italic; 
    margin-right: 15px; 
} 
#boxdys div { 
    display: flex; 
    align-items: center; 
} 
#boxdys p { 
    margin-top: 25px; 
} 
#boxdys p a { 
    font-size: 0.85rem; 
} 
input[type="checkbox"]#dys { 
    -webkit-appearance: none; 
    appearance: none; 
    width: 80px; 
    height: 10px; 
    background-color: #ecf0f1; 
    border-radius: 20px; 
    position: relative; 
    outline: none; 
    cursor: pointer; 
} 
input[type="checkbox"]#dys::before { 
    content: ''; 
    width: 32px; 
    height: 32px; 
    background-color: #a2793b; 
    box-shadow: 3px 3px 5px #333; 
    position: absolute; 
    top: -10px; 
    left: 4px; 
    border-radius: 50%; 
    transition: 0.5s; 
} 
input[type="checkbox"]#dys:checked { 
    background-color: #dba350; 
} 
input[type="checkbox"]#dys:checked::before { 
    left: 44px; 
} 
/*** SWITCH DYS.End **/
/*=====================================================================
                                FOOTER .End
=====================================================================*/




/*================== RESPONSIVE ==================*/
@media screen and (max-width: 1050px) {

    .burger {
        display: block;
    }

    .menu {
        position: fixed;
        top: 0;
        left: -100%;
        height: 100vh;
        overflow: auto;
        width: 80%;
        background-color: var(--color-moyenne);
        box-shadow: 5px 0 7px rgba(0,0,0,0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: left 0.5s;
    }
    .menu.active {
        left: 0;
    }
    .menu ul {
        flex-direction: column;
        gap: 25px;
    }
    .menu .dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .menu .dropdown ul {
        display: none;
    }
    .menu .dropdown.active > ul {
        display: block;
        background-color: var(--color-moyenne);
        box-shadow: none;
        position: relative;
        padding: 20px;
        width: 100%;
        top: 0;
    }
    .menu .dropdown ul li {
        margin-bottom: 15px;
    }

    #home-presentation {
        padding: 3rem 1rem;
    }

    .home-photo {
        width: 150px;
        height: 150px;
    }

    .home-info, .home-quote {
        width: 100%;
    }


    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .dys-switch {
        justify-content: center;
    }


}















/* ================== NAV RÉDUITE (sticky) ================== */

nav {
    transition: height 0.3s ease, padding 0.3s ease;
}

nav.show-nav-cta {
    height: 70px;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
}

/* Logo réduit */
nav.show-nav-cta .logo {
    width: 80px;
    margin-left: 15px;
    transition: width 0.3s ease;
}
nav.show-nav-cta .nav-reservation {
    transform: translate(-50%, 0);
    font-size: 9px;
}




/*=====================================================================
                                QUI SUIS JE
=====================================================================*/
.qui-suis-je {
    border-radius: clamp(0.5rem, 1vw, 1.25rem);
}
.font-script {
    font-family: var(--font-secondaire);
    font-size: 1.5rem;
}


/*=====================================================================
                                CAL.EU
=====================================================================*/
.rdv-cal {
    background-color: #eeeff2;
}


/*=====================================================================
                                CALENDLY
=====================================================================*/
.calendly-perso {
    background-color: #fafafa;
}
.calendly-perso h2,
.calendly-perso h4 {
    text-align: center;
    font-family: var(--font-secondaire);
    color: var(--color-brun-chaud);
    font-size: 3rem !important;
    padding: 0;
}
.calendly-perso h4 {
    font-size: 1.7rem !important;
    color: var(--color-fonce);
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.step-card {
    flex: 1 1 250px;
    max-width: 300px;
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(154, 139, 120, 0.1);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(154, 139, 120, 0.15);
}

.step-number {
    width: max-content;
    background: linear-gradient(135deg, var(--color-fonce) 0%, #b09a85 100%);
    padding: 3px 18px;
    border-radius: 9px;
    font-size: 1.5rem;
    margin: auto;
    color: #fff;
}

.step-card h4 {
    font-size: 1.2rem;
    color: var(--color-fonce);
    margin-top: 0.7rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.step-card p {
    font-size: 0.95rem;
    color: #6b5d52;
    line-height: 1.6;
    text-align: justify;
}
.step-card a {
    color: rgb(123, 123, 229);
    text-decoration: none;
}
.step-card a:hover {
    text-decoration: underline;
}



/*=====================================================================
                                FAQ
=====================================================================*/
.faq-item {
    background: #faf7f4;
    border-radius: 16px;
    margin-bottom: 1rem;
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
}

/* Summary */
.faq-item summary {
    cursor: pointer;
    padding: 1.4rem 1.8rem;
    font-weight: 500;
    list-style: none;
    position: relative;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

/* Icône */
.faq-item summary::after {
    content: "＋";
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    content: "–";
}

/* Contenu animé */
.faq-content {
    padding: 0 1.8rem;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition:
        max-height 0.45s ease,
        opacity 0.35s ease,
        padding-bottom 0.3s ease;
}

.faq-item[open] .faq-content {
    max-height: 500px; /* valeur confortable */
    opacity: 1;
    padding-bottom: 1.6rem;
}

/* Petit effet de respiration */
.faq-item[open] {
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.intro-inspirations-link {
    color: var(--color-claire);
    text-decoration: underline;
}
.intro-inspirations-link:hover {
    text-decoration: none;
}





/*=====================================================================
                    PAGE RITUELS & TARIFS - STYLES
=====================================================================*/

/* Section Tarifs - La Parenthèse Bienveillante */
.tarifs-section {
    padding: clamp(3rem, 5vw, 5rem) clamp(1.5rem, 5vw, 5rem);
    background: linear-gradient(to bottom, #fafaf9 0%, var(--color-claire) 100%);
}

.tarifs-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.tarifs-intro h3 {
    font-family: var(--font-secondaire);
    font-size: clamp(2rem, 3vw, 2.8rem);
    color: var(--color-brun-chaud);
    margin-bottom: 1rem;
    font-weight: 400;
}

.tarifs-intro p {
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    color: #6b5d52;
    font-style: italic;
}

/* Cartes de pricing */
.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    flex: 1 1 300px;
    max-width: 350px;
    background: linear-gradient(145deg, #ffffff 0%, #fdfcfb 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 
        0 10px 40px rgba(154, 139, 120, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(227, 222, 217, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 60px rgba(154, 139, 120, 0.18),
        0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Carte mise en avant */
.pricing-card.featured {
    border: 3px solid var(--color-fonce);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: translateY(-8px) scale(1.05);
}

/* Badge "Le plus demandé" */
.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--color-fonce) 0%, #b09a85 100%);
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(154, 139, 120, 0.3);
}

/* En-tête de carte */
.card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(227, 222, 217, 0.5);
}

.card-header i {
    font-size: 2.5rem;
    color: var(--color-fonce);
    margin-bottom: 1rem;
    display: block;
}

.card-header h4 {
    font-family: var(--font-secondaire);
    font-size: 1.8rem;
    color: var(--color-brun-chaud);
    margin: 0.5rem 0;
    font-weight: 400;
}

.duration {
    color: #9a8b78;
    font-size: 1rem;
    font-style: italic;
    margin: 0;
}

/* Corps de carte - Prix */
.card-body {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.2rem;
    background-color: rgba(227, 222, 217, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.price-row:hover {
    background-color: rgba(227, 222, 217, 0.35);
    transform: translateX(5px);
}

.price-row.tarif-douceur {
    background: linear-gradient(135deg, rgba(154, 139, 120, 0.08) 0%, rgba(196, 186, 174, 0.12) 100%);
    border: 1px dashed var(--color-moyenne);
}

.price-row .label {
    font-weight: 500;
    color: var(--color-brun-chaud);
    font-size: 0.95rem;
}

.price-row .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-fonce);
}

.price-row sup {
    color: #d4a574;
    font-weight: 700;
}

/* Section Massage Assis */
.massage-assis-section {
    padding: clamp(3rem, 5vw, 5rem) clamp(1.5rem, 5vw, 5rem);
}

.section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header-centered h3 {
    font-family: var(--font-secondaire);
    font-size: clamp(2rem, 3vw, 2.8rem);
    color: var(--color-brun-chaud);
    margin-bottom: 1rem;
    font-weight: 400;
}

.section-header-centered p {
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    color: #6b5d52;
    font-style: italic;
}

.massage-assis-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.assis-card {
    flex: 1 1 300px;
    max-width: 350px;
    background: linear-gradient(145deg, #ffffff 0%, #fdfcfb 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 
        0 8px 30px rgba(154, 139, 120, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.04);
    border: 2px solid rgba(227, 222, 217, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.assis-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 15px 50px rgba(154, 139, 120, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.08);
}

.assis-card.highlight {
    background: linear-gradient(145deg, var(--color-paire) 0%, #ffffff 100%);
    border: 2px solid var(--color-moyenne);
}

.assis-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--color-fonce) 0%, #b09a85 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(154, 139, 120, 0.3);
}

.assis-icon i {
    font-size: 2rem;
    color: #fff;
}

.assis-card h4 {
    font-family: var(--font-secondaire);
    font-size: 1.6rem;
    color: var(--color-brun-chaud);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.assis-subtitle {
    font-size: 0.9rem;
    color: var(--color-fonce);
    font-weight: 600;
    margin-bottom: 1rem;
}

.assis-duration {
    font-size: 0.95rem;
    color: #6b5d52;
    line-height: 1.6;
    margin: 1rem 0;
}

.assis-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-fonce);
    margin-top: 1.5rem;
}

/* Section Tarif Douceur */
.tarif-douceur-section {
    padding: clamp(3rem, 5vw, 5rem) clamp(1.5rem, 5vw, 5rem);
    background: linear-gradient(135deg, rgba(227, 222, 217, 0.3) 0%, rgba(235, 238, 238, 0.4) 100%);
}

.douceur-container {
    max-width: 1200px;
    margin: 0 auto;
}

.douceur-header {
    text-align: center;
    margin-bottom: 3rem;
}

.douceur-header i {
    font-size: 3rem;
    color: var(--color-fonce);
    margin-bottom: 1rem;
}

.douceur-header h3 {
    font-family: var(--font-secondaire);
    font-size: clamp(2rem, 3vw, 2.8rem);
    color: var(--color-brun-chaud);
    font-weight: 400;
}

.douceur-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.douceur-item {
    flex: 1 1 300px;
    max-width: 350px;
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 
        0 8px 25px rgba(154, 139, 120, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.douceur-item:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 12px 35px rgba(154, 139, 120, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.08);
}

.douceur-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.2rem;
    background: linear-gradient(135deg, #d4a574 0%, #b09a85 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.douceur-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.douceur-item h4 {
    font-size: 1.3rem;
    color: var(--color-brun-chaud);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.douceur-item p {
    color: #5a4d42;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Citation Pourquoi deux tarifs */
.douceur-quote {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(145deg, #ffffff 0%, #fdfcfb 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 5px solid var(--color-fonce);
    box-shadow: 
        0 8px 30px rgba(154, 139, 120, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.04);
}

.douceur-quote h4 {
    font-family: var(--font-secondaire);
    font-size: 1.6rem;
    color: var(--color-brun-chaud);
    margin-bottom: 1.2rem;
    font-weight: 400;
}

.douceur-quote blockquote {
    margin: 0;
    padding: 0;
}

.douceur-quote p {
    font-style: italic;
    color: #5a4d42;
    line-height: 1.8;
    font-size: 1.05rem;
    text-align: justify;
}
.red {
    color: var(--color-red);
}

/* Section Frais de déplacement */
.deplacement-section {
    padding: clamp(2.5rem, 4vw, 4rem) clamp(1.5rem, 5vw, 5rem);
    background-color: var(--color-paire);
}

.deplacement-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(145deg, #ffffff 0%, #fdfcfb 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 
        0 10px 40px rgba(154, 139, 120, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    gap: 2rem;
    align-items: center;
    border: 2px solid rgba(227, 222, 217, 0.5);
}

.deplacement-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-fonce) 0%, #b09a85 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(154, 139, 120, 0.3);
}

.deplacement-icon i {
    font-size: 2.2rem;
    color: #fff;
}

.deplacement-content {
    flex: 1;
}

.deplacement-content h3 {
    font-family: var(--font-secondaire);
    font-size: 1.8rem;
    color: var(--color-brun-chaud);
    margin: 0 0 0.8rem;
    font-weight: 400;
}

.deplacement-main {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-fonce);
    margin: 0.5rem 0;
}

.deplacement-sub {
    font-size: 0.95rem;
    color: #6b5d52;
    margin: 0.5rem 0 1.2rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, var(--color-fonce) 0%, #b09a85 100%);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(154, 139, 120, 0.2);
}

.contact-link:hover {
    background: linear-gradient(135deg, var(--color-brun-chaud) 0%, #9a8b78 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(154, 139, 120, 0.3);
}

/* Section CTA */
.cta-section {
    padding: clamp(4rem, 6vw, 6rem) clamp(1.5rem, 5vw, 5rem);
    background: linear-gradient(135deg, var(--color-fonce) 0%, var(--color-moyenne) 100%);
    text-align: center;
}

.cta-content h3 {
    font-family: var(--font-secondaire);
    font-size: clamp(2rem, 3vw, 3rem);
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 400;
}

.cta-content p {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 3rem;
    background: #fff;
    color: var(--color-brun-chaud);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.btn-cta i {
    transition: transform 0.3s ease;
}

.btn-cta:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .pricing-cards {
        gap: 1.5rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px) scale(1);
    }
    
    .deplacement-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    .douceur-quote {
        padding: 2rem 1.5rem;
    }
    
    .assis-card {
        max-width: 100%;
    }
}