:root {
    --couleur-fond:  #FAFAFA;
    --couleur-creme: #D9C4A8;
    --couleur-taupe: #3d3530;
    --couleur-texte: #2c2825;
    --police-titre: 'Cormorant Garamond', Georgia, serif;
    --police-corps: 'Raleway', 'Segoe UI', sans-serif;
    --nav-hauteur: 105px;
}

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

body {
    font-family: var(--police-corps);
    color:       var(--couleur-texte);
    background:  var(--couleur-fond);
    padding-top: var(--nav-hauteur);
}

/* ===== DÉCO — étoile scintillante ===== */
.etoile-deco {
    width: 22px;
    height: 22px;
    fill: var(--couleur-creme);
    display: block;
    margin: 0 auto 1rem;
}

.etoile-deco--inline {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin: 0 0.5rem 0 0;
    vertical-align: -3px;
}

/* ===== NAV ===== */

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;

    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

nav::before {
    content: '';
    position: absolute;
    inset: 0 0 -35px 0;
    z-index: -1;

    background: linear-gradient(to bottom,
        rgba(250, 250, 250, 0.75) 55%,
        rgba(250, 250, 250, 0));

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    mask-image: linear-gradient(to bottom, black 55%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent);
}

.nav-logo img {
    height: 72px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav-toggle {
    display: none;            /* caché sur desktop — visible seulement sous 768px */
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--couleur-taupe);
    border-radius: 1px;
}

nav a {
    text-decoration: none;
    color: var(--couleur-texte);
    font-family: var(--police-corps);
    font-weight: 500;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    text-transform: uppercase;
}

nav .btn-reserver {
    background: var(--couleur-taupe);
    color: #FAFAFA;
    padding: 0.6rem 1.4rem;
    border-radius: 2px;
}

.btn-reserver {
    display: inline-block;
    background: var(--couleur-taupe);
    color: #FAFAFA;
    padding: 0.9rem 2rem;
    text-decoration: none;
    font-family: var(--police-corps);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
}

.hero {
    min-height: 100vh;
    margin-top: calc(-1 * var(--nav-hauteur));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: calc(var(--nav-hauteur) + 2rem) 2rem 2rem;
    background:
        linear-gradient(rgba(44, 40, 37, 0.45), rgba(44, 40, 37, 0.35)),
        url('../images/hero-accueil.jpg') center / cover no-repeat;
    color: #FAFAFA;
    position: relative;
}

.hero h1 {
    font-family: var(--police-titre);
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #FAFAFA;
}

.hero p {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: #FAFAFA;
    max-width: 34em;
}

.vague-separatrice {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.vague-separatrice svg {
    display: block;
    width: 100%;
    height: 70px;
}

/* === ACCUEIL - Un peu de moi === */
.accueil-moi {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - var(--nav-hauteur));
    padding: 2rem;
    background: #F7F1E7;
}

.accueil-moi-contenu {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
}

.accueil-moi-image img {
    width: 380px;
    height: 500px;
    object-fit: cover;
    border-radius: 50%;
    min-height: calc(100vh - var(--nav-hauteur));
}

.accueil-moi-texte h2 {
    font-family: var(--police-titre);
    font-size: 2.5rem;
    color: var(--couleur-taupe);
    margin-bottom: 1.5rem;
}

.accueil-moi-texte p {
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: justify;
    hyphens: auto;
}

.accueil-moi-texte .invitation-suite {
    font-style: italic;
    color: var(--couleur-taupe);
    margin-top: 1.5rem;
    text-align: left;
}

/* === ACCUEIL - Consultation gratuite === */
.accueil-consultation {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 2rem;
    background: 
        linear-gradient(rgba(44, 40, 37, 0.45), rgba(44, 40, 37, 0.35)),
        url('../images/consultation-fond.jpg') center / cover no-repeat;
    background-attachment: fixed;
    color: #FAFAFA;
}

