/* components.css — DBCR mockup v6 FINAL — mobile-first BEM
 * Tous les composants visuels de la home : header, hero, strip, cabinet,
 * domaines, presence, cta-final, footer.
 * Aucune media query ici (sauf reduced-motion universal de base.css).
 * Les breakpoints (≥480/640/768/1024/1320) sont dans layout.css.
 */

/* ============================================================ */
/* HEADER                                                        */
/* ============================================================ */
.header {
    position: sticky;
    top: 0;
    background: rgba(248, 247, 242, 0.94);
    backdrop-filter: blur(12px) saturate(1.1);
    -webkit-backdrop-filter: blur(12px) saturate(1.1);
    z-index: 100;
    border-bottom: 0.5px solid var(--line-soft);
    padding: 16px 0;
}
.header__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 16px;
}
.header__brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    justify-self: start;
}
/* SVG inline via file_get_contents — taille controlee par CSS */
.header__brand svg {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: block;
}
.header__brand-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    line-height: 1;
}
.header__brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.32em;
    color: var(--bleu-cpi);
    line-height: 1;
}
.header__brand-sub {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--or-deep);
    line-height: 1;
}
/* Burger mobile — z-index 1001 pour rester cliquable AU-DESSUS du menu drawer (z-index 999) */
.header__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-self: end;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}
.header__burger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--charbon);
    transition: transform 0.3s ease, opacity 0.2s ease, background 0.2s ease;
}
.header__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); background: var(--bleu-cpi); }
.header__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.header__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: var(--bleu-cpi); }

/* Overlay click-outside-to-close (mobile only) */
.header__nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 42, 74, 0.18);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.header[data-mobile-open="true"] .header__nav-overlay {
    display: block;
    opacity: 1;
}

/* Nav + right mobile : drawer fullscreen overlay */
.header__nav,
.header__right {
    display: none;
}
.header[data-mobile-open="true"] .header__nav,
.header[data-mobile-open="true"] .header__right {
    display: flex;
}
.header[data-mobile-open="true"] .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;                  /* Couche 2 (21/05/2026) : largeur explicite = viewport */
    max-width: 100%;               /* Defense contre sub-pixel debordement */
    height: 100vh;
    height: 100dvh;                /* vraie fullscreen iOS Safari */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--creme);
    padding: 88px 24px 120px;      /* top: laisse place burger ; bottom: laisse place header__right fixed */
    gap: 0;
    z-index: 999;
    overflow-x: hidden;            /* clip horizontal interne (long item menu) */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
/* Reset ul du wp_nav_menu en mode drawer mobile */
.header[data-mobile-open="true"] .header__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
    text-align: center;
    width: 100%;
    max-width: 320px;
}
.header[data-mobile-open="true"] .header__nav-list li {
    margin: 0;
}
.header[data-mobile-open="true"] .header__nav a {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(26px, 6vw, 36px);
    font-weight: 300;
    color: var(--bleu-cpi);
    letter-spacing: -0.012em;
    line-height: 1.2;
    padding: 6px 12px;
    display: inline-block;
}
.header[data-mobile-open="true"] .header__nav a:hover,
.header[data-mobile-open="true"] .header__nav li.current-menu-item a {
    color: var(--or-deep);
}
.header[data-mobile-open="true"] .header__right {
    position: fixed;
    bottom: 32px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    z-index: 1000;
    pointer-events: auto;
}
.header__nav a {
    color: var(--charbon);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    position: relative;
    padding: 4px 0;
    transition: color 0.2s;
}
.header__nav a:hover { color: var(--bleu-cpi); }
.header__nav a.active { color: var(--bleu-cpi); font-weight: 500; }
.header__nav a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0; right: 0;
    height: 1px;
    background: var(--or);
}
.header__right { gap: 16px; align-items: center; }
.header__phone {
    font-size: 12px;
    letter-spacing: 0.04em;
    color: var(--charbon-soft);
    text-decoration: none;
    font-feature-settings: 'tnum';
    transition: color 0.2s;
}
.header__phone:hover { color: var(--bleu-cpi); }
.header__lang {
    font-size: 11px;
    letter-spacing: 0.2em;
    border-left: 0.5px solid var(--line);
    padding-left: 16px;
}
.header__lang a {
    color: var(--gris-soft);
    text-decoration: none;
    padding: 4px 6px;
    transition: color 0.2s;
}
.header__lang a.active { color: var(--bleu-cpi); font-weight: 500; }
.header__lang a:hover { color: var(--bleu-cpi); }

body.has-mobile-nav-open { overflow: hidden; }

/* ============================================================ */
/* HERO                                                          */
/* ============================================================ */
.hero {
    min-height: auto;                /* mobile : pas de centrage vertical (evite blank space) */
    padding: 40px 0 64px;
    display: flex;
    align-items: flex-start;
    position: relative;
    background: var(--creme);
}
.hero__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    position: relative;
}
.hero__kicker {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--or-deep);
    font-weight: 500;
}
.hero__kicker::before {
    content: '';
    width: 0;                     /* mobile <640px : pas de filet */
    height: 1px;
    background: var(--or);
    display: none;
}
.hero__title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(40px, 12vw, 56px);
    line-height: 1.0;
    letter-spacing: -0.025em;
    color: var(--bleu-cpi);
    margin-bottom: 40px;
}
.hero__title-line-1 { display: block; }
.hero__title-line-2 {
    display: block;
    font-style: italic;
    font-weight: 400;
}
.hero__bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: end;
}
.hero__lead {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.55;
    color: var(--charbon-soft);
}
.hero__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;        /* alignement gauche mobile */
    gap: 16px;
    justify-self: start;
}
.hero__cta-primary {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--creme);
    background: var(--bleu-cpi);
    padding: 12px 24px;             /* mobile : leger fine-tune */
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    transition: background 0.3s ease, border-color 0.3s ease;
    border: 1px solid var(--bleu-cpi);
    text-align: center;
    align-self: flex-start;
}
.hero__cta-primary:hover { background: var(--bleu-deep); border-color: var(--bleu-deep); }
.hero__cta-secondary {
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--bleu-cpi);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--or);
    padding-bottom: 4px;
    align-self: flex-start;
    transition: color 0.2s;
}
.hero__cta-secondary:hover { color: var(--or-deep); }

/* ============================================================ */
/* STRIP                                                         */
/* ============================================================ */
.strip {
    background: var(--bleu-cpi);
    color: var(--creme);
    padding: 24px 0;
}
.strip__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: center;
    text-align: center;
}
.strip__label {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 13px;
    color: rgba(248, 247, 242, 0.75);
    letter-spacing: 0.04em;
    font-synthesis: none;             /* force le fichier italique self-hosted, pas de simulation */
}
/* .strip__label-dash retire 2026-05-09 — separator final apres "devant" supprime */
.strip__list {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}
.strip__item {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--creme);
    padding: 0;
    position: relative;
}
.strip__item:not(:last-child)::after { display: none; }   /* tirets cachés mobile */

/* Ligne contexte international (deonto : conseil/accompagnement, pas plaidoirie) */
.strip__intl {
    margin: 4px 0 0;
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: rgba(201, 169, 97, 0.85);  /* or-deep discret */
    text-align: center;
}
@media (min-width: 720px) {
    .strip__intl { font-size: 12px; }
}

