/* ============================================================================
   Seesmile Durieux Orthodontie — Stylesheet principal
   v1.0.0
   Mobile-first · 81% du trafic est mobile.
   ============================================================================ */

/* ----------------------------------------------------------------------------
   1. Variables CSS (design tokens)
   ---------------------------------------------------------------------------- */

:root {
    /* Palette validée — bleu marine / lavande */
    --c-lavande:       #D3BBE2;
    --c-violet:        #8F90D1;
    --c-bleu-clair:    #8389CF;
    --c-bleu:          #6571BF;   /* boutons primaires */
    --c-marine:        #424D95;   /* titres, header, footer */

    /* Dérivés */
    --c-marine-dark:   #323A75;
    --c-bleu-hover:    #5562B0;
    --c-lavande-light: #E8DBF2;
    --c-lavande-soft:  #F4ECFA;

    /* Neutres */
    --c-bg:            #FFFFFF;
    --c-bg-soft:       #FAF8FD;
    --c-bg-grey:       #F4F5F9;
    --c-text:          #1F2447;
    --c-text-soft:     #4A5074;
    --c-text-muted:    #7C82A0;
    --c-border:        #E5E7F0;
    --c-border-soft:   #EFF0F6;
    --c-white:         #FFFFFF;

    /* Cartes traitements (4 variants) */
    --card-purple:     #8F90D1;
    --card-red:        #C9685B;
    --card-green:      #6FA88A;
    --card-orange:     #D89860;

    /* Typo */
    --ff-base:    "Sarabun", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --ff-accent:  "Cormorant Garamond", Georgia, "Times New Roman", serif;

    /* Espacements */
    --sp-1:   4px;
    --sp-2:   8px;
    --sp-3:   12px;
    --sp-4:   16px;
    --sp-5:   24px;
    --sp-6:   32px;
    --sp-7:   48px;
    --sp-8:   64px;
    --sp-9:   96px;
    --sp-10:  128px;

    /* Layout */
    --container:        1280px;
    --container-wide:   1440px;
    --container-narrow: 820px;
    --radius-sm:        6px;
    --radius:           12px;
    --radius-lg:        20px;
    --radius-xl:        32px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(31, 36, 71, 0.06);
    --shadow:    0 4px 16px rgba(31, 36, 71, 0.08);
    --shadow-lg: 0 12px 36px rgba(31, 36, 71, 0.12);

    /* Transitions */
    --t-fast:  150ms cubic-bezier(0.4, 0, 0.2, 1);
    --t:       250ms cubic-bezier(0.4, 0, 0.2, 1);
    --t-slow:  450ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Header */
    --header-h: 80px;
}

/* ----------------------------------------------------------------------------
   2. Reset & base
   ---------------------------------------------------------------------------- */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    width: 100%;
    overflow-x: hidden;
}

/* Verrou de scroll quand le menu mobile est ouvert : overflow hidden sur la
   racine — la page reste EXACTEMENT à sa position (aucun déplacement, donc
   aucun va-et-vient et aucune perte de position). */
html.menu-open { overflow: hidden; }
html.menu-open body { overflow: hidden; }

/* Menu ouvert : header toujours en état « plein » (lisible sur le panneau),
   même en haut de page où il est normalement transparent. */
html.menu-open .site-header {
    background: #F5E6EF;
    border-bottom-color: rgba(31, 36, 71, 0.06);
    box-shadow: var(--shadow);
}
html.menu-open .site-header .mega-link,
html.menu-open .site-header .header-phone,
html.menu-open .site-header .header-phone-text { color: var(--c-marine); }
html.menu-open .site-header .custom-logo { filter: none; }
html.menu-open .site-header .burger span { background: var(--c-marine); }

body {
    margin: 0;
    font-family: var(--ff-base);
    font-size: 16px;
    line-height: 1.65;
    color: var(--c-text);
    background: var(--c-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, svg, video, picture {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--c-bleu);
    text-decoration: none;
    transition: color var(--t);
}
a:hover { color: var(--c-marine); }

p { margin: 0 0 var(--sp-4); }

ul, ol { padding-left: var(--sp-5); }

button {
    font-family: inherit;
    cursor: pointer;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* Hide visually but accessible */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

/* Skip link */
.skip-to-content {
    position: absolute;
    top: -50px;
    left: var(--sp-3);
    background: var(--c-marine);
    color: #fff;
    padding: var(--sp-2) var(--sp-4);
    z-index: 9999;
    border-radius: var(--radius-sm);
    transition: top var(--t);
}
.skip-to-content:focus { top: var(--sp-3); color: #fff; }

/* ----------------------------------------------------------------------------
   3. Layout — containers
   ---------------------------------------------------------------------------- */

.container,
.container-wide,
.container-narrow {
    width: 100%;
    margin-inline: auto;
    padding-inline: var(--sp-4);
}
.container        { max-width: var(--container); }
.container-wide   { max-width: var(--container-wide); }
.container-narrow { max-width: var(--container-narrow); }

@media (min-width: 768px) {
    .container,
    .container-wide,
    .container-narrow { padding-inline: var(--sp-6); }
}

/* ----------------------------------------------------------------------------
   4. Typographie & titres
   ---------------------------------------------------------------------------- */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--ff-base);
    color: var(--c-marine);
    line-height: 1.2;
    margin: 0 0 var(--sp-4);
    font-weight: 600;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.65rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.3rem, 2.3vw, 1.7rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1.05rem; }
h6 { font-size: 0.95rem; }

/* Accent serif italique */
.accent,
em.accent {
    font-family: var(--ff-accent);
    font-style: italic;
    font-weight: 500;
    color: var(--c-violet);
    font-feature-settings: "liga", "kern";
}

/* Tags / pills */
.tag {
    display: inline-block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-violet);
    font-weight: 600;
    margin-bottom: var(--sp-3);
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    padding: 6px 14px;
    background: var(--c-lavande-soft);
    color: var(--c-marine);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: var(--sp-4);
}
.tag-pill-light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--c-white);
    backdrop-filter: blur(8px);
}

/* ----------------------------------------------------------------------------
   5. Buttons
   ---------------------------------------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    padding: 14px 28px;
    border: 2px solid transparent;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--t);
    white-space: nowrap;
}

.btn-primary {
    background: var(--c-bleu);
    color: var(--c-white) !important;
    border-color: var(--c-bleu);
}
.btn-primary:hover {
    background: var(--c-marine);
    border-color: var(--c-marine);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: var(--c-white);
    color: var(--c-marine) !important;
    border-color: var(--c-marine);
}
.btn-secondary:hover { background: var(--c-marine); color: var(--c-white) !important; }

.btn-ghost {
    background: transparent;
    color: var(--c-marine) !important;
    border-color: var(--c-marine);
}
.btn-ghost:hover {
    background: var(--c-marine);
    color: var(--c-white) !important;
}

.btn-large {
    padding: 16px 34px;
    font-size: 1rem;
}

.btn-block { display: flex; width: 100%; }

/* ----------------------------------------------------------------------------
   6. Header & navigation
   ---------------------------------------------------------------------------- */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background var(--t), box-shadow var(--t), border-color var(--t);
}
/* Au scroll : fond rose + éléments foncés + ombre */
.site-header.is-scrolled {
    background: #F5E6EF;
    border-bottom-color: rgba(31, 36, 71, 0.06);
    box-shadow: var(--shadow);
}

/* En haut de page (fond transparent) : éléments en BLANC */
.site-header .mega-link,
.site-header .mega-caret,
.site-header .header-phone,
.site-header .header-phone-text { color: #fff; }
.site-header .custom-logo { filter: brightness(0) invert(1); transition: filter var(--t); }
.site-header .burger span { background: #fff; }
.site-header .header-cta { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.5); color:#fff !important; }
.site-header .header-cta:hover { background:#fff !important; color: var(--c-marine) !important; border-color:#fff !important; }

/* Au scroll : éléments foncés */
.site-header.is-scrolled .mega-link,
.site-header.is-scrolled .mega-caret,
.site-header.is-scrolled .header-phone,
.site-header.is-scrolled .header-phone-text { color: var(--c-marine); }
.site-header.is-scrolled .custom-logo { filter: none; }
.site-header.is-scrolled .burger span { background: var(--c-marine); }
.site-header.is-scrolled .header-cta { background: var(--c-bleu) !important; border-color: var(--c-bleu) !important; color:#fff !important; }
.site-header.is-scrolled .header-cta:hover { background: var(--c-bleu-hover) !important; color:#fff !important; }

/* Pages sans hero sombre (404, recherche) : header solide dès le chargement
   sinon les éléments blancs sont invisibles sur le fond clair */
body.error404 .site-header,
body.search .site-header {
    background: #F5E6EF;
    border-bottom-color: rgba(31, 36, 71, 0.06);
    box-shadow: var(--shadow);
}
body.error404 .site-header .mega-link,
body.error404 .site-header .mega-caret,
body.error404 .site-header .header-phone,
body.error404 .site-header .header-phone-text,
body.search .site-header .mega-link,
body.search .site-header .mega-caret,
body.search .site-header .header-phone,
body.search .site-header .header-phone-text { color: var(--c-marine); }
body.error404 .site-header .custom-logo,
body.search .site-header .custom-logo { filter: none; }
body.error404 .site-header .burger span,
body.search .site-header .burger span { background: var(--c-marine); }
body.error404 .site-header .header-cta,
body.search .site-header .header-cta { background: var(--c-bleu) !important; border-color: var(--c-bleu) !important; color:#fff !important; }
body.error404 .site-header .header-cta:hover,
body.search .site-header .header-cta:hover { background: var(--c-bleu-hover) !important; color:#fff !important; }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-4);
    min-height: var(--header-h);
}

.site-branding {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo { display: block; }
.custom-logo { max-height: 56px; width: auto; }

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo-title {
    font-family: var(--ff-base);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-marine);
}
.logo-subtitle {
    font-family: var(--ff-accent);
    font-style: italic;
    font-size: 0.85rem;
    color: var(--c-violet);
}

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
}
.header-phone {
    display: none;
    align-items: center;
    gap: var(--sp-2);
    color: var(--c-marine);
    font-weight: 500;
    font-size: 0.95rem;
}
.header-phone .icon-phone {
    width: 18px;
    height: 18px;
    color: var(--c-bleu);
}
.header-cta { display: none; }

/* ---- Burger mobile ---- */
.burger {
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--c-marine);
    border-radius: 2px;
    transition: transform var(--t), opacity var(--t);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mega menu (desktop) — hidden mobile */
.site-nav { display: none; }

@media (min-width: 1024px) {
    .site-nav { display: block; }
    .burger { display: none; }
    .header-phone, .header-cta { display: inline-flex; }
}

.mega-menu {
    list-style: none;
    display: flex;
    gap: var(--sp-1);
    margin: 0;
    padding: 0;
}

.mega-item { position: relative; }

.mega-link {
    display: flex;
    align-items: center;
    gap: var(--sp-1);
    padding: 12px var(--sp-4);
    color: var(--c-marine);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: all var(--t);
}
.mega-link:hover,
.mega-item:hover .mega-link,
.mega-item:focus-within .mega-link {
    color: var(--c-bleu);
    background: var(--c-lavande-soft);
}
.mega-link .mega-caret { transition: transform var(--t); }
.mega-item:hover .mega-caret,
.mega-item:focus-within .mega-caret { transform: rotate(180deg); }

.mega-panel {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 520px;
    background: var(--c-white);
    border: 1px solid var(--c-border-soft);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity var(--t), transform var(--t), visibility var(--t);
    z-index: 100;
}
.mega-panel-small { min-width: 260px; }

.mega-item:hover .mega-panel,
.mega-item:focus-within .mega-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-panel-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--sp-5);
    padding: var(--sp-5);
}

.megamenu-title {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-violet);
    font-weight: 600;
    margin-bottom: var(--sp-3);
}

.mega-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mega-col li { margin-bottom: var(--sp-1); }
.mega-col a {
    display: block;
    padding: var(--sp-2) var(--sp-3);
    border-radius: var(--radius-sm);
    color: var(--c-text);
    font-weight: 500;
    transition: all var(--t);
}
.mega-col a:hover {
    background: var(--c-lavande-soft);
    color: var(--c-marine);
}
.mega-col strong { display: block; color: var(--c-marine); font-weight: 600; }
.mega-desc {
    display: block;
    font-size: 0.82rem;
    color: var(--c-text-muted);
    font-weight: 400;
    margin-top: 2px;
}

/* Panneau avec colonne visuelle mise en avant */
.mega-panel-visual { min-width: 560px; }
.mega-panel-visual .mega-panel-inner { grid-template-columns: 1fr 208px; align-items: stretch; }
.mega-visual {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 210px;
    border-radius: var(--radius);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    isolation: isolate;
}
.mega-visual-overlay {
    position: absolute; inset: 0; z-index: 0;
    background: linear-gradient(180deg, rgba(66,77,149,0) 30%, rgba(50,58,117,.9) 100%);
    transition: background var(--t);
}
.mega-visual:hover .mega-visual-overlay { background: linear-gradient(180deg, rgba(66,77,149,.15) 0%, rgba(50,58,117,.95) 100%); }
.mega-visual-content { position: relative; z-index: 1; padding: 16px 18px; color: #fff; }
.mega-visual-tag { display: block; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--c-lavande, #D3BBE2); font-weight: 700; margin-bottom: 4px; }
.mega-visual-title { display: block; font-family: var(--ff-accent); font-size: 1.15rem; line-height: 1.15; margin-bottom: 6px; }
.mega-visual-cta { display: inline-block; font-size: .85rem; font-weight: 600; color: #fff; transition: transform var(--t); }
.mega-visual:hover .mega-visual-cta { transform: translateX(3px); }

/* ---- Mobile menu ---- */
.mobile-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--c-white);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--t-slow);
    z-index: 150;
    visibility: hidden;
}
.mobile-nav[aria-hidden="false"] {
    transform: translateX(0);
    visibility: visible;
}

.mobile-nav-inner {
    padding: var(--sp-5) var(--sp-4) var(--sp-7);
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--sp-7);
    flex: 1;
}

.mobile-menu-item { border-bottom: 1px solid var(--c-border-soft); }
.mobile-link,
.mobile-sub-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--sp-4) 0;
    background: transparent;
    border: 0;
    text-align: left;
    color: var(--c-marine);
    font-size: 1.1rem;
    font-weight: 500;
    font-family: inherit;
}
.mobile-sub-toggle svg { transition: transform var(--t); }
.mobile-sub-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.mobile-sub {
    list-style: none;
    padding: 0 0 var(--sp-4) var(--sp-4);
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--t-slow);
}
.mobile-sub.is-open { max-height: 800px; }
.mobile-sub a {
    display: block;
    padding: var(--sp-3) 0;
    color: var(--c-text);
    font-size: 0.98rem;
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}