.arc-separateur {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.arc-separateur svg {
    display: block;
    width: 100%;
    height: 90px;
}

.accueil-consultation-contenu {
    max-width: 42em;
}

.accueil-consultation h2 {
    font-family: var(--police-titre);
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #FAFAFA;
}

.accueil-consultation p {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.accueil-consultation .consultation-finale {
    font-style: italic;
    margin-bottom: 2.5rem;
}

.accueil-consultation .consultation-finale strong {
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.03em;
}

/* === ACCUEIL - Témoignages (carrousel) === */
.separateur-vague-sombre {
    line-height: 0;
}

.separateur-vague-sombre svg {
    display: block;
    width: 100%;
    height: 60px;
}

.accueil-temoignage {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 4rem 2rem;
    background: #F7F1E7;
    text-align: center;
}

.temoignage-fleche {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: var(--couleur-taupe);
    color: #FAFAFA;
    font-size: 1.3rem;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.temoignage-fleche:hover {
    opacity: 0.8;
}

.accueil-temoignage blockquote {
    min-height: 16rem;              /* réserve la place du plus long témoignage */
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: opacity 0.4s ease;  /* le fondu — le JS ne fait que basculer 0/1 */
}

.accueil-temoignage blockquote p {
    font-family: var(--police-titre);
    font-size: 1.6rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--couleur-taupe);
    max-width: 30em;
    margin: 0 auto 1.2rem;
}

.accueil-temoignage cite {
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--couleur-taupe);
}

/* === ACCUEIL - Aperçu boutique === */
.accueil-boutique {
    padding: 5rem 2rem;
    text-align: center;
}

.accueil-boutique h2 {
    font-family: var(--police-titre);
    font-size: 2.5rem;
    color: var(--couleur-taupe);
    margin-bottom: 1rem;
}

.accueil-boutique-intro {
    font-weight: 300;
    line-height: 1.8;
    max-width: 34em;
    margin: 0 auto;
}

.accueil-boutique .produits-grille {
    justify-content: center;
}

.accueil-boutique h3 {
    font-family: var(--police-titre);
    font-size: 1.4rem;
    color: var(--couleur-taupe);
    margin-bottom: 0.3rem;
}

footer {
    padding: 3rem;
    text-align: center;
    border-top: 1px solid var(--couleur-creme);
    margin-top: 6rem;
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 2;
    color: var(--couleur-taupe);
}

.footer-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin: 0 0 1rem auto;
    padding: 10px;
    border: 1px solid var(--couleur-creme);
    border-radius: 50%;
    background: #fff;
    display: block;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
    gap: 2rem;
}

.footer-copyright {
    margin-top: 2rem;
}

.footer-credit {
    font-size: 0.7rem;
    opacity: 0.7;
    margin-top: 0.3rem;
}

.footer-collabs {
    flex: 1;
    text-align: left;
}

.footer-infos {
    flex: 1;
    text-align: right;
}