/* ============================================================ */
/* CABINET                                                       */
/* ============================================================ */
.cabinet {
    padding: 80px 0;
    background: var(--creme);
}
.cabinet__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}
.cabinet__photo-wrap { position: relative; }
.cabinet__photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    background: var(--bleu-cpi);     /* fallback uniforme palette si image absent */
    position: relative;
    overflow: hidden;
}
.cabinet__photo picture,
.cabinet__photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 50% 25%;        /* visage + arcades du Palais visibles */
    filter: saturate(0.92) contrast(1.05);
}
.cabinet__photo-frame {
    position: absolute;
    inset: 16px;
    border: 0.5px solid rgba(248, 247, 242, 0.25);
    pointer-events: none;
    z-index: 2;
}
.cabinet__index {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    font-size: 11px;
    color: var(--or-deep);
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 500;
}
.cabinet__index::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--or);
}
.cabinet__title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(28px, 7vw, 36px);
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--bleu-cpi);
    margin-bottom: 32px;
}
.cabinet__title em { font-style: italic; color: var(--or-deep); }
.cabinet__pullquote {
    position: relative;
    padding: 24px 0 24px 24px;
    margin-bottom: 32px;
    border-left: 1px solid var(--or);
}
.cabinet__pullquote-text {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-style: italic;
    font-size: 18px;
    line-height: 1.5;
    color: var(--charbon);
    margin-bottom: 12px;
}
.cabinet__pullquote-attribution {
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--or-deep);
    font-weight: 500;
}
.cabinet__bio {
    font-size: 14px;
    line-height: 1.85;
    color: var(--charbon-soft);
    margin-bottom: 18px;
}
.cabinet__credentials {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 0.5px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.cabinet__credential {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: baseline;
}
.cabinet__credential-label {
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--or-deep);
    font-weight: 500;
}
.cabinet__credential-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    line-height: 1.65;
    color: var(--bleu-cpi);
}
.cabinet__credential-value span {
    color: var(--or-deep);
    margin: 0 6px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
}
.cabinet__cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 32px;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--bleu-cpi);
    text-decoration: none;
    font-weight: 500;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--or);
    transition: gap 0.3s ease;
    align-self: flex-start;
}
.cabinet__cta:hover { gap: 18px; }

/* ============================================================ */
/* DOMAINES                                                      */
/* ============================================================ */
.domaines {
    background: var(--bleu-cpi);
    color: var(--creme);
    padding: 80px 0;
    position: relative;
}
.domaines::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--or), transparent);
    opacity: 0.4;
}
.domaines__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}
.domaines__header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
    align-items: end;
}
.domaines__index {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 10px;
    color: var(--or);
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 500;
}
.domaines__index::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--or);
}
.domaines__title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(28px, 7vw, 40px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--creme);
}
.domaines__title em { font-style: italic; color: var(--or); }
.domaines__lead {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.55;
    color: rgba(248, 247, 242, 0.65);
}
.domaines__list { display: flex; flex-direction: column; }
.domaine {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 0;
    border-top: 0.5px solid rgba(248, 247, 242, 0.12);
    align-items: start;
    transition: padding 0.5s cubic-bezier(0.65, 0, 0.35, 1);
    text-decoration: none;
    color: inherit;
}
.domaine:last-child { border-bottom: 0.5px solid rgba(248, 247, 242, 0.12); }
/* .domaine__num retire 2026-05-09 — numerotation supprimee, epure totale */
.domaine__heading { display: flex; flex-direction: column; gap: 12px; }
.domaine__title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.2;
    color: var(--creme);
    letter-spacing: -0.005em;
}
.domaine__tags {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px 8px;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(201, 169, 97, 0.7);
}
.domaine__tags span {
    white-space: nowrap;
    display: inline-flex;
    align-items: baseline;
}
.domaine__tags span:not(:last-child)::after {
    content: '·';
    color: rgba(201, 169, 97, 0.5);
    margin-left: 8px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: normal;
    line-height: 1;
}
.domaine__desc {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(248, 247, 242, 0.7);
}
.domaine__arrow {
    display: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--or);
    text-align: right;
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

/* ============================================================ */
/* PRESENCE                                                      */
/* ============================================================ */
.presence {
    background: var(--creme);
    padding: 80px 0;
    position: relative;
}
.presence__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}
.presence__index {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 10px;
    color: var(--or-deep);
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 500;
}
.presence__index::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--or);
}
.presence__title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(28px, 7vw, 40px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--bleu-cpi);
    margin-bottom: 28px;
}
.presence__title em { font-style: italic; color: var(--or-deep); }
.presence__lead {
    font-size: 15px;
    line-height: 1.85;
    color: var(--charbon-soft);
    margin-bottom: 28px;
}
.presence__outre-mer {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 14px;
    line-height: 1.7;
    color: var(--gris-text);
    padding-top: 20px;
    border-top: 0.5px solid var(--line);
}
.presence__outre-mer strong {
    color: var(--bleu-cpi);
    font-weight: 500;
    font-style: normal;
    display: block;
    margin-bottom: 6px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.presence__map-container { position: relative; }
.presence__map { width: 100%; aspect-ratio: 1; max-width: 100%; }

/* === Fuseaux horaires live (sous carte AzimEqui) === */
.presence__timezones {
    margin-top: 64px;
    padding: 48px 24px 0;
    border-top: 0.5px solid var(--line);
}
.timezones__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
    max-width: 480px;
    margin: 0 auto;
}
.timezone {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.timezone__city {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.05em;
    color: var(--gris-text);
    line-height: 1;
}
.timezone__time {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 1;
    color: var(--bleu-cpi);
    font-feature-settings: 'tnum';
    letter-spacing: 0.02em;
}
.timezone[data-active="true"] .timezone__time {
    color: var(--or-deep);
    font-weight: 500;
}

/* SVG carte AzimEqui */
.presence__map { background: transparent; }
.continent {
    fill: var(--bleu-cpi);
    fill-opacity: 0.10;
    stroke: var(--bleu-cpi);
    stroke-width: 0.7;
    stroke-opacity: 0.5;
    stroke-linejoin: round;
}
.graticule {
    fill: none;
    stroke: var(--bleu-cpi);
    stroke-width: 0.3;
    opacity: 0.10;
}
.sphere-outline {
    fill: transparent;                      /* pas de cercle blanc qui tranche avec creme */
    stroke: var(--or);
    stroke-width: 1;                        /* 0.5 -> 1 : globe materialise plus visiblement */
    stroke-dasharray: 2 4;                  /* pointilles subtils, effet atlas vintage      */
    opacity: 0.6;                           /* 0.4 -> 0.6 : presence accrue                  */
}
.city-arc {
    stroke: var(--or);
    stroke-width: 0.6;
    fill: none;
    stroke-linecap: round;
    opacity: 0.5;
    /* 2026-05-28 (relecture Drusilla) : arcs en STATIQUE — pas de drawArc.
       L'animation "battement de cœur" est portée par les halos villes. */
}
.city-dot { fill: var(--or-deep); }
.city-dot--paris { fill: var(--or); }     /* Paris central plus brillant */
.city-halo {
    fill: var(--or);
    opacity: 0.5;
    transform-origin: center;
    transform-box: fill-box;
    /* "Battement de cœur" : deux pulsations rapprochees puis pause (~1.4s cycle).
       Cycle commun toutes villes pour effet "presence vivante" coherent.        */
    animation: cityHeartbeat 1.4s ease-out infinite;
}
.city-paris-halo {
    fill: var(--or);
    opacity: 0.7;
    transform-origin: center;
    transform-box: fill-box;
    /* Paris = "cœur central" : meme rythme mais legerement plus marque. */
    animation: cityHeartbeatParis 1.4s ease-out infinite;
}
@keyframes cityHeartbeat {
    0%   { opacity: 0.5; transform: scale(1); }
    10%  { opacity: 0.15; transform: scale(1.45); }
    20%  { opacity: 0.5; transform: scale(1); }
    30%  { opacity: 0.15; transform: scale(1.45); }
    40%  { opacity: 0.5; transform: scale(1); }
    100% { opacity: 0.5; transform: scale(1); }
}
@keyframes cityHeartbeatParis {
    0%   { opacity: 0.7; transform: scale(1); }
    10%  { opacity: 0.2; transform: scale(1.55); }
    20%  { opacity: 0.7; transform: scale(1); }
    30%  { opacity: 0.2; transform: scale(1.55); }
    40%  { opacity: 0.7; transform: scale(1); }
    100% { opacity: 0.7; transform: scale(1); }
}
/* Respect prefers-reduced-motion : halos statiques (presence preservee, pulsation supprimee) */
@media (prefers-reduced-motion: reduce) {
    .city-halo, .city-paris-halo { animation: none; }
}
.city-label {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    letter-spacing: 0.18em;
    font-weight: 500;
    fill: var(--bleu-cpi);
    paint-order: stroke;
    stroke: var(--creme);                  /* halo lecture sur fond carte */
    stroke-width: 2.5px;
    stroke-linejoin: round;
}
.city-label--paris {
    fill: var(--or-deep);
    font-weight: 600;                  /* max dispo variable font 300-600 */
    font-size: 12px;                   /* +1px pour compenser cap weight */
    letter-spacing: 0.22em;
}
.city-detail {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 8px;
    fill: var(--gris-soft);
}

/* ============================================================ */
/* CTA FINAL                                                     */
/* ============================================================ */
.cta-final {
    background: var(--bleu-cpi);
    padding: 100px 24px;
    position: relative;
}
.cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 64px;
    background: var(--or);
    opacity: 0.7;
}
.cta-final__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: end;
}
.cta-final__index {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 11px;
    color: var(--or);
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 500;
}
.cta-final__index::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--or);
}
.cta-final__title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(36px, 9vw, 56px);
    line-height: 1;
    letter-spacing: -0.025em;
    color: var(--creme);
}
.cta-final__title em { font-style: italic; font-weight: 400; color: var(--or); }
.cta-final__sidebar { padding-bottom: 0; }
.cta-final__lead {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(248, 247, 242, 0.75);
    margin-bottom: 32px;
}
.cta-final__btn {
    display: block;
    width: 100%;
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 16px 24px;
    text-decoration: none;
    background: var(--or);
    color: var(--bleu-cpi);
    border: 1px solid var(--or);
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    text-align: center;
}
.cta-final__btn:hover {
    background: var(--or-deep);
    border-color: var(--or-deep);
    color: var(--creme);
}
.cta-final__contact {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 0.5px solid rgba(248, 247, 242, 0.15);
    font-size: 13px;
    color: rgba(248, 247, 242, 0.7);
    line-height: 2;
}
.cta-final__contact a {
    color: var(--or);
    text-decoration: none;
    transition: color 0.2s;
}
.cta-final__contact a:hover { color: var(--or-soft); }

