:root {
  --bleu: #2A3E92; --encre: #1B2452; --nuit: #101425; --brume: #EEF2FB;
  --rouge: #D01010; --texte: #3A4152; --titre: #101425;
  --bord: #E4E8F2; --bord2: #C7D0E6; --clair: #DDE4F5; --clair2: #C9D2EA; --ciel: #C8D4F2; --muted: #8D97B8;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Source Sans 3', 'Segoe UI', Arial, sans-serif; color: var(--texte); background: #fff; line-height: 1.65; }
.serif { font-family: 'Cormorant Garamond', 'Iowan Old Style', 'Palatino Linotype', Palatino, Georgia, serif; }
.wrap { max-width: 1440px; margin: 0 auto; padding: 0 24px; }
a { color: var(--bleu); text-decoration: none; }
img { max-width: 100%; height: auto; }
h1, h2 { font-family: 'Cormorant Garamond', 'Iowan Old Style', 'Palatino Linotype', Palatino, Georgia, serif; color: var(--titre); font-weight: 600; line-height: 1.15; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-size: 16px; font-weight: 700; padding: 15px 26px; border-radius: 8px; cursor: pointer; border: none; }
.btn-rouge { background: var(--rouge); color: #fff !important; box-shadow: 0 6px 18px rgba(0,0,0,0.22); }

/* Header (commun home v5) */
header { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 1px solid var(--bord); }
/* L'en-tête n'est pas contraint par la bande de contenu : le logo
   s'aligne sur le bord gauche de la page, le téléphone sur le droit. */
header > .wrap { max-width: none; padding-left: 32px; padding-right: 32px; }
@media (max-width: 900px) { header > .wrap { padding-left: 24px; padding-right: 24px; } }
.header-in { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 10px 0; }
.marque { display: flex; align-items: center; gap: 12px; }
.marque img { width: 48px; height: 48px; }
.marque .nom { font-family: 'Cormorant Garamond', 'Iowan Old Style', 'Palatino Linotype', Palatino, Georgia, serif; font-size: 20px; font-weight: 600; color: var(--encre); line-height: 1.1; }
@media (max-width: 380px) { .marque .nom { font-size: 17px; white-space: nowrap; }
  .marque { gap: 9px; } .marque img { width: 40px; height: 40px; } }
.marque .role { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: #6A7186; }
nav.desktop { display: flex; gap: 24px; font-size: 15px; font-weight: 600; }
nav.desktop a { color: var(--texte); }
nav.desktop a:hover { color: var(--bleu); }
.header-tel { display: inline-flex; align-items: center; gap: 8px; background: var(--rouge); color: #fff !important; font-size: 15px; font-weight: 700; padding: 12px 18px; border-radius: 8px; white-space: nowrap; }
.burger { display: none; position: relative; }
.burger summary { list-style: none; cursor: pointer; padding: 10px; display: flex; flex-direction: column; gap: 5px; }
.burger summary::-webkit-details-marker { display: none; }
.burger summary span { display: block; width: 24px; height: 2.5px; background: var(--encre); border-radius: 2px; }
.burger .menu { position: absolute; right: 0; top: 100%; background: #fff; border: 1px solid var(--bord); border-radius: 10px; box-shadow: 0 12px 30px rgba(27,36,82,0.14); padding: 10px; display: flex; flex-direction: column; min-width: 220px; }
.burger .menu a { padding: 12px 14px; font-weight: 600; color: var(--texte); border-radius: 7px; }
.burger .menu a:hover { background: var(--brume); }

/* Hero article : sobre, encre */
.hero-art { position: relative; background: linear-gradient(115deg, var(--nuit) 0%, var(--encre) 58%, #232F6B 100%); color: #fff; overflow: hidden; }
.hero-art::after { content: ""; position: absolute; inset: 0; background: url(/assets/0ec1bbe609e4721a.webp); background-size: cover; opacity: 0.05; pointer-events: none; }
.hero-art .wrap { position: relative; z-index: 2; padding-top: 40px; padding-bottom: 40px; display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
 /* Fil d'ariane : en pied de page uniquement (decision Paul 29/08/2026) */
.ariane-foot { font-size: 13px; display: flex; flex-wrap: wrap; gap: 7px; align-items: center; padding-bottom: 22px; margin-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.ariane-foot a { color: var(--clair2); }
.ariane-foot a:hover { color: #fff; }
.ariane-foot .sep { color: var(--muted); }
.ariane-foot .ici { color: var(--clair2); font-weight: 600; }
.hero-art h1 { color: #fff; font-size: clamp(28px, 3.6vw, 44px); max-width: 900px; }
.hero-art .signature b { color: var(--clair); font-weight: 600; }
@media (max-width: 640px) { .hero-art .wrap { padding-top: 26px; padding-bottom: 28px; } .hero-art .btn { width: 100%; } }

/* Hero pilier : gabarit hero de la home (image réelle + voile encre dégradé) */
.hero-pilier { position: relative; background: var(--encre); color: #fff; overflow: hidden; }
.hero-pilier::before { content: ""; position: absolute; inset: 0; background-image: url(/assets/2356c5be628db11e.webp); background-size: cover; background-position: left bottom; }
/* Sur téléphone le hero est haut et étroit (rapport 0,71) : une photo paysage
   y serait recadrée sauvagement. On sert le cadrage portrait de la même scène. */
@media (max-width: 640px) { .hero-pilier::before { background-image: url(/assets/2356c5be628db11e.webp); background-position: center bottom; } }
.hero-pilier::after { content: ""; position: absolute; inset: 0; background: linear-gradient(270deg, rgba(16,20,37,0.84) 0%, rgba(27,36,82,0.62) 55%, rgba(27,36,82,0.30) 100%); }
.hero-pilier .wrap { position: relative; z-index: 2; display: flex; justify-content: flex-end; padding-top: 74px; padding-bottom: 68px; }
.hero-pilier-in { max-width: 760px; text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 16px; }
.hero-pilier h1 { color: #fff; font-size: clamp(30px, 4vw, 48px); line-height: 1.12; }
@media (max-width: 900px) {
  .hero-pilier::after { background: linear-gradient(180deg, rgba(16,20,37,0.72) 0%, rgba(27,36,82,0.44) 60%, rgba(27,36,82,0.24) 100%); }
  .hero-pilier .wrap { justify-content: flex-start; padding-top: 42px; padding-bottom: 40px; }
  .hero-pilier-in { text-align: left; align-items: flex-start; }
}
/* Sur téléphone, le hero s'allonge pour laisser voir la photo : le titre en haut,
   le bouton en bas, et entre les deux une fenêtre ouverte sur le plateau et les
   cartes. Le voile s'assombrit aux deux extrémités, là où il y a du texte, et
   s'éclaircit au milieu, là où il n'y en a pas. */
@media (max-width: 640px) {
  .hero-pilier .wrap { padding-top: 28px; padding-bottom: 26px; }
  .hero-pilier-in { gap: 0; width: 100%; }
  .hero-pilier-in .btn { margin-top: 232px; width: 100%; }
  .hero-pilier::before { background-position: center 78%; }
  .hero-pilier::after { background: linear-gradient(180deg,
      rgba(16,20,37,0.88) 0%, rgba(16,20,37,0.74) 26%, rgba(27,36,82,0.30) 48%,
      rgba(27,36,82,0.34) 66%, rgba(16,20,37,0.80) 100%); }
}


/* Sections colorées (mode home, piliers) */
.faq-section { background: var(--brume); padding: 54px 0 58px 0; }
.faq-section .faq-in { max-width: 860px; margin: 0 auto; }
.faq-section h2 { border: none; padding: 0; margin: 0 0 6px 0; font-size: clamp(25px, 2.8vw, 33px); }
.postart { padding: 50px 0 8px 0; }
.postart .postart-in { max-width: 860px; margin: 0 auto; }
.postart .auteur { margin-top: 0; }
.lire.texture { background: linear-gradient(180deg, rgba(255,255,255,0.80), rgba(238,242,251,0.75)), url(/assets/0ec1bbe609e4721a.webp); background-size: cover; }

/* Mise en page : contenu + sidebar */
/* La colonne de lecture reste à 820 px : au-delà, la ligne devient trop longue
   pour l'oeil. La largeur gagnée sur grand écran va dans la gouttière, pas dans
   le texte, et la colonne latérale se cale à droite. */
.art-layout { display: grid; grid-template-columns: minmax(0, 820px) 320px; justify-content: space-between; gap: 56px; padding-top: 48px; padding-bottom: 64px; }
.art-main { max-width: 820px; }
aside.art-side { display: block; }
.side-inner { position: sticky; top: 84px; display: flex; flex-direction: column; gap: 18px; }
.side-card { background: #fff; border: 1px solid var(--bord); border-radius: 12px; padding: 20px 22px; }
.side-card .titre { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; color: var(--bleu); margin-bottom: 12px; }
.side-toc ol { list-style: none; counter-reset: toc; max-height: 52vh; overflow: auto; }
.side-toc li { counter-increment: toc; margin-bottom: 2px; }
.side-toc a { display: block; font-size: 14px; font-weight: 600; color: var(--texte); padding: 6px 8px; border-radius: 6px; border-left: 2px solid transparent; }
.side-toc a::before { content: counter(toc) ". "; color: var(--muted); font-weight: 700; }
.side-toc a:hover { background: var(--brume); color: var(--bleu); }
.side-urgence { background: var(--encre); border: none; color: #fff; text-align: left; }
.side-urgence .t { font-family: 'Cormorant Garamond', 'Iowan Old Style', 'Palatino Linotype', Palatino, Georgia, serif; font-size: 22px; font-weight: 600; color: #fff; margin-bottom: 6px; }
.side-urgence p { font-size: 13.5px; color: var(--clair2); margin-bottom: 14px; }
.side-urgence .btn { width: 100%; font-size: 15px; padding: 13px 18px; }
.side-urgence .dispo { font-size: 12.5px; color: var(--muted); margin: 10px 0 0 0; text-align: center; }
.toc-mobile { display: none; }
@media (max-width: 900px) {
  .art-layout { grid-template-columns: 1fr; gap: 0; padding-top: 34px; padding-bottom: 48px; }
  aside.art-side { display: none; }
  .toc-mobile { display: block; border: 1px solid var(--bord); border-radius: 12px; margin: 26px 0; padding: 18px 20px; background: #fff; }
  .toc-mobile .titre { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; color: var(--bleu); margin-bottom: 10px; }
  .toc-mobile ol { list-style: none; padding: 0; margin: 0; counter-reset: tocm; }
  .toc-mobile li { counter-increment: tocm; margin-bottom: 8px; }
  .toc-mobile a { font-size: 14.5px; font-weight: 600; color: var(--texte); border-bottom: none; }
  .toc-mobile a::before { content: counter(tocm) ". "; color: var(--muted); font-weight: 700; }
}

/* Corps de l'article */
.art-main .art-intro { font-size: 18.5px; line-height: 1.65; color: var(--titre); }
.art-main h2 { font-size: clamp(25px, 2.8vw, 33px); margin: 46px 0 6px 0; padding-top: 18px; border-top: 1px solid var(--bord); }
.art-main h3 { font-size: 19px; font-weight: 700; color: var(--encre); line-height: 1.35; margin: 26px 0 4px 0; }
.art-main p { margin: 12px 0 0 0; font-size: 16.5px; }
.art-main ul, .art-main ol { margin: 12px 0 0 0; padding-left: 24px; }
.art-main li { margin-bottom: 7px; font-size: 16.5px; }
.art-main a { font-weight: 600; border-bottom: 1px solid var(--clair2); }
.art-main a:hover { border-bottom-color: var(--bleu); }
.art-main strong { color: var(--titre); }
.art-figure { margin: 28px 0; }
.art-figure img { border-radius: 12px; display: block; width: 100%; height: auto; }

/* L'essentiel */
.essentiel { background: var(--brume); border-left: 3px solid var(--bleu); border-radius: 0 12px 12px 0; padding: 22px 26px; margin: 28px 0; }
.essentiel .titre { font-family: 'Cormorant Garamond', 'Iowan Old Style', 'Palatino Linotype', Palatino, Georgia, serif; font-size: 22px; font-weight: 600; color: var(--encre); margin-bottom: 8px; }
.essentiel ul { margin: 0; padding-left: 20px; }
.essentiel li { margin-bottom: 8px; font-size: 15.5px; }
.essentiel li:last-child { margin-bottom: 0; }

/* CTA P0 */
.art-main .btn, .art-main .cta-canal, .art-main .callbar-btn { border-bottom: none; }
.cta-p0 { display: flex; align-items: center; gap: 24px; background: linear-gradient(115deg, var(--encre) 0%, var(--bleu) 100%); border-radius: 12px; padding: 22px 26px; margin: 26px 0; color: #fff; }
.cta-p0-main { flex: 1; min-width: 0; }
.cta-p0-head { display: flex; align-items: center; gap: 16px; }
.cta-p0-photo { width: 76px; height: 76px; border-radius: 50%; object-fit: cover; object-position: top; border: 2px solid rgba(255,255,255,0.55); flex-shrink: 0; }
.cta-p0-body { margin: 8px 0 0 92px; }
p.cta-p0-title { font-family: 'Cormorant Garamond', 'Iowan Old Style', 'Palatino Linotype', Palatino, Georgia, serif; font-size: 27px; font-weight: 600; color: #fff; line-height: 1.15; }
p.cta-p0-sub { font-size: 14.5px; color: var(--clair); margin-top: 0; }
p.cta-p0-trust { display: flex; align-items: flex-start; gap: 7px; font-size: 12.5px; color: var(--ciel); margin-top: 9px; }
.cta-p0-trust svg { margin-top: 2px; }
.cta-p0-actions { display: flex; flex-direction: column; gap: 9px; align-items: stretch; flex-shrink: 0; }
.cta-p0-row { display: flex; gap: 8px; justify-content: center; }
.cta-canal { display: inline-flex; align-items: center; justify-content: center; gap: 7px; color: #fff !important; font-size: 13.5px; font-weight: 700; padding: 10px 14px; border-radius: 8px; flex: 1; box-shadow: 0 4px 12px rgba(0,0,0,0.16); }
.cta-canal:hover { filter: brightness(1.08); }
.cta-sms { background: var(--bleu); }
.cta-wa { background: #25D366; }
@media (max-width: 640px) {
  .cta-p0 { flex-direction: column; align-items: stretch; gap: 16px; padding: 20px 18px; }
  .cta-p0-photo { width: 64px; height: 64px; }
  p.cta-p0-title { font-size: 24px; }
  .cta-p0-body { margin-left: 0; margin-top: 12px; }
  .cta-p0-actions { width: 100%; }
  .cta-p0 .btn { width: 100%; }
}

/* CTA milieu et fin */
.cta-mid { display: flex; align-items: center; justify-content: space-between; gap: 22px; background: var(--brume); border: 1px solid var(--bord2); border-radius: 12px; padding: 22px 26px; margin: 40px 0; flex-wrap: wrap; }
p.cta-mid-title { font-size: 22px; font-weight: 600; color: var(--encre); line-height: 1.2; }
p.cta-mid-sub { font-size: 14.5px; margin-top: 3px; }
@media (max-width: 640px) { .cta-mid { flex-direction: column; align-items: stretch; } }
.cta-fin { background: linear-gradient(115deg, var(--nuit) 0%, var(--encre) 100%); border-radius: 12px; padding: 34px 30px 28px 30px; margin: 44px 0 8px 0; text-align: center; color: #fff; }
p.cta-fin-title { font-size: 28px; font-weight: 600; color: #fff; }
p.cta-fin-sub { font-size: 15px; color: var(--clair2); margin: 6px 0 18px 0; }
p.cta-fin-tel { font-size: 13.5px; color: var(--muted); margin-top: 12px; }
.cta-fin-tel a { color: var(--clair); font-weight: 700; }
p.cta-fin-rappel { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; color: var(--muted); margin-top: 20px; }
.cta-fin-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 10px; }
.cta-fin-row .cta-canal { flex: 0 1 180px; font-size: 14px; padding: 11px 18px; }

/* Schémas conceptuels (HTML V4 ré-habillé) */
.pb-schema { margin: 28px 0; }
p.pb-schema-mobile-title { font-family: 'Cormorant Garamond', 'Iowan Old Style', 'Palatino Linotype', Palatino, Georgia, serif; font-size: 21px; font-weight: 600; color: var(--encre); margin-bottom: 12px; }
.pb-schema-caption { font-size: 13.5px; color: #6A7186; margin-top: 10px; }
.pb-compare-stack { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
@media (max-width: 640px) { .pb-compare-stack { grid-template-columns: 1fr; } }
.pb-compare-card { border-radius: 12px; padding: 18px 20px; border: 1px solid var(--bord); }
.pb-compare-card ul { margin: 0; padding-left: 20px; }
.pb-compare-card li { font-size: 14.5px; margin-bottom: 6px; }
.pb-compare-title { font-weight: 700; font-size: 15px; margin-bottom: 9px; }
.pb-compare-bad { background: #fff; border-color: var(--bord2); }
.pb-compare-bad .pb-compare-title { color: #8A4B4B; }
.pb-compare-good { background: var(--brume); border-color: var(--bleu); }
.pb-compare-good .pb-compare-title { color: var(--bleu); }
.pb-timeline-vertical { list-style: none; padding: 0; margin: 0; position: relative; }
.pb-timeline-vertical::before { content: ""; position: absolute; left: 15px; top: 8px; bottom: 8px; width: 2px; background: var(--clair2); }
.pb-timeline-vertical li { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px; position: relative; }
.pb-tv-num { width: 32px; height: 32px; border-radius: 50%; background: var(--bleu); color: #fff; font-weight: 700; font-size: 15px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; z-index: 1; }
.pb-tv-label { font-weight: 700; color: var(--encre); font-size: 15.5px; }
.pb-tv-sub { font-size: 14px; color: var(--texte); }

/* FAQ accordéons (standard home v5) */
.faq details { background: #fff; border: 1px solid var(--bord); border-radius: 12px; margin-top: 12px; }
.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 17px 21px; font-size: 16.5px; font-weight: 700; color: var(--encre); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "›"; color: var(--bleu); font-size: 22px; line-height: 1; flex-shrink: 0; }
.faq details[open] summary::after { content: "⌄"; }
.faq .rep { padding: 0 21px 17px 21px; font-size: 15.5px; }
.faq .rep p { margin-top: 0; font-size: 15.5px; }
.faq .rep p + p { margin-top: 10px; }

/* Bloc auteur E-E-A-T */
.auteur { display: flex; gap: 20px; align-items: flex-start; background: var(--brume); border-radius: 12px; padding: 24px 26px; margin: 40px 0 0 0; }
.auteur img { width: 92px; height: 115px; object-fit: cover; object-position: top; border-radius: 10px; flex-shrink: 0; }
.auteur .nom { font-family: 'Cormorant Garamond', 'Iowan Old Style', 'Palatino Linotype', Palatino, Georgia, serif; font-size: 22px; font-weight: 600; color: var(--encre); }
.auteur .role { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; color: var(--bleu); margin: 2px 0 8px 0; }
.auteur .bio { font-size: 14.5px; }
.auteur .meta { font-size: 13px; color: #6A7186; margin-top: 10px; }
.auteur .meta a { font-weight: 600; }
@media (max-width: 640px) { .auteur { flex-direction: column; } }

/* Références */
.refs { margin: 34px 0 0 0; border-top: 1px solid var(--bord); padding-top: 20px; }
.refs h2 { font-size: 21px; margin: 0 0 4px 0; padding: 0; border: none; }
.refs ul { margin: 10px 0 0 0; padding-left: 22px; }
.refs li { font-size: 14.5px; margin-bottom: 6px; }

/* Avis Google : section dediee, sans citation d'avis (decision Paul 29/08/2026) */
.avis-bloc { padding: 52px 0 56px 0; }
.avis-bloc.brume { background: var(--brume); }
.avis-bloc.texture { background: linear-gradient(180deg, rgba(255,255,255,0.80), rgba(238,242,251,0.75)), url(/assets/0ec1bbe609e4721a.webp); background-size: cover; }
.avis-sec { text-align: center; }
.avis-sec .eyebrow { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; color: var(--bleu); }
.avis-note { display: flex; align-items: baseline; justify-content: center; gap: 12px; margin-top: 10px; }
.avis-note .chiffre { font-family: 'Cormorant Garamond', 'Iowan Old Style', 'Palatino Linotype', Palatino, Georgia, serif; font-size: clamp(46px, 6vw, 64px); font-weight: 600; color: var(--encre); line-height: 1; }
.avis-note .sur { font-size: 17px; font-weight: 600; color: var(--muted); }
.avis-etoiles { font-size: 24px; letter-spacing: 4px; color: var(--bleu); margin-top: 6px; }
p.avis-nb { font-size: 16.5px; font-weight: 600; color: var(--texte); margin-top: 8px; }
.avis-lien { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 700; margin-top: 14px; }

/* Bande CTA de fin (piliers) */
.cta-bande { background: var(--encre); color: #fff; padding: 44px 0; }
.cta-in { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.cta-in h2 { color: #fff; font-size: clamp(22px, 2.6vw, 30px); }
.cta-in p { color: var(--clair2); margin-top: 6px; }
@media (max-width: 900px) { .cta-in { flex-direction: column; align-items: stretch; text-align: left; } .cta-in .btn { width: 100%; } }

/* Maillage : poursuivre la lecture */
.lire { background: var(--brume); padding: 52px 0 58px 0; }
.lire .sec-titre { font-size: clamp(24px, 2.6vw, 31px); margin-bottom: 22px; }
.lire-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
@media (max-width: 900px) { .lire-grid { grid-template-columns: 1fr; } }
.lire-card { background: #fff; border: 1px solid var(--bord); border-radius: 12px; padding: 22px 24px; display: block; }
.lire-card:hover { border-color: var(--bleu); }
.lire-card .tag { font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; color: var(--bleu); }
.lire-card .t { font-family: 'Cormorant Garamond', 'Iowan Old Style', 'Palatino Linotype', Palatino, Georgia, serif; font-size: 20px; font-weight: 600; color: var(--encre); line-height: 1.25; margin-top: 6px; }
.lire-card.pilier { background: var(--encre); border-color: var(--encre); }
.lire-card.pilier .tag { color: var(--ciel); }
.lire-card.pilier .t { color: #fff; }
.lire-card .fleche { display: inline-block; margin-top: 10px; font-size: 14px; font-weight: 700; color: var(--bleu); }
.lire-card.pilier .fleche { color: var(--ciel); }

/* Footer (commun home v5) */
footer.site { background: var(--nuit); color: var(--clair2); padding: 52px 0 0 0; }
.foot-grid { display: flex; gap: 40px; align-items: flex-start; flex-wrap: wrap; }
.foot-col h4 { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.foot-col a, .foot-col div.l { display: block; font-size: 14px; color: var(--clair2); margin-bottom: 9px; }
.foot-marque { max-width: 320px; }
.foot-bas { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 36px; padding: 16px 0 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 13px; color: var(--muted); flex-wrap: wrap; }
@media (max-width: 900px) { .foot-grid { flex-direction: column; gap: 30px; } footer.site { padding-bottom: 70px; } }

/* Callbar mobile (commun home v5) */
.callbar { display: none; }
@media (max-width: 640px) {
  .callbar { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; background: #fff; border-top: 1px solid var(--bord); box-shadow: 0 -3px 12px rgba(0,0,0,0.09); padding: 8px 10px; transition: transform 0.25s ease; }
  .callbar.masquee { transform: translateY(110%); }
  .callbar-btn { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: var(--rouge); color: #fff !important; text-align: center; border-radius: 8px; padding: 13px 0; font-size: 16px; font-weight: 700; box-shadow: 0 4px 12px rgba(208,16,16,0.25); }
  body { padding-bottom: 62px; }
}
@media (max-width: 900px) { nav.desktop { display: none; } .header-tel span.txt { display: none; } .burger { display: block; } }

/* Fil d'ariane en pied de page (decision Paul 29/08/2026) */
.ariane-foot { font-size: 13px; display: flex; flex-wrap: wrap; gap: 7px; align-items: center; padding-bottom: 22px; margin-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.ariane-foot a { color: var(--clair2); }
.ariane-foot a:hover { color: #fff; }
.ariane-foot .sep { color: var(--muted); }
.ariane-foot .ici { color: var(--clair2); font-weight: 600; }
/* Encart d'orientation : remplace les relances commerciales quand CTA = False */
.art-main p.orientation { background: var(--brume); border-left: 3px solid var(--bord2); border-radius: 0 10px 10px 0; padding: 14px 18px; font-size: 16px; color: var(--texte); }