/* ============================================================
   PILLAR — Feuille de style globale
   Palette navy / sable / cream · serif Nanum Myeongjo + Playfair
   Une seule source pour toutes les pages du site.
   ============================================================ */

/* ============================================================
   1. Variables
   ============================================================ */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #ffffff;
    --accent-color: #d4af37;
    --navy: #1e232b;
    --sable: #cab6a1;
    --cream: #e0dad2;
    --slate: #454a53;
    --grey-soft: #7e8186;
    --text-color: #444444;
    --bg-light: #fafafa;

    --font-heading: 'Bodoni Moda', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-serif-heavy: 'Bodoni Moda', serif;
    --font-roboto: 'Roboto', sans-serif;

    --spacing-lg: 120px;
    --spacing-md: 60px;
}

/* ============================================================
   2. Reset & base
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { overflow-x: hidden; scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--secondary-color);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 400;
}

h2 {
    font-size: 30px;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

.text-center {
    text-align: center;
}

::selection { background: var(--sable); color: var(--navy); }

/* ============================================================
   3. Animation reveal au défilement
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}

/* ============================================================
   4. En-tête / Navigation
   ============================================================ */
.site-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 22px 5%;
    background: rgba(255, 255, 255, 0.98);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(30, 35, 43, 0.08);
    backdrop-filter: blur(8px);
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    gap: 30px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.header__nav ul {
    list-style: none;
    display: flex;
    gap: 36px;
}

.header__nav a {
    color: var(--primary-color);
    font-family: var(--font-body);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    padding: 6px 0;
    position: relative;
    transition: color 0.3s;
}

.header__nav a::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 1px;
    background: var(--sable);
    transition: width 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}
.header__nav a:hover::after,
.header__nav a.is-active::after { width: 100%; }
.header__nav a:hover { color: var(--sable); }

/* Bouton Postuler dans le menu */
.header__cta {
    display: inline-block;
    padding: 10px 26px;
    background: var(--navy);
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: background 0.3s, color 0.3s;
}
.header__cta:hover {
    background: var(--sable);
    color: var(--navy);
}

/* Hamburger (mobile) */
.header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 6px;
}
.header__burger span {
    display: block;
    width: 26px;
    height: 1.5px;
    background: var(--primary-color);
    transition: 0.35s;
}

/* ============================================================
   5. Menu mobile (overlay plein écran)
   ============================================================ */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s, visibility 0.45s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 3px;
}
.mobile-menu a:hover { color: var(--sable); }
.mobile-menu__cta {
    margin-top: 1rem;
    padding: 12px 32px;
    background: var(--sable);
    color: var(--navy);
    font-size: 0.9rem;
}
.mobile-menu__close {
    position: absolute;
    top: 22px; right: 28px;
    background: none;
    border: 0;
    font-size: 2.2rem;
    color: var(--cream);
    cursor: pointer;
    line-height: 1;
}

/* ============================================================
   6. Hero — page d'accueil (photo + capitales + losange)
   ============================================================ */
#hero {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 110vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 200px 1.5rem 20vw;
    background: url("../img/hero-bg.jpg") center/cover no-repeat;
}
#hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(141, 101, 97, 0.6) 0%,
        rgba(171, 104, 53, 0.75) 15%,
        rgba(101, 51, 17, 0.85) 45%,
        rgba(37, 20, 0, 0.95) 80%
    );
}
#hero .hero__container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: center;
}

.hero__eyebrow {
    margin: 0 0 1.5rem;
    font-family: var(--font-body);
    color: #e0dad2;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 400;
}

#hero h1 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 6vw, 5rem);
    line-height: 1.1;
    color: var(--sable);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 300;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.2rem auto 3.5rem;
}
.divider__line {
    flex: 0 0 70px;
    height: 1px;
    background: rgba(224, 218, 210, 0.6);
}
.divider__symbol {
    color: #e0dad2;
    font-size: 1.1rem;
    line-height: 1;
    flex-shrink: 0;
    opacity: 0.85;
}

.hero__text {
    margin: 100px auto 50px;
    max-width: 800px;
    font-family: var(--font-roboto);
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.4em;
    color: #FFFFFF;
    text-align: center;
}