/* ----------------------------------------------------------------------------
   7. Hero homepage
   ---------------------------------------------------------------------------- */

.hero {
    position: relative;
    overflow: hidden;
    color: var(--c-white);
    padding: var(--sp-9) 0 var(--sp-9);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-bg-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--c-marine) 0%, var(--c-violet) 100%);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 720px;
}

.hero-title {
    color: var(--c-white);
    font-size: clamp(2.2rem, 5.5vw, 4.2rem);
    margin-bottom: var(--sp-4);
}
.hero-title .accent { color: var(--c-lavande); }

.hero-subtitle {
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: var(--sp-6);
}
.hero-subtitle strong { color: var(--c-white); font-weight: 600; }

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-3);
}

.hero-home .btn-ghost {
    color: var(--c-white) !important;
    border-color: rgba(255, 255, 255, 0.5);
}
.hero-home .btn-ghost:hover {
    background: var(--c-white);
    color: var(--c-marine) !important;
    border-color: var(--c-white);
}

/* ----------------------------------------------------------------------------
   8. Quick info bar
   ---------------------------------------------------------------------------- */

.quick-info {
    background: var(--c-bg-soft);
    padding: var(--sp-4) 0;
    border-bottom: 1px solid var(--c-border-soft);
}
.quick-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--sp-3);
}
.quick-info-list a {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    padding: var(--sp-2);
    color: var(--c-marine);
    font-weight: 500;
    font-size: 0.92rem;
}
.quick-info-list svg { color: var(--c-bleu); flex-shrink: 0; }

/* ----------------------------------------------------------------------------
   9. Sections génériques
   ---------------------------------------------------------------------------- */

.section {
    padding: var(--sp-8) 0;
}
@media (min-width: 768px) {
    .section { padding: var(--sp-9) 0; }
}

.section-head { margin-bottom: var(--sp-7); }
.section-head-center {
    text-align: center;
    max-width: 780px;
    margin-inline: auto;
    margin-bottom: var(--sp-8);
}
.section-title {
    margin-bottom: var(--sp-4);
}
.section-title-center { text-align: center; }
.section-lead {
    font-size: 1.05rem;
    color: var(--c-text-soft);
    line-height: 1.7;
}

.section-head-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-4);
}
@media (min-width: 900px) {
    .section-head-grid {
        grid-template-columns: 1fr 1.4fr;
        gap: var(--sp-7);
        align-items: end;
    }
}

/* ----------------------------------------------------------------------------
   10. Section "À propos"
   ---------------------------------------------------------------------------- */

.section-about { background: var(--c-bg); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-7);
}
@media (min-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr 1.15fr;
        gap: var(--sp-8);
        align-items: center;
    }
}

.about-visual {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}
.about-visual img {
    width: 100%;
    aspect-ratio: 5/6;
    object-fit: cover;
    border-radius: var(--radius-xl);
}
.about-visual-placeholder {
    aspect-ratio: 5/6;
    background: linear-gradient(135deg, var(--c-lavande) 0%, var(--c-violet) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.about-stats {
    position: absolute;
    bottom: var(--sp-5);
    left: var(--sp-5);
    right: var(--sp-5);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-3);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: var(--sp-5) var(--sp-4);
    border-radius: var(--radius);
}
.stat { text-align: center; }
.stat-number {
    display: block;
    font-family: var(--ff-accent);
    font-style: italic;
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--c-marine);
    font-weight: 600;
    line-height: 1;
}
.stat-plus { color: var(--c-violet); }
.stat-label {
    display: block;
    margin-top: var(--sp-1);
    font-size: 0.75rem;
    color: var(--c-text-soft);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-3);
    margin-top: var(--sp-5);
}

/* ----------------------------------------------------------------------------
   11. Piliers
   ---------------------------------------------------------------------------- */

.section-pillars { background: var(--c-bg-soft); }

.pillars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-5);
}
@media (min-width: 640px) {
    .pillars-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
    .pillars-grid { grid-template-columns: repeat(4, 1fr); }
}

.pillar {
    background: var(--c-white);
    padding: var(--sp-6) var(--sp-5);
    border-radius: var(--radius-lg);
    border: 1px solid var(--c-border-soft);
    transition: transform var(--t), box-shadow var(--t);
}
.pillar:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.pillar-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--c-lavande-soft);
    color: var(--c-marine);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--sp-4);
}
.pillar-title {
    font-size: 1.2rem;
    margin-bottom: var(--sp-3);
}
.pillar-text {
    font-size: 0.95rem;
    color: var(--c-text-soft);
    margin: 0;
}

/* ----------------------------------------------------------------------------
   12. Partenaires
   ---------------------------------------------------------------------------- */

.section-partners {
    padding: var(--sp-7) 0;
    background: var(--c-white);
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--sp-8);
}
.partner-logo {
    opacity: 0.55;
    transition: opacity var(--t);
}
.partner-logo:hover { opacity: 1; }
.partner-name {
    font-family: var(--ff-accent);
    font-style: italic;
    font-size: 1.7rem;
    color: var(--c-marine);
    font-weight: 500;
}

/* ----------------------------------------------------------------------------
   13. Treatments cards (4 cartes full width)
   ---------------------------------------------------------------------------- */

.section-treatments {
    padding-bottom: 0;
    background: var(--c-bg);
}

.treatments-row {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: var(--sp-7);
}
@media (min-width: 700px) {
    .treatments-row { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
    .treatments-row,
    .treatments-row-4 { grid-template-columns: repeat(4, 1fr); }
    .treatments-row-3 { grid-template-columns: repeat(3, 1fr); }
}
/* 3 cartes : sur tablette on passe directement en 3 colonnes (évite le 2+1 déséquilibré) */
@media (min-width: 700px) and (max-width: 1099px) {
    .treatments-row-3 { grid-template-columns: repeat(3, 1fr); }
}

.treatment-card {
    position: relative;
    overflow: hidden;
    padding: var(--sp-8) var(--sp-5) var(--sp-7);
    color: var(--c-white) !important;
    min-height: 460px;
    display: flex;
    align-items: flex-end;
    transition: transform var(--t);
}
.treatment-card::before {
    content: '';
    position: absolute;
    inset: 0;
    transition: transform var(--t-slow);
    z-index: 0;
}
.treatment-card:hover::before {
    transform: scale(1.05);
}
.treatment-card-purple::before { background: linear-gradient(165deg, #A1A2DE 0%, #8F90D1 50%, #6F71B4 100%); }
.treatment-card-red::before    { background: linear-gradient(165deg, #DA7B6E 0%, #C9685B 50%, #A85045 100%); }
.treatment-card-green::before  { background: linear-gradient(165deg, #82BCA0 0%, #6FA88A 50%, #57906F 100%); }
.treatment-card-orange::before { background: linear-gradient(165deg, #E6AC76 0%, #D89860 50%, #B97A42 100%); }
/* Cartes AVEC photo : voile noir (la photo doit rester visible) */
.treatment-card.has-image::before { background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.68) 100%); }

.treatment-card-content {
    position: relative;
    z-index: 1;
}
.treatment-card-title {
    color: var(--c-white);
    font-size: clamp(1.4rem, 2.2vw, 1.7rem);
    line-height: 1.15;
    margin-bottom: var(--sp-4);
    text-transform: uppercase;
    letter-spacing: -0.005em;
    font-weight: 600;
}
.treatment-card-text {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.55;
    margin-bottom: var(--sp-4);
}
.treatment-card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    color: var(--c-white);
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    padding-bottom: 4px;
    transition: gap var(--t);
}
.treatment-card:hover .treatment-card-link { gap: var(--sp-3); }

/* ----------------------------------------------------------------------------
   14. Focus Invisalign + FAQ
   ---------------------------------------------------------------------------- */

.section-invisalign-focus { background: var(--c-bg-soft); }

.invisalign-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-7);
}
@media (min-width: 900px) {
    .invisalign-grid {
        grid-template-columns: 1.3fr 1fr;
        gap: var(--sp-8);
    }
}

.invisalign-faq {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}

.faq-item {
    background: var(--c-white);
    border-radius: var(--radius);
    border: 1px solid var(--c-border-soft);
    overflow: hidden;
    transition: border-color var(--t);
}
.faq-item:hover { border-color: var(--c-lavande); }

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-3);
    width: 100%;
    padding: var(--sp-4) var(--sp-5);
    background: transparent;
    border: 0;
    text-align: left;
    color: var(--c-marine);
    font-weight: 600;
    font-size: 1rem;
    font-family: inherit;
}
.faq-icon { transition: transform var(--t); color: var(--c-bleu); flex-shrink: 0; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }

.faq-answer {
    padding: 0 var(--sp-5) var(--sp-5);
    color: var(--c-text-soft);
    font-size: 0.95rem;
    line-height: 1.65;
}
.faq-answer p { margin: 0; }

/* Info block droite */
.invisalign-info {
    background: var(--c-white);
    padding: var(--sp-6) var(--sp-5);
    border-radius: var(--radius-lg);
    border: 1px solid var(--c-border-soft);
}
.info-title {
    font-size: 1.05rem;
    color: var(--c-violet);
    margin-bottom: var(--sp-3);
}
.info-title:not(:first-child) { margin-top: var(--sp-5); }
.info-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-3);
    margin-top: var(--sp-5);
}

/* ----------------------------------------------------------------------------
   15. Section blog "Espace lecture"
   ---------------------------------------------------------------------------- */

.section-blog { background: var(--c-bg); }

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-7);
}
@media (min-width: 900px) {
    .blog-grid {
        grid-template-columns: 1fr 1.2fr 1fr;
        gap: var(--sp-6);
    }
}

.blog-posts-list,
.blog-fiches-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-post-item {
    padding: var(--sp-4) 0;
    border-bottom: 1px solid var(--c-border-soft);
}
.blog-post-item:last-child { border-bottom: 0; }
.blog-post-title {
    font-size: 1.05rem;
    color: var(--c-marine);
    margin: 0 0 var(--sp-2);
    transition: color var(--t);
}
.blog-post-item a:hover .blog-post-title { color: var(--c-bleu); }
.blog-post-date {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    margin: 0;
}

.blog-center img,
.blog-hero-placeholder {
    border-radius: var(--radius-lg);
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}
.blog-hero-placeholder {
    background: linear-gradient(135deg, var(--c-lavande) 0%, var(--c-violet) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
}

.blog-sidetitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-violet);
    margin-bottom: var(--sp-4);
}
.blog-fiche-item a {
    display: flex;
    gap: var(--sp-3);
    padding: var(--sp-3) 0;
    border-bottom: 1px solid var(--c-border-soft);
}
.blog-fiche-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}
.fiche-title {
    display: block;
    color: var(--c-marine);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.35;
}
.fiche-date {
    display: block;
    font-size: 0.78rem;
    color: var(--c-text-muted);
    margin-top: var(--sp-1);
}

/* ----------------------------------------------------------------------------
   16. Page hero (pages internes)
   ---------------------------------------------------------------------------- */

