@import url('https://fonts.cdnfonts.com/css/kiona');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'DM Sans', Arial, sans-serif;
    background: #fff;
}


/* * {
    outline: 1px solid orange;
} */

/* Tokens */

:root {
    /* Colors */
    --white-color-primary: #fff;
    --light-color-primary: #f9edd4;
    --light-color-secondary: #ffd074;

}

/* Header */

.header_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

header {
    width: 100%;
    color: #fff;
    padding: 1rem 1.25rem;
    position: fixed;
    z-index: 20;
    box-sizing: border-box;
}

.header_aside {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
}

.header_center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header_aside-left {
    justify-content: flex-start;
    gap: 1em;
}

.header_aside-right {
    justify-content: flex-end;
    gap: .8rem;
}

.header_burger-btn {
    appearance: none;
    background: transparent;
    border: 0;
    color: inherit;
    cursor: pointer;
    padding: .45rem 0;
    display: inline-grid;
    grid-template-columns: 24px auto;
    grid-template-rows: repeat(2, 2px);
    column-gap: .6rem;
    row-gap: .35rem;
    align-items: center;
    font: 500 .67rem/1 'DM Sans', sans-serif;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.header_burger-btn > span:not(.menu-label) {
    width: 24px;
    height: 1.5px;
    background: currentColor;
    transition: transform .35s ease, width .35s ease;
}

.header_burger-btn > span:nth-child(2) {
    width: 16px;
}

.header_burger-btn[aria-expanded="true"] > span:first-child {
    transform: translateY(3.75px) rotate(45deg);
}

.header_burger-btn[aria-expanded="true"] > span:nth-child(2) {
    width: 24px;
    transform: translateY(-3.75px) rotate(-45deg);
}

.menu-label {
    grid-column: 2;
    grid-row: 1 / 3;
}

/* Logo */

.header_hand_logo {
    width: 6.3rem;
    display: block;
}

/* Full-screen navigation */

.burger-menu {
    position: fixed;
    inset: 0;
    min-height: 100svh;
    left: 0;
    padding: 6.75rem 1.5rem 1.5rem;
    box-sizing: border-box;
    background: #262a25;
    color: #f9edd4;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-1.25rem);
    pointer-events: none;
    transition: opacity .45s ease, transform .45s cubic-bezier(.22, 1, .36, 1), visibility .45s;
}

.burger-menu::before,
.burger-menu::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.burger-menu::before {
    width: min(78vw, 47rem);
    aspect-ratio: 1;
    right: -25vw;
    top: 8%;
    border: 1px solid rgba(249, 237, 212, .18);
    box-shadow: 0 0 0 4rem rgba(249, 237, 212, .025), 0 0 0 8rem rgba(249, 237, 212, .02);
}

.burger-menu::after {
    width: 13rem;
    height: 13rem;
    left: -7rem;
    bottom: 8%;
    background: #d0a968;
    opacity: .16;
}

.burger-menu.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.menu-topline,
.menu-footer {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(249, 237, 212, .65);
    font-size: .65rem;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.burger-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.burger-menu li {
    overflow: hidden;
}

.burger-menu a {
    color: inherit;
    text-decoration: none;
}

.menu-content {
    position: relative;
    z-index: 1;
}

.menu-intro {
    margin-bottom: 2rem;
}

.menu-intro p {
    margin: 0 0 .4rem;
    font: italic clamp(1.45rem, 5vw, 2.2rem)/1.1 'Playfair Display', serif;
}

.menu-intro span {
    color: rgba(249, 237, 212, .65);
    font-size: .8rem;
    line-height: 1.5;
}

.burger-menu li a {
    display: flex;
    align-items: baseline;
    gap: .9rem;
    padding: .22rem 0;
    font: 400 clamp(2.35rem, 10vw, 5.5rem)/1.08 'Playfair Display', serif;
    transition: color .25s ease, transform .25s ease;
}

.burger-menu li a span {
    color: #d0a968;
    font: 500 .62rem/1 'DM Sans', sans-serif;
    letter-spacing: .1em;
}

.burger-menu li a:hover,
.burger-menu li a:focus-visible {
    color: #d0a968;
    transform: translateX(.45rem);
}

.menu-footer a {
    color: #f9edd4;
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.menu-footer a span {
    margin-left: .35rem;
    color: #d0a968;
    font-size: 1.15rem;
}

.menu-socials {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.menu-socials a {
    display: grid;
    place-items: center;
    width: 1.8rem;
    height: 1.8rem;
    border: 1px solid rgba(249, 237, 212, .35);
    border-radius: 50%;
    transition: background-color .25s ease, transform .25s ease;
}

.menu-socials a:hover,
.menu-socials a:focus-visible {
    background: #d0a968;
    transform: translateY(-.15rem);
}

.menu-socials img {
    width: .85rem;
    height: .85rem;
    filter: brightness(0) invert(1);
}

.menu-footer .menu-socials a {
    font-size: 0;
}

@media (max-width: 480px) {
    .menu-footer {
        flex-wrap: wrap;
    }

    .menu-footer > span {
        width: 100%;
        text-align: right;
    }
}

/* Contact CTA */

.contact-btn {
    background: transparent;
    color: #FAF8F3;
    border: 1px solid rgba(250, 248, 243, .75);
    border-radius: 99px;
    padding: .65rem .85rem;
    margin-left: 0;
    font-family: "DM Sans";
    font-size: .65rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .25s, color .25s;
    cursor: pointer;
}

.contact-btn:hover {
    background: #E8D5A3;
    color: black;
    font-weight: 500;
}



.language-switch {
    appearance: none;
    border: 0;
    background: transparent;
    color: #fff;
    padding: .45rem 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: .28rem;
    font: 500 .6rem/1 'DM Sans', sans-serif;
    letter-spacing: .12em;
}

.language-switch span:not(.language-current) {
    color: rgba(255, 255, 255, .45);
}

.language-switch .language-current {
    color: #d0a968;
}

.language-flag {
    display: block;
    width: 1.25rem;
    height: .85rem;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .3);
}

body.menu-open {
    overflow: hidden;
}

/* Massage menu */

.massage-menu {
    padding: 5rem 1.25rem;
    background: #f9edd4;
    color: #2c2822;
}

.massage-menu-heading {
    max-width: 38rem;
    margin-bottom: 2.5rem;
}

.massage-menu-heading small,
.massage-menu-duration {
    color: #8a7a6a;
    font: 500 .68rem/1.4 'DM Sans', sans-serif;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.massage-menu-heading h2 {
    margin: .65rem 0 1rem;
    font: 400 clamp(2.5rem, 9vw, 4.4rem)/.98 'Playfair Display', serif;
}

.massage-menu-heading h2 span {
    display: block;
    color: #8a7a6a;
}

.massage-menu-heading p {
    max-width: 31rem;
    margin: 0;
    color: #625a52;
    font-size: .95rem;
    line-height: 1.65;
}

.massage-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid rgba(74, 36, 29, .24);
    border-left: 1px solid rgba(74, 36, 29, .24);
}

.massage-menu-card {
    min-height: 22rem;
    padding: 1.15rem;
    border-right: 1px solid rgba(74, 36, 29, .24);
    border-bottom: 1px solid rgba(74, 36, 29, .24);
    display: flex;
    flex-direction: column;
    content-visibility: auto;
    contain-intrinsic-size: 22rem;
    transition: background-color .3s ease, color .3s ease;
}

.massage-menu-card:hover {
    background: #4a241d;
    color: #f9edd4;
}

.massage-menu-number {
    color: #b08a4c;
    font: 500 .72rem/1 'DM Sans', sans-serif;
    letter-spacing: .1em;
}

.massage-menu-image {
    width: 100%;
    aspect-ratio: 1.25 / 1;
    object-fit: cover;
    margin: .9rem 0 1rem;
    filter: saturate(.8);
}

.massage-menu-card:hover .massage-menu-image {
    filter: saturate(1);
}

.massage-menu-card h3 {
    margin: auto 0 .55rem;
    font: 400 clamp(1.35rem, 4.5vw, 2rem)/1.05 'Playfair Display', serif;
}

.massage-menu-card > p:not(.massage-menu-duration) {
    margin: 0 0 1.2rem;
    font-size: .78rem;
    line-height: 1.55;
}

.massage-menu-price {
    margin: 0 0 .9rem !important;
    color: #8a5e28;
    font: 600 .72rem/1.2 'DM Sans', sans-serif !important;
    letter-spacing: .04em;
}

.massage-menu-card a {
    color: inherit;
    font: 600 .63rem/1 'DM Sans', sans-serif;
    letter-spacing: .12em;
    text-decoration: none;
    text-transform: uppercase;
}

.massage-menu-card a span {
    margin-left: .25rem;
    color: #b08a4c;
    font-size: 1rem;
}

.massage-menu-card:hover .massage-menu-duration {
    color: rgba(249, 237, 212, .68);
}

.massage-menu-card:hover .massage-menu-price {
    color: #ffd074;
}

@media (min-width: 768px) {
    .massage-menu {
        padding: 7rem max(7vw, 2.5rem);
    }

    .massage-menu-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .massage-menu-card {
        min-height: 26rem;
        padding: 1.6rem;
        contain-intrinsic-size: 26rem;
    }
}

.whatsapp-float {
    position: fixed;
    left: 1.2rem;
    bottom: 1.2rem;
    z-index: 15;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .7rem .95rem .7rem .7rem;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    box-shadow: 0 10px 25px rgba(20, 75, 47, .28);
    font: 600 .7rem/1 'DM Sans', sans-serif;
    letter-spacing: .04em;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
}

.whatsapp-float svg {
    width: 1.45rem;
    height: 1.45rem;
    fill: currentColor;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    transform: translateY(-.2rem);
    box-shadow: 0 14px 30px rgba(20, 75, 47, .38);
}

/* Hero */

.hero-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    height: 100vh;
    background-color: #2c2822;
    text-align: center;
    padding: 25px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-container>*:not(.hero-video) {
    position: relative;
    z-index: 1;
}

.logo_typo {
    width: 15rem;
}

.hero-container small {
    text-transform: uppercase;
    color: var(--light-color-primary);
    text-align: center;
    font-family: 'DM Sans';
    font-size: 12px;
    font-weight: 200;
}


.hero-p1 {
    width: 85%;
    color: var(--white-color-primary);
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    text-align: center;
}

.hero-p1-span {
    color: #E8D5A3;
}

.hero-p2 {
    color: #FAF8F3;
    text-align: left;
    font-family: 'DM Sans';
    font-size: 20px;
    font-weight: 100;
}

.hero-p1,
.hero-p2 {
    margin: 0;
}

.cta {
    flex: 1;
    width: auto;
    text-align: center;
    padding: 26px 18px;
    font-family: "DM Sans";
    font-size: 16px;
    text-transform: uppercase;
    border: none;
    background-color: #2C2822;
    color: #FAF8F3;
    text-decoration: none;
}

.cta1 {
    width: 273px;
    text-align: center;
    padding: 24px;
    font-family: "DM Sans";
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 4px;
    border: none;
    background-color: #2C2822;
    color: #FAF8F3;
    margin-top: 50px;
}

.cta2 {
    width: 196px;
    text-align: center;
    padding: 24px;
    font-family: "DM Sans";
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 4px;
    border: 1px solid;
    background-color: transparent;
    color: #FAF8F3;
}

.cta_bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.cta3 {
    background-color: #C9A84C;
    color: #2C2822;
    font-weight: 600;
}

.cta4 {
    color: #FAF8F3;
}

.cta5 {
    color: #8A7A6A;
    font-weight: 600;
}


/* Philosophy */

.philo_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #FAF8F3;
    padding: 24px;
    text-align: center;
    height: 70vh;
}

.philo_container small,
.philo_container p {
    font-family: 'DM Sans';
    font-size: 1rem;
}

.philo_container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 300;
}

.philo_h2-span {
    color: #E8D5A3;
}

.philo_container small {
    text-transform: uppercase;
    color: #C9A84C;
}

.philo_container p {
    width: 80%;
    font-size: 1.2rem;
    font-weight: 300;
    color: #8A7A6A;
    line-height: 2.5rem;
}

.star_icon {
    margin-top: 25px;
}

/* Nos Soins */

/* Flexbox layout */

.soins_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background-color: #4A241D;
    color: white;
}