/* ============================================================
   7. Hero interne — pages secondaires (sans photo plein écran)
   ============================================================ */
.pagehero {
    position: relative;
    padding: 12rem 1.5rem 4rem;
    background: var(--navy);
    color: var(--cream);
    text-align: center;
    overflow: hidden;
}
.pagehero--architectes {
    background:
        linear-gradient(
            180deg,
            rgba(141, 101, 97, 0.6) 0%,
            rgba(171, 104, 53, 0.75) 15%,
            rgba(101, 51, 17, 0.85) 45%,
            rgba(37, 20, 0, 0.95) 80%
        ),
        url("../img/hero-bg_architectes.jpg") center/cover no-repeat;
}

.pagehero__inner {
    max-width: 900px;
    margin: 10px auto;
    position: relative;
    z-index: 2;
    padding-top: 20px; /* marge minimale garantie entre le haut du hero et le sur-titre (collapse-proof) */
    padding-bottom: 30px;
}
.pagehero__eyebrow {
    font-family: var(--font-body);
    color: var(--sable);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 1.4rem;
}
.pagehero h1 {
    font-family: var(--font-serif-heavy);
    font-weight: 700;
    font-size: clamp(2.6rem, 5.5vw, 4rem);
    color: var(--sable);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.15;
    margin: 0;
}
.pagehero__sub {
    margin-top: 1.6rem;
    font-family: var(--font-roboto);
    font-size: 18px;
    line-height: 1.6;
    color: var(--cream);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   8. Services — triptyque de trois tuiles colorées
   ============================================================ */
.services {
    background:
        linear-gradient(rgba(224, 218, 210, 0.80), rgba(224, 218, 210, 0.80)),
        url("../img/bg-texture-sable.jpg") center/cover no-repeat;
    padding-top: -8vw;
    padding-bottom: var(--spacing-lg);
    margin-top: -12vw;
    position: relative;
    z-index: 2;
}
.services__divider {
    width: calc(100% - 500px);
    max-width: 800px;
    height: 2px;
    background-color: #563014;
    border: none;
    margin: 80px auto 0;
}
.services__intro {
    margin: 30px auto 200px;
    padding: 0 100px;
    max-width: 1100px;
    font-family: var(--font-roboto);
    font-size: 16px;
    line-height: 1.8em;
    text-align: center;
    color: var(--navy);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
}
.card {
    padding: 60px 30px;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
}
.card--dark {
    background-image:
        linear-gradient(rgba(73,81,100,0.9), rgba(73,81,100,0.9)),
        url('../img/paper-texture.jpg');
}
.card--beige {
    background-image:
        linear-gradient(rgba(202,182,161,0.9), rgba(202,182,161,0.9)),
        url('../img/paper-texture.jpg');
}
.card--sage {
    background-image:
        linear-gradient(rgba(153,148,132,0.9), rgba(153,148,132,0.9)),
        url('../img/paper-texture.jpg');
}
.card__separator {
    display: block;
    width: 130px;
    margin: 0 auto 30px;
}
.card h3 {
    font-family: var(--font-serif-heavy);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 26px;
    line-height: 1.4em;
    color: #FFFFFF;
    margin: 0 0 24px;
}
.card p {
    font-family: var(--font-roboto);
    font-size: 16px;
    line-height: 1.8em;
    text-align: center;
    margin: 0;
}
.card--dark p,
.card--sage p  { color: #FFFFFF; }
.card--beige p { color: #000000; }

/* ============================================================
   9. About — Le pilotage privé (gradient sable/slate)
   ============================================================ */
.about {
    background-color: var(--navy);
    background-image: linear-gradient(
        to bottom,
        var(--slate) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    padding-bottom: 120px;
}
.about__row {
    max-width: 1080px;
    margin: -250px auto 0;
    padding: 0 4%;
    position: relative;
    z-index: 3;
}
.about__img-wrapper {
    position: relative;
    width: 90%;
    margin: 0 auto;
}
.about__img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(141, 101, 97, 0.0) 0%,
        rgba(171, 104, 53, 0.10) 35%,
        rgba(101, 51, 17, 0.35) 65%,
        rgba(37, 20, 0, 0.85) 90%
    );
}
.about__img {
    width: 100%;
    display: block;
}
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 4%;
    gap: 60px;
}
.about__left { padding-top: 6vw; }
.about__left h2 {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 400;
    line-height: 1.15;
    color: var(--sable);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.about__left .about__subtitle {
    font-family: var(--font-roboto);
    font-size: 18px;
    color: var(--grey-soft);
    line-height: 1.6;
    font-weight: 300;
}
.about__right { padding-top: 2vw; }
.about__right h3 {
    font-family: var(--font-serif-heavy);
    font-weight: 700;
    font-size: 26px;
    text-transform: uppercase;
    color: #ffffff;
    margin: 40px 0 14px;
    line-height: 1.4em;
}
.about__right h3:first-child { margin-top: 0; }
.about__right p,
.about__right p strong {
    font-family: var(--font-roboto);
    font-size: 16px;
    line-height: 1.8em;
    color: #ffffff;
    font-weight: 500;
}

/* ============================================================
   10. Features — Deux parcours (2 photos + texte)
   ============================================================ */
.features {
    background-color: var(--navy);
    overflow: hidden;
}
.features__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1400px;
    margin: 0 auto;
}
.features__photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.features__photo-a { padding-top: 60px; }
.features__photo-a--sandrine { margin-top: 50px; }
.features__photo-b--sandrine { margin-top: 50px; }
.features__photo-b picture { display: block; }
.features__photo-a img,
.features__photo-b img {
    width: 100%;
    display: block;
    object-fit: cover;
}
.features__text { padding: 90px 7% 80px 5%; }
.features__text h2 {
    font-family: var(--font-serif-heavy);
    font-weight: 700;
    font-size: 30px;
    text-transform: uppercase;
    line-height: 1.2em;
    color: var(--sable);
    margin-bottom: 0;
}
.features__subtitle {
    display: block;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 22px;
    color: var(--grey-soft);
    margin-top: -6px;
    margin-bottom: 47px;
    line-height: 1.4;
}
.features__separator {
    display: block;
    width: 65px;
    margin-bottom: 30px;
}
.features__text p,
.features__text p strong {
    font-family: var(--font-roboto);
    font-size: 16px;
    line-height: 1.8em;
    color: #ffffff;
    margin-bottom: 1em;
}
.features__text p:last-child { margin-bottom: 0; }

/* ============================================================
   11. CTA — Une présence sans faille (texte + image)
   ============================================================ */
.cta {
    background-color: var(--navy);
}
.cta__grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
}
.cta__text {
    padding: 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.cta__text h2 {
    font-family: var(--font-serif-heavy);
    font-weight: 700;
    font-size: 30px;
    text-transform: uppercase;
    line-height: 1.2em;
    color: var(--sable);
    margin-bottom: 0;
}
.cta__separator {
    display: block;
    width: 65px;
    margin: 30px 0;
}
.cta__text p {
    font-family: var(--font-roboto);
    font-size: 16px;
    line-height: 1.8em;
    color: #ffffff;
}
.cta__image {
    background-image: url('../img/coaching_mentorat.jpg');
    background-size: cover;
    background-position: center;
    min-height: 420px;
}

/* ============================================================
   12. Garanties — sur navy, sans encarts
   ============================================================ */
.garanties {
    background-color: var(--navy);
    padding: 80px 0;
}
.garanties__header {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 5%;
    text-align: center;
}
.garanties__header h2 {
    font-family: var(--font-serif-heavy);
    font-weight: 700;
    font-size: 30px;
    text-transform: uppercase;
    line-height: 1.2em;
    color: var(--sable);
    margin-bottom: 0;
}
.garanties__intro {
    font-family: var(--font-roboto);
    font-size: 16px;
    line-height: 1.8em;
    color: var(--cream);
    margin: 30px 100px 0;
    text-align: center;
}
.garanties__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1080px;
    margin: 60px auto 0;
    padding: 0 5%;
    gap: 40px;
}
.garanties__item h5 {
    font-family: var(--font-roboto);
    font-weight: 500;
    font-size: 20px;
    text-transform: uppercase;
    line-height: 1.4em;
    color: var(--sable);
    margin-bottom: 10px;
}
.garanties__item p {
    font-family: var(--font-roboto);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8em;
    color: #ffffff;
    margin-bottom: 1em;
}
.garanties__item p:last-child { margin-bottom: 0; }
.garanties__footer-note {
    font-family: var(--font-roboto);
    font-size: 16px;
    line-height: 1.8em;
    color: var(--cream);
    text-align: center;
    max-width: 1080px;
    margin: 60px auto 0;
    padding: 0 calc(5% + 100px);
}

