/* ═══════════════════════════════════════════════════════════
   REFONTE 2026-09 — multi-pages, offres, blog
   Complète style.css (design system d'origine conservé)
   ═══════════════════════════════════════════════════════════ */

/* ── NAV : liens de navigation réels ── */
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 500;
    transition: color 0.2s;
    white-space: nowrap;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: white; }
.nav-links a[aria-current="page"] { font-weight: 600; }

.nav-burger {
    display: none;
    background: none;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 10px;
    width: 38px; height: 38px;
    cursor: pointer;
    align-items: center; justify-content: center;
}
.nav-burger svg { width: 20px; height: 20px; stroke: white; }

@media (max-width: 860px) {
    .nav-links {
        position: fixed;
        top: 71px; left: 0; right: 0;
        background: rgba(11,11,20,0.985);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 20px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        display: none;
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 13px 4px; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.95rem; }
    .nav-burger { display: flex; }
    .nav-right { gap: 12px; }
    .nav-cta { padding: 9px 16px; font-size: 0.8rem; }
}

/* ── FIL D'ARIANE ── */
.breadcrumb {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 26px;
    display: flex; gap: 8px; flex-wrap: wrap; align-items: center;
}
.breadcrumb a { color: var(--muted); text-decoration: none; border-bottom: 1px solid rgba(0,0,0,0.14); }
.breadcrumb a:hover { color: var(--rose); border-color: var(--rose); }
.breadcrumb span[aria-current] { color: var(--ink); font-weight: 500; }

/* ── GRILLE DE TARIFS (3 offres) ── */
.price-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 48px;
    text-align: left;
    align-items: stretch;
}
.price-grid .price-card {
    padding: 40px 34px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 16px 52px rgba(0,0,0,0.07);
    border: 1px solid rgba(0,0,0,0.05);
}
.price-grid .price-card.featured { box-shadow: 0 24px 72px rgba(240,22,109,0.14); border-color: rgba(240,22,109,0.18); }
.price-grid .price-list { margin-bottom: 24px; }
.price-grid .amount { font-size: 3.1rem; }
.price-grid .price-amounts { margin-top: auto; margin-bottom: 22px; }
.price-badge.plum { background: rgba(109,40,217,0.09); color: var(--plum); }
.price-badge.neutral { background: rgba(0,0,0,0.05); color: var(--muted); }

.price-card .btn-rose,
.price-card .btn-dark { width: 100%; justify-content: center; }

.btn-dark {
    display: inline-flex; align-items: center; gap: 9px;
    background: var(--ink); color: white; text-decoration: none;
    padding: 15px 30px; border-radius: 50px;
    font-weight: 600; font-size: 0.93rem;
    transition: opacity 0.2s, transform 0.2s;
}
.btn-dark:hover { opacity: 0.88; transform: translateY(-2px); }

.price-note { font-size: 0.78rem; color: var(--muted); margin-top: 12px; text-align: center; line-height: 1.6; }

@media (max-width: 860px) { .price-grid { grid-template-columns: 1fr; } }

/* ── OPTION ÉNERGÉTIQUE (bandeau sombre, en bas) ── */
.energy { background: var(--ink); }
.energy .label { color: rgba(255,255,255,0.38); }
.energy .label::before { background: var(--plum); }
.energy .h2 { color: white; }
.energy .lead { color: rgba(255,255,255,0.5); }

.energy-card {
    margin-top: 48px;
    background: linear-gradient(150deg, rgba(109,40,217,0.13) 0%, rgba(240,22,109,0.07) 55%, rgba(15,157,133,0.06) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 26px;
    padding: 46px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 54px;
    align-items: start;
}

.energy-rhythm { list-style: none; display: flex; flex-direction: column; gap: 22px; }
.energy-rhythm li { display: flex; gap: 18px; align-items: flex-start; }

.rhythm-when {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--rose);
    flex-shrink: 0;
    width: 106px;
    padding-top: 3px;
}
.energy-rhythm h3 { color: white; font-size: 1.02rem; font-weight: 700; margin-bottom: 6px; }
.energy-rhythm p  { color: rgba(255,255,255,0.52); font-size: 0.88rem; line-height: 1.72; }

.energy-side {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 32px 28px;
    text-align: center;
}
.energy-side .amount { color: white; font-size: 3.1rem; }
.energy-side .amount-lbl { color: rgba(255,255,255,0.45); display: block; margin-top: 8px; }
.energy-side .btn-rose { width: 100%; justify-content: center; margin-top: 22px; }
.energy-side .price-note { color: rgba(255,255,255,0.38); }