.page-hero {
    position: relative;
    background:
      linear-gradient(180deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,.45) 100%),
      url("https://dr-durieux-virginie.fr/wp-content/uploads/2025/02/Capture-decran-2025-02-17-a-09.53.15-1-1.jpg");
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: var(--sp-9, 96px) 0 var(--sp-7, 48px);
    text-align: center;
}
.page-hero-small { padding: var(--sp-9, 96px) 0 var(--sp-6, 32px); }
.page-hero .breadcrumbs, .page-hero .breadcrumbs a, .page-hero .breadcrumbs span { color: rgba(255,255,255,.85); }
.page-hero .tag-pill { background: rgba(255,255,255,.16); color: #fff; }
.page-hero-title { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: var(--sp-4); }
.page-hero-excerpt {
    max-width: 640px;
    margin: 0 auto;
    color: rgba(255,255,255,.92);
    font-size: 1.05rem;
}

/* Breadcrumbs */
.breadcrumbs {
    margin-bottom: var(--sp-4);
    font-size: 0.85rem;
}
.breadcrumbs-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-2);
    padding: 0;
    margin: 0;
    list-style: none;
    justify-content: flex-start;
}
/* Le fil d'Ariane suit l'alignement du hero : centré sur les héros centrés */
.treatment-hero-city .breadcrumbs-list,
.page-hero .breadcrumbs-list,
.article-hero .breadcrumbs-list,
.contact-hero .breadcrumbs-list { justify-content: center; }
.breadcrumbs-item {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    color: var(--c-text-muted);
}
.breadcrumbs-item:not(:last-child)::after {
    content: '›';
    color: var(--c-text-muted);
}
.breadcrumbs-item a { color: var(--c-text-soft); }
.breadcrumbs-item [aria-current] { color: var(--c-marine); font-weight: 500; }

/* ----------------------------------------------------------------------------
   17. Treatment page hero
   ---------------------------------------------------------------------------- */

.treatment-hero {
    background: linear-gradient(135deg, var(--c-lavande-soft) 0%, var(--c-bg-soft) 100%);
    padding: var(--sp-8) 0;
}

.treatment-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-6);
    align-items: center;
}
@media (min-width: 900px) {
    .treatment-hero-grid { grid-template-columns: 1.2fr 1fr; gap: var(--sp-8); }
}

.treatment-hero-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: var(--sp-4);
}
.treatment-hero-excerpt {
    font-size: 1.1rem;
    color: var(--c-text-soft);
    margin-bottom: var(--sp-5);
}
.treatment-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-3);
}
.treatment-hero-visual img {
    border-radius: var(--radius-xl);
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.treatment-hero-city { text-align: center; }
.treatment-hero-city .treatment-hero-actions { justify-content: center; }

/* Reassurance */
.section-reassurance {
    background: var(--c-bg-soft);
    padding: var(--sp-7) 0;
}
.reassurance-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-5);
}
@media (min-width: 700px) {
    .reassurance-grid { grid-template-columns: repeat(3, 1fr); }
}
.reassurance-item {
    text-align: center;
    padding: var(--sp-5);
}
.reassurance-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 60px; height: 60px; margin: 0 auto var(--sp-3);
    border-radius: 50%; color: var(--c-bleu, #6571BF);
    background: var(--c-lavande-soft, #F4ECFA);
}
.reassurance-title {
    font-weight: 600;
    color: var(--c-marine);
    margin-bottom: var(--sp-2);
}
.reassurance-item p { margin: 0; color: var(--c-text-soft); font-size: 0.95rem; }
.reassurance-item p.reassurance-title { color: var(--c-marine); font-size: 1rem; }

/* Public treatments cross-sell */
.section-public-treatments { background: var(--c-bg); }
.public-treatments-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-5);
    margin-top: var(--sp-6);
}
@media (min-width: 700px) {
    .public-treatments-grid { grid-template-columns: repeat(3, 1fr); }
}
.public-treatment-card {
    display: block;
    padding: var(--sp-6);
    background: var(--c-white);
    border: 1px solid var(--c-border-soft);
    border-radius: var(--radius-lg);
    transition: all var(--t);
    color: var(--c-text);
}
.public-treatment-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--c-lavande);
}
.public-treatment-card h3 { margin-bottom: var(--sp-2); color: var(--c-marine); }
.public-treatment-card p { color: var(--c-text-soft); margin-bottom: var(--sp-3); }
.card-link {
    font-weight: 600;
    color: var(--c-bleu);
    font-size: 0.92rem;
}

/* ----------------------------------------------------------------------------
   18. Map section
   ---------------------------------------------------------------------------- */

.section-map { background: var(--c-bg-soft); }
.map-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-6);
    align-items: center;
}
@media (min-width: 900px) {
    .map-grid { grid-template-columns: 1fr 1.2fr; gap: var(--sp-7); }
}
.map-info-list {
    list-style: none;
    padding: 0;
    margin: var(--sp-5) 0;
}
.map-info-list li { padding: var(--sp-3) 0; border-bottom: 1px solid var(--c-border-soft); }
.map-info-list strong { display: block; color: var(--c-marine); margin-bottom: var(--sp-1); }

.map-embed,
.map-embed-large {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* ----------------------------------------------------------------------------
   19. Contact form
   ---------------------------------------------------------------------------- */

.section-contact {
    background: var(--c-bg);
}
.contact-hero {
    background: linear-gradient(135deg, var(--c-lavande-soft) 0%, var(--c-bg-soft) 100%);
    padding: var(--sp-8) 0 var(--sp-7);
    text-align: center;
}
.contact-hero-lead {
    max-width: 640px;
    margin: 0 auto;
    color: var(--c-text-soft);
    font-size: 1.05rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-7);
}
@media (min-width: 900px) {
    .contact-grid { grid-template-columns: 1.4fr 1fr; gap: var(--sp-7); }
}

.contact-block-title {
    font-size: 1.4rem;
    margin-bottom: var(--sp-5);
}

.seesmile-form {
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
}

.seesmile-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.form-row { display: block; }
.form-row-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-4);
}
@media (min-width: 640px) {
    .form-row-grid { grid-template-columns: 1fr 1fr; }
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
}
.form-field label {
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--c-marine);
}
.form-field .required { color: var(--c-bleu); }

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-sm);
    background: var(--c-white);
    color: var(--c-text);
    transition: border-color var(--t), box-shadow var(--t);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: 0;
    border-color: var(--c-bleu);
    box-shadow: 0 0 0 3px rgba(101, 113, 191, 0.15);
}

.form-rgpd .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
    font-size: 0.92rem;
    color: var(--c-text-soft);
    line-height: 1.5;
}
.form-rgpd input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    flex-shrink: 0;
}
.form-rgpd a {
    color: var(--c-bleu);
    text-decoration: underline;
}

.form-submit { margin-top: var(--sp-3); }
.form-note { font-size: 0.85rem; color: var(--c-text-muted); margin-top: var(--sp-2); }

.form-error {
    padding: var(--sp-3) var(--sp-4);
    background: #FEE;
    border-left: 3px solid #C9685B;
    border-radius: var(--radius-sm);
    color: #863;
    margin-bottom: var(--sp-5);
}

/* Contact info card */
.contact-card {
    background: var(--c-lavande-soft);
    padding: var(--sp-6) var(--sp-5);
    border-radius: var(--radius-lg);
}
.contact-card-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--c-marine);
    margin: 0 0 var(--sp-1);
}
.contact-card-subtitle {
    font-family: var(--ff-accent);
    font-style: italic;
    color: var(--c-violet);
    margin-bottom: var(--sp-5);
}
.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.contact-info-list li {
    padding: var(--sp-3) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.contact-info-list li:last-child { border-bottom: 0; }
.contact-info-list strong {
    display: block;
    font-size: 0.82rem;
    color: var(--c-marine);
    margin-bottom: 4px;
    font-weight: 600;
}
.contact-card-disclaimer {
    margin-top: var(--sp-5);
    padding-top: var(--sp-4);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--c-text-muted);
    font-size: 0.78rem;
    line-height: 1.5;
}

/* ----------------------------------------------------------------------------
   20. Article page (single.php)
   ---------------------------------------------------------------------------- */

.article-hero {
    position: relative;
    background:
      linear-gradient(180deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.48) 100%),
      url("https://dr-durieux-virginie.fr/wp-content/uploads/2025/02/Capture-decran-2025-02-17-a-09.53.15-1-1.jpg");
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: var(--sp-9, 96px) 0 var(--sp-7, 48px);
    text-align: center;
}
.article-hero .breadcrumbs, .article-hero .breadcrumbs a, .article-hero .breadcrumbs span { color: rgba(255,255,255,.85); }
.article-hero .tag-pill { background: rgba(255,255,255,.16); color: #fff; }
.article-hero .article-title { color: #fff; }
.article-hero .article-meta { color: rgba(255,255,255,.85); }
.article-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin: var(--sp-3) auto var(--sp-4);
    max-width: 780px;
}
.article-meta {
    color: var(--c-text-muted);
    font-size: 0.92rem;
    margin-bottom: var(--sp-6);
}
.article-cover {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 900px;
    margin-inline: auto;
}
.article-cover img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.section-article-body { padding-top: var(--sp-7); padding-bottom: var(--sp-7); }

.article-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-4);
    margin-top: var(--sp-7);
    padding-top: var(--sp-5);
    border-top: 1px solid var(--c-border-soft);
}
.article-tags { display: flex; gap: var(--sp-2); flex-wrap: wrap; }
.article-tags .tag {
    background: var(--c-lavande-soft);
    color: var(--c-marine);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    text-transform: none;
    letter-spacing: 0;
    margin: 0;
}
.article-share {
    display: flex;
    gap: var(--sp-3);
    font-size: 0.92rem;
}
.article-share span { color: var(--c-text-muted); }

/* Related */
.section-related { background: var(--c-bg-soft); }
.related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-5);
    margin-top: var(--sp-6);
}
@media (min-width: 700px) {
    .related-grid { grid-template-columns: repeat(3, 1fr); }
}
.related-card {
    display: block;
    background: var(--c-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--t);
    color: var(--c-text);
}
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.related-card-thumb img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.related-card-body { padding: var(--sp-4); }
.related-card-title { font-size: 1rem; margin-bottom: var(--sp-2); color: var(--c-marine); }
.related-card-date { font-size: 0.85rem; color: var(--c-text-muted); margin: 0; }

/* ----------------------------------------------------------------------------
   21. Archive / category
   ---------------------------------------------------------------------------- */

.section-archive { background: var(--c-bg); }
.archive-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-5);
}
@media (min-width: 640px) {
    .archive-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .archive-grid { grid-template-columns: repeat(3, 1fr); }
}
.archive-card {
    background: var(--c-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--c-border-soft);
    overflow: hidden;
    transition: all var(--t);
}
.archive-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--c-lavande); }
.archive-card-link { display: block; color: var(--c-text); }
.archive-card-thumb img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.archive-card-body { padding: var(--sp-5); }
.archive-card-title { font-size: 1.2rem; margin: var(--sp-2) 0 var(--sp-3); color: var(--c-marine); }
.archive-card-excerpt { color: var(--c-text-soft); font-size: 0.92rem; margin-bottom: var(--sp-3); }
.archive-card-date {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--c-text-muted);
    margin: 0;
}
.archive-card-arrow {
    font-size: 1.2rem;
    color: var(--c-bleu);
    transition: transform var(--t);
}
.archive-card:hover .archive-card-arrow { transform: translateX(4px); }

.archive-pagination {
    margin-top: var(--sp-7);
    text-align: center;
}
.archive-pagination .nav-links { display: inline-flex; gap: var(--sp-2); }
.archive-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 var(--sp-3);
    border-radius: var(--radius-sm);
    background: var(--c-white);
    border: 1px solid var(--c-border);
    color: var(--c-marine);
    font-weight: 500;
}
.archive-pagination .page-numbers.current {
    background: var(--c-bleu);
    color: var(--c-white);
    border-color: var(--c-bleu);
}
.archive-pagination .page-numbers:hover {
    background: var(--c-lavande-soft);
    border-color: var(--c-lavande);
}

/* ----------------------------------------------------------------------------
   22. Search
   ---------------------------------------------------------------------------- */

.search-form {
    display: flex;
    gap: var(--sp-2);
    max-width: 540px;
    margin: var(--sp-5) auto 0;
}
.search-form input[type="search"] {
    flex: 1;
    padding: 12px 14px;
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-sm);
}
.search-empty {
    text-align: center;
    padding: var(--sp-7) 0;
    color: var(--c-text-soft);
}

/* ----------------------------------------------------------------------------
   23. 404
   ---------------------------------------------------------------------------- */

.section-404 { padding: var(--sp-8) 0; }
.error-404 { text-align: center; }
.error-code {
    display: block;
    font-family: var(--ff-accent);
    font-style: italic;
    font-size: clamp(5rem, 15vw, 9rem);
    color: var(--c-lavande);
    line-height: 1;
    margin-bottom: var(--sp-4);
}
.error-title { font-size: clamp(1.6rem, 3.5vw, 2.5rem); margin-bottom: var(--sp-4); }
.error-text {
    max-width: 540px;
    margin: 0 auto var(--sp-6);
    color: var(--c-text-soft);
}
.error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-3);
    justify-content: center;
    margin-bottom: var(--sp-7);
}
.error-links {
    background: var(--c-bg-soft);
    padding: var(--sp-6);
    border-radius: var(--radius-lg);
    text-align: left;
    max-width: 480px;
    margin: 0 auto var(--sp-5);
}
.error-links-title {
    font-size: 1.05rem;
    margin-bottom: var(--sp-3);
    text-align: center;
}
.error-links ul {
    columns: 2;
    list-style: none;
    padding: 0;
    margin: 0;
    column-gap: var(--sp-5);
}
.error-links li { margin-bottom: var(--sp-2); }
.error-search { margin: var(--sp-4) auto 0; }