/* ============================================================
   13. Prose — sections texte (pages légales, manifestes)
   ============================================================ */
.section {
    padding: 100px 5%;
    max-width: 1080px;
    margin: 0 auto;
}
.section--navy {
    background: var(--navy);
    color: var(--cream);
    padding: 100px 0;
}
.section--texture-sable {
    background:
        linear-gradient(rgba(224, 218, 210, 0.80), rgba(224, 218, 210, 0.80)),
        url("../img/bg-texture-sable.jpg") center/cover no-repeat;
    color: var(--navy);
}
.section--navy > .wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 5%;
}
.section--cream {
    background: var(--cream);
    padding: 100px 0;
}
.section--cream > .wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 5%;
}
@media (max-width: 980px) {
    .section--cream,
    .section--navy { padding: 70px 0; }
}

.prose {
    max-width: 760px;
    margin: 0 auto;
    font-family: var(--font-roboto);
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-color);
}
.section--navy .prose { color: var(--cream); }
.section--navy .prose strong { color: #ffffff; }
.prose p { margin-bottom: 1.3em; }
.prose h2 {
    font-family: var(--font-serif-heavy);
    font-weight: 700;
    font-size: 30px;
    text-transform: uppercase;
    color: var(--sable);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.prose h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--navy);
    margin: 2rem 0 0.8rem;
    font-weight: 400;
}
.section--navy .prose h3 { color: var(--sable); }