.energy-tag {
    display: inline-block;
    background: rgba(15,157,133,0.16);
    color: #34D399;
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    padding: 5px 14px; border-radius: 50px;
    margin-bottom: 18px;
}

@media (max-width: 860px) {
    .energy-card { grid-template-columns: 1fr; gap: 34px; padding: 32px 24px; }
    .rhythm-when { width: 90px; font-size: 0.66rem; }
}

/* ── SIGNATURE AUTEUR (E-E-A-T) ── */
.byline {
    display: flex; align-items: center; gap: 14px;
    margin: 28px 0 34px;
    padding-bottom: 26px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}
.byline img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.byline-txt { font-size: 0.85rem; line-height: 1.55; }
.byline-txt strong { display: block; font-weight: 600; }
.byline-txt span { color: var(--muted); }
.byline time { color: var(--muted); }

/* ── BLOG : liste ── */
.blog-hero { background: var(--ink); padding: 148px 48px 76px; }
.blog-hero .label { color: rgba(255,255,255,0.38); }
.blog-hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800; color: white;
    letter-spacing: -1.8px; line-height: 1.08; margin-bottom: 18px;
}
.blog-hero .lead { color: rgba(255,255,255,0.5); max-width: 620px; }
.blog-hero .breadcrumb { color: rgba(255,255,255,0.4); }
.blog-hero .breadcrumb a { color: rgba(255,255,255,0.4); border-color: rgba(255,255,255,0.2); }
.blog-hero .breadcrumb a:hover { color: white; border-color: white; }
.blog-hero .breadcrumb span[aria-current] { color: rgba(255,255,255,0.75); }

.cat-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 34px; }
.cat-pill {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.6);
    padding: 8px 18px; border-radius: 50px;
    font-size: 0.82rem; font-weight: 500;
    cursor: pointer; transition: all 0.2s;
    font-family: inherit;
}
.cat-pill:hover { color: white; border-color: rgba(255,255,255,0.35); }
.cat-pill.active { background: var(--rose); border-color: var(--rose); color: white; font-weight: 600; }

.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 18px; margin-top: 8px; }

.post-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    display: flex; flex-direction: column;
    text-decoration: none; color: inherit;
    transition: transform 0.28s, box-shadow 0.28s, border-color 0.28s;
}
.post-card:hover { transform: translateY(-5px); box-shadow: 0 20px 52px rgba(0,0,0,0.08); border-color: transparent; }

.post-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.post-cat {
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 1.2px; text-transform: uppercase;
    padding: 4px 12px; border-radius: 50px;
}
.post-cat.outils  { background: rgba(15,157,133,0.1);  color: var(--jade); }
.post-cat.energie { background: rgba(109,40,217,0.1);  color: var(--plum); }
.post-date { font-size: 0.76rem; color: var(--muted); }