/* ============================================================ */
/* DOMAINE PAGE (sous-pages /domaines-intervention/* — Phase 4.3)*/
/* ============================================================ */

/* --- Hero --- */
.domaine-page__hero {
    background: var(--creme);
    padding: 96px 24px 64px;
}
.domaine-page__hero-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.domaine-page__breadcrumb {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(15, 42, 74, 0.5);
    margin-bottom: 48px;
    font-weight: 500;
}
.domaine-page__breadcrumb a {
    color: rgba(15, 42, 74, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}
.domaine-page__breadcrumb a:hover { color: var(--or-deep); }
.domaine-page__breadcrumb-sep { color: var(--or); padding: 0 4px; }

.domaine-page__hero-kicker {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: var(--or-deep);
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 500;
}
.domaine-page__hero-kicker::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--or);
}
.domaine-page__hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(36px, 9vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--bleu-deep);
    margin: 0 0 24px;
    max-width: 18ch;
}
.domaine-page__hero-lead {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(26, 26, 26, 0.78);
    max-width: 60ch;
    margin: 0;
}

/* --- Index helper (réutilisé dans contexte / approche / timeline) --- */
.domaine-page__index {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: var(--or-deep);
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 24px;
}
.domaine-page__index::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--or);
}
.domaine-page__index--light { color: var(--or); }
.domaine-page__index--light::before { background: var(--or); }

/* --- Contexte (fond crème) --- */
.domaine-page__contexte {
    background: var(--creme);
    padding: 80px 24px;
    border-top: 0.5px solid rgba(15, 42, 74, 0.08);
}
.domaine-page__contexte-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
.domaine-page__contexte-content {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(26, 26, 26, 0.82);
}
.domaine-page__contexte-content > * + * { margin-top: 24px; }
.domaine-page__contexte-content p { margin: 0; }
.domaine-page__contexte-content a {
    color: var(--or-deep);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.domaine-page__contexte-content a:hover { color: var(--bleu-cpi); }

/* --- Approche (fond bleu CPI) --- */
.domaine-page__approche {
    background: var(--bleu-cpi);
    padding: 96px 24px;
    color: var(--creme);
}
.domaine-page__approche-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.domaine-page__approche-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(28px, 6vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.018em;
    color: var(--creme);
    margin: 0 0 48px;
    max-width: 22ch;
}
.domaine-page__approche-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--or);
}
.domaine-page__prestations {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}
.domaine-page__prestation {
    position: relative;
    padding: 18px 0 18px 32px;
    border-bottom: 0.5px solid rgba(248, 247, 242, 0.12);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(248, 247, 242, 0.82);
}
.domaine-page__prestation::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 18px;
    color: var(--or);
    font-weight: 500;
}

/* --- Timeline (fond crème) --- */
.domaine-page__timeline {
    background: var(--creme);
    padding: 96px 24px;
}
.domaine-page__timeline-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.domaine-page__timeline-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(28px, 6vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.018em;
    color: var(--bleu-deep);
    margin: 0 0 48px;
    max-width: 22ch;
}
.domaine-page__timeline-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--or-deep);
}
.domaine-page__steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
.domaine-page__step {
    border-top: 0.5px solid rgba(15, 42, 74, 0.15);
    padding-top: 24px;
}
.domaine-page__step-num {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 32px;
    color: var(--or-deep);
    margin-bottom: 12px;
    line-height: 1;
}
.domaine-page__step-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 22px;
    letter-spacing: -0.005em;
    color: var(--bleu-deep);
    margin: 0 0 10px;
}
.domaine-page__step-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(26, 26, 26, 0.72);
    margin: 0;
}