.section__head {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}
.section__head h2 {
    font-family: var(--font-serif-heavy);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 48px);
    text-transform: uppercase;
    line-height: 1.2;
    color: var(--sable);
    margin-bottom: 1.2rem;
}
.section--cream .section__head h2 { color: var(--navy); }
.section__head p {
    font-family: var(--font-roboto);
    font-size: 17px;
    line-height: 1.7;
    color: var(--grey-soft);
}
.section--navy .section__head p { color: var(--cream); }

/* Mini-séparateur losange */
.diamond {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.4rem auto;
    color: var(--sable);
    width: max-content;
}
.diamond::before, .diamond::after {
    content: "";
    width: 50px;
    height: 1px;
    background: currentColor;
}
.diamond span {
    font-size: 1rem;
    line-height: 1;
}

/* ============================================================
   14. Leviers (page Approche) — 2 colonnes
   ============================================================ */
.leviers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 5%;
}
.levier {
    padding: 40px 30px;
    background: rgba(202, 182, 161, 0.08);
    border-top: 2px solid var(--sable);
}
.section--navy .levier { background: rgba(202, 182, 161, 0.08); }
.levier__num {
    font-family: var(--font-heading);
    color: var(--sable);
    font-size: 1.2rem;
    letter-spacing: 0.25em;
}
.levier h3 {
    font-family: var(--font-serif-heavy);
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
    color: var(--sable);
    margin: 0.8rem 0 1rem;
}
.levier p {
    font-family: var(--font-roboto);
    font-size: 15px;
    line-height: 1.7;
    color: var(--cream);
}

/* ============================================================
   15. Bio (page Architectes)
   ============================================================ */