.post-card h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800; font-size: 1.24rem;
    letter-spacing: -0.5px; line-height: 1.28;
    margin-bottom: 12px;
}
.post-card p { font-size: 0.89rem; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.post-more {
    margin-top: auto;
    font-size: 0.84rem; font-weight: 600; color: var(--rose);
    display: inline-flex; align-items: center; gap: 7px;
    transition: gap 0.2s;
}
.post-card:hover .post-more { gap: 11px; }

.blog-empty { color: var(--muted); font-size: 0.92rem; padding: 30px 0; display: none; }

/* ── ARTICLE ── */
.article-head { background: var(--cream); padding: 142px 48px 56px; }
.article-head .wrap { max-width: 760px; }
.article-head h1 {
    font-size: clamp(2rem, 4.4vw, 3.1rem);
    font-weight: 800; letter-spacing: -1.4px; line-height: 1.12;
    margin: 14px 0 18px;
}
.article-head .chapo { font-size: 1.08rem; color: #4b4652; line-height: 1.75; }

.article-body { background: var(--snow); padding: 56px 48px 84px; }
.article-body .wrap { max-width: 760px; }

.article-body h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.65rem; font-weight: 800;
    letter-spacing: -0.8px; line-height: 1.2;
    margin: 52px 0 16px;
}
.article-body h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.14rem; font-weight: 700;
    margin: 34px 0 10px; letter-spacing: -0.3px;
}
.article-body p { font-size: 1rem; line-height: 1.82; color: #34303a; margin-bottom: 18px; }
.article-body strong { color: var(--ink); font-weight: 600; }
.article-body a { color: var(--rose); text-decoration: none; border-bottom: 1px solid rgba(240,22,109,0.3); }
.article-body a:hover { border-color: var(--rose); }
.article-body ul, .article-body ol { margin: 0 0 22px 22px; }
.article-body li { font-size: 1rem; line-height: 1.8; color: #34303a; margin-bottom: 9px; }

.article-body blockquote {
    border-left: 3px solid var(--rose);
    background: white;
    padding: 20px 26px;
    margin: 28px 0;
    border-radius: 0 14px 14px 0;
    font-size: 1rem; line-height: 1.75; color: #34303a;
}
.article-body blockquote p:last-child { margin-bottom: 0; }

.table-scroll { overflow-x: auto; margin: 28px 0; -webkit-overflow-scrolling: touch; }
.article-body table {
    border-collapse: collapse;
    width: 100%;
    min-width: 480px;
    background: white;
    border-radius: 14px;
    overflow: hidden;
    font-size: 0.9rem;
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
}
.article-body th {
    background: var(--ink); color: white;
    text-align: left; padding: 13px 16px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700; font-size: 0.82rem;
    letter-spacing: 0.3px;
}
.article-body td { padding: 13px 16px; border-top: 1px solid var(--border); color: #46414d; line-height: 1.6; vertical-align: top; }
.article-body tbody tr:nth-child(even) td { background: rgba(0,0,0,0.015); }

.callout {
    background: white;
    border: 1px solid var(--border);
    border-left: 3px solid var(--jade);
    border-radius: 0 16px 16px 0;
    padding: 22px 26px;
    margin: 30px 0;
}
.callout p { margin-bottom: 0; font-size: 0.94rem; }
.callout strong { color: var(--jade); }

.sources { margin-top: 52px; padding-top: 26px; border-top: 1px solid var(--border); }
.sources h2 { font-size: 1.05rem; margin: 0 0 12px; }
.sources ul { margin-left: 20px; }
.sources li { font-size: 0.88rem; color: var(--muted); }

.article-cta {
    margin-top: 52px;
    background: var(--ink);
    border-radius: 22px;
    padding: 38px 36px;
    text-align: center;
}
.article-cta h2 { color: white; font-size: 1.5rem; margin: 0 0 10px; }
.article-cta p { color: rgba(255,255,255,0.5); font-size: 0.92rem; max-width: 460px; margin: 0 auto 24px; }

.related { background: var(--cream); padding: 68px 48px; }
.related h2 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.4rem; font-weight: 800; margin-bottom: 24px; letter-spacing: -0.6px; }

/* ── PAGE LÉGALE ── */
.legal { background: var(--snow); padding: 142px 48px 84px; }
.legal .wrap { max-width: 760px; }
.legal h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: -1.2px; margin-bottom: 10px; }
.legal h2 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.14rem; font-weight: 700; margin: 36px 0 10px; }
.legal p, .legal li { font-size: 0.95rem; line-height: 1.8; color: #46414d; margin-bottom: 12px; }
.legal ul { margin-left: 22px; }
.legal a { color: var(--rose); text-decoration: none; border-bottom: 1px solid rgba(240,22,109,0.3); }
.legal .updated { font-size: 0.82rem; color: var(--muted); margin-bottom: 30px; }
.legal .todo { background: #FDEBF2; border-left: 3px solid var(--rose); padding: 14px 18px; border-radius: 0 10px 10px 0; font-size: 0.88rem; color: #8a1e50; margin: 16px 0; }

/* ── FOOTER enrichi ── */
.footer-rich { background: var(--ink); padding: 58px 48px 0; }
.footer-cols {
    max-width: 1080px; margin: 0 auto;
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px; padding-bottom: 42px;
}
.footer-cols h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 0.74rem; font-weight: 800;
    letter-spacing: 1.6px; text-transform: uppercase;
    color: rgba(255,255,255,0.32); margin-bottom: 16px;
}
.footer-cols ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-cols a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.87rem; transition: color 0.2s; }
.footer-cols a:hover { color: white; }
.footer-about p { color: rgba(255,255,255,0.45); font-size: 0.87rem; line-height: 1.7; margin-bottom: 14px; }
.footer-about .footer-brand { font-size: 1.15rem; margin-bottom: 12px; display: block; color: white; }

