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

:root {
    --cream: #f5ecd7;
    --navy: #1a3a6b;
    --navy-light: #2a4f8f;
    --lavender: #8b8fc8;
    --lavender-light: rgba(139, 143, 200, 0.15);
    --gold: #d4a017;
    --muted: #5a6fa0;
}

body {
    font-family: Georgia, serif;
    background: var(--cream);
    color: var(--navy);
}

/* NAV */
nav {
    align-items: center;
    background: linear-gradient(120deg, #b7bfe8 0%, #cdb8dd 45%, #e8c9b0 100%);
    border-bottom: 1px solid rgba(26, 58, 107, 0.2);
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 80%;
    padding: 1rem 2rem;
    position: static;
    top: 0;
    z-index: 10;
}

.nav-brand {
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    font-family: sans-serif;
}

.nav-tabs .nav-phone {
	border-left: 1px solid var(--navy);
	padding-left: 20px;
}

/* HERO BANNER */
.hero-banner {
    position: relative;
    height: 280px;
    overflow: hidden;
    width: 100%;
}

.hero-banner-overlay {
    align-items: center;
    background: linear-gradient(to right, rgba(26, 58, 107, 0.7) 0%, rgba(26, 58, 107, 0.3) 60%, transparent 100%);
    display: flex;
    inset: 0;
    position: absolute;
}

.hero-banner-content {
    margin: 0 auto;
    max-width: 80%;
}

.hero-banner img {
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.hero-banner-text {
    color: #f5ecd7;
}

.hero-banner-name {
    font-size: 52px;
    font-style: italic;
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 0.1rem;
}

.hero-banner-title {
    font-size: 26px;
    font-weight: 700;
    font-family: sans-serif;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.hero-banner-sub {
    font-size: 17px;
    font-family: sans-serif;
    opacity: 0.9;
}

.hero-banner-location {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 13px;
    font-family: sans-serif;
    color: #f5ecd7;
    opacity: 0.85;
    letter-spacing: 0.03em;
}

.hero-intro {
    padding: 2.5rem;
    background: var(--cream);
    border-bottom: 1px solid rgba(26, 58, 107, 0.12);
}

.hero-intro-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0 auto;
    max-width: 80%;
}

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

.hero-intro p {
    font-size: 17px;
    font-weight: 600;
    color: var(--navy);
    font-family: sans-serif;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.hero-intro-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.hero-intro-img {
    flex-shrink: 0;
}

.hero-intro-img img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    box-shadow: 0 4px 20px rgba(26, 58, 107, 0.15);
}

.btn-tel {
    display: inline-block;
    padding: 10px 24px;
    background: var(--cream);
    color: var(--navy);
    border: 2px solid var(--navy);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    font-family: sans-serif;
    text-decoration: none;
    line-height: inherit;
}

.btn-tel:hover {
    background: rgba(26, 58, 107, 0.05);
}

@media (max-width: 680px) {
    .hero-intro-inner {
        flex-direction: column-reverse;
    }

    .hero-intro-img img {
        width: 120px;
        height: 120px;
    }
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--navy);
    color: var(--cream);
    border-radius: 4px;
    font-size: 14px;
    font-family: sans-serif;
    text-decoration: none;
    transition: background 0.2s;
    align-self: flex-start;
}

.btn:hover {
    background: var(--navy-light);
}

/* SECTIONS */
.section {
    padding: 3rem 2.5rem;
    border-top: 1px solid rgba(26, 58, 107, 0.12);
    max-width: 860px;
    margin: 0 auto;
}

.section-eyebrow {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lavender);
    font-family: sans-serif;
    margin-bottom: 0.6rem;
}

.section h2 {
    font-size: 26px;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 1.25rem;
    color: var(--navy);
}

.section p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8;
    font-family: sans-serif;
    margin-bottom: 0.9rem;
}

.section p:last-child {
    margin-bottom: 0;
}

/* QUOTE */
.quote {
    border-left: 3px solid var(--lavender);
    padding: 0.75rem 1.25rem;
    margin: 1.5rem 0;
}