/* ----------------------------------------------------------------------------
   24. Content prose (WYSIWYG body)
   ---------------------------------------------------------------------------- */

.content-prose {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--c-text);
}
.content-prose > * + * { margin-top: var(--sp-4); }
.content-prose h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-top: var(--sp-7);
    margin-bottom: var(--sp-4);
}
.content-prose h3 {
    font-size: clamp(1.2rem, 1.8vw, 1.4rem);
    margin-top: var(--sp-6);
    margin-bottom: var(--sp-3);
    color: var(--c-violet);
}
.content-prose h4 {
    font-size: 1.1rem;
    margin-top: var(--sp-5);
    margin-bottom: var(--sp-2);
}
.content-prose ul,
.content-prose ol {
    margin: var(--sp-4) 0;
    padding-left: var(--sp-5);
}
.content-prose li { margin-bottom: var(--sp-2); }
.content-prose blockquote {
    margin: var(--sp-6) 0;
    padding: var(--sp-5) var(--sp-5);
    background: var(--c-lavande-soft);
    border-left: 4px solid var(--c-violet);
    border-radius: var(--radius-sm);
    font-family: var(--ff-accent);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--c-marine);
}
.content-prose blockquote p { margin: 0; }
.content-prose img {
    border-radius: var(--radius);
    margin: var(--sp-5) 0;
}
.content-prose a {
    color: var(--c-bleu);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}
.content-prose a:hover {
    color: var(--c-marine);
    text-decoration-thickness: 2px;
}
.content-prose strong { color: var(--c-marine); font-weight: 600; }

/* ----------------------------------------------------------------------------
   25. Footer
   ---------------------------------------------------------------------------- */

.site-footer { background: var(--c-marine); color: rgba(255, 255, 255, 0.85); }

.footer-cta {
    background: linear-gradient(135deg, var(--c-marine) 0%, var(--c-violet) 100%);
    padding: var(--sp-8) 0;
    color: var(--c-white);
    text-align: center;
}
.footer-cta-inner { max-width: 720px; margin: 0 auto; }
.footer-cta-title {
    color: var(--c-white);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin: var(--sp-4) 0;
}
.footer-cta-title .accent { color: var(--c-lavande); }
.footer-cta-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--sp-5);
    font-size: 1.05rem;
}
.footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-3);
    justify-content: center;
}
.footer-cta .btn-ghost { color: var(--c-white) !important; border-color: rgba(255,255,255,0.4); }
.footer-cta .btn-ghost:hover { background: var(--c-white); color: var(--c-marine) !important; border-color: var(--c-white); }

.footer-main { padding: var(--sp-8) 0; }

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-7);
}
@media (min-width: 768px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; }
}

.footer-title {
    font-family: var(--ff-base);
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-white);
    margin-bottom: var(--sp-4);
}
.footer-tagline {
    font-family: var(--ff-accent);
    font-style: italic;
    color: var(--c-lavande);
    font-size: 1.05rem;
    margin: 0 0 var(--sp-3);
}
.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: var(--sp-4);
}
.footer-desc strong { color: var(--c-white); }

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col li {
    margin-bottom: var(--sp-2);
}
.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    transition: color var(--t);
}
.footer-col a:hover { color: var(--c-white); }

.footer-line {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    margin-bottom: var(--sp-3);
}
.footer-line strong { color: var(--c-white); }
.footer-line a { color: var(--c-lavande); }
.footer-line a:hover { color: var(--c-white); }

.footer-itineraire {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    padding: var(--sp-2) var(--sp-3);
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    transition: background var(--t);
}
.footer-itineraire:hover { background: rgba(255, 255, 255, 0.15); }

.footer-social { display: flex; gap: var(--sp-3); margin-top: var(--sp-4); }
.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-white);
    transition: all var(--t);
}
.footer-social a:hover {
    background: var(--c-lavande);
    color: var(--c-marine);
    transform: translateY(-2px);
}

.footer-disclaimer {
    padding: var(--sp-5) 0;
    background: rgba(0, 0, 0, 0.15);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
    line-height: 1.6;
}

.footer-bottom {
    padding: var(--sp-4) 0;
    background: rgba(0, 0, 0, 0.25);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}
.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    align-items: center;
    text-align: center;
}
@media (min-width: 768px) {
    .footer-bottom-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}
.footer-copy { margin: 0; }
.footer-credit { margin: 0; }
.footer-credit a { color: var(--c-lavande); }

.footer-legal-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: var(--sp-4);
    flex-wrap: wrap;
    justify-content: center;
}
.footer-legal-menu a { color: rgba(255, 255, 255, 0.6); font-size: 0.85rem; }
.footer-legal-menu a:hover { color: var(--c-white); }

/* ----------------------------------------------------------------------------
   26. Scroll progress bar + reveal animations
   ---------------------------------------------------------------------------- */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--c-bleu) 0%, var(--c-violet) 100%);
    z-index: 999;
    transition: width 100ms linear;
    pointer-events: none;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-right {
    transform: translateX(24px);
}
.reveal-right.is-visible {
    transform: translateX(0);
}

/* ----------------------------------------------------------------------------
   27. Accessibility & motion preferences
   ---------------------------------------------------------------------------- */

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

/* Focus visible accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--c-bleu);
    outline-offset: 2px;
}

/* ----------------------------------------------------------------------------
   28. Content protection (when SEESMILE_PROTECT flag is set)
   ---------------------------------------------------------------------------- */

body.is-protected {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
body.is-protected input,
body.is-protected textarea {
    -webkit-user-select: text;
    user-select: text;
}
body.is-protected img { pointer-events: none; }

/* ----------------------------------------------------------------------------
   30. Hero video — iframe YouTube en background
   ---------------------------------------------------------------------------- */

.hero-video {
    background: var(--c-marine);
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.hero-video-wrap iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 177.78vh;       /* 16/9 ratio basé sur la hauteur viewport */
    min-width: 100vw;
    height: 56.25vw;       /* 9/16 ratio basé sur la largeur viewport */
    min-height: 100vh;
    pointer-events: none;
    border: 0;
}

.hero-video .hero-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.hero-video .hero-content {
    z-index: 3;
}

/* ----------------------------------------------------------------------------
   31. Pillar icons — version image
   ---------------------------------------------------------------------------- */

.pillar-icon-img {
    background: transparent;
    padding: 0;
}
.pillar-icon-img img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

/* ----------------------------------------------------------------------------
   32. Treatment cards — variante avec image de fond
   ---------------------------------------------------------------------------- */

.treatment-card.has-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.treatment-card.has-image::before {
    /* On garde le dégradé coloré mais en mode overlay translucide */
    opacity: 0.78;
    transition: opacity var(--t);
}
.treatment-card.has-image:hover::before {
    opacity: 0.88;
}

.treatment-card.is-placeholder {
    /* Sans image — le ::before reste plein écran (déjà géré par les classes -red, etc.) */
}

/* ----------------------------------------------------------------------------
   33. Section "Pour qui ?" mini
   ---------------------------------------------------------------------------- */

.section-public-mini {
    background: var(--c-bg);
}

.public-mini-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-4);
    margin-top: var(--sp-6);
}
@media (min-width: 700px) {
    .public-mini-grid { grid-template-columns: repeat(3, 1fr); }
}

.public-mini-card {
    position: relative;
    display: block;
    min-height: 340px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    color: var(--c-white) !important;
    background-color: var(--c-marine);
    background-size: cover;
    background-position: center;
    transition: transform var(--t);
}
.public-mini-card:hover {
    transform: translateY(-4px);
}

.public-mini-card.placeholder-violet {
    background: linear-gradient(165deg, var(--c-lavande) 0%, var(--c-violet) 60%, var(--c-marine) 100%);
}
.public-mini-card.placeholder-blue {
    background: linear-gradient(165deg, var(--c-bleu-clair) 0%, var(--c-bleu) 60%, var(--c-marine) 100%);
}

.public-mini-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 20%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
}

.public-mini-content {
    position: relative;
    z-index: 2;
    padding: var(--sp-7) var(--sp-5) var(--sp-5);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    min-height: 340px;
}

.public-mini-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    color: var(--c-white);
    font-size: 0.78rem;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: var(--sp-3);
    align-self: flex-start;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.public-mini-title {
    color: var(--c-white);
    font-size: 1.6rem;
    margin-bottom: var(--sp-2);
}

.public-mini-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
    line-height: 1.5;
    margin-bottom: var(--sp-3);
}

.public-mini-link {
    font-weight: 600;
    font-size: 0.92rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    padding-bottom: 2px;
    align-self: flex-start;
    transition: gap var(--t);
}

.placeholder-badge {
    position: absolute;
    top: var(--sp-3);
    right: var(--sp-3);
    background: rgba(0, 0, 0, 0.35);
    color: var(--c-white);
    font-size: 0.72rem;
    padding: 4px 10px;
    border-radius: 100px;
    z-index: 3;
    backdrop-filter: blur(8px);
}

/* ----------------------------------------------------------------------------
   34. Section Avant / Après
   ---------------------------------------------------------------------------- */

.section-before-after { background: var(--c-bg-soft); }

.ba-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-6);
}
@media (min-width: 700px) {
    .ba-grid { grid-template-columns: repeat(3, 1fr); }
}

.ba-card {
    background: var(--c-white);
    padding: var(--sp-5);
    border-radius: var(--radius-lg);
    border: 1px solid var(--c-border-soft);
    transition: all var(--t);
}
.ba-card:hover {
    border-color: var(--c-lavande);
    box-shadow: var(--shadow);
}

.ba-pair {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--sp-2);
    align-items: center;
    margin-bottom: var(--sp-4);
}

.ba-figure {
    margin: 0;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1/1;
}
.ba-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-label {
    position: absolute;
    top: var(--sp-2);
    left: var(--sp-2);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    color: var(--c-marine);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 100px;
}
.ba-label-after {
    background: var(--c-bleu);
    color: var(--c-white);
}

.ba-arrow {
    font-size: 1.4rem;
    color: var(--c-violet);
    font-weight: 700;
}

.ba-caption {
    text-align: center;
    color: var(--c-marine);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

.ba-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: var(--sp-7);
}
/* Boutons empilés sur mobile : pleine largeur + espacés (jamais collés) */
@media (max-width: 560px) {
    .ba-cta,
    .final-cta-actions,
    .hero-actions,
    .treatment-hero-actions,
    .videos-cta-actions,
    .cas-reviews-actions,
    .contention-actions,
    .cabinet-modern-actions { display: flex; flex-direction: column; align-items: stretch; gap: 12px; }
    .ba-cta .btn,
    .final-cta-actions .btn,
    .hero-actions .btn,
    .treatment-hero-actions .btn,
    .videos-cta-actions .btn,
    .cas-reviews-actions .btn,
    .contention-actions .btn { width: 100%; }
    .contention-actions { display: flex; }
}

/* ----------------------------------------------------------------------------
   35. Video embed (section Invisalign)
   ---------------------------------------------------------------------------- */

.invisalign-video {
    width: 100%;
    margin: 0 auto var(--sp-7);
}
/* Vidéo verrouillée : aucune interaction possible */
.video-embed-locked .video-lock {
    position: absolute; inset: 0; z-index: 2; cursor: default;
}
.video-embed-locked iframe { pointer-events: none; }

.video-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--c-marine);
}
.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ----------------------------------------------------------------------------
   36. Galerie cabinet
   ---------------------------------------------------------------------------- */

.section-gallery { background: var(--c-bg); }

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-3);
    margin-top: var(--sp-6);
}
@media (min-width: 640px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 220px;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--c-bg-grey);
    aspect-ratio: 4/3;
}
@media (min-width: 900px) {
    .gallery-item { aspect-ratio: auto; }
    /* Variations de tailles pour effet mosaïque */
    .gallery-item-0 { grid-row: span 2; }
    .gallery-item-3 { grid-row: span 2; }
    .gallery-item-5 { grid-column: span 2; }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}
.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(66, 77, 149, 0.3) 100%);
    opacity: 0;
    transition: opacity var(--t);
}
.gallery-item:hover::after { opacity: 1; }

/* ----------------------------------------------------------------------------
   37. Blog espace lecture — ajustements
   ---------------------------------------------------------------------------- */

.blog-left .btn { margin-top: var(--sp-4); }

.fiche-thumb-placeholder {
    width: 80px;
    height: 80px;
    background: var(--c-lavande-soft);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

/* ----------------------------------------------------------------------------
   38. CTA final avec photo
   ---------------------------------------------------------------------------- */

.section-final-cta {
    position: relative;
    overflow: hidden;
    padding: var(--sp-9) 0;
    color: var(--c-white);
    text-align: center;
    background: var(--c-marine); /* fallback si l'image ne charge pas */
}

.final-cta-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}
/* position:absolute sur l'img → couvre TOUTE la section, immunisé
   contre le height:auto global (sinon bande de fond visible sur mobile) */
.final-cta-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.final-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
}

.final-cta-title {
    color: var(--c-white);
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin: var(--sp-4) 0;
}
.final-cta-title .accent {
    color: var(--c-lavande);
}