/* ============================================================ */
/* BACK TO TOP BUTTON (toutes pages — Phase 8+)                  */
/* ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--bleu-cpi);
    color: var(--creme);
    border: 1px solid var(--or);
    border-radius: 0;
    cursor: pointer;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.4s ease, visibility 0s linear 0.4s,
                transform 0.4s ease, background 0.3s ease, color 0.3s ease;
}
.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.4s ease, visibility 0s linear,
                transform 0.4s ease, background 0.3s ease, color 0.3s ease;
}
.back-to-top:hover {
    background: var(--or-deep);
    color: var(--creme);
}
.back-to-top:focus-visible {
    outline: 2px solid var(--or);
    outline-offset: 4px;
}
.back-to-top svg { display: block; }
@media (max-width: 767px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .back-to-top {
        transform: none;
        transition: opacity 0.2s ease, visibility 0s linear 0.2s,
                    background 0.2s ease, color 0.2s ease;
    }
    .back-to-top.is-visible {
        transition: opacity 0.2s ease, visibility 0s linear,
                    background 0.2s ease, color 0.2s ease;
    }
}

/* ============================================================ */
/* DOMAINES HUB PAGE (parent /domaines-intervention/ — Phase 8)  */
/* ============================================================ */

/* --- Hero --- */
.domaines-hub-page__hero {
    background: var(--creme);
    padding: 96px 24px 48px;
}
.domaines-hub-page__hero-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.domaines-hub-page__breadcrumb {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(15, 42, 74, 0.5);
    margin-bottom: 48px;
    font-weight: 500;
}
.domaines-hub-page__breadcrumb a {
    color: rgba(15, 42, 74, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}
.domaines-hub-page__breadcrumb a:hover { color: var(--or-deep); }
.domaines-hub-page__breadcrumb-sep { color: var(--or); padding: 0 4px; }

.domaines-hub-page__kicker {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: var(--or-deep);
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 500;
}
.domaines-hub-page__kicker::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--or);
}
.domaines-hub-page__hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(30px, 5.5vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.018em;
    color: var(--bleu-deep);
    margin: 0 0 32px;
    /* max-width retiree : titre wrap naturel <480, forcage 1 ligne ≥480 via white-space */
}
@media (min-width: 480px) {
    .domaines-hub-page__hero-title {
        white-space: nowrap;
    }
}
.domaines-hub-page__hero-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--or-deep);
}
.domaines-hub-page__hero-lead {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(26, 26, 26, 0.78);
    max-width: 70ch;
    margin: 0;
}

/* --- 3 Cards --- */
.domaines-hub-page__cards {
    background: var(--creme);
    padding: 64px 24px;
}
.domaines-hub-page__cards-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
.domaine-hub-card {
    display: flex;
    flex-direction: column;
    background: transparent;
    padding: 32px 0;
    border-top: 1px solid var(--or);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.domaine-hub-card:hover {
    transform: translateY(-3px);
}
.domaine-hub-card__num {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 48px;
    line-height: 1;
    color: var(--or-deep);
    margin: 0 0 16px;
    display: block;
}
.domaine-hub-card__title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(20px, 2.5vw, 24px);
    line-height: 1.3;
    color: var(--bleu-cpi);
    margin: 0 0 14px;
    letter-spacing: -0.005em;
}
.domaine-hub-card__tags {
    font-family: 'Inter', sans-serif;
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--or-deep);
    margin: 0 0 16px;
    line-height: 1.5;
}
.domaine-hub-card__desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(26, 26, 26, 0.75);
    margin: 0 0 24px;
    flex-grow: 1;
}
.domaine-hub-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--or-deep);
    border-bottom: 0.5px solid var(--or-deep);
    padding-bottom: 4px;
    align-self: flex-start;
    transition: gap 0.3s ease, color 0.2s ease;
}
.domaine-hub-card:hover .domaine-hub-card__link {
    gap: 14px;
    color: var(--bleu-cpi);
    border-bottom-color: var(--bleu-cpi);
}

/* --- Philo bleu CPI --- */
.domaines-hub-page__philo {
    background: var(--bleu-cpi);
    color: var(--creme);
    padding: 80px 24px;
}
.domaines-hub-page__philo-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}
.domaines-hub-page__philo-index {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: var(--or);
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 28px;
}
.domaines-hub-page__philo-index::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--or);
}
.domaines-hub-page__philo-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.018em;
    color: var(--creme);
    margin: 0 0 32px;
}
.domaines-hub-page__philo-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--or);
}
.domaines-hub-page__philo-lead {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(248, 247, 242, 0.88);
    margin: 0;
    max-width: 60ch;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================ */
/* CABINET PAGE (Phase 4.4 — Maître Drusilla)                    */
/* ============================================================ */

/* --- Hero split 5fr/7fr desktop, 1col mobile --- */
.cabinet-page__hero {
    background: var(--creme);
    padding: 64px 24px 48px;
}
.cabinet-page__hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
.cabinet-page__photo-wrap {
    width: 100%;
}
.cabinet-page__photo {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    background: var(--creme);
    border: 12px solid var(--creme);
    box-shadow: 0 4px 24px rgba(15, 42, 74, 0.10);
}
.cabinet-page__photo img {
    width: 100%;
    height: 100%;
    max-height: 380px;
    object-fit: cover;
    object-position: 50% 25%;
    display: block;
    filter: saturate(0.92) contrast(1.04);
}

.cabinet-page__hero-content { min-width: 0; }
.cabinet-page__breadcrumb {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(15, 42, 74, 0.5);
    margin-bottom: 24px;
    font-weight: 500;
}
.cabinet-page__breadcrumb a {
    color: rgba(15, 42, 74, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}
.cabinet-page__breadcrumb a:hover { color: var(--or-deep); }
.cabinet-page__breadcrumb-sep { color: var(--or); padding: 0 4px; }

.cabinet-page__hero-kicker {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: var(--or-deep);
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 500;
}
.cabinet-page__hero-kicker::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--or);
}
.cabinet-page__hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(32px, 6vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.022em;
    color: var(--bleu-deep);
    margin: 0 0 12px;
}
.cabinet-page__hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: var(--or-deep);
    margin: 0 0 24px;
}
.cabinet-page__hero-bio {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(26, 26, 26, 0.82);
    margin: 0 0 28px;
}
.cabinet-page__hero-bio p { margin: 0 0 14px; }
.cabinet-page__hero-bio p:last-child { margin-bottom: 0; }

.cabinet-page__ctas {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cabinet-page__cta {
    display: inline-block;
    text-align: center;
    padding: 14px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid var(--bleu-cpi);
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.cabinet-page__cta--primary {
    background: var(--bleu-cpi);
    color: var(--creme);
}
.cabinet-page__cta--primary:hover {
    background: var(--or-deep);
    border-color: var(--or-deep);
}
.cabinet-page__cta--primary.btn-disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: var(--bleu-cpi);
}
.cabinet-page__cta--primary.btn-disabled:hover {
    background: var(--or-deep);
    opacity: 0.75;
}
.cabinet-page__cta--secondary {
    background: transparent;
    color: var(--bleu-cpi);
}
.cabinet-page__cta--secondary:hover {
    background: var(--bleu-cpi);
    color: var(--creme);
}

/* --- Index helper (reuse) --- */
.cabinet-page__index {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: var(--or-deep);
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 24px;
}
.cabinet-page__index::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--or);
}
.cabinet-page__index--light { color: var(--or); }
.cabinet-page__index--light::before { background: var(--or); }

.cabinet-page__h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(28px, 5vw, 40px);
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: var(--bleu-cpi);
    margin: 0 0 40px;
    max-width: 22ch;
}
.cabinet-page__h2 em {
    font-style: italic;
    font-weight: 400;
    color: var(--or-deep);
}
.cabinet-page__h2--light { color: var(--creme); }
.cabinet-page__h2--light em { color: var(--or); }