.quote p {
    color: var(--navy);
    font-style: italic;
    font-size: 16px;
    margin: 0;
}

/* SPECIALTY GRID */
.indications-list {
    list-style: none;
    padding: 0;
    margin-top: 1.25rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 24px;
}

.indications-list li {
    font-size: 14px;
    color: var(--muted);
    font-family: sans-serif;
    padding: 5px 0;
    line-height: 1.5;
    border-bottom: 0.5px solid rgba(26, 58, 107, 0.08);
}

.indications-list li::before {
    content: "· ";
    color: var(--lavender);
}

@media (max-width: 680px) {
    .indications-list {
        grid-template-columns: 1fr;
    }
}

.specialty-card {
    background: var(--lavender-light);
    border: 1px solid rgba(26, 58, 107, 0.15);
    border-radius: 8px;
    padding: 1.25rem;
}

.badge {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
    background: rgba(212, 160, 23, 0.25);
    border-radius: 20px;
    padding: 3px 10px;
    margin-bottom: 0.6rem;
    font-family: sans-serif;
}

.specialty-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.6rem;
    font-family: sans-serif;
}

.specialty-card ul {
    list-style: none;
    padding: 0;
}

.specialty-card li {
    font-size: 13px;
    color: var(--muted);
    padding: 3px 0;
    font-family: sans-serif;
    line-height: 1.5;
}

.specialty-card li::before {
    content: "· ";
    color: var(--lavender);
}

/* ANECDOTE */
.anecdote {
    background: rgba(139, 143, 200, 0.1);
    border: 1px solid rgba(139, 143, 200, 0.3);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin-top: 1.5rem;
    font-style: italic;
    font-size: 14px;
    color: var(--muted);
    font-family: sans-serif;
    line-height: 1.7;
}

/* SEANCES */
.seance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 1.5rem;
}

.seance-card {
    background: rgba(26, 58, 107, 0.04);
    border: 1px solid rgba(26, 58, 107, 0.15);
    border-radius: 8px;
    padding: 1.5rem;
}

.seance-card .tag {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lavender);
    font-family: sans-serif;
    margin-bottom: 0.4rem;
    display: block;
}

.seance-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1rem;
    font-family: sans-serif;
}

.seance-card ul {
    list-style: none;
    padding: 0;
}

.seance-card li {
    font-size: 13px;
    color: var(--muted);
    padding: 4px 0;
    font-family: sans-serif;
    line-height: 1.5;
}

.seance-card li::before {
    content: "· ";
    color: var(--lavender);
}

.seance-card li.sub-li::before {
    content: "– ";
    color: var(--lavender);
}

/* TARIFS */
.tarif-block {
    border: 1px solid rgba(26, 58, 107, 0.15);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 1.5rem;
}

.tarif-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(26, 58, 107, 0.1);
}

.tarif-row:last-of-type {
    border-bottom: none;
}

.tarif-row span {
    font-size: 15px;
    color: var(--muted);
    font-family: sans-serif;
}

.tarif-row strong {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    font-family: sans-serif;
}

.tarif-note {
    background: rgba(139, 143, 200, 0.08);
    padding: 1rem 1.5rem;
    font-size: 13px;
    color: var(--muted);
    font-family: sans-serif;
    line-height: 1.65;
    font-style: italic;
    border-top: 1px solid rgba(26, 58, 107, 0.1);
}