.bio {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5% 80px;
}
.bio--reverse .bio__portrait { order: 2; }
.bio__portrait {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}
.bio__portrait--sandrine {
    width: 90%;
}
.bio__placeholder {
    width: 100%;
    aspect-ratio: 4 / 5;
    background: linear-gradient(160deg, var(--slate), #2a3138);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sable);
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5rem);
    letter-spacing: 0.1em;
}
.bio__role {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.78rem;
    color: var(--sable);
    margin-bottom: 0.5rem;
}
.bio h2 {
    font-family: var(--font-serif-heavy);
    font-weight: 700;
    font-size: 36px;
    text-transform: uppercase;
    color: var(--sable);
    line-height: 1.2;
    margin-bottom: 1.4rem;
}
.bio p,
.bio p strong {
    font-family: var(--font-roboto);
    font-size: 15px;
    line-height: 1.8;
    color: var(--cream);
    margin-bottom: 1em;
}
.bio p strong { color: #ffffff; }
.bio__quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--sable);
    border-left: 2px solid var(--sable);
    padding-left: 1.2rem;
    margin: 1.5rem 0 !important;
}
.bio__disciplines {
    margin-top: 1.5rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(202, 182, 161, 0.3);
    font-size: 14px !important;
    color: var(--cream) !important;
}
.bio__disciplines strong { color: var(--sable) !important; }

/* ============================================================
   16. Articles (page Observatoire)
   ============================================================ */
.journal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}
.article-card {
    padding: 50px 35px;
    background-image:
        linear-gradient(rgba(73,81,100,0.92), rgba(73,81,100,0.92)),
        url('../img/paper-texture.jpg');
    background-size: cover;
    color: var(--cream);
    display: flex;
    flex-direction: column;
}
.article-card__tag {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--sable);
    margin-bottom: 1.2rem;
}
.article-card h3 {
    font-family: var(--font-serif-heavy);
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.35;
    margin-bottom: 1rem;
}
.article-card p {
    font-family: var(--font-roboto);
    font-size: 14px;
    line-height: 1.7;
    color: var(--cream);
    flex-grow: 1;
}
.article-card__foot {
    margin-top: 1.4rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(202, 182, 161, 0.25);
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sable);
}

/* ============================================================
   17. Process steps (page Postuler)
   ============================================================ */
.process {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 5%;
}
.proc-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    padding-bottom: 2.6rem;
    position: relative;
}
.proc-step:last-child { padding-bottom: 0; }
.proc-step__circle {
    width: 56px;
    height: 56px;
    border: 1px solid var(--sable);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--sable);
    background: var(--navy);
    position: relative;
    z-index: 1;
}
.proc-step:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 27px;
    top: 56px;
    bottom: 0;
    width: 1px;
    background: rgba(202, 182, 161, 0.3);
}
.proc-step h3 {
    font-family: var(--font-serif-heavy);
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
    color: var(--sable);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}
.proc-step p {
    font-family: var(--font-roboto);
    font-size: 15px;
    line-height: 1.7;
    color: var(--cream);
}

/* ============================================================
   18. Formulaire (page Postuler)
   ============================================================ */
.form {
    max-width: 720px;
    margin: 0 auto;
    background: rgba(202, 182, 161, 0.04);
    border: 1px solid rgba(202, 182, 161, 0.2);
    padding: 50px;
}
.field { margin-bottom: 1.5rem; }
.field label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--sable);
    margin-bottom: 0.5rem;
}
.field input,
.field textarea,
.field select {
    width: 100%;
    font-family: var(--font-roboto);
    font-size: 15px;
    color: var(--cream);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(202, 182, 161, 0.3);
    padding: 12px 14px;
    transition: border-color 0.3s;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(224, 218, 210, 0.4); }
.field input:focus,
.field textarea:focus,
.field select:focus {
    outline: none;
    border-color: var(--sable);
}
.field textarea { min-height: 130px; resize: vertical; }
.field--row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}
.field--hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.form__note {
    font-family: var(--font-roboto);
    font-size: 13px;
    color: rgba(224, 218, 210, 0.6);
    margin: 1.5rem 0;
}
.form button {
    display: block;
    margin: 2.6rem auto 0;
    min-width: 340px;
    padding: 18px 56px;
    background: var(--sable);
    color: var(--navy);
    border: 1px solid var(--sable);
    font-family: var(--font-body);
    font-size: 0.82rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}
.form button:hover {
    background: transparent;
    color: var(--sable);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}