/* --- Parcours timeline --- */
.cabinet-page__parcours {
    background: var(--creme);
    padding: 64px 24px;
}
.cabinet-page__parcours-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
/* Drusilla 21/05/2026 : forcer min-width: 0 sur tous les enfants grid
   pour qu'ils puissent retrecir en-dessous de leur min-content. Sinon
   un .nobreak long impose la largeur de la colonne (cf. fix base.css). */
.cabinet-page__parcours-aside,
.cabinet-page__timeline { min-width: 0; }
.cabinet-page__timeline {
    position: relative;
    margin: 0;
    padding: 0;
}
.cabinet-page__timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 12px;
    bottom: 12px;
    width: 1px;
    background: var(--or);
    opacity: 0.4;
}
.parcours-step {
    position: relative;
    padding-left: 48px;
    margin: 0 0 40px;
}
.parcours-step:last-child { margin-bottom: 0; }
.parcours-step::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--or);
}
.parcours-step__num {
    display: none; /* numero implicite via timeline dot */
}
.parcours-step__date {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--or-deep);
    margin: 0 0 6px;
}
.parcours-step__lieu {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-style: italic;
    font-size: 19px;
    line-height: 1.35;
    color: var(--bleu-cpi);
    margin: 0 0 12px;
}
.parcours-step__desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(26, 26, 26, 0.78);
    margin: 0;
    max-width: 60ch;
}

/* --- Engagements 3 cards bleu CPI --- */
.cabinet-page__engagements {
    background: var(--bleu-cpi);
    color: var(--creme);
    padding: 64px 24px;
}
.cabinet-page__engagements-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.cabinet-page__engagements-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
.engagement-card {
    border-top: 0.5px solid rgba(201, 169, 97, 0.35);
    padding-top: 28px;
}
.engagement-card__num {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 38px;
    color: var(--or-deep);
    line-height: 1;
    margin-bottom: 14px;
}
.engagement-card__title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.25;
    color: var(--or);
    margin: 0 0 14px;
}
.engagement-card__desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(248, 247, 242, 0.82);
    margin: 0;
}

/* --- Langues 5 cards --- */
.cabinet-page__langues {
    background: var(--creme);
    padding: 64px 24px;
}
.cabinet-page__langues-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.cabinet-page__langues-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.langue-card {
    background: rgba(201, 169, 97, 0.06);
    padding: 22px 18px;
    border-top: 1px solid var(--or);
    min-width: 0;            /* permet retrecissement sous min-content */
}
.langue-card * { min-width: 0; }    /* idem pour le contenu interne */
.langue-card__langue {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 20px;
    color: var(--bleu-cpi);
    margin: 0;
    line-height: 1.2;
}
.langue-card__niveau {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--or-deep);
    margin: 8px 0 14px;
}
.langue-card__contexte {
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    line-height: 1.6;
    color: rgba(26, 26, 26, 0.7);
    margin: 0;
}

/* ============================================================ */
/* LEGAL PAGE (mentions / politique conf — Phase 7)              */
/* ============================================================ */

/* --- Hero --- */
.legal-page__hero {
    background: var(--creme);
    padding: 96px 24px 48px;
}
.legal-page__hero-inner {
    max-width: 880px;
    margin: 0 auto;
}
.legal-page__breadcrumb {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(15, 42, 74, 0.5);
    margin-bottom: 48px;
    font-weight: 500;
}
.legal-page__breadcrumb a {
    color: rgba(15, 42, 74, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}
.legal-page__breadcrumb a:hover { color: var(--or-deep); }
.legal-page__breadcrumb-sep { color: var(--or); padding: 0 4px; }

.legal-page__kicker {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: var(--or-deep);
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 500;
}
.legal-page__kicker::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--or);
}
.legal-page__hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(36px, 8vw, 56px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--bleu-deep);
    margin: 0 0 24px;
}
.legal-page__hero-lead {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 17px;
    line-height: 1.6;
    color: rgba(26, 26, 26, 0.7);
    max-width: 60ch;
    margin: 0;
}
.legal-page__updated {
    margin-top: 24px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(15, 42, 74, 0.55);
    font-weight: 500;
}
.legal-page__updated-label { color: var(--or-deep); }
.legal-page__updated-sep { color: var(--or); padding: 0 4px; }
.legal-page__updated-date { color: rgba(15, 42, 74, 0.75); }

/* --- Main (contenu prose) --- */
.legal-page__main {
    background: var(--creme);
    padding: 48px 24px 96px;
}
.legal-page__main-inner {
    max-width: 720px;
    margin: 0 auto;
}
.legal-page .legal-page__content {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.75;
    color: rgba(26, 26, 26, 0.82);
}
.legal-page .legal-page__content > * + * { margin-top: 16px; }

/* Sections H2 separees par filets dorés — specificite boostee a (0,2,1)
   pour battre les inline styles Kadence customize (h2 spec 0,0,1)        */
.legal-page .legal-page__content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(22px, 3.5vw, 28px);
    line-height: 1.2;
    letter-spacing: -0.012em;
    color: var(--bleu-cpi);
    margin: 56px 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--or);   /* 0.5px -> 1px (sub-pixel pas fiable sur display non-retina) */
}
.legal-page .legal-page__content h2:first-child { margin-top: 0; }

.legal-page .legal-page__content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-style: italic;
    font-size: 18px;
    line-height: 1.3;
    color: var(--or-deep);
    margin: 28px 0 10px;
}

.legal-page .legal-page__content p { margin: 0; }
.legal-page .legal-page__content p + p { margin-top: 14px; }
.legal-page .legal-page__content strong { color: var(--bleu-cpi); font-weight: 600; }

.legal-page .legal-page__content ul,
.legal-page .legal-page__content ol {
    list-style: none;
    margin: 14px 0 14px 8px;
    padding: 0;
}
.legal-page .legal-page__content li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    line-height: 1.65;
}
.legal-page .legal-page__content li::before {
    content: '·';
    position: absolute;
    left: 4px;
    top: -6px;
    color: var(--or);
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
}

.legal-page .legal-page__content a {
    color: var(--or-deep);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;       /* 0.5px -> 1px */
    transition: color 0.2s;
}
.legal-page .legal-page__content a:hover { color: var(--bleu-cpi); }

/* Tables (politique de confidentialite — bases juridiques / durees) */
.legal-page .legal-page__content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
}
.legal-page .legal-page__content thead th {
    text-align: left;
    padding: 12px 14px;
    background: rgba(15, 42, 74, 0.06);
    color: var(--bleu-cpi);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--or);
}
.legal-page .legal-page__content tbody td {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(15, 42, 74, 0.10);
    vertical-align: top;
    line-height: 1.55;
}
.legal-page .legal-page__content tbody tr:last-child td { border-bottom: 0; }

/* Section rules — filets dorés decoratifs */
.legal-page .legal-page__content hr {
    border: none;
    height: 1px;
    background: var(--or);
    opacity: 0.5;
    width: 80px;
    margin: 32px auto;
}

/* Blocs adresse / meta data — bordure or visible 3px (vs 2px), filet
   plus marque pour matcher la sobriete editoriale DBCR. */
.legal-page .legal-page__meta-block {
    margin: 20px 0;
    padding: 18px 22px;
    background: rgba(15, 42, 74, 0.035);
    border-left: 3px solid var(--or);
}
.legal-page .legal-page__meta-block p { margin: 0 0 6px; }
.legal-page .legal-page__meta-block p:last-child { margin-bottom: 0; }
.legal-page .legal-page__meta-block strong { color: var(--bleu-cpi); }