/* AVIS */
.avis-block {
    border: 1px solid rgba(26, 58, 107, 0.15);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.avis-score {
    text-align: center;
    flex-shrink: 0;
}

.avis-score .num {
    font-size: 34px;
    font-weight: 700;
    color: var(--navy);
    font-family: sans-serif;
    line-height: 1;
}

.avis-score .stars {
    color: var(--gold);
    font-size: 16px;
    margin: 4px 0;
}

.avis-score .label {
    font-size: 11px;
    color: var(--muted);
    font-family: sans-serif;
}

.avis-divider {
    width: 1px;
    background: rgba(26, 58, 107, 0.15);
    align-self: stretch;
}

.avis-text {
    font-size: 14px;
    color: var(--muted);
    font-style: italic;
    font-family: sans-serif;
    line-height: 1.65;
    padding-bottom: 0.9rem;
    margin-bottom: 0.9rem;
    border-bottom: 1px solid rgba(26, 58, 107, 0.1);
}

.avis-text:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.avis-text .auteur {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: var(--navy);
    margin-top: 0.35rem;
}

/* LEGAL */
.legal {
    background: rgba(26, 58, 107, 0.04);
    padding: 1.5rem 2.5rem;
    border-top: 1px solid rgba(26, 58, 107, 0.12);
    text-align: center;
}

.legal p {
    font-size: 12px;
    color: var(--muted);
    font-family: sans-serif;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* FOOTER */
footer {
    padding: 2rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    border-top: 1px solid rgba(26, 58, 107, 0.2);
    max-width: 860px;
    margin: 0 auto;
}

.avis-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.btn-google {
    display: inline-block;
    padding: 10px 20px;
    background: var(--navy);
    color: var(--cream);
    border-radius: 4px;
    font-size: 13px;
    font-family: sans-serif;
    text-decoration: none;
}

.btn-google:hover {
    background: var(--navy-light);
}

.avis-ou {
    font-size: 13px;
    color: var(--muted);
    font-family: sans-serif;
}

.btn-form {
    padding: 10px 20px;
    background: transparent;
    color: var(--navy);
    border: 1px solid rgba(26, 58, 107, 0.3);
    border-radius: 4px;
    font-size: 13px;
    font-family: sans-serif;
    cursor: pointer;
}

.btn-form:hover {
    background: rgba(26, 58, 107, 0.05);
}

.footer-info strong {
    color: var(--navy);
}

/* RDV SECTION */
.rdv-section {
    text-align: center;
    padding: 3rem 2.5rem;
    background: var(--navy);
}

.rdv-section h2 {
    color: var(--cream);
    font-family: Georgia, serif;
    font-size: 26px;
    margin-bottom: 1.5rem;
}

.rdv-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-rdv {
    display: inline-block;
    padding: 16px 32px;
    background: var(--cream);
    color: var(--navy);
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    font-family: sans-serif;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-rdv:hover {
    background: #fff;
}

/* RESPONSIVE */
@media (max-width: 680px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-img {
        height: 260px;
    }

    .hero-text {
        padding: 2rem 1.5rem;
    }

    .specialty-grid, .seance-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 2rem 1.5rem;
    }

    .avis-block {
        flex-direction: column;
    }

    footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =========================================================
   ÉDITEUR DE BLOCS
   Styles pour les compositions (patterns). Reprennent les
   anciens styles inline, que l'éditeur ne conserve pas.
   ========================================================= */

/* Les groupes de blocs ne doivent PAS écraser les marges des sections.
   .section porte déjà « margin: 0 auto » : on ne touche donc qu'aux
   groupes imbriqués, jamais au conteneur de section lui-même. */
.section .wp-block-group,
.rdv-section .wp-block-group {
    margin-left: 0;
    margin-right: 0;
}

/* Le centrage des sections reste prioritaire. */
.wp-block-group.section {
    margin-left: auto;
    margin-right: auto;
}

.section > *:first-child {
    margin-top: 0;
}

/* Sous-titres de la section « Ce que j'accompagne » */
.sous-titre {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    font-family: sans-serif;
    margin: 1.25rem 0 0.25rem;
}

.section .sous-titre:first-of-type {
    margin-top: 0.5rem;
}

/* Questions de la FAQ */
.faq-question {
    font-size: 17px;
    font-weight: 600;
    color: var(--navy);
    font-family: sans-serif;
    margin: 1.5rem 0 0.5rem;
}

/* Sous-éléments des cartes de séance */
.seance-card li.sub-li {
    padding-left: 0.75rem;
    font-size: 12px;
}

/* Le tag des cartes est désormais un paragraphe */
.seance-card p.tag {
    margin-bottom: 0.4rem;
}

/* Les paragraphes .avis-text et .tarif-note gardent leur mise en forme
   même imbriqués dans un groupe de blocs. */
.avis-block .wp-block-group {
    flex: 1;
}