.soins {
    background-color: #4A241D;
}

.soins_header small {
    display: block;
    text-transform: uppercase;
    font-size: 1rem;
    margin-top: 25px;
    margin-left: 50px;
    color: #FFD074;
}

.soins_header h2 {
    width: 280px;
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 300;
    line-height: 50px;
    margin-top: 12px;
    padding-left: 50px;
}

.soins_header span {
    color: #FFD074;
}

.soins_img {
    width: 100%;
    height: 12.5rem;
    object-fit: cover;
}

.soins h3 {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-family: 'Playfair Display', serif;
    font-weight: 100;
    font-size: 1.4rem;
    color: whitesmoke;
}

.soins_header.cta.cta6 {
    margin: 75px auto;
}

.flex {
    padding: 0 2rem 2rem;
}

.soins p {
    font-family: 'DM Sans';
    font-weight: 300;
    color: #a5a39f;
}

.soins a {
    display: block;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.8rem;
    color: whitesmoke;
}

.soins a::after {
    content: ' →';
}

.cta6 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 310px;
    background: transparent;
    border: 1px solid rgb(158, 158, 158);
    border-radius: 4px;
    margin: 40px auto;
    text-align: center;
}

/* Immersion */

.immersion_container {
    background-color: #fff;
}

.immersion_header {
    background-color: #fff;
    padding: 25px 0 16px 50px;
}

