/* --- CONTAINER ET HAUT DE PAGE --- */
div.presentation {
    padding: 200px 0 100px;
}
.presentation-header {
    text-align: center;
    margin-bottom: 50px;
}
.presentation-main-title {
    font-family: var(--font-title);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 300;
    line-height: 1.2;
    color: white;
}
.presentation-main-title span {
    display: block;
    font-size: 0.45em;
    font-family: var(--font-text);
    text-transform: uppercase;
    color: var(--color-gold);
    letter-spacing: .3em;
    margin-top: 15px;
    font-weight: 400;
}
.accent-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    margin: 35px auto 0;
}
.guide-avatar {
    display: block;
    margin: 30px auto;
    width: 300px;
    max-width: 100%;
    aspect-ratio: 1 / 1; /* Force le ratio carré (Largeur = Hauteur) */
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

/* --- STYLISATION AUTOMATIQUE DU TINYMCE (.presentation-content) --- */
.presentation-content {
    max-width: 800px; /* Largeur de lecture optimale et élégante */
    margin: 0 auto;
}

/* Le tout premier paragraphe fait office de texte d'introduction */
.presentation-content > p:first-of-type {
    font-family: var(--font-title);
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    line-height: 1.6;
    color: white;
    text-align: center;
    font-style: italic;
    margin-bottom: 20px;
}

/* Gestion de tous les sous-titres (H2) */
.presentation-content h2 {
    font-family: var(--font-title);
    color: var(--color-gold);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 400;
    line-height: 1.3;
    margin: 25px 0;
    letter-spacing: 0;
    text-transform: none;
    display: block; /* Évite le inline-block qui casse le rythme vertical */
}
.presentation-content h2 strong {
    color: var(--color-gold);
}

/* Espacement et couleur des paragraphes standards */
.presentation-content p {
    color: var(--color-text);
    font-family: var(--font-text);
    font-size: 1.05em;
    line-height: 1.8;
    margin-bottom: 22px;
    font-weight: 300;
}

/* Mise en valeur subtile des mots en gras par la cliente */
.presentation-content strong {
    color: white;
    font-weight: 500;
}

/* Gestion du bouton "Blockquote" (Citation) de TinyMCE pour l'effet Premium */
.presentation-content blockquote {
    margin: 40px 0;
    padding: 30px 40px;
    background: rgba(198, 164, 106, 0.03);
    border-left: 2px solid var(--color-gold);
    border-radius: 0 4px 4px 0;
}
.presentation-content blockquote p {
    font-family: var(--font-title);
    font-size: 1.25em;
    line-height: 1.6;
    color: var(--color-text-light);
    font-style: italic;
    margin-bottom: 0; /* Évite les marges doubles à l'intérieur */
}

/* --- APPEL À L'ACTION FINAL --- */
.presentation-cta {
    text-align: center;
    margin-top: 50px;
    border-top: 1px solid rgba(198,164,106,.1);
    padding: 20px 0;
}
.presentation-cta p {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 25px;
}
.btn-rdv-large {
    display: inline-block;
    border: 1px solid var(--color-gold);
    padding: 18px 36px;
    color: white;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: .2em;
    font-weight: 500;
    transition: all .35s ease;
}
.btn-rdv-large:hover {
    background: var(--color-gold);
    color: black;
    box-shadow: 0 0 20px rgba(198,164,106,.3);
    transform: translateY(-2px);
}

/* Réajustement responsive */
@media screen and (max-width: 768px) {
    div.presentation {
        padding: 140px 20px 60px;
    }
    .presentation-content h2 {
        margin-top: 50px;
    }
    .presentation-content blockquote {
        padding: 20px 25px;
    }
}