.footer-collabs-titre {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.footer-collabs-logos {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-collabs-logos img {
    height: 140px;      /* considérablement plus grand — c'est la vedette de la colonne */
    width: auto;
    object-fit: contain;
}

/* Le fondu au survol ne s'applique qu'aux logos cliquables (les partenaires) —
   le logo de Nadia, lui, n'est pas un lien et reste toujours à pleine opacité. */
.footer-collabs-logos a img {
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.footer-collabs-logos a:hover img {
    opacity: 1;
}

footer a {
    color: inherit;                              /* prend la couleur du texte ambiant */
    text-decoration: underline;                  /* on GARDE le soulignement = signal cliquable */
    text-decoration-color: var(--couleur-creme); /* ...mais en doré doux, dans la palette */
    text-underline-offset: 4px;                  /* respire un peu sous le texte */
    transition: color 0.2s ease;
}

footer a:hover {
    color: var(--couleur-creme);                 /* au survol, tout le lien passe au doré */
}


.lien-facebook {
    display: inline-flex;    /* met icône + texte sur un rail flex */
    align-items: center;     /* centre verticalement l'icône sur le texte */
    gap: 0.4rem;             /* petit espace entre les deux */
}


.a-propos {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 6rem 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.a-propos-image img {
    width: 380px;
    height: 480px;
    object-fit: cover;
    border-radius: 4px;
}

.a-propos-texte h1 {
    font-family: var(--police-titre);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--couleur-taupe);
}

.a-propos-texte p {
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.a-propos-texte .btn-reserver {
    margin-top: 1.5rem;
}

/* === HIDDEN === */
.hidden { display: none; }

/* === PAGE SERVICES === */
.services-hero {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    padding: 4rem 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.services-hero-text {
    flex: 1;
}

.services-hero-text h1 {
    font-family: var(--police-titre);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--couleur-taupe);
}

.services-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--couleur-texte)
}

.services-hero-photo img {
    width: 280px;
    border-radius: 8px;
    object-fit: cover;
}

/* === ACCORDÉON === */
.accordion-section {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 0 3rem;
}

.accordion-item {
    border-top: 1px solid var(--couleur-creme);
}

.accordion-item:last-child {
    border-bottom: 1px solid var(--couleur-creme);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 1.2rem 0;
    font-family: var(--police-corps);
    font-size: 1.05rem;
    color: var(--couleur-taupe);
    cursor: pointer;
    text-align: left;
}

.accordion-header:hover {
    color: var(--couleur-taupe);
}

.accordion-icon {
    font-size: 1.3rem;
    color: var(--couleur-taupe);
    transition: transform 0.2s;
}

.accordion-body {
    padding: 0 0 1.5rem;
    color: var(--couleur-texte);
    line-height: 1.8;
}

.services-slogan {
    margin-top: 1rem;
    font-style: italic;
    color: var(--couleur-taupe);
}

/* === PAGE CONTACT === */
.contact-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

.contact-intro h1 {
    font-family: var(--police-titre);
    font-size: 2.5rem;
    color: var(--couleur-taupe);
    margin-bottom: 1rem;
}

.contact-intro p {
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.contact-signature {
    font-family: var(--police-titre);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--couleur-taupe);
    margin-bottom: 3rem !important;
}

.contact-corps {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-infos {
    flex: 0 0 220px;
}

.contact-infos h2 {
    font-family: var(--police-titre);
    font-size: 1.3rem;
    color: var(--couleur-taupe);
    margin-bottom: 0.8rem;
    margin-top: 2rem;
}

.contact-infos h2:first-child {
    margin-top: 0;
}

.contact-infos p {
    font-weight: 300;
    line-height: 1.8;
    font-size: 0.95rem;
}

.contact-infos a {
    color: var(--couleur-texte);
    text-decoration: none;
}

.contact-infos a:hover {
    text-decoration: underline;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.champ {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.champ label {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--couleur-taupe);
}

.optionnel {
    font-weight: 300;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.8rem;
    color: var(--couleur-texte);
}

.champ input,
.champ textarea {
    border: 1px solid var(--couleur-creme);
    background: #fff;
    padding: 0.75rem 1rem;
    font-family: var(--police-corps);
    font-size: 0.95rem;
    color: var(--couleur-texte);
    border-radius: 2px;
    outline: none;
    transition: border-color 0.2s;
}

.champ input:focus,
.champ textarea:focus {
    border-color: var(--couleur-taupe);
}

.champ textarea{
    resize: vertical;
}

.champ-groupe {
    display: flex;
    gap: 1rem;
}

.champ-groupe .champ {
    flex: 1;
}

.champ-groupe-3 .champ {
    flex: 1;
}

.case-groupe {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    margin-top: 0.7rem;
}

.case {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 300;
    text-transform: none;
    letter-spacing: normal;
    color: var(--couleur-texte);
    cursor: pointer;
}

.case input {
    accent-color: var(--couleur-taupe);
    width: 1rem;
    height: 1rem;
}

/* === PAGE RÉSERVER === */
.calendly-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 3rem 4rem;
}

.calendly-fallback {
    text-align: center;
}

.calendly-annonce {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 300;
    font-style: italic;
    color: var(--couleur-taupe);
    margin-bottom: 1rem;
}

/* === PAGE PRODUITS === */
.produits-hero {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 3rem 2rem;
    text-align: center;
}

.produits-hero h1 {
    font-family: var(--police-titre);
    font-size: 2.5rem;
    color: var(--couleur-taupe);
    margin-bottom: 1rem;
}

.produits-intro {
    font-weight: 300;
    line-height: 1.8;
}

.produits-grille {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 3rem;
}

.produit-carte {
    flex: 1;
    min-width: 260px;
    border: 1px solid var(--couleur-creme);
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
}

.produit-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.produit-carte .produit-info {
    padding: 2rem;
}

.produit-carte h2 {
    font-family: var(--police-titre);
    font-size: 1.5rem;
    color: var(--couleur-taupe);
    margin-bottom: 0.5rem;
}

.produit-prix {
    font-weight: 500;
    color: var(--couleur-taupe);
    margin-bottom: 1rem;
}

.produit-mention {
    font-weight: 300;
    font-size: 0.85rem;
}

.produit-carte p:not(.produit-prix) {
    font-weight: 300;
    line-height: 1.8;
    font-size: 0.95rem;
}

.produits-cta {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 3rem 5rem;
    text-align: center;
}

.produits-cta p {
    font-weight: 300;
    margin-bottom: 1.5rem;
}

/* ============================================================
   RESPONSIVE — mobile & tablette (≤768px)
   ============================================================ */
@media (max-width: 768px) {

    /* --- Nav : bascule en menu hamburger --- */
    nav {
        padding: 0.8rem 1.5rem;
    }

    .nav-toggle {
        display: flex;         /* le hamburger apparaît */
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        background: var(--couleur-fond);
        border-bottom: 1px solid var(--couleur-creme);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links.ouvert {
        max-height: 400px;      /* assez grand pour contenir tous les liens */
    }

    .nav-links a {
        width: 100%;
        padding: 1rem 1.5rem;
        border-top: 1px solid var(--couleur-creme);
    }

    nav .btn-reserver {
        border-radius: 0;
        text-align: center;
    }

    :root {
        --nav-hauteur: 88px;    /* la nav est plus basse en mode hamburger */
    }

    .nav-logo img {
        height: 56px;
    }

    /* --- Hero --- */
    .hero h1 {
        font-size: 2.1rem;
    }

    .hero p {
        font-size: 1rem;
    }

    /* --- Un peu de moi --- */
    .accueil-moi-contenu {
        flex-direction: column;
        gap: 2rem;
    }

    .accueil-moi-image img {
        width: 240px;
        height: 300px;
        min-height: 0;
    }

    .accueil-moi-texte p {
        text-align: left;      /* le justifié fait des trous sur les colonnes étroites */
        hyphens: none;
    }

    /* --- Consultation gratuite --- */
    .accueil-consultation {
        padding: 4rem 1.5rem;
        background-attachment: scroll;   /* le fixed rame sur mobile (surtout iOS) */
    }

    .accueil-consultation h2 {
        font-size: 2rem;
    }

    /* --- Témoignages --- */
    .accueil-temoignage {
        gap: 1rem;
        padding: 3rem 1rem;
    }

    .temoignage-fleche {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .accueil-temoignage blockquote p {
        font-size: 1.25rem;
    }

    /* --- À propos --- */
    .a-propos {
        flex-direction: column;
        padding: 3rem 1.5rem;
        gap: 2rem;
    }

    .a-propos-image img {
        width: 100%;
        max-width: 320px;
        height: auto;
        aspect-ratio: 4 / 5;
    }

    /* --- Services --- */
    .services-hero {
        flex-direction: column-reverse;   /* la photo passe après le texte sur mobile */
        padding: 2.5rem 1.5rem;
        gap: 1.5rem;
    }

    .services-hero-photo img {
        width: 100%;
        max-width: 280px;
    }

    .accordion-section {
        padding: 0 1.5rem;
    }

    /* --- Contact --- */
    .contact-page {
        padding: 2.5rem 1.5rem;
    }

    .contact-corps {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-infos {
        flex: none;
    }

    .champ-groupe,
    .champ-groupe-3 {
        flex-direction: column;
        gap: 1.2rem;
    }

    /* --- Boutique --- */
    .produits-grille {
        padding: 1.5rem;
    }

    .produits-hero {
        padding: 2.5rem 1.5rem 1.5rem;
    }

    /* --- Footer --- */
    footer {
        padding: 2rem 1.5rem;
    }

    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2.5rem;
    }

    .footer-collabs,
    .footer-infos {
        text-align: center;
    }

    .footer-collabs-logos {
        justify-content: center;
    }

    .footer-infos .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
}