/* ============================================================ */
/* PUBLICATIONS PAGE (page-template-publications — Phase 4.5bis) */
/* ============================================================ */

/* --- Hero --- */
.publications-page__hero {
    background: var(--creme);
    padding: 96px 24px 48px;
}
.publications-page__hero-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.publications-page__breadcrumb {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(15, 42, 74, 0.5);
    margin-bottom: 48px;
    font-weight: 500;
}
.publications-page__breadcrumb a {
    color: rgba(15, 42, 74, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}
.publications-page__breadcrumb a:hover { color: var(--or-deep); }
.publications-page__breadcrumb-sep { color: var(--or); padding: 0 4px; }

.publications-page__kicker {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: var(--or-deep);
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 500;
}
.publications-page__kicker::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--or);
}
.publications-page__hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(40px, 9vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--bleu-deep);
    margin: 0 0 24px;
    max-width: 18ch;
}
.publications-page__hero-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--or-deep);
}
.publications-page__hero-lead {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(26, 26, 26, 0.78);
    max-width: 60ch;
    margin: 0;
}

/* --- Section liste (publications + interventions partagent les memes styles) --- */
.publications-list,
.interventions-list {
    background: var(--creme);
    padding: 64px 24px;
}
.publications-list { border-top: 0.5px solid rgba(15, 42, 74, 0.08); }
.publications-list__inner,
.interventions-list__inner {
    max-width: 900px;
    margin: 0 auto;
}
.publications-list__index {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: var(--or-deep);
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 24px;
}
.publications-list__index::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--or);
}
.publications-list__title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(28px, 5vw, 40px);
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: var(--bleu-cpi);
    margin: 0 0 32px;
    max-width: 22ch;
}
.publications-list__title em {
    font-style: italic;
    font-weight: 400;
    color: var(--or-deep);
}

.publications-list__items,
.interventions-list__items {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* --- Item (publication / intervention partagent BEM root .publication-item) --- */
.publication-item {
    padding: 32px 0;
    border-top: 0.5px solid rgba(15, 42, 74, 0.12);
}
.publication-item:last-child {
    border-bottom: 0.5px solid rgba(15, 42, 74, 0.12);
}
.publication-item__year {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.04em;
    color: var(--or-deep);
    margin: 0 0 12px;
}
.publication-item__main { margin: 0; }
/* 2026-06-02 (relecture Drusilla) : badges/labels categoriels renforces
   en or-deep + font-weight 600 + tint or-soft sur fond pour lisibilite
   (le tint bleu CPI 0.06 desaturait visuellement le texte or-deep). */
.publication-item__badge {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(160, 127, 61, 0.10);   /* or-deep tint chaud */
    color: var(--or-deep);
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 12px;
    border-left: 2px solid var(--or);
}
.publication-item__title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: -0.008em;
    color: var(--bleu-cpi);
    margin: 0 0 8px;
}
.publication-item__subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 14px;
    color: var(--or-deep);
    line-height: 1.45;
    margin: 0 0 12px;
}
.publication-item__publication {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;                       /* 500 -> 600 lisibilite (Drusilla 2026-06-02) */
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--or-deep);
    margin: 0 0 12px;
}
.publication-item__authors {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.55;
    color: rgba(26, 26, 26, 0.62);
    margin: 0 0 16px;
}
.publication-item__desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(26, 26, 26, 0.78);
    margin: 0 0 16px;
    max-width: 720px;
}
.publication-item__links {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.publication-item__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--or-deep);
    text-decoration: none;
    border-bottom: 0.5px solid var(--or-deep);
    padding-bottom: 2px;
    transition: gap 0.3s ease, color 0.2s ease;
}
.publication-item__link::after {
    content: '→';
    transition: transform 0.3s ease;
}
.publication-item__link:hover {
    color: var(--bleu-cpi);
    gap: 12px;
}

/* ============================================================ */
/* PLACEHOLDER PAGE (Publications, FAQ — Phase 4.5)              */
/* ============================================================ */

/* --- Hero (cohérent avec contact-page__hero) --- */
.placeholder-page__hero {
    background: var(--creme);
    padding: 96px 24px 48px;
}
.placeholder-page__hero-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.placeholder-page__breadcrumb {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(15, 42, 74, 0.5);
    margin-bottom: 48px;
    font-weight: 500;
}
.placeholder-page__breadcrumb a {
    color: rgba(15, 42, 74, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}
.placeholder-page__breadcrumb a:hover { color: var(--or-deep); }
.placeholder-page__breadcrumb-sep { color: var(--or); padding: 0 4px; }

.placeholder-page__kicker {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: var(--or-deep);
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 500;
}
.placeholder-page__kicker::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--or);
}
.placeholder-page__title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(40px, 9vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--bleu-deep);
    margin: 0 0 24px;
    max-width: 18ch;
}
.placeholder-page__lead {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(26, 26, 26, 0.78);
    max-width: 60ch;
    margin: 0;
}

/* --- Main (centre, message + CTA retour) --- */
.placeholder-page__main {
    background: var(--creme);
    padding: 64px 24px 96px;
    text-align: center;
}
.placeholder-page__main-inner {
    max-width: 640px;
    margin: 0 auto;
}
.placeholder-page__divider {
    width: 32px;
    height: 1px;
    background: var(--or);
    opacity: 0.7;
    margin: 0 auto 32px;
}
.placeholder-page__h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(36px, 6vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.018em;
    color: var(--bleu-cpi);
    margin: 0 0 32px;
}
.placeholder-page__h2 em {
    font-style: italic;
    font-weight: 400;
    color: var(--or-deep);
}
.placeholder-page__content {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(26, 26, 26, 0.72);
    max-width: 540px;
    margin: 0 auto 48px;
}
.placeholder-page__content > * + * { margin-top: 18px; }
.placeholder-page__content p { margin: 0; }
.placeholder-page__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--bleu-cpi);
    text-decoration: none;
    border-bottom: 1px solid var(--or);
    padding-bottom: 6px;
    transition: gap 0.3s ease, color 0.2s ease;
}
.placeholder-page__cta:hover {
    gap: 16px;
    color: var(--or-deep);
}

/* ============================================================ */
/* CONTACT PAGE (page-contact.php — Phase 4.6)                   */
/* ============================================================ */

/* --- Hero --- */
.contact-page__hero {
    background: var(--creme);
    padding: 96px 24px 48px;
}
.contact-page__hero-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.contact-page__breadcrumb {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(15, 42, 74, 0.5);
    margin-bottom: 48px;
    font-weight: 500;
}
.contact-page__breadcrumb a {
    color: rgba(15, 42, 74, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}
.contact-page__breadcrumb a:hover { color: var(--or-deep); }
.contact-page__breadcrumb-sep { color: var(--or); padding: 0 4px; }

.contact-page__kicker {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: var(--or-deep);
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 500;
}
.contact-page__kicker::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--or);
}
.contact-page__hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(40px, 9vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--bleu-deep);
    margin: 0 0 24px;
    max-width: 18ch;
}
.contact-page__hero-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--or-deep);
}
.contact-page__hero-lead {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(26, 26, 26, 0.78);
    max-width: 60ch;
    margin: 0;
}