@media (max-width: 860px) {
    .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-about { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
    .blog-hero, .article-head, .article-body, .legal, .related, .footer-rich { padding-left: 20px; padding-right: 20px; }
    .footer-cols { grid-template-columns: 1fr; }
    .article-cta { padding: 30px 22px; }
}

/* ── ACCESSIBILITÉ ── */
.skip-link {
    position: absolute; left: -9999px;
    background: var(--rose); color: white;
    padding: 12px 22px; border-radius: 0 0 12px 0;
    z-index: 2000; font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 0; top: 0; }

a:focus-visible, button:focus-visible {
    outline: 2px solid var(--rose);
    outline-offset: 3px;
    border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════════════════
   REFONTE 2026-09-11 (soir) — visuels, réalisations, « pourquoi »
   ═══════════════════════════════════════════════════════════ */

/* ── CORRECTIF : les boutons dans un corps d'article ──
   `.article-body a` (0,1,1) l'emportait sur `.btn-rose` (0,1,0) :
   texte rose sur fond rose, bouton illisible sur « Qui je suis »
   et en bas de chaque article. */
.article-body .btn-rose, .article-cta .btn-rose,
.article-body .btn-dark, .article-cta .btn-dark {
    color: white;
    border-bottom: 0;
}
.article-body .btn-rose:hover, .article-cta .btn-rose:hover { color: white; }

/* ── NAV : lien « Diagnostic gratuit » mis en avant ── */
.nav-links a.nav-diag {
    color: #34D399;
    font-weight: 600;
}
.nav-links a.nav-diag:hover { color: #6EE7B7; }
@media (max-width: 860px) { .nav-links a.nav-diag { color: #34D399; } }

/* ── ACCUEIL : portrait grand format dans « Je suis Céline » ── */
.about-grid.about-grid-photo {
    grid-template-columns: 340px 1fr;
    gap: 64px;
    max-width: 1000px;
    align-items: center;
}
.photo-big {
    position: relative;
    border-radius: 26px;
    padding: 4px;
    background: var(--rainbow);
    background-size: 300%;
    animation: rainbow-move 4s linear infinite;
    box-shadow: 0 24px 64px rgba(0,0,0,0.12);
}
.photo-big img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 22px;
    object-fit: cover;
}
.photo-big .photo-badge { bottom: 18px; right: -12px; }
@media (max-width: 900px) {
    .about-grid.about-grid-photo { grid-template-columns: 1fr; }
    .photo-big { max-width: 320px; margin: 0 auto; }
}

/* ── QUI JE SUIS : en-tête avec portrait ── */
.about-head .wrap { max-width: 1080px; }
.about-head-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 64px;
    align-items: center;
}
.about-head-grid .photo-big { max-width: 360px; }
@media (max-width: 900px) {
    .about-head-grid { grid-template-columns: 1fr; gap: 36px; }
    .about-head-grid .photo-big { max-width: 300px; }
}

/* ── POURQUOI JE FAIS ÇA (accueil, fond sombre) ── */
.why { background: var(--ink); }
.why .label { color: rgba(255,255,255,0.38); }
.why .label::before { background: var(--rose); }
.why .h2 { color: white; max-width: 720px; }
.why .lead { color: rgba(255,255,255,0.52); max-width: 640px; }

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 52px;
    background: rgba(255,255,255,0.07);
    border-radius: 22px;
    overflow: hidden;
}
.why-item { background: var(--ink); padding: 44px 34px; }
.why-item .ic.lg { margin-bottom: 22px; }
.why-item h3 { font-weight: 700; font-size: 1.1rem; color: white; margin-bottom: 12px; letter-spacing: -0.2px; }
.why-item p  { font-size: 0.9rem; color: rgba(255,255,255,0.52); line-height: 1.75; margin-bottom: 10px; }
.why-item p:last-child { margin-bottom: 0; }
.why-item p strong { color: white; font-weight: 600; }

.why-quote {
    margin-top: 28px;
    padding: 26px 30px;
    border-left: 3px solid var(--rose);
    color: rgba(255,255,255,0.78);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.4;
    letter-spacing: -0.3px;
    max-width: 760px;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } }

/* ── RÉALISATIONS ── */
.works { background: var(--cream); }
.works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 48px;
}
.work {
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 20px;
    overflow: hidden;
    margin: 0;
    display: flex;
    flex-direction: column;
    transition: transform 0.28s, box-shadow 0.28s;
}
.work:hover { transform: translateY(-5px); box-shadow: 0 20px 52px rgba(0,0,0,0.09); }
.work img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1200 / 750;
    object-fit: cover;
    border-bottom: 1px solid var(--border);
}
.work figcaption { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 8px; }
.work-who {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: -0.3px;
    color: var(--ink);
}
.work-who small { display: block; font-family: 'Outfit', sans-serif; font-weight: 500; font-size: 0.8rem; color: var(--muted); margin-top: 2px; letter-spacing: 0; }
.work p { font-size: 0.88rem; color: #46414d; line-height: 1.65; margin: 0; }
.work p strong { color: var(--ink); font-weight: 600; }
.work-tag {
    align-self: flex-start;
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 1.2px; text-transform: uppercase;
    padding: 4px 12px; border-radius: 50px;
    background: rgba(240,22,109,0.08); color: var(--rose);
}
@media (max-width: 900px) { .works-grid { grid-template-columns: 1fr; } }

/* ── TÉMOIGNAGES ── */
.quotes {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 18px;
    margin-top: 40px;
}
.quote {
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 20px;
    padding: 30px 32px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}
.quote::before {
    content: '“';
    position: absolute;
    top: 8px; left: 22px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 4rem;
    line-height: 1;
    color: rgba(240,22,109,0.18);
}
.quote p { font-size: 0.97rem; line-height: 1.75; color: #34303a; margin: 0; padding-top: 14px; }
.quote footer { font-size: 0.84rem; color: var(--muted); }
.quote footer strong { color: var(--ink); font-weight: 600; }
@media (max-width: 900px) { .quotes { grid-template-columns: 1fr; } }

/* ── QUI JE SUIS : formations, réalisations, témoignages dans le corps ── */
.article-body .works-grid { margin-top: 26px; grid-template-columns: 1fr; gap: 16px; }
.article-body .work {
    border-color: var(--border);
    display: grid;
    grid-template-columns: 300px 1fr;
    align-items: center;
}
.article-body .work img { border-bottom: 0; border-right: 1px solid var(--border); height: 100%; }
.article-body .work figcaption { padding: 20px 24px; }
.article-body .work p { font-size: 0.86rem; margin: 0; }
@media (max-width: 640px) {
    .article-body .work { grid-template-columns: 1fr; }
    .article-body .work img { border-right: 0; border-bottom: 1px solid var(--border); height: auto; }
}
.article-body .quotes { margin-top: 26px; grid-template-columns: 1fr; }
.article-body .quote { border-color: var(--border); }
.article-body .quote p { padding-top: 14px; margin-bottom: 0; }

.formations { list-style: none; margin: 22px 0 8px !important; padding: 0; display: flex; flex-direction: column; gap: 0; }
.formations li {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}
.formations li:first-child { border-top: 1px solid var(--border); }
.formations time {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--rose);
    padding-top: 3px;
}
.formations strong { display: block; color: var(--ink); font-weight: 600; }
.formations span { color: var(--muted); font-size: 0.88rem; }
@media (max-width: 640px) {
    .formations li { grid-template-columns: 1fr; gap: 4px; }
}

/* ═══════════════════════════════════════════════════════════
   VISUELS 2026-09-11 (soir) — six images générées à la palette
   du site (assets/visuels/). Hero, « la solution », tarifs,
   L'Élan, portrait. Rien ici ne touche #diagnostic.
   ═══════════════════════════════════════════════════════════ */

/* ── HERO : bannière photo à droite, texte par-dessus à gauche ──
   L'image (1672×941) a sa moitié gauche sombre, prévue pour le titre.
   On la cale sur les 62 % de droite et on fond sa couture dans l'encre
   avec un dégradé, pour que le texte reste lisible quelle que soit
   la largeur d'écran. */
.hero-visuel .hero-img {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 64%;
    height: 100%;
    object-fit: cover;
    object-position: 60% 50%;
    z-index: 0;
    /* Fondu du bord gauche de l'image, relatif à l'image elle-même :
       tient quelle que soit la largeur d'écran (1024 comme 1920). */
    -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.45) 22%, #000 48%);
            mask-image: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.45) 22%, #000 48%);
}
.hero-visuel::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, var(--ink) 30%, rgba(11,11,20,0.9) 42%, rgba(11,11,20,0.55) 54%, rgba(11,11,20,0.15) 64%, rgba(11,11,20,0) 72%),
        linear-gradient(180deg, rgba(11,11,20,0.5) 0%, rgba(11,11,20,0) 24%, rgba(11,11,20,0) 78%, var(--ink) 100%);
}
.hero-visuel .hero-glow,
.hero-visuel .hero-glow-b { z-index: 1; }
.hero-visuel .hero-inner  { z-index: 2; }
.hero-visuel h1 { max-width: 640px; font-size: clamp(2.8rem, 5.4vw, 4.6rem); }
.hero-visuel .hero-sub { max-width: 480px; }
.hero-visuel .hero-actions,
.hero-visuel .hero-metrics { max-width: 640px; }