.immersion_header small {
    display: block;
    text-transform: uppercase;
    font-size: 1rem;
    color: #FFD074;
}

.immersion_header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 300;
    line-height: 55px;
    margin-top: 12px;
}

.immersion_header span {
    color: #FFD074;
}

.immersion_box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
    background-color: #fff;
}

.immersion_num {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 8px;
    font-size: 5rem;
    font-family: 'Playfair Display', serif;
    color: #FFD074;
    font-weight: 400;
}

.immersion_texte {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 75%;
}

hr {
    max-width: 800px;
    margin-left: 50px;
    border: none;
    border-top: 1px solid #C9A84C;
}

.immersion_texte h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 8px;
    margin-top: 30px;
}

.immersion_texte p {
    color: #8A7A6A;
    font-size: 1.1rem;
    line-height: 35px;
    margin: 0;
    margin-bottom: 20px;
}

/* Formation / Savoir-faire */

.formation-hero {
    height: 520px;
    background-image: url("asset/formation\ 1.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.35);
    padding: 60px;
    border-radius: 10px;
}

.hero-tag {
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 15px;
    color: #e0b96a;
}

.hero-title {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 25px;
}

.hero-title span {
    color: #e0b96a;
    font-style: italic;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.badge {
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
}

.hero-button {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid white;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

/* Horaires */

.horaires {
    width: 100%;
    flex: 1;
    background-color: #4A241D;
    color: whitesmoke;
}

.horaires small {
    display: block;
    text-transform: uppercase;
    font-size: 1rem;
    margin-left: 25px;
    color: #FFD074;
}

.horaires h2 {
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.horaire-item {
    display: flex;
    justify-content: space-between;
    padding: 25px;
    border-bottom: 1px solid #ddd;
}

.horaire-item:last-child {
    border-bottom: none;
}

.jour {
    font-weight: 600;
}

.heure {
    color: whitesmoke;
}

.dimanche {
    color: lightgray;
}

/* Nous trouver */

.nous_trouver {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #4A241D;
}

.nous_header {
    background-color: #4a231b;
    width: 100%;
    text-align: left;
}

.nous_header small {
    display: block;
    text-transform: uppercase;
    font-size: 1rem;
    color: #FFD074;
}

.nous_header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 300;
    line-height: 55px;
    margin-top: 12px;
}

.nous_header span {
    color: #FFD074;
}

.btn {
    display: block;
    width: 200px;
    background: transparent;
    border: 1px solid whitesmoke;
    margin-top: 25px;
    margin-left: 0;
}

/* Location */

.localisation {
    padding: 60px 20px;
    color: #f5f3f0;
    background-color: #4A241D;
}

.container-localisation {
    width: 100%;
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    flex-wrap: wrap;
}

.info-localisation {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 300px;
    max-width: 38rem;
    font-family: 'DM Sans', sans-serif;
}

.adresse {
    margin-top: 20px;
    font-weight: 400;
}

.zone-description,
.zone-details {
    max-width: 34rem;
    color: rgba(245, 243, 240, .76);
    font-size: .92rem;
    line-height: 1.7;
}

.zone-list-label {
    margin-bottom: .35rem;
    color: #FFD074;
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.zone-list {
    max-width: 34rem;
    color: #f5f3f0;
    font-family: 'Playfair Display', serif;
    font-size: 1.12rem;
    line-height: 1.65;
}

.zone-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.zone-whatsapp {
    color: #FFD074;
    font-size: .75rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.btn-itineraire {
    text-align: center;
    width: 200px;
    position: relative;
    display: block;
    padding: 14px 30px;
    margin: 20px auto 0;
    color: white;
    border-radius: 30px;
    background: #60561d;
    font-weight: 600;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.btn-itineraire:hover {
    transform: translateY(-3px);
}

/* Footer */

.site-footer {
    position: relative;
    overflow: hidden;
    background: #2c2822;
    color: #f9edd4;
    padding: 4.5rem 1.5rem 1.25rem;
}

.footer-orbit {
    position: absolute;
    width: 28rem;
    height: 28rem;
    right: -15rem;
    bottom: -16rem;
    border: 1px solid rgba(249, 237, 212, .16);
    border-radius: 50%;
    box-shadow: 0 0 0 3.5rem rgba(249, 237, 212, .025), 0 0 0 7rem rgba(249, 237, 212, .018);
}

.footer-main,
.footer-bottom {
    position: relative;
    z-index: 1;
}

.footer-main {
    display: grid;
    gap: 2.75rem;
    max-width: 75rem;
    margin: 0 auto;
}

.footer-eyebrow {
    display: block;
    margin-bottom: .85rem;
    color: #d0a968;
    font: 500 .66rem/1 'DM Sans', sans-serif;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.footer-intro h2 {
    margin: 0;
    font: 400 clamp(2.7rem, 10vw, 5.5rem)/.95 'Playfair Display', serif;
}

.footer-intro h2 i {
    color: #d0a968;
}

.footer-intro p {
    max-width: 18rem;
    margin: 1.1rem 0 0;
    color: rgba(249, 237, 212, .68);
    font-size: .88rem;
    line-height: 1.6;
}

.footer-contact,
.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-phone,
.footer-email {
    color: #f9edd4;
    font-size: .9rem;
    text-decoration: none;
}

.footer-phone {
    margin-bottom: .7rem;
    font: 400 1.25rem/1.2 'Playfair Display', serif;
}

.footer-email + .footer-email {
    margin-top: .45rem;
}

.footer-phone:hover,
.footer-phone:focus-visible,
.footer-email:hover,
.footer-email:focus-visible {
    color: #d0a968;
}

.social-icons-layout {
    display: flex;
    gap: .7rem;
}

.social-icons-layout a {
    display: grid;
    place-items: center;
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid rgba(249, 237, 212, .35);
    border-radius: 50%;
    transition: background-color .25s ease, transform .25s ease;
}

.social-icons-layout a:hover,
.social-icons-layout a:focus-visible {
    background: #d0a968;
    transform: translateY(-.18rem);
}

.social-icons-layout img {
    width: 1rem;
    height: 1rem;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    max-width: 75rem;
    margin: 3.5rem auto 0;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(249, 237, 212, .18);
    color: rgba(249, 237, 212, .55);
    font-size: .65rem;
    letter-spacing: .06em;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: #f9edd4;
    text-decoration: none;
    text-transform: uppercase;
}

.footer-bottom a span {
    color: #d0a968;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .site-footer {
        padding: 6.5rem max(7vw, 2.5rem) 1.5rem;
    }

    .footer-main {
        grid-template-columns: 1.5fr 1fr .75fr;
        align-items: end;
        gap: 2rem;
    }
}

/* Carousel */


/* Reviews */

.reviews {
    padding: 5rem 1.25rem;
    background: #fff;
    color: #2c2822;
}

.reviews-header {
    max-width: 38rem;
    margin-bottom: 3rem;
}

.reviews-header small {
    display: block;
    color: #8a7a6a;
    font: 500 .68rem/1.4 'DM Sans', sans-serif;
    letter-spacing: .13em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.reviews-header h2 {
    margin: 0 0 1rem;
    font: 400 clamp(2.5rem, 9vw, 4.4rem)/.98 'Playfair Display', serif;
    text-align: left;
}

.reviews-header h2 span {
    display: block;
    color: #8a7a6a;
}

.reviews-header p {
    max-width: 31rem;
    margin: 0;
    color: #625a52;
    font-size: .95rem;
    line-height: 1.65;
}

.reviews-rating {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(74, 36, 29, .24);
}

.reviews-rating .stars {
    display: block;
    margin-bottom: .75rem;
}

.reviews-rating p {
    margin: 0;
    font-size: 1rem;
    color: #2c2822;
}

.reviews-rating strong {
    color: #b08a4c;
    font-weight: 600;
}

.reviews h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    background-color: #fff;
}

/* Reviews Stars */

.stars {
    color: #FFD074;
    font-size: 20px;
    font-family: 'DM Sans';
    margin: 0;
}

.avis {
    font-family: 'DM sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 100;
    color: #8a7a6a;
}

sup {
    margin-left: 5px;
}

.carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background-color: #fff;
    margin-bottom: 2rem;
}

.carousel-container {
    height: 50vh;
    width: 700px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    align-items: center;
    height: 100%;
    transition: transform 0.5s ease;
}

.review-card {
    flex: 0 0 100%;
    box-sizing: border-box;
    background: #fafaf8;
    padding: 2.5rem;
    margin: 0 auto;
    border: 1px solid rgba(74, 36, 29, .12);
    border-radius: 4px;
}

.review-card p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.3rem;
    margin: 0 0 1.5rem;
    color: #4a241d;
    line-height: 1.6;
}

.review-card span {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: .85rem;
    color: #8a7a6a;
    letter-spacing: .05em;
}

.carousel button {
    appearance: none;
    background: transparent;
    border: 1px solid #d0a968;
    color: #d0a968;
    font-size: 1.25rem;
    padding: .5rem .75rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all .25s ease;
}

.carousel button:hover {
    background: #d0a968;
    color: #fff;
}

button {
    border: none;
    color: white;
    font-size: 20px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 6px;
}

button:hover {
    background: #b39357;
}

/* Contact Section */
.contact-section {
    position: relative;
    overflow: hidden;
    background: #302b26;
    padding: 5rem 1.25rem;
    margin: 0 auto;
    color: #f9edd4;
}

.contact-orbit {
    position: absolute;
    width: 32rem;
    height: 32rem;
    left: -20rem;
    top: -15rem;
    border: 1px solid rgba(249, 237, 212, .14);
    border-radius: 50%;
    box-shadow: 0 0 0 4rem rgba(249, 237, 212, .025), 0 0 0 8rem rgba(249, 237, 212, .018);
}

.contact-layout {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 3rem;
    max-width: 70rem;
    margin: 0 auto;
}

.contact-copy small,
.contact-form-kicker {
    display: block;
    color: #d0a968;
    text-transform: uppercase;
    letter-spacing: .14em;
    font: 500 .68rem/1 'DM Sans', sans-serif;
}

.contact-copy h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 11vw, 5.8rem);
    font-weight: 400;
    line-height: .95;
    margin: .8rem 0 1.35rem;
    color: #f9edd4;
}

.contact-copy h2 span {
    color: #d0a968;
    font-style: italic;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.contact-email {
    display: inline-block;
    margin-top: 1.4rem;
    color: #f9edd4;
    font-size: .85rem;
    letter-spacing: .04em;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: .2rem;
}

.contact-email:hover,
.contact-email:focus-visible {
    color: #d0a968;
}

.contact-copy > p {
    max-width: 29rem;
    margin: 0;
    color: rgba(249, 237, 212, .68);
    font-size: .95rem;
    line-height: 1.7;
}

.contact-direct {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem 1.25rem;
    margin-top: 2rem;
}

.contact-direct a {
    color: #f9edd4;
    font: 500 .7rem/1 'DM Sans', sans-serif;
    letter-spacing: .1em;
    text-decoration: none;
    text-transform: uppercase;
}

.contact-direct a:first-child {
    color: #d0a968;
}

.contact-direct a:hover,
.contact-direct a:focus-visible {
    color: #fff;
}

.contact-form-panel {
    padding: 1.5rem;
    background: #f9edd4;
    color: #302b26;
}

.contact-form {
    margin-top: 1.6rem;
    display: flex;
    flex-direction: column;
    gap: .65rem;
    align-items: stretch;
}

.contact-form label {
    margin-top: .65rem;
    color: #665b50;
    font: 500 .65rem/1 'DM Sans', sans-serif;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: .85rem 0;
    font-size: .95rem;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid rgba(48, 43, 38, .28);
    margin-bottom: 0;
    font-family: 'DM Sans', sans-serif;
    background: transparent;
    color: #302b26;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-bottom-color: #8a5e28;
}

.contact-form textarea {
    min-height: 100px;
    resize: vertical;
}

.contact-form button {
    width: 100%;
    background: #302b26;
    color: #f9edd4;
    padding: 1rem 1.15rem;
    font-size: .68rem;
    border: none;
    border-radius: 999px;
    margin-top: 1.25rem;
    letter-spacing: .12em;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    cursor: pointer;
    transition: background .25s ease, color .25s ease, transform .25s ease;
}

.contact-form button:hover {
    background: #d0a968;
    color: #302b26;
    transform: translateY(-.12rem);
}

@media (min-width: 768px) {
    .contact-section {
        padding: 7rem max(7vw, 2.5rem);
    }

    .contact-layout {
        grid-template-columns: minmax(0, 1fr) minmax(22rem, .8fr);
        align-items: center;
        gap: 6rem;
    }

    .contact-form-panel {
        padding: 2.2rem;
    }
}

/* FAQ */

.faq-section {
    max-width: 900px;
    margin: 3em auto;
}

.faq-section small {
    color: #FFD074;
    letter-spacing: 1px;
}

.faq-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    margin: 0;
}

.faq-section h2 span {
    color: #FFD074;
    font-style: italic;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.faq-list {
    margin-top: 2em;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #b3a9a3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.faq-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2em 2em;
    border-bottom: 1px solid #b3a9a3;
    font-size: 1.2em;
    font-family: 'Playfair Display', serif;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item span:last-child {
    color: #FFD074;
    font-size: 2em;
    font-weight: 300;
}

/* Responsive */

@media (min-width: 768px) {

    /* Reviews */

    .reviews {
        padding: 7rem max(7vw, 2.5rem);
    }

    .carousel-container {
        width: 900px;
        height: 40vh;
    }

    /* Immersion */

    .immersion_container {
        background-color: #fff;
    }

    .immersion_header {
        margin-left: 100px;
    }

    .immersion_box {
        max-width: 800px;
        margin-left: 100px;
        text-align: left;
    }

    /* Nous trouver */

    .nous_trouver {
        flex-direction: row;
        align-items: center;
    }

    .container-localisation {
        flex: 1;
    }

    .horaires {
        width: 35%;
        flex: none;
        font-weight: 200;
    }

    .horaire-item {
        flex: none;
    }

    /* Header */

    .header_hand_logo {
        width: 9rem;
    }

    header {
        padding: 1.3rem 2.5rem;
    }

    .burger-menu {
        padding: 8.5rem 7vw 2.5rem;
    }

    .menu-content {
        display: grid;
        grid-template-columns: minmax(14rem, .65fr) 1.35fr;
        align-items: end;
        gap: 4rem;
    }

    .menu-intro {
        margin: 0 0 .7rem;
    }

    .burger-menu li a {
        font-size: clamp(3rem, 6.2vw, 6.3rem);
    }

    /* Hero */
    .hero-container {
        justify-content: center;
        align-items: center;
        padding-top: 80px;
    }

    /* Soins */

    /* Soins */

    .soins {
        display: flex;
        width: 100%;
        font-family: 'DM Sans';
        font-weight: 300;
        color: #a5a39f;
        background-color: whitesmoke;
    }

    .soins h3 {
        color: black;
        padding: 20px;
        font-size: 1.6rem;
        margin-left: 40px;
    }

    .soins p {
        max-width: 80%;
        font-size: 1.2rem;
        margin-left: 40px;
        padding: 0 20px;
        color: #8A7A6A;
    }

    .soins a {
        display: block;
        color: black;
        margin-left: 60px;
    }

    .soins_container {
        width: 100%;
    }

    .soins img {
        flex: 1;
        width: 50%;
        height: 400px;
    }

    .flex {
        flex: 1;
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    .flex_reverse {
        flex-direction: row-reverse;
    }

    .philo_container {
        height: 80vh;
    }

    .philo_container h2 {
        font-size: 4rem;
    }

    .philo_container p {
        width: 45%;
        font-size: 1.5rem;
    }


}