/* --- Main split form/sidebar --- */
.contact-page__main {
    background: var(--creme);
    padding: 32px 24px 96px;
}
.contact-page__main-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
}

/* Index helper (réutilisé form + sidebar) */
.contact-page__index {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: var(--or-deep);
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 24px;
}
.contact-page__index::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--or);
}

.contact-page__h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(28px, 5vw, 36px);
    line-height: 1.15;
    letter-spacing: -0.012em;
    color: var(--bleu-cpi);
    margin: 0 0 20px;
    max-width: 22ch;
}
.contact-page__h2 em {
    font-style: italic;
    font-weight: 400;
    color: var(--or-deep);
}

.contact-page__form-intro {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(26, 26, 26, 0.7);
    margin: 0 0 32px;
}

/* --- Feedback --- */
.contact-page__feedback {
    margin: 0 0 24px;
    padding: 20px 24px;
    border-left: 2px solid var(--or);
    background: rgba(201, 169, 97, 0.08);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 16px;
    line-height: 1.5;
    color: var(--bleu-deep);
}
.contact-page__feedback--ok {
    border-left-color: var(--or-deep);
    background: rgba(201, 169, 97, 0.10);
}
.contact-page__feedback--err {
    border-left-color: #C04A4A;
    background: rgba(192, 74, 74, 0.06);
    color: #6B2828;
}

/* --- Form natif --- */
.contact-page__form { margin: 0; }
.contact-page__hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.contact-page__field {
    margin-bottom: 24px;
}
.contact-page__field label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--or-deep);
    margin-bottom: 8px;
}
.contact-page__required { color: var(--or); }
.contact-page__field input[type="text"],
.contact-page__field input[type="email"],
.contact-page__field input[type="tel"],
.contact-page__field select,
.contact-page__field textarea {
    width: 100%;
    background: transparent;
    border: 0.5px solid rgba(15, 42, 74, 0.25);
    color: var(--bleu-deep);
    padding: 14px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    transition: border-color 0.3s ease;
}
.contact-page__field textarea {
    resize: vertical;
    min-height: 140px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    line-height: 1.6;
}
.contact-page__field input:focus,
.contact-page__field select:focus,
.contact-page__field textarea:focus {
    outline: none;
    border-color: var(--or);
}
.contact-page__field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M0 0l6 8 6-8z' fill='%23A07F3D'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 10px;
    padding-right: 40px;
}
.contact-page__hint {
    display: block;
    margin-top: 6px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 13px;
    color: rgba(26, 26, 26, 0.55);
    text-transform: none;
    letter-spacing: normal;
}
.contact-page__field--consent label,
.contact-page__consent {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    line-height: 1.5;
    color: rgba(26, 26, 26, 0.7);
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    cursor: pointer;
}
.contact-page__consent input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--or);
}
.contact-page__submit {
    display: inline-block;
    background: var(--bleu-cpi);
    color: var(--creme);
    border: 1px solid var(--bleu-cpi);
    padding: 16px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    margin-top: 8px;
    width: 100%;
}
.contact-page__submit:hover {
    background: var(--or-deep);
    border-color: var(--or-deep);
    color: var(--creme);
}

/* --- Sidebar coordonnees + map --- */
.contact-page__sidebar { margin: 0; }
.contact-page__address {
    margin: 0 0 32px;
    padding-bottom: 24px;
    border-bottom: 0.5px solid rgba(15, 42, 74, 0.12);
}
.contact-page__address-line {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.55;
    color: var(--bleu-cpi);
    margin: 0;
}
.contact-page__channels {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}
.contact-page__channel {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 16px;
    align-items: baseline;
}
.contact-page__channel-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--or-deep);
    font-weight: 500;
}
.contact-page__channel-value {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--bleu-deep);
    text-decoration: none;
    transition: color 0.2s;
}
a.contact-page__channel-value:hover { color: var(--or-deep); }

.contact-page__map {
    margin-top: 24px;
    border: 0.5px solid rgba(15, 42, 74, 0.15);
    overflow: hidden;
}
.contact-page__map iframe {
    display: block;
    width: 100%;
    border: 0;
    filter: saturate(0.85);
}
.contact-page__map-link {
    display: block;
    padding: 12px 16px;
    background: rgba(15, 42, 74, 0.04);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--or-deep);
    text-decoration: none;
    text-align: right;
    transition: background 0.2s;
}
.contact-page__map-link:hover { background: rgba(201, 169, 97, 0.10); }

/* ============================================================ */
/* FOOTER NEWSLETTER (provisoire 10/05/2026 — handler local)     */
/* ============================================================ */
.footer__newsletter {
    padding: 48px 24px;
    border-top: 0.5px solid rgba(248, 247, 242, 0.1);
    border-bottom: 0.5px solid rgba(248, 247, 242, 0.1);
    margin-bottom: 32px;
}
.footer__newsletter-inner {
    max-width: 720px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
.footer__newsletter-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 22px;
    letter-spacing: -0.005em;
    color: var(--creme);
    margin: 0 0 8px;
}
.footer__newsletter-lead {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(248, 247, 242, 0.6);
    margin: 0;
}
.footer__newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer__newsletter-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer__newsletter-field input[type="email"] {
    background: transparent;
    border: 0.5px solid rgba(248, 247, 242, 0.25);
    color: var(--creme);
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    width: 100%;
    transition: border-color 0.3s ease;
}
.footer__newsletter-field input[type="email"]:focus {
    outline: none;
    border-color: var(--or);
}
.footer__newsletter-field input[type="email"]::placeholder {
    color: rgba(248, 247, 242, 0.4);
}
.footer__newsletter-btn {
    background: var(--or);
    color: var(--bleu-cpi);
    border: 1px solid var(--or);
    padding: 12px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    width: 100%;
}
.footer__newsletter-btn:hover {
    background: var(--or-deep);
    border-color: var(--or-deep);
    color: var(--creme);
}
.footer__newsletter-consent {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 11px;
    line-height: 1.5;
    color: rgba(248, 247, 242, 0.5);
    cursor: pointer;
}
.footer__newsletter-consent input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--or);
}
.footer__newsletter-feedback {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 13px;
    color: var(--or);
    min-height: 20px;
    margin: 0;
}

@media (min-width: 768px) {
    .footer__newsletter-inner {
        grid-template-columns: 5fr 7fr;
        gap: 48px;
        align-items: center;
        max-width: 960px;
    }
    .footer__newsletter-field {
        flex-direction: row;
    }
    .footer__newsletter-field input[type="email"] {
        flex: 1;
    }
    .footer__newsletter-btn {
        width: auto;
        white-space: nowrap;
    }
}

@media (min-width: 1024px) {
    .footer__newsletter {
        padding: 64px 48px;
    }
}

/* ============================================================ */
/* FOOTER                                                        */
/* ============================================================ */
.footer {
    background: var(--bleu-deep);
    color: rgba(248, 247, 242, 0.65);
    padding: 64px 0 32px;
    position: relative;
}
.footer__signoff {
    text-align: center;
    padding-bottom: 48px;
    margin-bottom: 48px;
    border-bottom: 0.5px solid rgba(248, 247, 242, 0.1);
    position: relative;
}
.footer__signoff::before {
    content: '';
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 32px;
    background: var(--or);
    opacity: 0.5;
}
.footer__signoff-line {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-style: italic;
    font-size: 18px;
    line-height: 1.4;
    color: rgba(248, 247, 242, 0.6);
    letter-spacing: -0.005em;
    max-width: 320px;
    margin: 0 auto;
    padding: 0 24px;
}
.footer__signoff-line em { color: var(--or); font-weight: 400; font-style: italic; }