.form button:active {
    transform: translateY(0);
    box-shadow: none;
}
@media (max-width: 600px) {
    .form button {
        width: 100%;
        min-width: 0;
        padding: 16px 24px;
        letter-spacing: 0.18em;
    }

    /* Mobile uniquement : masque la 2e photo Sandrine + le doublon sandrine-preto-pillar */
    .features__photo-b--sandrine,
    .features__photo-a--sandrine { display: none; }
}
.field--checkbox {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}
.field--checkbox input {
    width: auto;
    margin-top: 0.3rem;
}
.field--checkbox label {
    font-family: var(--font-roboto);
    text-transform: none;
    letter-spacing: normal;
    color: var(--cream);
    font-size: 13px;
    line-height: 1.6;
}
.field--checkbox label a {
    color: var(--sable);
    text-decoration: underline;
}

.notice {
    padding: 1rem 1.4rem;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--sable);
    background: rgba(202, 182, 161, 0.08);
    font-family: var(--font-roboto);
    font-size: 14px;
    color: var(--cream);
}
.notice--err {
    border-left-color: #a8462f;
    background: rgba(168, 70, 47, 0.12);
    color: #f5c7bb;
}

/* ============================================================
   18b. Questionnaire — section dividers, hints, ranges, radios, ranking
   ============================================================ */
.field__hint {
    display: block;
    font-family: var(--font-roboto);
    font-size: 13px;
    line-height: 1.55;
    color: rgba(224, 218, 210, 0.65);
    margin-bottom: 12px;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 400;
}
.field__hint strong { color: var(--sable); font-weight: 500; }

.form__section {
    margin: 3.5rem -10px 1.8rem;
    padding: 0 10px 1.4rem;
    border-bottom: 1px solid rgba(202, 182, 161, 0.18);
}
.form__section:first-child { margin-top: 0; }
.form__section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--sable);
    margin-bottom: 0.6rem;
}
.form__section-title {
    font-family: var(--font-serif-heavy);
    font-weight: 700;
    font-size: clamp(1.2rem, 2.2vw, 1.6rem);
    text-transform: uppercase;
    color: var(--cream);
    line-height: 1.3;
    margin: 0;
}
.form__section-sub {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 0.95rem;
    color: rgba(224, 218, 210, 0.7);
    margin-top: 0.6rem;
    line-height: 1.55;
}

/* Range 1-10 */
.field--range .range-control {
    display: grid;
    grid-template-columns: 1fr 56px;
    gap: 18px;
    align-items: center;
}
.field--range input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 3px;
    background: rgba(202, 182, 161, 0.25);
    outline: none;
    margin: 14px 0;
    padding: 0;
    border: none;
}
.field--range input[type="range"]::-webkit-slider-runnable-track {
    height: 3px;
    background: rgba(202, 182, 161, 0.25);
}
.field--range input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    margin-top: -10px;
    background: var(--sable);
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid var(--navy);
    box-shadow: 0 0 0 1px var(--sable);
    transition: transform 0.2s;
}
.field--range input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.08); }
.field--range input[type="range"]::-moz-range-track {
    height: 3px;
    background: rgba(202, 182, 161, 0.25);
}
.field--range input[type="range"]::-moz-range-thumb {
    width: 22px;
    height: 22px;
    background: var(--sable);
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid var(--navy);
}
.range-value {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    background: rgba(202, 182, 161, 0.1);
    border: 1px solid rgba(202, 182, 161, 0.3);
    color: var(--sable);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
}

/* Radios — boutons élégants en ligne */
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
}
.radio {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 12px 22px;
    border: 1px solid rgba(202, 182, 161, 0.28);
    cursor: pointer;
    transition: border-color 0.25s, background 0.25s, color 0.25s;
    font-family: var(--font-roboto);
    font-size: 14px;
    color: var(--cream);
    background: rgba(255, 255, 255, 0.02);
    text-transform: none;
    letter-spacing: normal;
    margin: 0;
}
.radio input { position: absolute; opacity: 0; width: 0; height: 0; }
.radio:hover { border-color: rgba(202, 182, 161, 0.55); }
.radio:has(input:checked) {
    border-color: var(--sable);
    background: rgba(202, 182, 161, 0.12);
    color: var(--sable);
}