@media (max-width: 900px) {
    /* L'image passe sous le texte, recadrée sur Céline (4:3, cadrage à droite). */
    .hero-visuel { flex-direction: column; align-items: stretch; min-height: 0; padding-bottom: 40px; }
    .hero-visuel::before { display: none; }
    .hero-visuel .hero-img {
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
        object-position: 74% 50%;
        border-radius: 22px;
        order: 2;
        -webkit-mask-image: none;
                mask-image: none;
    }
    .hero-visuel .hero-inner { order: 1; }
    .hero-visuel .hero-actions { margin-bottom: 48px; }
    .hero-visuel .hero-metrics { margin-bottom: 44px; }
    .hero-visuel h1, .hero-visuel .hero-sub,
    .hero-visuel .hero-actions, .hero-visuel .hero-metrics { max-width: none; }
    .hero-visuel h1 { letter-spacing: -1.5px; }   /* -2.5px à 45 px de corps faisait se chevaucher les lettres */
}

/* ── FIGURE générique : image arrondie, jamais étirée ── */
.visuel {
    margin: 0;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: white;
    box-shadow: 0 18px 48px rgba(0,0,0,0.08);
}
.visuel img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}
.visuel--sombre {
    border-color: rgba(255,255,255,0.1);
    background: var(--ink);
    box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

/* ── INTRO en deux colonnes : texte à gauche, visuel à droite
   (« Un système simple » et L'Élan) ── */
.sol-intro, .energy-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
}
@media (max-width: 900px) {
    .sol-intro, .energy-intro { grid-template-columns: 1fr; gap: 32px; }
}