.footer__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}
.footer__top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 0.5px solid rgba(248, 247, 242, 0.1);
}
.footer__brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}
.footer__brand svg {
    width: 56px;
    height: 56px;
    display: block;
    flex-shrink: 0;
}
.footer__brand-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    line-height: 1;
}
.footer__brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.32em;
    color: var(--creme);
    line-height: 1;
}
.footer__brand-sub {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--or);
    text-transform: uppercase;
    line-height: 1;
}
.footer__address {
    font-size: 13px;
    line-height: 1.85;
    color: rgba(248, 247, 242, 0.6);
    margin-bottom: 18px;
    max-width: 280px;
}
.footer__siret {
    font-size: 11px;
    letter-spacing: 0.1em;
    color: rgba(248, 247, 242, 0.4);
    font-feature-settings: 'tnum';
}
/* h3/h4 footer columns — selector elargi pour heading-order WCAG (h2->h3) */
.footer__col h3,
.footer__col h4,
.footer__col-h {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--or);
    font-weight: 500;
    margin: 0 0 18px;
    line-height: 1.4;
}
.footer__col a,
.footer__col p {
    display: block;
    font-size: 13px;
    line-height: 2.1;
    color: rgba(248, 247, 242, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}
.footer__col a:hover { color: var(--creme); }
/* Lien Publications/FAQ : clickable mais signale "bientôt" via pseudo ::after */
.footer__col a.footer__col-soon { color: rgba(248, 247, 242, 0.55); }
.footer__col a.footer__col-soon:hover { color: var(--or); }
.footer__col a.footer__col-soon::after {
    content: ' · bientôt';
    margin-left: 4px;
    font-style: italic;
    color: rgba(248, 247, 242, 0.35);
    font-size: 11px;
    letter-spacing: 0.05em;
}
.footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 24px;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: rgba(248, 247, 242, 0.4);
    gap: 12px;
}
.footer__legal a {
    color: rgba(248, 247, 242, 0.5);
    text-decoration: none;
    margin: 0 12px;
    transition: color 0.2s;
}
.footer__legal a:hover { color: var(--or); }

/* ============================================================ */
/* COMPLIANZ GDPR — DBCR override v2 compact (Phase 8+ refacto)  */
/* Width 640 + flex-wrap boutons + backdrop blur + tailles -2px. */
/* !important : CSS Complianz haute specificite, scope strict.   */
/* Double-selector .cmplz-* + .cc-window (legacy compat).        */
/* ============================================================ */

/* Banniere compacte centree */
.cmplz-cookiebanner,
.cc-window,
.cmplz-bottom-center .cmplz-cookiebanner {
    max-width: 640px !important;
    width: calc(100% - 32px) !important;
    margin: 0 auto !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    right: auto !important;
    padding: 16px 20px !important;
    bottom: 16px !important;
    border-radius: 0 !important;
    border: none !important;
    border-top: 1px solid var(--or) !important;
    box-shadow: 0 8px 32px rgba(15, 42, 74, 0.12) !important;
    background: rgba(248, 247, 242, 0.98) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    font-family: 'Inter', sans-serif !important;
    color: var(--bleu-cpi) !important;
}

/* Titre compact */
.cmplz-cookiebanner .cmplz-title,
.cc-window .cc-message-title {
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 400 !important;
    font-size: 15px !important;
    letter-spacing: -0.005em !important;
    color: var(--bleu-cpi) !important;
    margin: 0 0 4px 0 !important;
    line-height: 1.3 !important;
}

/* Message compact */
.cmplz-cookiebanner .cmplz-message,
.cc-window .cc-message {
    font-family: 'Inter', sans-serif !important;
    font-size: 12px !important;
    line-height: 1.4 !important;
    color: var(--charbon-soft) !important;
    margin: 0 0 10px 0 !important;
}

/* Container boutons avec WRAP (fix overflow) */
.cmplz-cookiebanner .cmplz-buttons,
.cc-window .cc-compliance {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    justify-content: flex-start !important;
    align-items: center !important;
    margin: 0 !important;
}

/* Boutons globaux compacts */
.cmplz-cookiebanner button,
.cc-window button {
    font-family: 'Inter', sans-serif !important;
    font-size: 10px !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    font-weight: 500 !important;
    padding: 8px 16px !important;
    border-radius: 0 !important;
    cursor: pointer !important;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease !important;
    white-space: nowrap !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
    min-height: 32px !important;
}

/* Accept button */
.cmplz-cookiebanner .cmplz-accept,
.cc-window .cc-allow {
    background: var(--bleu-cpi) !important;
    color: var(--creme) !important;
    border: 1px solid var(--bleu-cpi) !important;
}
.cmplz-cookiebanner .cmplz-accept:hover,
.cc-window .cc-allow:hover {
    background: var(--or-deep) !important;
    border-color: var(--or-deep) !important;
    color: var(--creme) !important;
}

/* Deny button */
.cmplz-cookiebanner .cmplz-deny,
.cc-window .cc-deny {
    background: transparent !important;
    color: var(--bleu-cpi) !important;
    border: 1px solid var(--bleu-cpi) !important;
}
.cmplz-cookiebanner .cmplz-deny:hover,
.cc-window .cc-deny:hover {
    background: var(--bleu-cpi) !important;
    color: var(--creme) !important;
}

/* Customize / View preferences — link style (pas bouton) */
.cmplz-cookiebanner .cmplz-view-preferences,
.cmplz-cookiebanner .cmplz-categories,
.cmplz-cookiebanner .cmplz-manage-options {
    background: transparent !important;
    color: var(--or-deep) !important;
    border: none !important;
    padding: 8px 4px !important;
    text-decoration: underline !important;
    text-underline-offset: 3px !important;
    font-size: 10px !important;
    letter-spacing: 0.14em !important;
    min-height: auto !important;
}
.cmplz-cookiebanner .cmplz-view-preferences:hover,
.cmplz-cookiebanner .cmplz-categories:hover,
.cmplz-cookiebanner .cmplz-manage-options:hover {
    color: var(--bleu-cpi) !important;
}

/* Liens internes (vers Politique conf) */
.cmplz-cookiebanner a {
    color: var(--or-deep) !important;
    text-decoration: underline !important;
    text-underline-offset: 2px !important;
    font-size: 11px !important;
}
.cmplz-cookiebanner a:hover {
    color: var(--bleu-cpi) !important;
}

/* Mobile compact ≤767px : full-width gutter 12px, boutons gardent
   inline-wrap (pas full-width) pour rester sobre et peu intrusif. */
@media (max-width: 767px) {
    .cmplz-cookiebanner,
    .cc-window {
        max-width: calc(100% - 24px) !important;
        width: calc(100% - 24px) !important;
        left: 12px !important;
        right: 12px !important;
        transform: none !important;
        padding: 14px 16px !important;
        bottom: 12px !important;
    }
    .cmplz-cookiebanner .cmplz-title   { font-size: 14px !important; }
    .cmplz-cookiebanner .cmplz-message { font-size: 11px !important; line-height: 1.4 !important; }
    .cmplz-cookiebanner button {
        font-size: 10px !important;
        padding: 8px 12px !important;
    }
    .cmplz-cookiebanner .cmplz-buttons { gap: 6px !important; }
}