/* Checkbox group multi */
.check-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 6px;
}
.check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    border: 1px solid rgba(202, 182, 161, 0.25);
    cursor: pointer;
    transition: border-color 0.25s, background 0.25s;
    font-family: var(--font-roboto);
    font-size: 14px;
    color: var(--cream);
    line-height: 1.55;
    text-transform: none;
    letter-spacing: normal;
    margin: 0;
}
.check input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--sable);
    cursor: pointer;
}
.check:hover { border-color: rgba(202, 182, 161, 0.5); }
.check:has(input:checked) {
    border-color: var(--sable);
    background: rgba(202, 182, 161, 0.08);
}

/* Classement (rank) */
.rank-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 6px;
}
.rank-item {
    display: grid;
    grid-template-columns: 1fr 70px;
    gap: 18px;
    align-items: center;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(202, 182, 161, 0.22);
}
.rank-item__text {
    font-family: var(--font-roboto);
    font-size: 14px;
    line-height: 1.55;
    color: var(--cream);
}
.rank-item__text strong {
    display: block;
    color: var(--sable);
    font-weight: 500;
    margin-bottom: 2px;
    font-size: 15px;
}
.rank-item input[type="number"] {
    width: 100%;
    text-align: center;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--sable);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(202, 182, 161, 0.3);
    padding: 12px 6px;
    font-family: var(--font-heading);
}
.rank-item input[type="number"]:focus {
    outline: none;
    border-color: var(--sable);
}

@media (max-width: 540px) {
    .field--range .range-control { grid-template-columns: 1fr 48px; gap: 12px; }
    .range-value { font-size: 1rem; height: 38px; }
    .radio { padding: 10px 16px; font-size: 13px; }
    .rank-item { grid-template-columns: 1fr 56px; padding: 12px 14px; gap: 12px; }
}

/* ============================================================
   19. Footer enrichi
   ============================================================ */
footer {
    background-color: var(--navy);
    background-image:
        linear-gradient(var(--navy) 0%, rgba(30,35,43,0.9) 100%),
        url('../img/paper-texture.jpg');
    background-size: cover;
    background-position: center;
    padding: 70px 0 0;
}

.footer__nav {
    max-width: 1080px;
    margin: 0 auto 50px;
    padding: 0 5%;
    text-align: center;
}
.footer__nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 36px;
}
.footer__nav a {
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream);
    transition: color 0.3s;
}
.footer__nav a:hover { color: var(--sable); }

.footer__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 5%;
    gap: 40px;
    text-align: center;
}
.footer__col h4 {
    font-family: var(--font-serif-heavy);
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
    line-height: 1.6em;
    margin-bottom: 18px;
}
.footer__col--left h4,
.footer__col--right h4  { color: var(--sable); }
.footer__col--center h4 { color: #ffffff; }
.footer__col p,
.footer__col a {
    font-family: var(--font-roboto);
    font-size: 15px;
    line-height: 1.6em;
    color: #ffffff;
}
.footer__col a:hover { opacity: 0.7; }

.footer__logo-img {
    display: block;
    max-height: 210px;
    margin: 0 auto 14px;
}

.footer__social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
}
.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 100px;
    background-color: #ffffff;
    padding: 8px;
    transition: opacity 0.3s;
}
.footer__social a:hover { opacity: 0.75; }
.footer__social svg {
    width: 18px;
    height: 18px;
    fill: var(--navy);
    display: block;
}

.footer__bottom {
    max-width: 1080px;
    margin: 60px auto 0;
    padding: 0 5% 30px;
}
.footer__divider {
    width: 100%;
    height: 1px;
    background-color: var(--sable);
    border: none;
    margin-bottom: 22px;
    opacity: 0.4;
}
.footer__bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer__copyright,
.footer__legal {
    font-family: var(--font-roboto);
    font-size: 13px;
    line-height: 1.6em;
    color: var(--cream);
    margin: 0;
}
.footer__legal a { color: var(--cream); transition: color 0.3s; }
.footer__legal a:hover { color: var(--sable); }

/* ============================================================
   X. Boutons (.btn) — utilisés pages intérieures
   ============================================================ */