/* ── TARIFS : illustration en tête de chaque carte (bord à bord) ── */
.price-visuel {
    display: block;
    width: calc(100% + 68px);
    max-width: none;
    height: auto;              /* sinon l'attribut height="933" l'emporte sur l'aspect-ratio */
    margin: -40px -34px 28px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: 50% 46%;
    border-bottom: 1px solid var(--border);
}

/* ── PORTRAIT (accueil + « Qui je suis ») : la photo est en 3:2,
   on la recadre en 4:5 sur le visage dans le cadre arc-en-ciel ;
   sur mobile elle reprend son format naturel en pleine largeur. ── */
.photo-big img.portrait-recadre {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: 36% 50%;
}
@media (max-width: 900px) {
    .about-grid.about-grid-photo .photo-frame { order: 2; max-width: 420px; }
}
@media (max-width: 640px) {
    .about-grid.about-grid-photo .photo-frame,
    .about-head-grid .photo-big { max-width: none; }
    .photo-big img.portrait-recadre { aspect-ratio: 3 / 2; object-position: 50% 50%; }
}

/* ── CORRECTIF : le fil d'Ariane est un <nav>, et `nav { position: fixed }`
   (style.css) le collait en haut de page PAR-DESSUS le menu : logo et liens
   invisibles sur « Qui je suis » et les articles. On le remet dans le flux. ── */
nav.breadcrumb {
    position: static;
    height: auto;
    padding: 0;
    background: none;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    border-bottom: 0;
    justify-content: flex-start;
    z-index: auto;
}

/* ── CORRECTIF : les lignes des cartes tarifs sont en `display:flex`
   (style.css) : chaque <strong>/<em> devenait un item flex séparé du texte
   (« Écrits à partir de   tes   mots », « 4 articles par mois   , écrits »).
   La coche passe en absolu, le texte redevient un bloc normal. ── */
.price-list li { display: block; position: relative; padding-left: 32px; }
.price-list li .chk { position: absolute; left: 0; top: 3px; margin-top: 0; }
/* Le badge (« Offre de lancement », « Une fois la base en place ») était
   étiré sur toute la largeur par la carte en flex-column : on le laisse à
   sa largeur de contenu. */
.price-grid .price-badge { align-self: flex-start; }