.final-cta-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    margin-bottom: var(--sp-5);
}

.final-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-3);
    justify-content: center;
}
.section-final-cta .btn-ghost {
    color: var(--c-white) !important;
    border-color: rgba(255, 255, 255, 0.5);
}
.section-final-cta .btn-ghost:hover {
    background: var(--c-white);
    color: var(--c-marine) !important;
    border-color: var(--c-white);
}

/* ----------------------------------------------------------------------------
   29. Print styles
   ---------------------------------------------------------------------------- */

@media print {
    .site-header,
    .site-footer,
    .footer-cta,
    .mobile-nav,
    .burger,
    .scroll-progress,
    .header-actions,
    .article-share,
    .related-grid {
        display: none !important;
    }
    body { color: #000; background: #fff; font-size: 12pt; }
    a { color: #000; text-decoration: underline; }
}

/* ============================================================================
   Refonte 2026 — Consentement RGPD, galerie cas cliniques, vidéos, plan du site
   ============================================================================ */

/* --- Bandeau de consentement cookies --- */
.seesmile-consent {
    position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 9000;
    background: var(--c-marine, #424D95); color: #fff;
    border-radius: var(--radius, 12px); box-shadow: var(--shadow-lg, 0 12px 36px rgba(0,0,0,.2));
    padding: 18px 20px;
}
.seesmile-consent[hidden] { display: none; }
.seesmile-consent-inner {
    display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
    max-width: var(--container, 1280px); margin: 0 auto;
}
.seesmile-consent-text { margin: 0; flex: 1 1 320px; font-size: .95rem; line-height: 1.55; }
.seesmile-consent-text a { color: #fff; text-decoration: underline; }
.seesmile-consent-actions { display: flex; gap: 10px; flex-shrink: 0; }
@media (max-width: 600px) {
    .seesmile-consent-actions { width: 100%; }
    .seesmile-consent-actions .btn { flex: 1; }
}
/* Boutons du bandeau : fort contraste sur le fond marine
   (sinon Refuser = marine sur marine = invisible, Accepter se fond au survol) */
.seesmile-consent .btn-ghost {
    background: transparent;
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, .65);
}
.seesmile-consent .btn-ghost:hover,
.seesmile-consent .btn-ghost:focus-visible {
    background: rgba(255, 255, 255, .16);
    color: #fff !important;
    border-color: #fff;
}
.seesmile-consent .btn-primary {
    background: #fff !important;
    color: var(--c-marine, #424D95) !important;
    border: 2px solid #fff !important;
}
.seesmile-consent .btn-primary:hover,
.seesmile-consent .btn-primary:focus-visible {
    background: var(--c-lavande, #D3BBE2) !important;
    color: var(--c-marine, #424D95) !important;
    border-color: var(--c-lavande, #D3BBE2) !important;
}

/* --- Iframe sous consentement (carte Maps) --- */
.consent-embed { position: relative; border-radius: var(--radius, 12px); overflow: hidden; min-height: 380px; background: var(--c-bg-grey, #F4F5F9); }
.consent-embed iframe { display: block; width: 100%; border: 0; }
.consent-embed .consent-placeholder {
    position: absolute; inset: 0; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 12px; text-align: center;
    padding: 24px; background: var(--c-bg-grey, #F4F5F9); color: var(--c-text, #1F2447);
}
.consent-embed.is-loaded .consent-placeholder { display: none; }
.consent-placeholder .consent-alt a { color: var(--c-bleu, #6571BF); text-decoration: underline; font-size: .9rem; }

/* --- Galerie cas cliniques (avant / après) --- */
.cas-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; margin: 24px 0; }
.cas-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 0; background: var(--c-bg-soft, #FAF8FD); padding: 8px; border-radius: var(--radius, 12px); }
.cas-pair .cas-img { position: relative; display: block; }
.cas-pair .cas-img img { width: 100%; height: auto; border-radius: var(--radius-sm, 6px); display: block; }
.cas-pair .cas-img em {
    position: absolute; left: 8px; top: 8px; font-style: normal; font-size: .72rem;
    background: rgba(66,77,149,.9); color: #fff; padding: 2px 8px; border-radius: 20px;
}

/* --- Grille vidéos explicatives --- */
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; margin: 24px 0; }
.video-embed { position: relative; padding-top: 56.25%; border-radius: var(--radius, 12px); overflow: hidden; background: #000; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Page vidéos : cartes avec titre */
.video-card { background: var(--c-white); border: 1px solid var(--c-border-soft); border-radius: var(--radius-lg, 20px); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform var(--t), box-shadow var(--t); }
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.video-card .video-embed { border-radius: 0; }
.video-card-title { font-family: var(--ff-accent); font-size: 1.15rem; color: var(--c-marine); margin: 0; padding: 16px 20px 20px; line-height: 1.25; }
.videos-cta { text-align: center; margin-top: var(--sp-7, 48px); }
.videos-cta p { font-family: var(--ff-accent); font-size: 1.4rem; color: var(--c-marine); margin-bottom: 18px; }
.videos-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Page cas cliniques */
.cas-intro { text-align: center; color: var(--c-text-soft); font-size: 1.08rem; }
.section-cas-gallery { padding-top: var(--sp-5, 24px); }
.cas-reviews-card { text-align: center; max-width: 720px; margin: 0 auto; background: linear-gradient(180deg, var(--c-lavande-soft, #F4ECFA), var(--c-bg-soft, #FAF8FD)); border: 1px solid var(--c-border-soft); border-radius: var(--radius-xl, 32px); padding: 48px 36px; box-shadow: var(--shadow-sm); }
.cas-stars { display: block; color: #F5A623; font-size: 1.5rem; letter-spacing: 2px; margin-bottom: 12px; }
.cas-reviews-card .section-title { margin: 0 0 12px; }
.cas-reviews-card p { color: var(--c-text-soft); max-width: 540px; margin: 0 auto 24px; }
.cas-reviews-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* --- Plan du site --- */
.sitemap-html ul { columns: 2; column-gap: 40px; margin: 0 0 24px; padding-left: 18px; }
@media (max-width: 600px) { .sitemap-html ul { columns: 1; } }
.sitemap-html h2 { margin-top: 28px; }

/* ============================================================================
   Rebuild riche 2026 — Slider avant/après + sections de contenu designées
   ============================================================================ */

/* --- Slider avant / après --- */
.ba-slider {
    position: relative; width: 100%; max-width: 560px; margin: 28px auto;
    aspect-ratio: 4 / 3; border-radius: var(--radius-lg, 20px); overflow: hidden;
    box-shadow: var(--shadow-lg, 0 12px 36px rgba(31,36,71,.14)); background: var(--c-bg-grey,#F4F5F9);
    cursor: ew-resize; user-select: none; touch-action: pan-y;
}
.ba-slider:not(.is-ready) { display: none; }         /* évite le flash avant JS */
.ba-layer { position: absolute; inset: 0; }
.ba-layer img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.ba-before { will-change: clip-path; }
.ba-tag {
    position: absolute; top: 12px; z-index: 3; font-size: .72rem; font-weight: 700;
    letter-spacing: .04em; text-transform: uppercase; color: #fff; padding: 4px 12px;
    border-radius: 20px; backdrop-filter: blur(4px);
}
.ba-tag-before { left: 12px;  background: rgba(31,36,71,.72); }
.ba-tag-after  { right: 12px; background: rgba(101,113,191,.85); }
.ba-handle {
    position: absolute; top: 0; left: 50%; height: 100%; width: 44px; transform: translateX(-50%);
    z-index: 4; background: none; border: 0; padding: 0; cursor: ew-resize;
    display: flex; align-items: center; justify-content: center;
}
.ba-handle-line { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; transform: translateX(-50%); background: #fff; box-shadow: 0 0 8px rgba(31,36,71,.35); }
.ba-handle-grip {
    position: relative; width: 44px; height: 44px; border-radius: 50%; background: #fff;
    box-shadow: 0 4px 14px rgba(31,36,71,.3); display: block;
}
.ba-handle-grip::before, .ba-handle-grip::after {
    content: ""; position: absolute; top: 50%; width: 0; height: 0; border: 6px solid transparent;
}
.ba-handle-grip::before { left: 8px;  transform: translateY(-50%); border-right-color: var(--c-bleu,#6571BF); }
.ba-handle-grip::after  { right: 8px; transform: translateY(-50%); border-left-color: var(--c-bleu,#6571BF); }
.ba-slider:focus-within .ba-handle-grip { outline: 3px solid var(--c-bleu,#6571BF); outline-offset: 2px; }
.ba-slider.is-dragging { cursor: ew-resize; }

/* --- Contenu prose enrichi (pages traitements / cabinet / villes) --- */
.content-prose { font-size: 1.05rem; line-height: 1.75; color: var(--c-text-soft,#4A5074); }
.content-prose > h2 {
    font-family: var(--ff-accent,"Cormorant Garamond",serif); font-style: italic;
    font-size: clamp(1.7rem, 3.4vw, 2.4rem); line-height: 1.15; color: var(--c-marine,#424D95);
    margin: 2.4em 0 .6em; position: relative; padding-top: .5em;
}
.content-prose > h2::before {
    content: ""; position: absolute; top: 0; left: 0; width: 56px; height: 4px; border-radius: 4px;
    background: linear-gradient(90deg, var(--c-bleu,#6571BF), var(--c-lavande,#D3BBE2));
}
.content-prose h3 {
    font-size: 1.25rem; font-weight: 700; color: var(--c-marine,#424D95); margin: 1.8em 0 .5em;
}
.content-prose p { margin: 0 0 1.15em; }
.content-prose a { color: var(--c-bleu,#6571BF); text-decoration: underline; text-underline-offset: 3px; }
.content-prose a:hover { color: var(--c-marine,#424D95); }
.content-prose strong { color: var(--c-text,#1F2447); font-weight: 700; }

/* Images de contenu : relief + arrondi */
.content-prose img {
    max-width: 100%; height: auto; border-radius: var(--radius,12px);
    box-shadow: var(--shadow,0 4px 16px rgba(31,36,71,.08)); margin: 12px 0;
}

/* Listes → puces "check" élégantes */
.content-prose ul { list-style: none; padding: 0; margin: 1.2em 0; display: grid; gap: 12px; }
.content-prose ul li {
    position: relative; padding: 14px 16px 14px 46px; background: var(--c-bg-soft,#FAF8FD);
    border: 1px solid var(--c-border-soft,#EFF0F6); border-radius: var(--radius,12px);
}
.content-prose ul li::before {
    content: ""; position: absolute; left: 16px; top: 50%; width: 18px; height: 18px;
    transform: translateY(-50%); border-radius: 50%;
    background: var(--c-bleu,#6571BF) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 8l3 3 5-6' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/12px no-repeat;
}
.content-prose ol { padding-left: 1.2em; margin: 1.2em 0; }
.content-prose ol li { margin: 0 0 .6em; }

/* Listes imbriquées : le <li> parent (qui contient une sous-liste) n'est
   PAS une carte à puce — sinon une puce parasite flotte au centre. */
.content-prose ul li:has(> ul),
.content-prose ul li:has(> ol) {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}
.content-prose ul li:has(> ul)::before,
.content-prose ul li:has(> ol)::before { content: none; }
.content-prose ul li:has(> ul) > strong:first-child,
.content-prose ul li:has(> ol) > strong:first-child {
    display: block;
    margin-bottom: 12px;
    font-family: var(--ff-accent);
    font-size: 1.2rem;
    color: var(--c-marine);
}
.content-prose ul ul,
.content-prose ul ol { margin: 12px 0 0; }

/* Galerie d'images de contenu */
.content-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: 12px; margin: 20px 0; }
.content-gallery img { margin: 0; width: 100%; aspect-ratio: 1/1; object-fit: cover; }

/* Blockquote / mise en avant */
.content-prose blockquote {
    margin: 1.6em 0; padding: 18px 24px; border-left: 4px solid var(--c-bleu,#6571BF);
    background: var(--c-lavande-soft,#F4ECFA); border-radius: 0 var(--radius,12px) var(--radius,12px) 0;
    font-style: italic; color: var(--c-marine,#424D95);
}

/* Bouton tel/rdv inline dans le contenu */
.content-prose a[href^="tel:"] {
    display: inline-block; margin-top: 6px; padding: 10px 20px; background: var(--c-bleu,#6571BF);
    color: #fff; text-decoration: none; border-radius: var(--btn-radius,8px); font-weight: 600;
    transition: background var(--t,.25s);
}
.content-prose a[href^="tel:"]:hover { background: var(--c-marine,#424D95); }

/* Grille de sliders avant/après (page cas cliniques) */
.ba-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 24px; margin: 28px 0; }
.ba-grid .ba-slider { max-width: none; margin: 0; }

/* ============================================================================
   Accueil v1.4 — hero image, logos partenaires réels, section avis Google
   ============================================================================ */
.hero-home.hero-image { position: relative; background-size: cover; background-position: center; background-repeat: no-repeat; }
.hero-home { min-height: 100vh; min-height: 100dvh; }

.partner-logo img { max-height: 46px; width: auto; object-fit: contain; filter: grayscale(100%); opacity: .7; transition: opacity var(--t), filter var(--t); }
.partner-logo:hover img { filter: none; opacity: 1; }

/* Section avis Google */
.section-reviews { background: var(--c-bg-soft, #FAF8FD); }
.reviews-score { display: inline-flex; align-items: center; gap: 12px; margin: 14px 0 8px; }
.reviews-note { font-family: var(--ff-accent); font-size: 2.6rem; font-weight: 700; color: var(--c-marine); line-height: 1; }
.reviews-stars { color: #F5A623; font-size: 1.4rem; letter-spacing: 1px; }
.reviews-stars .star-half { background: linear-gradient(90deg, #F5A623 50%, #dcdce4 50%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.reviews-count { color: var(--c-text-soft); font-size: .95rem; }
.reviews-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 28px; }

/* Carrousel d'avis */
.reviews-carousel {
    --g-gutter: max(24px, calc((100vw - var(--container, 1280px)) / 2));
    position: relative; left: 50%; transform: translateX(-50%); width: 100vw;
    margin-top: var(--sp-6, 32px); padding-left: var(--g-gutter);
}
.reviews-track {
    display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
    scroll-behavior: smooth; padding: 6px 0 10px; scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.reviews-track::-webkit-scrollbar { display: none; }
.review-card {
    flex: 0 0 auto; width: clamp(280px, 30vw, 360px); scroll-snap-align: start;
    background: #fff; border: 1px solid var(--c-border-soft, #EFF0F6); border-radius: var(--radius-lg, 20px);
    box-shadow: var(--shadow-sm, 0 1px 2px rgba(31,36,71,.06)); padding: 24px;
}
.review-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-avatar {
    width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; display: inline-flex;
    align-items: center; justify-content: center; font-weight: 700; color: #fff;
    background: linear-gradient(135deg, var(--c-bleu, #6571BF), var(--c-violet, #8F90D1));
}
.review-name { font-weight: 700; color: var(--c-marine, #424D95); margin: 0; font-size: .98rem; }
.review-stars { color: #F5A623; font-size: .95rem; letter-spacing: 1px; }
.review-google { margin-left: auto; flex-shrink: 0; }
.review-text { color: var(--c-text-soft, #4A5074); font-size: .95rem; line-height: 1.6; margin: 0; }

/* ============================================================================
   Pages internes v1.5 — héros photo sombre, sidebar sticky, cartes latérales
   ============================================================================ */

/* Héros en bandeau photo sombre (signature de la DA) */
.treatment-hero {
    position: relative;
    background:
      linear-gradient(180deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,.45) 100%),
      url("https://dr-durieux-virginie.fr/wp-content/uploads/2025/02/Capture-decran-2025-02-17-a-09.53.15-1-1.jpg");
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: var(--sp-9, 96px) 0 var(--sp-8, 64px);
}
.treatment-hero .breadcrumbs,
.treatment-hero .breadcrumbs a,
.treatment-hero .breadcrumbs span { color: rgba(255,255,255,.85); }
.treatment-hero .tag-pill {
    background: rgba(255,255,255,.16); color: #fff; backdrop-filter: blur(4px);
}
.treatment-hero-title { color: #fff; }
.treatment-hero-title .accent { color: var(--c-lavande, #D3BBE2); }
.treatment-hero-excerpt { color: rgba(255,255,255,.92); }
.treatment-hero .btn-ghost { color: #fff !important; border-color: rgba(255,255,255,.5); }
.treatment-hero .btn-ghost:hover { background: #fff; color: var(--c-marine, #424D95) !important; border-color: #fff; }
.treatment-hero-text { max-width: 760px; }

/* Mise en page article 2 colonnes + sidebar sticky */
.article-layout { display: grid; grid-template-columns: 1fr; gap: var(--sp-7, 48px); }
@media (min-width: 1000px) { .article-layout { grid-template-columns: minmax(0,1fr) 320px; } }
.article-sidebar { display: flex; flex-direction: column; gap: 20px; }
@media (min-width: 1000px) { .article-sidebar { position: sticky; top: 100px; align-self: start; } }

.sidebar-card {
    background: #fff; border: 1px solid var(--c-border-soft, #EFF0F6);
    border-radius: var(--radius-lg, 20px); box-shadow: var(--shadow-sm, 0 1px 2px rgba(31,36,71,.06));
    padding: 22px;
}
.sidebar-card-cta { background: var(--c-lavande-soft, #F4ECFA); border-color: transparent; text-align: center; }
.sidebar-card-cta h3 { color: var(--c-marine, #424D95); font-size: 1.15rem; margin: 0 0 8px; }
.sidebar-card-cta p { color: var(--c-text-soft); font-size: .92rem; margin: 0 0 14px; }
.sidebar-card-cta .btn { margin-bottom: 8px; }
.sidebar-title { color: var(--c-marine, #424D95); font-size: 1.05rem; margin: 0 0 14px; }
.sidebar-posts { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.sidebar-posts a { display: flex; gap: 12px; align-items: center; text-decoration: none; }
.sidebar-posts img { width: 60px; height: 60px; object-fit: cover; border-radius: 10px; flex-shrink: 0; }
.sidebar-post-title { display: block; color: var(--c-text, #1F2447); font-weight: 600; font-size: .9rem; line-height: 1.3; }
.sidebar-post-date { display: block; color: var(--c-text-muted, #7C82A0); font-size: .78rem; margin-top: 2px; }
.sidebar-posts a:hover .sidebar-post-title { color: var(--c-bleu, #6571BF); }

.btn-block { display: flex; width: 100%; justify-content: center; }

/* Hero contact — bandeau sombre cohérent */
.contact-hero {
    position: relative;
    background:
      linear-gradient(180deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,.45) 100%),
      url("https://dr-durieux-virginie.fr/wp-content/uploads/2025/02/Capture-decran-2025-02-17-a-09.53.15-1-1.jpg");
    background-size: cover; background-position: center; color: #fff;
    padding: var(--sp-9, 96px) 0 var(--sp-8, 64px);
}
.contact-hero .breadcrumbs, .contact-hero .breadcrumbs a, .contact-hero .breadcrumbs span { color: rgba(255,255,255,.85); }
.contact-hero .tag-pill { background: rgba(255,255,255,.16); color: #fff; }
.contact-hero-title { color: #fff; }
.contact-hero-title .accent { color: var(--c-lavande, #D3BBE2); }
.contact-hero-lead { color: rgba(255,255,255,.92); }

/* ============================================================================
   Corrections v1.6 — popup, carrousel galerie, logo footer, article à la une
   ============================================================================ */

/* Bouton horaires dans la barre quick-info (même style que les liens) */
.quick-info-btn {
    background: none; border: 0; cursor: pointer; font: inherit; color: inherit;
    display: inline-flex; align-items: center; gap: 8px; padding: 0;
}

/* Popup / modale */
html.popup-open { overflow: hidden; }
.seesmile-popup { position: fixed; inset: 0; z-index: 9500; display: flex; align-items: center; justify-content: center; padding: 20px; }
.seesmile-popup[hidden] { display: none; }
.seesmile-popup-backdrop { position: absolute; inset: 0; background: rgba(20,22,45,.55); backdrop-filter: blur(2px); }
.seesmile-popup-box {
    position: relative; z-index: 1; background: #fff; border-radius: var(--radius-lg, 20px);
    box-shadow: var(--shadow-lg); padding: 32px 30px; width: 100%; max-width: 420px; text-align: center;
    animation: seesmilePopIn .25s ease;
}
@keyframes seesmilePopIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.seesmile-popup-x { position: absolute; top: 12px; right: 14px; background: none; border: 0; font-size: 1.8rem; line-height: 1; color: var(--c-text-muted); cursor: pointer; }
.seesmile-popup-title { color: var(--c-marine); margin: 0 0 18px; }
.popup-hours-list { list-style: none; padding: 0; margin: 0 0 18px; }
.popup-hours-list li { display: flex; justify-content: space-between; gap: 16px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--c-border-soft); text-align: left; }
.popup-hours-list li:last-child { border-bottom: 0; }
.popup-hours-list span { color: var(--c-text-soft); }
.popup-hours-list strong { color: var(--c-marine); text-align: right; }
.popup-hours-note { font-size: .85rem; color: var(--c-text-muted); margin: 0 0 18px; }

/* Carrousel galerie — format post Instagram (4:5), débord plein écran à droite */
.gallery-carousel {
    --g-gutter: max(24px, calc((100vw - var(--container, 1280px)) / 2));
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    margin-top: calc(var(--sp-6, 32px) + 44px); /* place pour les boutons */
    padding-left: var(--g-gutter);
}
.gallery-track {
    display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
    scroll-behavior: smooth; padding: 4px 0 8px; -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-slide {
    flex: 0 0 auto; width: clamp(300px, 30vw, 400px); aspect-ratio: 4 / 5; /* format post Instagram, plus grand (~4 visibles) */
    scroll-snap-align: start; border-radius: var(--radius-lg, 20px); overflow: hidden;
    background: var(--c-bg-grey); display: block;
}
.gallery-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.gallery-slide:hover img { transform: scale(1.05); }
/* Boutons de navigation, alignés à droite du conteneur, au-dessus du carrousel */
.gallery-nav {
    position: absolute; top: -60px; width: 44px; height: 44px; border-radius: 50%;
    border: 1px solid var(--c-border); background: #fff; color: var(--c-marine); cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-sm); transition: background var(--t), color var(--t); z-index: 3;
}
.gallery-prev { right: calc(var(--g-gutter) + 52px); }
.gallery-next { right: var(--g-gutter); }
.gallery-nav:hover { background: var(--c-bleu); color: #fff; border-color: var(--c-bleu); }

/* Logo footer (blanc sur fond marine) */
.footer-logo { display: inline-block; margin-bottom: 16px; }
.footer-logo img { max-height: 84px; width: auto; filter: brightness(0) invert(1); }

/* Article à la une (espace lecture) — texte posé sur l'image */
.blog-featured {
    position: relative; display: flex; align-items: flex-end; min-height: 420px; height: 100%;
    border-radius: var(--radius-lg, 20px); overflow: hidden; text-decoration: none;
    background-size: cover; background-position: center; box-shadow: var(--shadow);
    transition: transform var(--t), box-shadow var(--t);
}
.blog-featured:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-featured:hover .blog-featured-title { text-decoration: underline; }
.blog-featured-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.05) 30%, rgba(0,0,0,.8) 100%); z-index: 1; }
.blog-featured-badge { position: absolute; top: 14px; left: 14px; z-index: 2; background: var(--c-bleu); color: #fff; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; padding: 4px 12px; border-radius: 20px; }
.blog-featured-content { position: relative; z-index: 2; padding: 26px 26px 28px; color: #fff; }
.blog-featured-cat { color: rgba(255,255,255,.9); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.blog-featured-title { color: #fff; font-size: 1.4rem; line-height: 1.25; margin: 8px 0 16px; }
.blog-featured-btn { display: inline-block; background: #fff; color: var(--c-marine); font-weight: 600; padding: 10px 20px; border-radius: var(--btn-radius, 8px); }

/* ============================================================================
   Finitions accueil v1.9 — barre mobile fixe, indicateur de scroll hero
   ============================================================================ */

/* Actions flottantes : téléphone (toujours) + retour en haut (au scroll) */
.floating-actions {
    position: fixed; right: 20px; bottom: 20px; z-index: 300;
    display: flex; flex-direction: column; gap: 12px; align-items: center;
}
.fab {
    width: 52px; height: 52px; border-radius: 50%; border: 0; cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 18px rgba(31,36,71,.28); transition: transform var(--t), background var(--t), opacity var(--t);
}
.fab:hover { transform: translateY(-3px); }
.fab-phone { background: var(--c-bleu); color: #fff; }
.fab-phone:hover { background: var(--c-bleu-hover); }
.fab-top { background: #fff; color: var(--c-marine); opacity: 0; visibility: hidden; pointer-events: none; }
.fab-top.is-visible { opacity: 1; visibility: visible; pointer-events: auto; }
@media (max-width: 768px) { .floating-actions { right: 14px; bottom: 14px; } .fab { width: 50px; height: 50px; } }

/* Indicateur de scroll dans le hero */
.hero-scroll {
    position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%);
    z-index: 3; display: block;
}
@media (max-width: 768px) { .hero-scroll { display: none; } }
.hero-scroll-mouse {
    display: block; width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.8);
    border-radius: 14px; position: relative;
}
.hero-scroll-wheel {
    position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; border-radius: 2px;
    background: #fff; transform: translateX(-50%); animation: heroScroll 1.6s ease-in-out infinite;
}
@keyframes heroScroll { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%, 14px); } 100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .hero-scroll-wheel { animation: none; } }

/* ============================================================================
   Page Le cabinet (v2.1)
   ============================================================================ */
.section-cabinet-intro .section-head { margin-bottom: var(--sp-7, 48px); }

/* Présentation : photos chevauchées + carte Dr horizontale */
.cabinet-intro-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-7, 48px); align-items: center; }
@media (min-width: 900px) { .cabinet-intro-grid { grid-template-columns: 1.4fr 1fr; } }
.cabinet-intro-photos { position: relative; padding-bottom: 40px; }
.cabinet-photo-main { display: block; width: 78%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg, 20px); box-shadow: var(--shadow); }
.cabinet-photo-inset { position: absolute; right: 0; bottom: 0; width: 58%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius-lg, 20px); border: 6px solid #fff; box-shadow: var(--shadow-lg); }
@media (max-width: 560px) { .cabinet-intro-photos { padding-bottom: 0; display: grid; gap: 12px; } .cabinet-photo-main { width: 100%; } .cabinet-photo-inset { position: static; width: 100%; border: 0; } }

.cabinet-dr-card { border-top: 1px solid var(--c-border, #E5E7F0); border-bottom: 1px solid var(--c-border, #E5E7F0); padding: 22px 0; }
.cabinet-dr-inner { display: flex; align-items: center; gap: 20px; justify-content: space-between; }
.cabinet-dr-text { flex: 1; }
.cabinet-dr-name { font-weight: 700; font-size: 1.15rem; color: var(--c-marine, #424D95); margin: 0 0 8px; }
.cabinet-dr-role { color: var(--c-bleu, #6571BF); font-size: .92rem; margin: 0; line-height: 1.5; }
.cabinet-dr-photo { flex-shrink: 0; width: 92px; height: 92px; border-radius: 50%; object-fit: cover; box-shadow: var(--shadow); }

/* 4 points : 2 colonnes, lien à droite, filets */
.cabinet-features-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-7, 48px); }
@media (min-width: 900px) { .cabinet-features-grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.cf-item { display: flex; align-items: flex-start; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--c-border-soft, #EFF0F6); }
.cabinet-features-col .cf-item:first-child { padding-top: 0; }
.cf-text h3 { color: var(--c-marine, #424D95); font-size: 1.15rem; margin: 0 0 8px; }
.cf-text p { color: var(--c-text-soft, #4A5074); margin: 0; font-size: .95rem; line-height: 1.6; }
.cf-link { flex-shrink: 0; color: var(--c-bleu, #6571BF); font-weight: 600; text-decoration: none; white-space: nowrap; padding-top: 2px; }
.cf-link:hover { text-decoration: underline; }
.cf-item-lead { border-bottom: 0; padding-top: 0; }
.cf-item-lead h3 { font-size: 1.35rem; }
.cf-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 4px; }
.cf-photos img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--radius-lg, 20px); box-shadow: var(--shadow); }
.link-arrow { color: var(--c-bleu, #6571BF); font-weight: 600; text-decoration: none; }
.link-arrow:hover { text-decoration: underline; }

/* Un cabinet moderne (fond lavande) */
.section-cabinet-modern { background: var(--c-lavande-soft, #F4ECFA); }
.cabinet-modern-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-7, 48px); align-items: center; }
@media (min-width: 900px) { .cabinet-modern-grid { grid-template-columns: 1fr 1.1fr; } }
.cabinet-modern-visual img { width: 100%; aspect-ratio: 3/4; max-height: 520px; object-fit: cover; border-radius: var(--radius-lg, 20px); box-shadow: var(--shadow-lg); }
.cabinet-modern-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }

/* Équipe : 3 valeurs (filet vertical) + 2 portraits */
.cabinet-team-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-7, 48px); align-items: center; margin-top: var(--sp-6, 32px); }
@media (min-width: 900px) { .cabinet-team-grid { grid-template-columns: 1fr 1.2fr; } }
.cabinet-team-values { display: grid; gap: 22px; }
.cabinet-value { border-left: 3px solid var(--c-lavande, #D3BBE2); padding-left: 18px; }
.cabinet-value h3 { color: var(--c-marine, #424D95); font-size: 1.1rem; margin: 0 0 6px; }
.cabinet-value p { color: var(--c-text-soft); margin: 0; font-size: .95rem; }
.cabinet-team-portraits { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cabinet-portrait { margin: 0; text-align: center; }
.cabinet-portrait img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--radius-lg, 20px); box-shadow: var(--shadow); }
.cabinet-portrait figcaption { margin-top: 12px; }
.cabinet-portrait strong { display: block; color: var(--c-marine, #424D95); }
.cabinet-portrait span { display: block; color: var(--c-text-soft); font-size: .85rem; margin-top: 2px; }

/* ============================================================================
   Compatibilité Imagify (<picture> WebP) — v2.4
   Imagify enveloppe certaines <img> dans <picture> en déplaçant la classe.
   Pour les classes posées DIRECTEMENT sur une image, on clippe le conteneur
   et on fait remplir l'image intérieure (garde forme ronde / coins arrondis).
   ============================================================================ */
.cabinet-photo-main, .cabinet-photo-inset, .cabinet-dr-photo { display: block; overflow: hidden; }
.cabinet-photo-main > img, .cabinet-photo-inset > img, .cabinet-dr-photo > img {
    display: block; width: 100%; height: 100%; object-fit: cover;
}

/* ============================================================================
   Page Contact (v2.5)
   ============================================================================ */
/* FAQ + réassurance */
.contact-faq-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-7, 48px); }
@media (min-width: 900px) { .contact-faq-grid { grid-template-columns: 1.5fr 1fr; align-items: start; } }
.faq-list { display: flex; flex-direction: column; gap: var(--sp-3); }
.contact-faq-col .faq-list { margin-top: var(--sp-4, 16px); }
.contact-reassurance { display: grid; gap: 28px; }
.reassurance-block { text-align: left; }
.reassurance-round { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; color: var(--c-bleu, #6571BF); background: var(--c-lavande-soft, #F4ECFA); margin-bottom: 12px; }
.reassurance-block h3 { color: var(--c-marine, #424D95); font-size: 1.15rem; margin: 0 0 8px; }
.reassurance-block p { color: var(--c-text-soft, #4A5074); margin: 0; font-size: .95rem; line-height: 1.6; }

/* Formulaire en chevauchement */
.section-contact-form { background: var(--c-bg-soft, #FAF8FD); }
.contact-form-layout { position: relative; }
.contact-form-photo img { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg, 20px); box-shadow: var(--shadow-lg); }
.contact-form-card { position: relative; z-index: 2; background: #fff; border-radius: var(--radius-lg, 20px); box-shadow: var(--shadow-lg); padding: 32px; }
@media (max-width: 899px) {
    .contact-form-photo { position: relative; z-index: 1; margin: 0 8px -50px; }
    .contact-form-photo img { height: auto; aspect-ratio: 16/10; }
    .contact-form-card { margin: 0 8px; }
}
@media (min-width: 900px) {
    .contact-form-photo { position: absolute; left: 0; top: -24px; width: 40%; z-index: 1; }
    .contact-form-photo img { height: auto; aspect-ratio: 3/4; max-height: 520px; }
    .contact-form-card { margin-left: 34%; width: 66%; padding: 44px; }
}
.contact-form-intro { color: var(--c-text-soft, #4A5074); font-size: .95rem; line-height: 1.6; margin: 6px 0 22px; }

/* Coordonnées (3 colonnes) */
.section-contact-coords { }
.contact-coords-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-6, 32px); align-items: start; }
@media (min-width: 900px) { .contact-coords-grid { grid-template-columns: 1fr 2fr; } }
.contact-coords-intro p { color: var(--c-text-soft); }
.contact-coords-items { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 620px) { .contact-coords-items { grid-template-columns: repeat(3, 1fr); } }
.contact-coord-ico { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 12px; color: var(--c-bleu, #6571BF); background: var(--c-lavande-soft, #F4ECFA); margin-bottom: 10px; }
.contact-coord h3 { color: var(--c-marine, #424D95); font-size: 1.05rem; margin: 0 0 6px; }
.contact-coord p { color: var(--c-text-soft, #4A5074); margin: 0 0 6px; font-size: .95rem; line-height: 1.55; }
.contact-coord a { color: var(--c-bleu, #6571BF); }
.contact-coord-note { font-size: .88rem; color: var(--c-text-muted, #7C82A0); }

/* Photos immeuble */
.contact-building-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 700px) { .contact-building-grid { grid-template-columns: 1fr 1fr; } }
.contact-building-grid figure { margin: 0; }
.contact-building-grid img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius-lg, 20px); box-shadow: var(--shadow); }
.contact-building-grid figcaption { text-align: center; color: var(--c-text-soft); font-size: .9rem; margin-top: 10px; }

/* Carte */
.contact-map-intro { text-align: center; color: var(--c-text-soft); font-size: 1.05rem; margin-bottom: 20px; }
.contact-map-actions { text-align: center; margin-top: 20px; }

/* ══════════════════════════════════════════════════════════════════
   PAGE NOS TECHNOLOGIES
   ══════════════════════════════════════════════════════════════════ */

/* Lignes alternées image / texte */
.tech-row { display: grid; grid-template-columns: 1fr; gap: var(--sp-7, 48px); align-items: center; }
@media (min-width: 900px) { .tech-row { grid-template-columns: 1fr 1.05fr; } }

.tech-media { display: block; overflow: hidden; border-radius: var(--radius-lg, 20px); box-shadow: var(--shadow-lg); }
.tech-media img { display: block; width: 100%; height: 100%; aspect-ratio: 3/4; max-height: 540px; object-fit: cover; border-radius: var(--radius-lg, 20px); }

.tech-body .tag { margin-bottom: 14px; }
.tech-body .section-title { margin-bottom: 18px; }
.tech-body p { color: var(--c-text-soft); margin-bottom: 16px; }
.tech-body p a { color: var(--c-bleu); text-decoration: underline; text-underline-offset: 2px; }
.tech-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

/* ── Ordre MOBILE unifié : tag → titre → image → texte → bouton ──
   Sur mobile on ne veut JAMAIS l'image avant le titre, quel que soit
   l'ordre du markup (approche = image en 1er, device/reverse = alternés).
   Astuce : display:contents sur .tech-body fait remonter ses enfants
   comme items flex du .tech-row, ce qui permet de tout réordonner. */
@media (max-width: 899px) {
    .tech-row { display: flex; flex-direction: column; gap: 0; }
    .tech-row > .tech-body { display: contents; }
    .tech-row .tech-body .tag { order: 1; }
    .tech-row .tech-body .section-title,
    .tech-row .tech-body .device-title { order: 2; }
    .tech-row .tech-media { order: 3; margin: 2px 0 22px; }
    .tech-row .tech-body p { order: 4; }
    .tech-row .tech-body .tech-actions { order: 5; margin-top: 20px; }
}

.section-tech-row-alt { background: var(--c-bg-soft, #FAF7FB); }

/* iTero : titre centré + vidéo (gauche) + avantages (droite) */
.tech-itero-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-7, 48px); align-items: center; margin-top: var(--sp-6, 32px); }
@media (min-width: 900px) { .tech-itero-grid { grid-template-columns: 1.15fr 1fr; } }
.tech-video .video-embed { box-shadow: var(--shadow-lg); }

.tech-advantages-title { font-family: var(--ff-accent); font-size: 1.6rem; margin-bottom: 22px; color: var(--c-marine, #424D95); }
.tech-advantage { padding-left: 18px; border-left: 3px solid var(--c-lavande, #D3BBE2); margin-bottom: 22px; }
.tech-advantage:last-child { margin-bottom: 0; }
.tech-advantage h4 { font-family: var(--ff-accent); font-size: 1.15rem; color: var(--c-bleu); margin-bottom: 6px; }
.tech-advantage p { color: var(--c-text-soft); margin: 0; }

/* ══════════════════════════════════════════════════════════════════
   PAGES TRAITEMENTS
   ══════════════════════════════════════════════════════════════════ */

/* Étapes numérotées */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-5, 24px); margin-top: var(--sp-6, 32px); }
@media (min-width: 720px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .steps-grid.steps-3 { grid-template-columns: repeat(3, 1fr); } }
.step-card { position: relative; background: var(--c-white, #fff); border: 1px solid var(--c-border-soft); border-radius: var(--radius-lg, 20px); padding: 32px 26px 26px; box-shadow: var(--shadow-sm, 0 6px 18px rgba(31,36,71,.06)); transition: transform var(--t), box-shadow var(--t); }
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--c-bleu), var(--c-marine, #424D95)); color: #fff; font-family: var(--ff-accent); font-size: 1.35rem; font-weight: 600; margin-bottom: 16px; }
.step-card h3 { font-family: var(--ff-accent); font-size: 1.25rem; color: var(--c-marine, #424D95); margin-bottom: 10px; }
.step-card p { color: var(--c-text-soft); margin: 0; }
.step-card p a { color: var(--c-bleu); text-decoration: underline; text-underline-offset: 2px; }

/* Timeline des étapes (repris de l'ancien site, version moderne) */
.timeline { max-width: 760px; margin: var(--sp-6, 32px) auto 0; }
.timeline-step { position: relative; padding: 0 0 40px 84px; }
.timeline-step:last-child { padding-bottom: 0; }
.timeline-step::before { content: ""; position: absolute; left: 27px; top: 10px; bottom: -10px; width: 2px; background: var(--c-lavande, #D3BBE2); }
.timeline-step:last-child::before { display: none; }
.timeline-node { position: absolute; left: 0; top: 0; width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--c-bleu), var(--c-marine, #424D95)); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--ff-accent); font-size: 1.35rem; font-weight: 600; box-shadow: 0 6px 16px rgba(66,77,149,.28); }

/* Animation stylée : la ligne se « dessine », les pastilles apparaissent avec un rebond, en cascade */
.timeline-step::before { transform: scaleY(0); transform-origin: top; transition: transform .6s ease .15s; }
.timeline-step.is-visible::before { transform: scaleY(1); }
.timeline-node { transform: scale(0); opacity: 0; transition: transform .55s cubic-bezier(.34, 1.56, .64, 1), opacity .4s ease; }
.timeline-step.is-visible .timeline-node { transform: scale(1); opacity: 1; }
.timeline-label, .timeline-step h3, .timeline-step p { opacity: 0; transform: translateY(12px); transition: opacity .5s ease, transform .5s ease; }
.timeline-step.is-visible .timeline-label { transition-delay: .12s; }
.timeline-step.is-visible h3 { transition-delay: .2s; }
.timeline-step.is-visible p { transition-delay: .28s; }
.timeline-step.is-visible .timeline-label,
.timeline-step.is-visible h3,
.timeline-step.is-visible p { opacity: 1; transform: translateY(0); }
/* Cascade entre les étapes */
.timeline-step:nth-child(2) .timeline-node { transition-delay: .12s; }
.timeline-step:nth-child(3) .timeline-node { transition-delay: .24s; }
.timeline-step:nth-child(4) .timeline-node { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce) {
    .timeline-step::before, .timeline-node,
    .timeline-label, .timeline-step h3, .timeline-step p { transform: none; opacity: 1; }
}
.timeline-label { display: inline-block; font-size: .78rem; letter-spacing: .07em; text-transform: uppercase; color: var(--c-bleu); font-weight: 700; margin-bottom: 6px; }
.timeline-label sup { text-transform: none; }
.timeline-step h3 { font-family: var(--ff-accent); font-size: 1.3rem; color: var(--c-marine, #424D95); margin: 0 0 8px; }
.timeline-step p { color: var(--c-text-soft); margin: 0; }
.timeline-step p a { color: var(--c-bleu); text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 520px) {
    .timeline-step { padding-left: 66px; }
    .timeline-node { width: 46px; height: 46px; font-size: 1.15rem; }
    .timeline-step::before { left: 22px; }
}

/* Vidéo « Comment ça marche ? » */
.treatment-video-wrap { max-width: 860px; margin: var(--sp-6, 32px) auto 0; }
.treatment-video-wrap .video-embed { box-shadow: var(--shadow-lg); }

/* Galerie photo en grille (2x2 + photo verticale) */
.photo-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: var(--sp-6, 32px); }
@media (min-width: 760px) { .photo-grid { grid-template-columns: 2fr 1fr; align-items: stretch; } }
.photo-grid-main { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.photo-grid a { display: block; overflow: hidden; border-radius: var(--radius-lg, 20px); box-shadow: var(--shadow-sm); }
.photo-grid-main img { display: block; width: 100%; height: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .5s ease; }
.photo-grid-tall { height: 100%; }
.photo-grid-tall img { display: block; width: 100%; height: 100%; aspect-ratio: 3/4; object-fit: cover; transition: transform .5s ease; }
.photo-grid a:hover img { transform: scale(1.05); }

/* Avantages : cartes avec puce check */
.adv-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-5, 24px); margin-top: var(--sp-6, 32px); }
@media (min-width: 640px) { .adv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .adv-grid { grid-template-columns: repeat(4, 1fr); } }
.adv-card { background: var(--c-bg-soft, #FAF7FB); border-radius: var(--radius-lg, 20px); padding: 28px 22px; text-align: left; }
.adv-check { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 12px; background: var(--c-lavande, #D3BBE2); color: var(--c-marine, #424D95); margin-bottom: 14px; }
.adv-card h3 { font-family: var(--ff-accent); font-size: 1.15rem; color: var(--c-bleu); margin-bottom: 6px; }
.adv-card p { color: var(--c-text-soft); margin: 0; font-size: .96rem; }

/* Dispositifs contention : espacement entre lignes */
.device-row { margin-bottom: var(--sp-7, 48px); }
.device-row:last-child { margin-bottom: 0; }
.device-title { font-family: var(--ff-accent); font-size: 1.5rem; color: var(--c-marine, #424D95); margin-bottom: 12px; }
.device-row .tech-body p { color: var(--c-text-soft); }

/* Avant / après : label de groupe */
.ba-group-label { font-family: var(--ff-accent); font-size: 1.35rem; color: var(--c-bleu); text-align: center; margin: var(--sp-6, 32px) 0 4px; }

/* Le traitement en pratique : carte contenant une checklist 2 colonnes */
.infos-card { background: linear-gradient(180deg, var(--c-lavande-soft, #F4ECFA), var(--c-bg-soft, #FAF8FD)); border: 1px solid var(--c-border-soft); border-radius: var(--radius-xl, 32px); padding: 40px 36px; box-shadow: var(--shadow-sm); }
@media (min-width: 720px) { .infos-card { padding: 48px 52px; } }
.infos-card-head { text-align: center; margin-bottom: var(--sp-6, 32px); }
.infos-card-ico { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%; background: #fff; color: var(--c-bleu); box-shadow: var(--shadow-sm); margin-bottom: 14px; }
.infos-card-head .section-title { margin: 0; }
.infos-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 720px) { .infos-list { grid-template-columns: 1fr 1fr; gap: 16px 40px; } }
.infos-list li { position: relative; padding-left: 34px; color: var(--c-text-soft); line-height: 1.6; }
.infos-list li::before { content: ""; position: absolute; left: 0; top: 2px; width: 22px; height: 22px; border-radius: 50%; background: var(--c-bleu) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/13px no-repeat; }

/* ══════════════════════════════════════════════════════════════════
   PAGES VILLES (SEO local)
   ══════════════════════════════════════════════════════════════════ */

/* Article pilier « dans le Var » : paragraphe d'accroche */
.content-prose .lead { font-size: 1.15rem; color: var(--c-text); font-weight: 500; line-height: 1.7; }

/* Section accès : le tag + titre dans la colonne info */
.map-info .tag { margin-bottom: 10px; }
.map-info .section-title { margin-bottom: 14px; }
.map-info > p { color: var(--c-text-soft); margin-bottom: 20px; }

/* Villes voisines : cartes de maillage */
.voisines-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: var(--sp-6, 32px); }
@media (min-width: 620px) { .voisines-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .voisines-grid { grid-template-columns: repeat(3, 1fr); } }
.voisine-card { display: flex; align-items: center; gap: 14px; padding: 20px 22px; background: var(--c-white); border: 1px solid var(--c-border-soft); border-radius: var(--radius-lg, 20px); box-shadow: var(--shadow-sm); text-decoration: none; color: var(--c-marine); transition: transform var(--t), box-shadow var(--t), border-color var(--t); }
.voisine-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--c-lavande); }
.voisine-ico { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: var(--c-lavande-soft, #F4ECFA); color: var(--c-bleu); flex-shrink: 0; }
.voisine-label { flex: 1; font-size: .95rem; color: var(--c-text-soft); line-height: 1.35; }
.voisine-label strong { color: var(--c-marine); font-size: 1.05rem; }
.voisine-arrow { color: var(--c-bleu); font-size: 1.2rem; transition: transform var(--t); }
.voisine-card:hover .voisine-arrow { transform: translateX(4px); }
.voisine-card-var { background: linear-gradient(135deg, var(--c-lavande-soft, #F4ECFA), #fff); }

/* Page pilier « dans le Var » : sous-traitements + carte coûts */
.ville-subs { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: var(--sp-6, 32px); }
@media (min-width: 860px) { .ville-subs { grid-template-columns: repeat(3, 1fr); } }
.ville-sub { background: var(--c-white); border: 1px solid var(--c-border-soft); border-left: 3px solid var(--c-lavande, #D3BBE2); border-radius: var(--radius-lg, 20px); padding: 24px 22px; box-shadow: var(--shadow-sm); }
.ville-sub h3 { font-family: var(--ff-accent); font-size: 1.2rem; color: var(--c-marine); margin: 0 0 8px; }
.ville-sub p { color: var(--c-text-soft); margin: 0; font-size: .96rem; }
.ville-sub a { color: var(--c-bleu); text-decoration: underline; text-underline-offset: 2px; }
.ville-infocard-text { max-width: 720px; margin: 0 auto 14px; text-align: center; color: var(--c-text-soft); }
.ville-infocard-text:last-child { margin-bottom: 0; }
.ville-infocard-text a { color: var(--c-bleu); text-decoration: underline; text-underline-offset: 2px; }

/* Bouton compact (lignes dispositifs) */
.btn-small { padding: 10px 20px; font-size: .92rem; }
.device-row .tech-actions { margin-top: 18px; }

/* Autres publics : cartes de maillage entre tranches d'âge */
.public-cross-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: var(--sp-6, 32px); }
@media (min-width: 640px) { .public-cross-grid { grid-template-columns: 1fr 1fr; } }
.public-cross-card { position: relative; display: flex; align-items: flex-end; aspect-ratio: 1 / 1; border-radius: var(--radius-lg, 20px); overflow: hidden; background-size: cover; background-position: center; text-decoration: none; box-shadow: var(--shadow-sm); transition: transform var(--t), box-shadow var(--t); isolation: isolate; }
.public-cross-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.public-cross-overlay { position: absolute; inset: 0; z-index: 0; background: linear-gradient(180deg, rgba(66,77,149,0) 35%, rgba(50,58,117,.92) 100%); transition: background var(--t); }
.public-cross-card:hover .public-cross-overlay { background: linear-gradient(180deg, rgba(66,77,149,.2) 0%, rgba(50,58,117,.96) 100%); }
.public-cross-content { position: relative; z-index: 1; padding: 24px 26px; color: #fff; }
.public-cross-label { display: block; font-family: var(--ff-accent); font-size: 1.6rem; line-height: 1.1; }
.public-cross-sub { display: block; font-size: .95rem; color: rgba(255,255,255,.9); margin: 6px 0 10px; }
.public-cross-cta { display: inline-block; font-weight: 600; font-size: .95rem; color: #fff; transition: transform var(--t); }
.public-cross-card:hover .public-cross-cta { transform: translateX(4px); }

/* Section contention (pages publics) : fil + gouttières + hybride */
.contention-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: var(--sp-6, 32px); }
@media (min-width: 720px) { .contention-grid { grid-template-columns: 1fr 1fr; } }
.contention-card { background: var(--c-white); border: 1px solid var(--c-border-soft); border-radius: var(--radius-lg, 20px); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform var(--t), box-shadow var(--t); }
.contention-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.contention-card > img { display: block; width: 100%; height: 190px; object-fit: cover; }
.contention-card-body { padding: 22px 24px 24px; }
.contention-card-body h3 { font-family: var(--ff-accent); font-size: 1.3rem; color: var(--c-marine); margin: 0 0 8px; }
.contention-card-body p { color: var(--c-text-soft); margin: 0 0 12px; }
.contention-card-link { font-weight: 600; color: var(--c-bleu); text-decoration: none; }
.contention-card-link:hover { text-decoration: underline; }
.contention-hybrid { max-width: 760px; margin: 24px auto 0; padding: 18px 24px; background: var(--c-lavande-soft, #F4ECFA); border-radius: var(--radius, 12px); color: var(--c-marine); text-align: center; }
.contention-hybrid strong { color: var(--c-bleu); }
.contention-actions { text-align: center; margin-top: 24px; }

/* ----------------------------------------------------------------------------
   Formulaire : badge reCAPTCHA masqué, champ fichier, disclaimer
   (mention légale Google affichée sous le formulaire — conforme)
   ---------------------------------------------------------------------------- */
.grecaptcha-badge { visibility: hidden !important; opacity: 0 !important; }

.form-field-file input[type="file"] {
    display: block;
    width: 100%;
    padding: 12px 14px;
    border: 1px dashed var(--c-border, #cdd0e0);
    border-radius: var(--radius, 12px);
    background: var(--c-bg-soft, #FAF8FD);
    font: inherit;
    color: var(--c-text-soft, #4A5074);
    cursor: pointer;
}
.form-field-file input[type="file"]::file-selector-button {
    margin-right: 14px;
    padding: 8px 16px;
    border: 0;
    border-radius: 999px;
    background: var(--c-bleu, #6571BF);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--t, .25s ease);
}
.form-field-file input[type="file"]::file-selector-button:hover { background: var(--c-marine, #424D95); }
.form-hint { display: block; margin-top: 6px; font-size: .82rem; color: var(--c-text-soft, #6b7192); }

.form-disclaimer {
    margin: 8px 0 20px;
    padding: 14px 18px;
    background: var(--c-lavande-soft, #F4ECFA);
    border-left: 3px solid var(--c-bleu, #6571BF);
    border-radius: 10px;
    font-size: .9rem;
    line-height: 1.55;
    color: var(--c-marine, #424D95);
}
.form-disclaimer a { color: var(--c-bleu, #6571BF); font-weight: 600; }

.form-recaptcha-note { margin-top: 6px; }
.form-recaptcha-note a { color: var(--c-bleu, #6571BF); }