.btn {
    display: inline-block;
    padding: 14px 36px;
    background: var(--sable);
    color: var(--navy);
    font-family: var(--font-body);
    font-size: 0.82rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid var(--sable);
    transition: background 0.3s, color 0.3s;
    cursor: pointer;
}
.btn:hover { background: transparent; color: var(--sable); }
.btn--outline {
    background: transparent;
    color: var(--sable);
}
.btn--outline:hover { background: var(--sable); color: var(--navy); }
.btn--dark {
    background: var(--navy);
    color: var(--cream);
    border-color: var(--navy);
}
.btn--dark:hover { background: transparent; color: var(--navy); }

/* ============================================================
   Y. Appel — section CTA de clôture des pages intérieures
   ============================================================ */
.appel {
    background-color: var(--navy);
    background-image:
        linear-gradient(rgba(30,35,43,0.94), rgba(30,35,43,0.94)),
        url('../img/paper-texture.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 5%;
    text-align: center;
}
.appel__inner {
    max-width: 760px;
    margin: 0 auto;
}
.appel h2 {
    font-family: var(--font-serif-heavy);
    font-weight: 700;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    text-transform: uppercase;
    color: var(--sable);
    line-height: 1.25;
    margin-bottom: 0;
}
.appel p {
    font-family: var(--font-roboto);
    color: var(--cream);
    font-size: 16px;
    line-height: 1.75;
    margin: 1.6rem 0 2.5rem;
}
@media (max-width: 980px) {
    .appel { padding: 70px 5%; }
}

/* ============================================================
   20. Responsive
   ============================================================ */
@media (max-width: 980px) {
    .header__nav,
    .header__cta { display: none; }
    .header__burger { display: flex; }

    .services { margin-top: -8vw; padding-top: 6vw; }
    .services__divider { width: calc(100% - 100px); }
    .services__intro   { padding: 0 40px; }
    .card h3  { font-size: 20px; }
    .card p   { font-size: 15px; }

    .about__grid       { grid-template-columns: 1fr; gap: 40px; }
    .about__left       { padding-top: 0; }
    .about__left h2    { font-size: 36px; margin-top: 100px; }
    .about__left .about__subtitle { font-size: 16px; }

    .features__grid   { grid-template-columns: 1fr; }
    .features__text   { padding: 60px 5%; }
    .features__text h2 { font-size: 30px; }
    .features__subtitle { font-size: 18px; }

    .cta__grid         { grid-template-columns: 1fr; }
    .cta__text         { padding: 60px 5%; }
    .cta__text h2      { font-size: 30px; }
    .cta__text p       { font-size: 15px; }
    .cta__image        { min-height: 40vw; }

    .garanties__grid        { grid-template-columns: 1fr; gap: 30px; }
    .garanties__intro       { margin-left: 20px; margin-right: 20px; }
    .garanties__footer-note { padding: 0 5%; }
    .garanties__header h2   { font-size: 35px; }
    .garanties__item h5     { font-size: 16px; }
    .garanties__item p      { font-size: 14px; }

    .leviers       { grid-template-columns: 1fr; gap: 30px; }
    .bio,
    .bio--reverse  { grid-template-columns: 1fr; gap: 30px; }
    .bio--reverse .bio__portrait { order: 0; }
    .bio__placeholder { max-width: 320px; margin: 0 auto; }

    .journal { grid-template-columns: 1fr; }

    .footer__grid  { grid-template-columns: 1fr; gap: 40px; }
    .footer__nav ul { gap: 20px; }
    .footer__bottom-row { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    #hero h1 { padding: 0 5px; }
    .pagehero { padding: 10rem 1rem 3rem; }
    .pagehero__inner { padding-left: 5px; padding-right: 5px; }
    .pagehero h1 { font-size: clamp(1.8rem, 8vw, 2.6rem); text-align: center; padding: 0 5px; }
    .hero__text { font-size: 14px; }
    .services__divider { width: calc(100% - 40px); }
    .services__intro   { padding: 0 20px; }
    .card { padding: 30px 20px; }
    .card h3 { font-size: 16px; }
    .card p  { font-size: 14px; }
    .cta__text p { font-size: 14px; }
    .cta__image  { min-height: 40vw; }
    .garanties__header h2 { font-size: 30px; }
    .field--row { grid-template-columns: 1fr; }
    .form { padding: 30px 22px; }
}
