/* ==========================================================
   EGIDE — Angular Design System
   Inspiré du logo aux lettres segmentées + accents orange
   ========================================================== */

:root {
    /* Brand colors */
    --orange: #E87722;
    --orange-dark: #CC6517;
    --orange-deep: #B5571A;
    --orange-soft: #F4A66B;
    --orange-pale: #FBE6D5;
    --anthracite: #3E3E42;
    --anthracite-dark: #2B2B2F;
    --anthracite-soft: #585860;

    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #FAFAF8;
    --cream: #F5F4F0;
    --cream-warm: #EFEAE0;
    --gray-900: #1A1A1C;
    --gray-700: #55555B;
    --gray-500: #8E8E93;
    --gray-300: #C8C8CC;
    --gray-200: #E4E4E1;
    --gray-100: #EFEEEA;
    --line: rgba(62, 62, 66, 0.1);
    --line-light: rgba(255, 255, 255, 0.12);

    /* Typography */
    --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Layout — ANGULAR, no rounding */
    --max-width: 1320px;
    --gutter: 2rem;
    --radius: 0;
    --radius-card: 0;

    /* Easing */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============= RESET ============= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--anthracite);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
em { font-style: italic; font-family: var(--serif); font-weight: 400; color: var(--orange); }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* ============= BRAND MOTIF — accent bars (rectangular orange segments) ============= */
.accent-bar {
    display: block;
    width: 52px;
    height: 6px;
    background: var(--orange);
    margin-bottom: 1.75rem;
}
.mini-bar {
    display: inline-block;
    width: 20px;
    height: 3px;
    background: var(--orange);
    margin-right: 0.6rem;
    vertical-align: middle;
}

/* ============= TYPOGRAPHY ============= */
.eyebrow,
.about-label {
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}
.eyebrow {
    color: var(--orange);
    display: inline-block;
    margin-bottom: 1.5rem;
}
.eyebrow.light { color: var(--orange-soft); }
.about-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--gray-700);
    margin-bottom: 2rem;
    padding-left: 0;
    position: relative;
}
.about-label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 3px;
    background: var(--orange);
}
.about-label .section-num {
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 0.15em;
}
.about-label.light { color: var(--gray-300); }

.section-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 350;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--anthracite);
    margin-bottom: 1.5rem;
    font-variation-settings: "opsz" 144, "SOFT" 30;
}
.section-title.large {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.05;
}
.section-title.light { color: var(--white); }
.section-title em { font-style: italic; color: var(--orange); font-weight: 350; }
.section-title.light em { color: var(--orange-soft); }
.section-sub {
    font-size: 1.02rem;
    color: var(--gray-700);
    max-width: 560px;
    line-height: 1.65;
}
.section-sub.light { color: rgba(255, 255, 255, 0.7); }

/* ============= BUTTONS — angular, squared ============= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 1.85rem;
    font-family: var(--sans);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.35s var(--ease);
    cursor: pointer;
    white-space: nowrap;
    border: 1px solid transparent;
    line-height: 1;
    position: relative;
}
.btn-sm { padding: 0.75rem 1.3rem; font-size: 0.7rem; }
.btn-lg { padding: 1.15rem 2.2rem; font-size: 0.8rem; }
.btn-primary {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}
.btn-primary::after {
    content: '';
    position: absolute;
    top: 4px;
    right: 4px;
    width: 8px;
    height: 8px;
    background: var(--anthracite);
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}
.btn-primary:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 6px 6px 0 var(--anthracite);
}
.btn-ghost { background: transparent; color: var(--anthracite); border-color: var(--anthracite); }
.btn-ghost:hover { background: var(--anthracite); color: var(--white); transform: translateY(-2px); box-shadow: 6px 6px 0 var(--orange); }
.btn-ghost-light { background: transparent; color: var(--white); border: 1px solid rgba(255, 255, 255, 0.4); }
.btn-ghost-light:hover { background: var(--white); color: var(--anthracite); border-color: var(--white); box-shadow: 6px 6px 0 var(--orange); }

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--sans);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange);
    padding-bottom: 5px;
    border-bottom: 2px solid var(--orange);
    transition: gap 0.3s var(--ease);
}
.link-arrow::after { content: '→'; transition: transform 0.3s var(--ease); }
.link-arrow:hover { gap: 0.9rem; }

/* ============= UTILITY BAR ============= */
.utility-bar {
    background: var(--anthracite-dark);
    color: var(--gray-300);
    padding: 0.55rem 0;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    position: relative;
    z-index: 101;
}
.utility-inner { display: flex; justify-content: space-between; align-items: center; gap: 2rem; }
.util-item { display: inline-flex; align-items: center; gap: 0.6rem; font-weight: 500; }
.util-bar { display: inline-block; width: 14px; height: 3px; background: var(--orange); }
.utility-right { display: flex; align-items: center; gap: 0.75rem; }
.utility-right a { font-weight: 500; }
.utility-right a:hover { color: var(--orange-soft); }
.sep { color: var(--gray-500); opacity: 0.5; }
.lang span { color: var(--gray-500); }

/* ============= HEADER ============= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0.9rem 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
/* barre pleine largeur : logo à l'extrême gauche, CTA à l'extrême droite */
.site-header .header-inner,
.utility-bar .utility-inner { max-width: none; }

.logo { display: flex; flex-direction: column; line-height: 1; color: var(--anthracite); }
.logo-svg { width: 84px; height: auto; color: inherit; display: block; }
.logo-sub {
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-top: 6px;
}

.main-nav { display: flex; gap: 1.25rem; margin-left: auto; margin-right: auto; }
@media (min-width: 1600px) { .main-nav { gap: 2rem; } }
@media (min-width: 1280px) and (max-width: 1420px) { .main-nav { gap: 0.85rem; } .header-inner > .btn-sm { padding-left: 1.1rem; padding-right: 1.1rem; } }
.main-nav a {
    white-space: nowrap;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--anthracite);
    position: relative;
    padding: 0.5rem 0;
}
.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: var(--orange);
    transition: width 0.35s var(--ease);
}
.main-nav a:hover { color: var(--orange); }
.main-nav a:hover::after { width: 100%; }
.menu-toggle { display: none; }
@media (max-width: 1279px) {
    .main-nav { display: none; }
    .menu-toggle { display: flex; flex-direction: column; gap: 5px; padding: 12px 10px; margin: -12px -10px; }
    .menu-toggle span { width: 22px; height: 2px; background: var(--anthracite); }
    .mobile-nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--line);
        padding: 0.75rem var(--gutter) 1.5rem;
        z-index: 99;
        box-shadow: 0 24px 40px rgba(26, 26, 28, 0.1);
    }
    .mobile-nav a {
        padding: 0.9rem 0;
        border-bottom: 1px solid var(--line);
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }
    .mobile-nav a.active { color: var(--orange); }
}

/* ============= HERO — ANGULAR ============= */
.hero {
    position: relative;
    padding: 5rem 0 0;
    background: var(--anthracite-dark);
    overflow: hidden;
    isolation: isolate;
}
/* Full-bleed background video */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    filter: blur(7px);
    transform: scale(1.1);
    transform-origin: center;
}
/* Dark cinematic overlay — strongest on the left for text legibility */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(105deg, rgba(28,28,31,0.95) 0%, rgba(28,28,31,0.85) 40%, rgba(28,28,31,0.55) 72%, rgba(28,28,31,0.4) 100%),
        linear-gradient(0deg, rgba(28,28,31,0.5) 0%, rgba(28,28,31,0) 30%);
}
.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 78vh;
    padding-bottom: 4rem;
    z-index: 2;
}
.hero-text { padding-right: 2rem; }
.hero-eyebrow {
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    display: inline-block;
    margin-bottom: 1.75rem;
}
.hero-title {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 6.5vw, 6rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.035em;
    color: var(--white);
    margin-bottom: 2rem;
    font-variation-settings: "opsz" 144, "SOFT" 30;
}
.hero-title em {
    color: var(--orange);
    font-weight: 300;
}
.hero-lead {
    font-size: 1.1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.75);
    max-width: 480px;
    margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

/* Hero artwork — large EGIDE logo */
.hero-art {
    position: relative;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(18, 18, 20, 0.3);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 2.5rem;
}
.hero-logo-big {
    width: 100%;
    max-width: 480px;
    height: auto;
    color: var(--white);
    position: relative;
    z-index: 2;
}
/* angular corner accents */
.hero-corner-tl,
.hero-corner-br {
    position: absolute;
    width: 28px;
    height: 28px;
    border-style: solid;
    border-color: var(--orange);
    z-index: 3;
}
.hero-corner-tl {
    top: 1rem;
    left: 1rem;
    border-width: 3px 0 0 3px;
}
.hero-corner-br {
    bottom: 1rem;
    right: 1rem;
    border-width: 0 3px 3px 0;
}
.hero-meta-card {
    position: absolute;
    bottom: -1.25rem;
    right: -1.25rem;
    background: var(--white);
    padding: 1.1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 8px 8px 0 var(--orange);
    z-index: 4;
}
.meta-num {
    font-family: var(--serif);
    font-size: 2.3rem;
    line-height: 0.9;
    color: var(--anthracite);
    font-weight: 400;
    font-variation-settings: "opsz" 144;
}
.meta-label {
    font-family: var(--sans);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gray-700);
    line-height: 1.3;
    padding-left: 0.85rem;
    border-left: 2px solid var(--orange);
}

.hero-bottom {
    position: relative;
    background: var(--anthracite);
    color: var(--white);
    padding: 1.5rem 0;
    z-index: 5;
    border-top: 4px solid var(--orange);
}
.hero-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}
.hero-quote {
    display: flex;
    gap: 0.75rem;
    align-items: baseline;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    font-family: var(--serif);
    font-size: 1rem;
    line-height: 1.4;
    max-width: 540px;
}
.hero-quote .quote-mark { font-size: 2rem; color: var(--orange); line-height: 0; }
.hero-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.hero-tags span {
    font-family: var(--sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
    padding: 0.45rem 0.85rem;
    background: rgba(232, 119, 34, 0.15);
    border-left: 3px solid var(--orange);
}

/* ============= STATS ============= */
.stats {
    padding: 5rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat { padding: 0 2rem; border-right: 1px solid var(--line); }
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: none; padding-right: 0; }
.stat-num {
    display: block;
    font-family: var(--serif);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1;
    font-weight: 350;
    color: var(--anthracite);
    margin-bottom: 0.85rem;
    font-variation-settings: "opsz" 144;
    letter-spacing: -0.02em;
}
.stat-label {
    display: flex;
    align-items: center;
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--anthracite);
    margin-bottom: 0.85rem;
}
.stat-desc { display: block; font-size: 0.9rem; line-height: 1.55; color: var(--gray-700); }

/* ============= ABOUT ============= */
.about {
    padding: 7rem 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}
.about-angle {
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    height: 280px;
    background: var(--orange-pale);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 0;
}
.about-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
    z-index: 1;
}
.about-side { position: sticky; top: 100px; }

/* custom angular É (recreates logo style) */
.about-mark {
    width: 180px;
    height: 220px;
    position: relative;
    margin-bottom: 1.75rem;
}
.mark-E {
    position: absolute;
    inset: 0;
    color: var(--anthracite);
}
.mark-bar-top { position: absolute; top: 0; left: 0; width: 85%; height: 18px; background: currentColor; }
.mark-bar-mid { position: absolute; top: 50%; transform: translateY(-50%); left: 0; width: 72%; height: 18px; background: currentColor; }
.mark-bar-bottom { position: absolute; bottom: 0; left: 0; width: 85%; height: 18px; background: currentColor; }
.mark-stem { position: absolute; top: 0; left: 0; width: 18px; height: 100%; background: currentColor; }
.mark-accent {
    position: absolute;
    bottom: 18px;
    left: 18px;
    width: 45%;
    height: 26px;
    background: var(--orange);
}

.about-mark-sub {
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gray-500);
    padding-top: 1.25rem;
    border-top: 3px solid var(--anthracite);
    display: block;
    max-width: 220px;
}
.about-content .section-title { margin-bottom: 2.5rem; }
.about-lead {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--gray-700);
    margin-bottom: 3.5rem;
    max-width: 640px;
}
.about-lead strong { color: var(--anthracite); font-weight: 600; }
.about-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--line);
    margin-bottom: 2.5rem;
}
.pillar { position: relative; padding-top: 1.25rem; }
.pillar-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 4px;
    background: var(--orange);
}
.pillar-num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--orange);
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 400;
}
.pillar h3 {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--anthracite);
    margin-bottom: 0.5rem;
    font-variation-settings: "opsz" 144;
}
.pillar p { font-size: 0.9rem; color: var(--gray-700); line-height: 1.55; }

/* ============= MISSIONS — BENTO MOSAIC ============= */
.missions {
    padding: 7rem 0;
    background: var(--off-white);
}
.missions-header {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: end;
}
.missions-intro p {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--gray-700);
    margin-bottom: 1.75rem;
}
.missions-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 0.6rem;
}
.tile {
    position: relative;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition: all 0.35s var(--ease);
    cursor: pointer;
    border-radius: 0;
}
.tile:hover { transform: translateY(-4px); }
.tile-orange:hover { box-shadow: 6px 6px 0 var(--anthracite); }
.tile-orange-deep:hover { box-shadow: 6px 6px 0 var(--anthracite); }
.tile-anthracite:hover { box-shadow: 6px 6px 0 var(--orange); }
.tile-cream:hover { box-shadow: 6px 6px 0 var(--orange); }

/* brand accent: orange segment top-left on each tile */
.tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 28px;
    height: 4px;
    background: var(--orange);
    z-index: 2;
}
.tile-orange::before,
.tile-orange-deep::before { background: var(--white); }

.tile-num {
    font-family: var(--sans);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.55);
    align-self: flex-start;
    padding-top: 0.5rem;
}
.tile h3 {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 0;
    font-variation-settings: "opsz" 144;
    max-width: 92%;
}
.tile-arrow {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.55);
    transition: transform 0.3s var(--ease);
}
.tile:hover .tile-arrow { transform: translateX(4px); color: rgba(255, 255, 255, 0.95); }

.tile-orange { background: var(--orange); }
.tile-orange-deep { background: var(--orange-deep); }
.tile-anthracite { background: var(--anthracite); }
.tile-anthracite .tile-num { color: rgba(255, 255, 255, 0.4); }

.tile-cream { background: var(--cream-warm); }
.tile-cream h3 { color: var(--anthracite); }
.tile-cream .tile-num { color: var(--gray-500); }
.tile-cream .tile-arrow { color: var(--orange); }
.tile-cream:hover .tile-arrow { color: var(--orange-dark); }

.tile-image {
    background-size: cover;
    background-position: center;
    filter: grayscale(20%);
    transition: filter 0.5s var(--ease), transform 0.4s var(--ease);
}
.tile-image::before { background: var(--orange); }
.tile-image:hover { filter: grayscale(0%); }
.tile-img-a { background-image: linear-gradient(135deg, rgba(62,62,66,0.2), rgba(232,119,34,0.1)), url('https://images.unsplash.com/photo-1582213782179-e0d53f98f2ca?w=600&q=85'); }
.tile-img-b { background-image: linear-gradient(135deg, rgba(62,62,66,0.2), rgba(62,62,66,0.05)), url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=600&q=85'); }
.tile-img-c { background-image: linear-gradient(135deg, rgba(62,62,66,0.2), rgba(232,119,34,0.1)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=600&q=85'); }

.tile-question {
    background: var(--white);
    border: 1px solid var(--anthracite);
    justify-content: space-between;
}
.tile-question::before { background: var(--orange); height: 6px; width: 40px; }
.tile-question h3 {
    color: var(--anthracite);
    font-size: 1.55rem;
    font-weight: 400;
    line-height: 1.15;
    padding-top: 1rem;
}
.tile-link {
    font-family: var(--sans);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange);
    align-self: flex-start;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--orange);
}

/* ============= ACCESS ============= */
.access { padding: 7rem 0; background: var(--white); }
.access-header { max-width: 720px; margin-bottom: 4rem; }
.access-header .section-sub { margin-top: 1.5rem; }
.access-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
}
.access-card {
    position: relative;
    background: var(--cream);
    border: 1px solid var(--line);
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    color: var(--anthracite);
    transition: all 0.35s var(--ease);
    min-height: 280px;
    overflow: hidden;
}
/* angular orange accent bar top-left (like logo) */
.access-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 4px;
    background: var(--orange);
    transition: width 0.4s var(--ease);
}
.access-card:hover {
    background: var(--white);
    border-color: var(--anthracite);
    transform: translateY(-4px);
    box-shadow: 8px 8px 0 var(--anthracite);
}
.access-card:hover::before { width: 100%; }

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-top: 0.5rem;
}
.card-num,
.card-status {
    font-family: var(--sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gray-500);
}
.card-status { color: var(--orange); }
.access-card h3 {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1;
    color: var(--anthracite);
    font-variation-settings: "opsz" 144;
}
.access-card p {
    font-size: 0.92rem;
    color: var(--gray-700);
    line-height: 1.55;
    margin-bottom: 1.75rem;
    flex-grow: 1;
}
.card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
}
.card-link {
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange);
}
.card-arrow { font-size: 1.2rem; color: var(--orange); transition: transform 0.3s var(--ease); }
.access-card:hover .card-arrow { transform: translateX(4px); }

.access-card-cta {
    background: var(--anthracite);
    border-color: var(--anthracite);
    color: var(--white);
    justify-content: center;
}
.access-card-cta::before { background: var(--orange); width: 100%; }
.access-card-cta:hover { background: var(--anthracite-dark); border-color: var(--anthracite-dark); box-shadow: 8px 8px 0 var(--orange); }
.access-card-cta h3 { color: var(--white); font-size: 1.75rem; margin-bottom: 0.85rem; }
.access-card-cta p { color: rgba(255, 255, 255, 0.7); margin-bottom: 1.75rem; flex-grow: 0; }
.access-card-cta .btn { align-self: flex-start; background: var(--orange); color: var(--white); border-color: var(--orange); }
.access-card-cta .btn:hover { background: var(--white); color: var(--anthracite); border-color: var(--white); }

/* ============= INFO / RESSOURCES ============= */
.info { padding: 7rem 0; background: var(--cream); }
.info-header { max-width: 720px; margin-bottom: 4rem; }
.info-header .section-sub { margin-top: 1.5rem; }
.info-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.85rem;
}
.info-card {
    grid-column: span 2;
    background: var(--white);
    border: 1px solid var(--line);
    overflow: hidden;
    transition: all 0.35s var(--ease);
    display: flex;
    flex-direction: column;
    position: relative;
}
.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 4px;
    background: var(--orange);
    z-index: 3;
    transition: width 0.4s var(--ease);
}
.info-card:hover { transform: translateY(-4px); box-shadow: 8px 8px 0 var(--anthracite); border-color: var(--anthracite); }
.info-card:hover::before { width: 100%; }
.info-card-large { grid-column: span 3; grid-row: span 2; }
.info-card-img {
    width: 100%;
    aspect-ratio: 16/10;
    background-color: var(--gray-100);
    background-size: cover;
    background-position: center;
    transition: transform 0.7s var(--ease);
    position: relative;
    overflow: hidden;
    filter: grayscale(20%);
}
.info-card-large .info-card-img { aspect-ratio: 16/9; }
.info-card:hover .info-card-img { transform: scale(1.03); filter: grayscale(0%); }
.img-tag {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    padding: 0.4rem 0.85rem;
    background: var(--orange);
    color: var(--white);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.info-img-1 { background-image: linear-gradient(135deg, rgba(62, 62, 66, 0.35) 0%, rgba(232, 119, 34, 0.15) 100%), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1600&q=85'); }
.info-img-2 { background-image: linear-gradient(135deg, rgba(62, 62, 66, 0.5) 0%, rgba(62, 62, 66, 0.25) 100%), url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1000&q=85'); }
.info-img-3 { background-image: linear-gradient(135deg, rgba(62, 62, 66, 0.5) 0%, rgba(232, 119, 34, 0.2) 100%), url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1000&q=85'); }
.info-img-4 { background-image: linear-gradient(135deg, rgba(62, 62, 66, 0.5) 0%, rgba(62, 62, 66, 0.25) 100%), url('https://images.unsplash.com/photo-1521587760476-6c12a4b040da?w=1000&q=85'); }

.info-card-body { padding: 1.75rem; flex-grow: 1; display: flex; flex-direction: column; }
.info-card-large .info-card-body { padding: 2.25rem; }
.tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.85rem;
}
.info-card h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--anthracite);
    margin-bottom: 0.75rem;
    line-height: 1.2;
    font-variation-settings: "opsz" 144;
}
.info-card-large h3 { font-size: 2.2rem; font-weight: 400; }
.info-card p { color: var(--gray-700); margin-bottom: 1.5rem; flex-grow: 1; font-size: 0.92rem; line-height: 1.55; }

/* ============= QUOTE BAND ============= */
.quote-band {
    padding: 7rem 0;
    background: var(--white);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}
.quote-accent {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: var(--orange);
}
.quote-inner {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    z-index: 1;
}
.quote-eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--orange);
    display: inline-block;
    margin-bottom: 2rem;
}
.big-quote {
    font-family: var(--serif);
    font-size: clamp(1.4rem, 2.6vw, 2.2rem);
    font-weight: 400;
    line-height: 1.35;
    color: var(--anthracite);
    margin: 0 auto 2.5rem;
    letter-spacing: -0.01em;
    font-variation-settings: "opsz" 144;
}
.big-quote em { color: var(--orange); font-weight: 400; }
.quote-author { display: inline-flex; align-items: center; gap: 1rem; }
.author-avatar {
    width: 48px;
    height: 48px;
    background:
        linear-gradient(135deg, rgba(232, 119, 34, 0.15), rgba(62, 62, 66, 0.15)),
        url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?w=200&q=80');
    background-size: cover;
    filter: grayscale(50%);
    border-left: 3px solid var(--orange);
}
.author-info { text-align: left; line-height: 1.4; }
.author-info strong { display: block; font-family: var(--serif); font-size: 1rem; font-weight: 500; color: var(--anthracite); }
.author-info span { font-size: 0.75rem; color: var(--gray-700); letter-spacing: 0.05em; }

/* ============= NEWS ============= */
.news { padding: 7rem 0; background: var(--off-white); }
.news-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 4rem;
}
.news-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2rem; }
.news-featured {
    background: var(--white);
    border: 1px solid var(--line);
    overflow: hidden;
    transition: all 0.35s var(--ease);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
}
.news-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background: var(--orange);
    z-index: 3;
    transition: width 0.4s var(--ease);
}
.news-featured:hover { transform: translateY(-4px); box-shadow: 8px 8px 0 var(--anthracite); border-color: var(--anthracite); }
.news-featured:hover::before { width: 100%; }
.news-img {
    width: 100%;
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s var(--ease);
    filter: grayscale(20%);
}
.news-featured:hover .news-img { transform: scale(1.03); filter: grayscale(0); }
.news-img-1 {
    background-image: linear-gradient(135deg, rgba(62, 62, 66, 0.3) 0%, rgba(232, 119, 34, 0.15) 100%), url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?w=1400&q=85');
}
.news-body { padding: 2.25rem; }
.news-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; }
.news-cat {
    padding: 0.3rem 0.75rem;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--orange);
}
.news-date { font-size: 0.76rem; color: var(--gray-500); letter-spacing: 0.05em; }
.news-featured h3 {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 400;
    color: var(--anthracite);
    margin-bottom: 1rem;
    line-height: 1.2;
    font-variation-settings: "opsz" 144;
}
.news-featured p { color: var(--gray-700); margin-bottom: 1.75rem; line-height: 1.6; font-size: 0.95rem; }
.news-stack { display: flex; flex-direction: column; gap: 0.85rem; }
.news-stack .news-item {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.35s var(--ease);
    flex: 1;
    position: relative;
    overflow: hidden;
}
.news-stack .news-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--orange);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s var(--ease);
}
.news-stack .news-item:hover::before { transform: scaleY(1); }
.news-stack .news-item:hover { border-color: var(--anthracite); padding-left: 1.75rem; }
.news-stack h3 {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--anthracite);
    margin-bottom: 0.45rem;
    line-height: 1.3;
    font-variation-settings: "opsz" 144;
}
.news-stack p { font-size: 0.85rem; color: var(--gray-700); line-height: 1.5; }

/* ============= OFFICES ============= */
.offices { padding: 7rem 0; background: var(--anthracite); color: var(--white); }
.offices .about-label,
.offices .about-label .section-name { color: var(--gray-300); }
.offices .about-label::before { background: var(--orange); }
.offices .about-label .section-num { color: var(--orange); }
.offices-header { margin-bottom: 4rem; max-width: 720px; }
.offices-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3.5rem 0;
    border-top: 1px solid var(--line-light);
}
.office {
    padding: 2.5rem 1.75rem 2.5rem 0;
    border-right: 1px solid var(--line-light);
    position: relative;
    transition: background 0.3s var(--ease);
}
.office:not(:first-child) { padding-left: 1.75rem; }
.office:last-child { border-right: none; padding-right: 0; }
.office:hover { background: rgba(232, 119, 34, 0.06); }
.office-bar {
    display: block;
    width: 28px;
    height: 4px;
    background: var(--orange);
    margin-bottom: 1.25rem;
}
.office-city {
    display: block;
    font-family: var(--serif);
    font-size: clamp(1.7rem, 2.5vw, 2.3rem);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1.25rem;
    font-variation-settings: "opsz" 144;
}
.office-addr { color: rgba(255, 255, 255, 0.7); font-size: 0.92rem; line-height: 1.6; margin-bottom: 0.85rem; }
.office-tel {
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--orange-soft);
    margin-bottom: 1.25rem;
    font-variation-settings: "opsz" 144;
}
.office-meta {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
}

/* ============= PARTNERS ============= */
.partners { padding: 3.5rem 0; background: var(--white); border-bottom: 1px solid var(--line); }
.partners-label {
    display: block;
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gray-500);
    text-align: center;
    margin-bottom: 2rem;
}
.partners-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}
.partner-logo {
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--gray-500);
    text-transform: uppercase;
    transition: color 0.3s var(--ease);
    padding: 0 1rem;
}
.partner-logo.serif {
    font-family: var(--serif);
    font-style: italic;
    text-transform: none;
    letter-spacing: 0.02em;
    font-size: 1.2rem;
    font-weight: 400;
}
.partner-logo:hover { color: var(--anthracite); }

/* ============= CONTACT BAND ============= */
.contact-band {
    padding: 7rem 0;
    background: var(--anthracite-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.contact-block {
    position: absolute;
    top: 0;
    right: 0;
    width: 32%;
    height: 70%;
    background: var(--orange);
    opacity: 0.12;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}
.contact-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: start;
}
.contact-cta { display: flex; gap: 0.85rem; margin-top: 2.5rem; flex-wrap: wrap; }
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border-left: 3px solid var(--orange);
    padding-left: 2.5rem;
}
.info-block { display: flex; flex-direction: column; gap: 0.4rem; }
.info-label {
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--orange);
}
.info-block strong {
    font-family: var(--serif);
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 400;
    font-variation-settings: "opsz" 144;
}
.info-meta { font-size: 0.82rem; color: rgba(255, 255, 255, 0.6); }

/* ============= FOOTER ============= */
.site-footer {
    background: var(--anthracite-dark);
    color: var(--gray-300);
    padding: 5rem 0 0;
    border-top: 4px solid var(--orange);
}
.footer-top {
    display: grid;
    grid-template-columns: 1fr 3.6fr;
    gap: 3.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--line-light);
}
.footer-brand .logo { margin-bottom: 1.5rem; color: var(--white); }
.footer-brand .logo-svg { width: 110px; }
.footer-brand .logo-sub { color: var(--gray-500); }
.footer-brand p { font-size: 0.88rem; color: rgba(255, 255, 255, 0.55); max-width: 320px; line-height: 1.7; margin-bottom: 2rem; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-500);
    border-bottom: 2px solid transparent;
    padding-bottom: 3px;
    transition: all 0.3s var(--ease);
}
.footer-social a:hover { color: var(--orange); border-color: var(--orange); }
.footer-links-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1.5rem; }
.footer-col { min-width: 0; }
.footer-col a { overflow-wrap: break-word; }
.footer-col h4 {
    font-family: var(--sans);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--orange);
    display: inline-block;
}
.footer-col a { display: block; padding: 0.35rem 0; font-size: 0.88rem; color: rgba(255, 255, 255, 0.55); }
.footer-col a:hover { color: var(--orange-soft); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 0;
    font-size: 0.78rem;
    color: var(--gray-500);
}
.footer-legal { display: flex; gap: 1.75rem; }
.footer-legal a:hover { color: var(--white); }

/* ============= RESPONSIVE ============= */
@media (max-width: 1100px) {
    .hero-grid { grid-template-columns: 1fr; gap: 3rem; min-height: auto; padding-bottom: 6rem; }
    .hero-text { padding-right: 0; }
    .hero-art { max-width: 520px; margin: 0 auto; aspect-ratio: 4/3; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .stat { border-right: none !important; padding: 0 !important; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-side { position: static; }
    .missions-header { grid-template-columns: 1fr; gap: 2rem; align-items: start; }
    .missions-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
    .access-grid { grid-template-columns: repeat(2, 1fr); }
    .info-grid { grid-template-columns: repeat(2, 1fr); }
    .info-card, .info-card-large { grid-column: span 1; grid-row: auto; }
    .news-grid { grid-template-columns: 1fr; }
    .offices-grid { grid-template-columns: repeat(2, 1fr); }
    .office:nth-child(2) { border-right: none; }
    .office:nth-child(3), .office:nth-child(4) { border-top: 1px solid var(--line-light); padding-top: 2.5rem; }
    .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact-info { border-left: none; border-top: 3px solid var(--orange); padding-left: 0; padding-top: 2.5rem; }
    .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
    .main-nav { display: none; }
    .menu-toggle { display: flex; flex-direction: column; gap: 5px; padding: 12px 10px; margin: -12px -10px; }
    .menu-toggle span { width: 22px; height: 2px; background: var(--anthracite); }
    .utility-bar { display: none; }
    .hero-bottom-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
    :root { --gutter: 1.25rem; }
    .header-inner > .btn { display: none; }
    .hero { padding: 3.5rem 0 0; }
    .stats-grid { grid-template-columns: 1fr; }
    .about-mark { width: 140px; height: 170px; }
    .about-pillars { grid-template-columns: 1fr; gap: 2rem; }
    .missions-mosaic { grid-template-columns: 1fr; grid-auto-rows: 180px; }
    .access-grid { grid-template-columns: 1fr; }
    .info-grid { grid-template-columns: 1fr; }
    .offices-grid { grid-template-columns: 1fr; }
    .office { border-right: none !important; padding: 0 !important; border-top: 1px solid var(--line-light); padding-top: 2rem !important; margin-top: 2rem; }
    .office:first-child { border-top: none; padding-top: 0 !important; margin-top: 0; }
    .footer-links-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; }
    .stats, .about, .missions, .access, .info, .quote-band, .news, .offices, .contact-band { padding: 4rem 0; }
}

/* ==========================================================
   SUB-PAGES — shared components
   ========================================================== */
html { scroll-padding-top: 140px; }

.main-nav a.active { color: var(--orange); }
.main-nav a.active::after { width: 100%; }

/* Mobile nav panel (toggled via script.js) */
.mobile-nav { display: none; }

/* ---------- Page hero ---------- */
.page-hero {
    position: relative;
    background: var(--anthracite-dark);
    color: var(--white);
    padding: 4.5rem 0;
    overflow: hidden;
    border-bottom: 4px solid var(--orange);
}
.page-hero-block {
    position: absolute;
    top: 0;
    right: 0;
    width: 38%;
    height: 100%;
    background: var(--orange);
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-hero-block svg { width: 58%; height: auto; color: rgba(255, 255, 255, 0.16); }
.page-hero-inner { position: relative; z-index: 2; max-width: 760px; margin-left: 0; }
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 2.25rem;
    flex-wrap: wrap;
    row-gap: 0.4rem;
}
.breadcrumb a { color: var(--gray-300); }
.breadcrumb a:hover { color: var(--orange-soft); }
.bc-sep { color: var(--orange); }
.bc-current { color: var(--orange-soft); }
.page-hero h1 {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 4.6vw, 4.2rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin: 1.25rem 0 1.5rem;
    font-variation-settings: "opsz" 144, "SOFT" 30;
}
.page-hero h1 em { color: var(--orange-soft); }
.page-hero-lead { font-size: 1.08rem; line-height: 1.7; color: rgba(255, 255, 255, 0.72); max-width: 580px; }

/* ---------- Section shells ---------- */
.page-section { padding: 6rem 0; background: var(--white); }
.page-section.alt { background: var(--cream); }
.page-section.dark { background: var(--anthracite); color: var(--white); }
.section-head { max-width: 780px; margin-bottom: 3.5rem; }
.section-head .section-sub { margin-top: 1.25rem; }
.section-head.row { max-width: none; display: flex; justify-content: space-between; align-items: end; gap: 2rem; flex-wrap: wrap; }

/* ---------- Sticky sub-nav ---------- */
.subnav {
    position: sticky;
    top: 69px;
    z-index: 90;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}
.subnav-inner { display: flex; gap: 0.5rem; padding: 0.8rem 0; overflow-x: auto; }
.subnav a {
    white-space: nowrap;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.6rem 1.1rem;
    border: 1px solid var(--line);
    color: var(--anthracite);
    background: var(--white);
    transition: all 0.25s var(--ease);
}
.subnav a:hover { border-color: var(--anthracite); background: var(--anthracite); color: var(--white); }

/* ---------- Timeline ---------- */
.tl-item { display: grid; grid-template-columns: 150px 1fr; gap: 3rem; padding: 2.5rem 0; border-top: 1px solid var(--line); }
.tl-item:last-child { border-bottom: 1px solid var(--line); }
.tl-year {
    font-family: var(--serif);
    font-size: 2.4rem;
    font-weight: 350;
    line-height: 1;
    color: var(--orange);
    font-variation-settings: "opsz" 144;
    position: relative;
    padding-top: 0.85rem;
}
.tl-year::before { content: ''; position: absolute; top: 0; left: 2px; width: 26px; height: 4px; background: var(--anthracite); }
.tl-body h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 500; margin-bottom: 0.6rem; font-variation-settings: "opsz" 144; }
.tl-body p { color: var(--gray-700); font-size: 0.95rem; line-height: 1.65; max-width: 640px; }

/* ---------- Story — frise immersive pilotée par le scroll ---------- */
.story { background: var(--anthracite-dark); color: var(--white); position: relative; }
.story-track { position: relative; height: 560vh; }
.story-stage { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.story-ring {
    position: absolute;
    top: 50%;
    left: 0;
    width: min(200vh, 1620px);
    aspect-ratio: 1;
    transform: translate(-58%, -50%);
    pointer-events: none;
}
.story-ring .ring-circle { fill: none; stroke: rgba(255, 255, 255, 0.09); stroke-width: 1; }
.story-ring .ring-circle.in { stroke-dasharray: 2 9; }
.story-ring .tick { stroke: rgba(255, 255, 255, 0.16); }
.story-ring .tick-major { stroke: rgba(255, 255, 255, 0.45); }
.story-ring text {
    fill: rgba(255, 255, 255, 0.38);
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.14em;
    transition: opacity 0.4s var(--ease);
}
/* l'année active quitte la roue : c'est la grande année à droite qui la porte */
.story-ring text.on { opacity: 0; }
.story-ring .ring-marker { fill: var(--orange); }
.story-grid {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 96px;
    padding-bottom: 1.5rem;
}
.story-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; }
.story-progress {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: var(--gray-300);
    display: inline-flex;
    align-items: center;
    padding-top: 0.6rem;
}
.story-progress b { color: var(--white); font-weight: 700; }
.story-line { display: inline-block; width: 64px; height: 2px; background: var(--orange); margin: 0 0.9rem; }
.story-brand { text-align: right; }
.story-title { font-family: var(--serif); font-size: 1.9rem; font-weight: 400; font-variation-settings: "opsz" 144; }
.story-sub {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange-soft);
}
.story-main {
    flex: 1;
    display: grid;
    grid-template-columns: minmax(300px, 420px) 1fr;
    gap: 3rem;
    align-items: center;
}
.story-item { display: none; }
.story-item.on { display: block; animation: storyFade 0.45s var(--ease); }
@keyframes storyFade {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}
.story-kicker {
    display: block;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.9rem;
}
.story-item h3 {
    font-family: var(--serif);
    font-size: 1.55rem;
    font-weight: 500;
    margin-bottom: 0.9rem;
    color: var(--white);
    font-variation-settings: "opsz" 144;
}
.story-item p { color: rgba(255, 255, 255, 0.68); font-size: 0.95rem; line-height: 1.7; max-width: 44ch; }
.story-year-wrap { display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.5rem); justify-self: center; }
.story-dash { width: clamp(46px, 8vw, 120px); height: 6px; background: var(--orange); flex-shrink: 0; }
.story-year {
    font-family: var(--serif);
    font-size: clamp(5rem, 12vw, 11rem);
    font-weight: 300;
    line-height: 0.9;
    letter-spacing: -0.03em;
    color: var(--white);
    font-variation-settings: "opsz" 144;
}
.story-hint {
    align-self: center;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gray-500);
}

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.team-card { background: var(--white); border: 1px solid var(--line); transition: all 0.35s var(--ease); position: relative; overflow: hidden; }
.team-card::before { content: ''; position: absolute; top: 0; left: 0; width: 36px; height: 4px; background: var(--orange); z-index: 2; transition: width 0.4s var(--ease); }
.team-card:hover { transform: translateY(-4px); border-color: var(--anthracite); box-shadow: 8px 8px 0 var(--orange); }
.team-card:hover::before { width: 100%; }
.team-photo {
    aspect-ratio: 3/3.3;
    background-color: var(--anthracite);
    background-size: cover;
    background-position: center 22%;
    filter: grayscale(35%);
    transition: filter 0.4s var(--ease);
    position: relative;
}
.team-photo::after { content: ''; position: absolute; bottom: 0; left: 0; width: 44px; height: 6px; background: var(--orange); }
.team-card:hover .team-photo { filter: grayscale(0); }
.team-body { padding: 1.3rem 1.4rem 1.5rem; }
.team-body h3 { font-family: var(--serif); font-size: 1.18rem; font-weight: 500; margin-bottom: 0.35rem; font-variation-settings: "opsz" 144; }
.team-role { display: block; font-size: 0.64rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.6rem; }
.team-meta { font-size: 0.8rem; color: var(--gray-500); }

/* ---------- Deontology (dark) + engagements ---------- */
.deonto { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; padding-top: 3rem; border-top: 1px solid var(--line-light); }
.deonto .pillar h3 { color: var(--white); }
.deonto .pillar p { color: rgba(255, 255, 255, 0.65); }
.engage-row { display: flex; flex-wrap: wrap; gap: 1rem 3rem; margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid var(--line-light); }
.engage-row span { display: inline-flex; align-items: center; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray-300); }
.engage-row .mini-bar { flex-shrink: 0; }

/* ---------- Definition cards ---------- */
.def-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.def-card { background: var(--cream); border-top: 4px solid var(--orange); padding: 2.25rem; }
.def-card.dark { background: var(--anthracite); color: var(--white); }
.def-kicker { display: block; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); margin-bottom: 1rem; }
.def-card h3 { font-family: var(--serif); font-size: 1.6rem; font-weight: 400; margin-bottom: 1rem; font-variation-settings: "opsz" 144; }
.def-card > p { font-size: 0.95rem; line-height: 1.65; color: var(--gray-700); }
.def-card.dark > p { color: rgba(255, 255, 255, 0.7); }
.def-card ul { margin-top: 1.25rem; list-style: none; }
.def-card li { display: flex; gap: 0.6rem; align-items: baseline; padding: 0.45rem 0; font-size: 0.9rem; border-top: 1px solid var(--line); }
.def-card.dark li { border-top-color: var(--line-light); color: rgba(255, 255, 255, 0.85); }
.def-card li::before { content: ''; width: 12px; height: 3px; background: var(--orange); flex-shrink: 0; position: relative; top: -3px; }

/* ---------- Mission rows ---------- */
.mission-row { display: grid; grid-template-columns: 110px 1fr 320px; gap: 3rem; padding: 3rem 0; border-top: 1px solid var(--line); }
.mission-row:last-of-type { border-bottom: 1px solid var(--line); }
.m-num {
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 300;
    line-height: 0.9;
    color: var(--gray-300);
    transition: color 0.3s var(--ease);
    font-variation-settings: "opsz" 144;
}
.mission-row:hover .m-num, .mission-row:target .m-num { color: var(--orange); }
.mission-row:target { background: linear-gradient(90deg, rgba(232, 119, 34, 0.05), transparent); }
.m-main h3 { font-family: var(--serif); font-size: 1.55rem; font-weight: 500; margin-bottom: 0.85rem; font-variation-settings: "opsz" 144; }
.m-main p { color: var(--gray-700); font-size: 0.97rem; line-height: 1.7; max-width: 62ch; }
.m-aside { border-left: 3px solid var(--orange); padding-left: 1.75rem; align-self: start; }
.m-aside h4 { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.85rem; }
.m-aside ul { list-style: none; }
.m-aside li { font-size: 0.88rem; padding: 0.4rem 0; border-bottom: 1px solid var(--line); color: var(--anthracite); }
.m-aside li:last-child { border-bottom: none; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
.steps-3 { grid-template-columns: repeat(3, 1fr); }
.steps-4 { grid-template-columns: repeat(4, 1fr); }
.step { position: relative; background: var(--white); border: 1px solid var(--line); padding: 1.75rem 1.5rem; }
.step-num { width: 36px; height: 36px; background: var(--orange); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; margin-bottom: 1.25rem; }
.step h3 { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; margin-bottom: 0.5rem; font-variation-settings: "opsz" 144; }
.step p { font-size: 0.84rem; color: var(--gray-700); line-height: 1.55; }
.step::after { content: '→'; position: absolute; top: 1.7rem; right: -1.2rem; color: var(--orange); font-weight: 700; z-index: 2; }
.step:last-child::after { content: none; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; }
.faq-item { background: var(--white); border: 1px solid var(--line); margin-bottom: 0.75rem; transition: all 0.3s var(--ease); }
.faq-item[open] { border-color: var(--anthracite); box-shadow: 6px 6px 0 var(--orange); }
.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 1.3rem 1.6rem;
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 500;
    font-variation-settings: "opsz" 144;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-family: var(--sans); font-size: 1.5rem; font-weight: 300; color: var(--orange); line-height: 1; transition: transform 0.3s var(--ease); flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 1.6rem 1.5rem; color: var(--gray-700); font-size: 0.94rem; line-height: 1.7; max-width: 70ch; }

/* ---------- Profiles (accès) ---------- */
.profile { padding: 5.5rem 0; background: var(--white); }
.profile.alt { background: var(--cream); }
.profile-head { margin-bottom: 3rem; max-width: 780px; }
.profile-head .section-sub { margin-top: 1rem; }
.profile-grid { display: grid; grid-template-columns: 1.25fr 0.85fr; gap: 4rem; align-items: start; }
.demarche { display: grid; grid-template-columns: 44px 1fr; gap: 1.5rem; padding: 1.6rem 0; border-top: 1px solid var(--line); }
.demarche:last-of-type { border-bottom: 1px solid var(--line); }
.demarche-num { width: 36px; height: 36px; border: 1px solid var(--anthracite); display: flex; align-items: center; justify-content: center; font-size: 0.78rem; font-weight: 700; background: var(--white); }
.demarche.has-date { grid-template-columns: 130px 1fr; }
.demarche-date { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; line-height: 1.25; color: var(--anthracite); font-variation-settings: "opsz" 144; }
.demarche h4 { font-family: var(--serif); font-size: 1.12rem; font-weight: 500; margin-bottom: 0.4rem; font-variation-settings: "opsz" 144; }
.demarche p { font-size: 0.9rem; color: var(--gray-700); line-height: 1.6; }
.profile-actions { display: flex; gap: 1.25rem; align-items: center; margin-top: 2.25rem; flex-wrap: wrap; }
.doc-box { background: var(--cream); border-top: 4px solid var(--orange); padding: 1.9rem; }
.profile.alt .doc-box { background: var(--white); border: 1px solid var(--line); border-top: 4px solid var(--orange); }
.doc-box h4 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 1rem; }
.doc-box ul { list-style: none; }
.doc-box li { display: flex; gap: 0.7rem; align-items: baseline; padding: 0.55rem 0; font-size: 0.9rem; color: var(--gray-700); border-bottom: 1px solid var(--line); }
.doc-box li:last-child { border-bottom: none; }
.doc-box li::before { content: ''; width: 12px; height: 3px; background: var(--orange); flex-shrink: 0; position: relative; top: -3px; }
.callout { background: var(--orange-pale); border-left: 4px solid var(--orange); padding: 1.4rem 1.6rem; margin-top: 1.25rem; font-size: 0.92rem; line-height: 1.6; color: var(--anthracite); }

/* ---------- Search bar + biens ---------- */
.searchbar { display: grid; grid-template-columns: 1.6fr 1fr 1fr auto; gap: 0.75rem; margin-bottom: 3rem; }
.searchbar-3 { grid-template-columns: 2fr 1fr auto; }
.searchbar input, .searchbar select, .searchbar .btn { width: 100%; min-width: 0; }
.searchbar input, .searchbar select {
    padding: 0.95rem 1.15rem;
    border: 1px solid var(--gray-300);
    background: var(--white);
    font-family: var(--sans);
    font-size: 0.88rem;
    color: var(--anthracite);
    border-radius: 0;
}
.searchbar input:focus, .searchbar select:focus { outline: none; border-color: var(--orange); box-shadow: 4px 4px 0 var(--orange-pale); }
.biens-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.bien-card { background: var(--white); border: 1px solid var(--line); display: flex; flex-direction: column; transition: all 0.35s var(--ease); position: relative; overflow: hidden; color: var(--anthracite); }
.bien-card:hover { transform: translateY(-4px); border-color: var(--anthracite); box-shadow: 8px 8px 0 var(--orange); }
.bien-img { aspect-ratio: 16/10; background-color: var(--gray-300); background-size: cover; background-position: center; filter: grayscale(25%); transition: filter 0.4s var(--ease); position: relative; }
.bien-card:hover .bien-img { filter: grayscale(0); }
.bien-cat { position: absolute; top: 0; left: 0; background: var(--anthracite); color: var(--white); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; padding: 0.5rem 0.9rem; }
.bien-status { position: absolute; bottom: 0; right: 0; background: var(--orange); color: var(--white); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; padding: 0.5rem 0.9rem; }
.bien-status.closed { background: var(--anthracite-soft); }
.bien-body { padding: 1.5rem 1.6rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.bien-loc { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.5rem; }
.bien-body h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 500; line-height: 1.2; margin-bottom: 0.85rem; font-variation-settings: "opsz" 144; }
.bien-specs { display: flex; flex-wrap: wrap; gap: 0.35rem 1.1rem; font-size: 0.8rem; color: var(--gray-700); margin-bottom: 1.4rem; }
.bien-specs span { display: inline-flex; align-items: center; gap: 0.45rem; }
.bien-specs span::before { content: ''; width: 10px; height: 3px; background: var(--orange); }
.bien-foot { margin-top: auto; display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; border-top: 1px solid var(--line); padding-top: 1.1rem; }
.bien-price { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; }
.bien-deadline { font-size: 0.72rem; color: var(--gray-500); letter-spacing: 0.04em; }

/* ---------- Registre table ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); background: var(--white); }
.registre { width: 100%; min-width: 780px; border-collapse: collapse; font-size: 0.88rem; }
.registre th { background: var(--anthracite); color: var(--white); text-align: left; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.95rem 1.25rem; }
.registre td { padding: 1rem 1.25rem; border-top: 1px solid var(--line); vertical-align: middle; }
.registre tbody tr { transition: background 0.2s var(--ease); }
.registre tbody tr:hover { background: var(--cream); }
.badge { display: inline-block; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.35rem 0.7rem; border-left: 3px solid var(--anthracite-soft); background: var(--cream-warm); color: var(--anthracite); }
.badge.b-red { background: var(--orange-pale); border-left-color: var(--orange); color: var(--orange-deep); }
.badge.b-liq { background: var(--anthracite); border-left-color: var(--orange); color: var(--white); }

/* ---------- Tools ---------- */
.tools-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.tool { display: flex; align-items: center; gap: 1.4rem; background: var(--white); border: 1px solid var(--line); padding: 1.25rem 1.5rem; transition: all 0.3s var(--ease); color: var(--anthracite); min-width: 0; }
.tool > * { min-width: 0; }
.tool h4, .tool span { overflow-wrap: break-word; }
.tool:hover { border-color: var(--anthracite); box-shadow: 6px 6px 0 var(--orange); transform: translateY(-2px); }
.tool-ext { width: 48px; height: 48px; flex-shrink: 0; background: var(--anthracite); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 0.64rem; font-weight: 800; letter-spacing: 0.08em; position: relative; }
.tool-ext::after { content: ''; position: absolute; top: 0; right: 0; width: 9px; height: 9px; background: var(--orange); }
.tool-body h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.2rem; }
.tool-body span { font-size: 0.76rem; color: var(--gray-500); }
.tool-dl { margin-left: auto; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); white-space: nowrap; flex-shrink: 0; }
@media (max-width: 480px) { .tool-dl { display: none; } }

/* ---------- Glossary ---------- */
.gloss-group { display: grid; grid-template-columns: 100px 1fr; gap: 3rem; padding: 2.75rem 0; border-top: 1px solid var(--line); }
.gloss-group:last-of-type { border-bottom: 1px solid var(--line); }
.gloss-letter {
    font-family: var(--serif);
    font-size: 3.2rem;
    font-weight: 300;
    line-height: 0.85;
    color: var(--orange);
    font-variation-settings: "opsz" 144;
    position: relative;
    padding-top: 0.9rem;
}
.gloss-letter::before { content: ''; position: absolute; top: 0; left: 3px; width: 26px; height: 4px; background: var(--anthracite); }
.gloss-items { display: grid; gap: 1.6rem; }
.gloss-items dt { font-family: var(--serif); font-size: 1.18rem; font-weight: 500; margin-bottom: 0.3rem; font-variation-settings: "opsz" 144; }
.gloss-items dd { font-size: 0.92rem; color: var(--gray-700); line-height: 1.65; max-width: 72ch; }

/* ---------- Articles ---------- */
.filter-row { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 3rem; }
.filter-row a {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.6rem 1.1rem;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--anthracite);
    transition: all 0.25s var(--ease);
}
.filter-row a.on, .filter-row a:hover { background: var(--anthracite); color: var(--white); border-color: var(--anthracite); }
.filter-row a.on { box-shadow: 3px 3px 0 var(--orange); }
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.article-card { background: var(--white); border: 1px solid var(--line); display: flex; flex-direction: column; transition: all 0.35s var(--ease); position: relative; overflow: hidden; color: var(--anthracite); }
.article-card::before { content: ''; position: absolute; top: 0; left: 0; width: 36px; height: 4px; background: var(--orange); z-index: 2; transition: width 0.4s var(--ease); }
.article-card:hover { transform: translateY(-4px); border-color: var(--anthracite); box-shadow: 8px 8px 0 var(--anthracite); }
.article-card:hover::before { width: 100%; }
.article-img { aspect-ratio: 16/10; background-color: var(--gray-300); background-size: cover; background-position: center; filter: grayscale(25%); transition: filter 0.4s var(--ease); }
.article-card:hover .article-img { filter: grayscale(0); }
.article-body { padding: 1.5rem 1.6rem 1.75rem; display: flex; flex-direction: column; flex: 1; }
.article-body h3 { font-family: var(--serif); font-size: 1.22rem; font-weight: 500; line-height: 1.25; margin-bottom: 0.7rem; font-variation-settings: "opsz" 144; }
.article-body p { font-size: 0.88rem; color: var(--gray-700); line-height: 1.6; margin-bottom: 1.4rem; flex: 1; }
.article-more { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); }
.pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 3.5rem; }
.pagination a { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--line); font-size: 0.85rem; font-weight: 600; background: var(--white); transition: all 0.25s var(--ease); }
.pagination a.on { background: var(--anthracite); color: var(--white); border-color: var(--anthracite); box-shadow: 4px 4px 0 var(--orange); }
.pagination a:hover:not(.on) { border-color: var(--anthracite); }

/* ---------- Newsletter ---------- */
.newsletter { position: relative; background: var(--anthracite-dark); color: var(--white); padding: 5rem 0; overflow: hidden; }
.newsletter::before { content: ''; position: absolute; top: 0; right: 0; width: 34%; height: 100%; background: var(--orange); opacity: 0.14; clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%); }
.nl-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: center; }
.nl-inner h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 350; line-height: 1.1; font-variation-settings: "opsz" 144; }
.nl-inner h2 em { color: var(--orange-soft); }
.nl-form { display: flex; gap: 0.75rem; }
.nl-form input {
    flex: 1;
    min-width: 0;
    padding: 1.05rem 1.25rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    font-family: var(--sans);
    font-size: 0.9rem;
    border-radius: 0;
}
.nl-form input::placeholder { color: rgba(255, 255, 255, 0.4); }
.nl-form input:focus { outline: none; border-color: var(--orange); box-shadow: 4px 4px 0 rgba(232, 119, 34, 0.3); }
.nl-note { margin-top: 0.85rem; font-size: 0.74rem; color: rgba(255, 255, 255, 0.45); }

/* ---------- Contact form ---------- */
.contact-layout { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 4.5rem; align-items: start; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem 1.5rem; }
.field { display: flex; flex-direction: column; gap: 0.5rem; min-width: 0; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--anthracite); }
.field label .req { color: var(--orange); }
.field input, .field select, .field textarea {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: 0.95rem 1.1rem;
    border: 1px solid var(--gray-300);
    background: var(--white);
    font-family: var(--sans);
    font-size: 0.92rem;
    color: var(--anthracite);
    border-radius: 0;
    transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); box-shadow: 4px 4px 0 var(--orange-pale); }
.field textarea { min-height: 160px; resize: vertical; }
.consent { grid-column: 1 / -1; display: flex; gap: 0.8rem; align-items: flex-start; font-size: 0.8rem; color: var(--gray-700); line-height: 1.55; }
.consent input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--orange); flex-shrink: 0; }
.form-foot { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-top: 0.5rem; }
.form-note { font-size: 0.76rem; color: var(--gray-500); }
.aside-block { background: var(--cream); border-top: 4px solid var(--orange); padding: 1.9rem; margin-bottom: 1.25rem; }
.aside-block h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 500; margin-bottom: 0.85rem; font-variation-settings: "opsz" 144; }
.aside-block p { font-size: 0.9rem; color: var(--gray-700); line-height: 1.65; }
.aside-block .tel { display: block; font-family: var(--serif); font-size: 1.5rem; margin: 0.75rem 0 0.35rem; color: var(--anthracite); }
.aside-block.dark { background: var(--anthracite); color: var(--white); }
.aside-block.dark h3 { color: var(--white); }
.aside-block.dark p { color: rgba(255, 255, 255, 0.7); }
.aside-block.dark .tel { color: var(--orange-soft); }
.hours { margin-top: 0.75rem; list-style: none; }
.hours li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.5rem 0; font-size: 0.88rem; color: var(--gray-700); border-bottom: 1px solid var(--line); }
.hours li:last-child { border-bottom: none; }
.hours li strong { color: var(--anthracite); font-weight: 600; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; background: var(--cream-warm); color: var(--anthracite); padding: 5rem 0; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; top: 0; right: 0; width: 30%; height: 100%; background: var(--orange-soft); clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%); opacity: 0.4; }
.cta-inner { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; gap: 2.5rem; flex-wrap: wrap; }
.cta-inner h2 { font-family: var(--serif); font-size: clamp(1.9rem, 3.2vw, 2.8rem); font-weight: 350; line-height: 1.1; font-variation-settings: "opsz" 144, "SOFT" 30; }
.cta-inner h2 em { color: var(--orange); }
.cta-inner p { margin-top: 0.85rem; color: var(--gray-700); max-width: 54ch; font-size: 0.98rem; line-height: 1.65; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-white { background: var(--white); color: var(--anthracite); border-color: var(--white); }
.btn-white:hover { background: var(--orange); color: var(--white); border-color: var(--orange); transform: translateY(-2px); box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.25); }

/* ---------- Placeholder imagery (biens / articles) ---------- */
.ph-b1 { background-image: linear-gradient(135deg, rgba(62,62,66,0.35), rgba(232,119,34,0.12)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=900&q=80'); }
.ph-b2 { background-image: linear-gradient(135deg, rgba(62,62,66,0.35), rgba(62,62,66,0.1)), url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=900&q=80'); }
.ph-b3 { background-image: linear-gradient(135deg, rgba(62,62,66,0.4), rgba(232,119,34,0.12)), url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?w=900&q=80'); }
.ph-b4 { background-image: linear-gradient(135deg, rgba(62,62,66,0.4), rgba(62,62,66,0.12)), url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=900&q=80'); }
.ph-b5 { background-image: linear-gradient(135deg, rgba(62,62,66,0.3), rgba(232,119,34,0.12)), url('https://images.unsplash.com/photo-1509440159596-0249088772ff?w=900&q=80'); }
.ph-b6 { background-image: linear-gradient(135deg, rgba(62,62,66,0.4), rgba(62,62,66,0.15)), url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?w=900&q=80'); }
.ph-a1 { background-image: linear-gradient(135deg, rgba(62,62,66,0.35), rgba(232,119,34,0.12)), url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=900&q=80'); }
.ph-a2 { background-image: linear-gradient(135deg, rgba(62,62,66,0.35), rgba(62,62,66,0.1)), url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=900&q=80'); }
.ph-a3 { background-image: linear-gradient(135deg, rgba(62,62,66,0.4), rgba(232,119,34,0.12)), url('https://images.unsplash.com/photo-1555848962-6e79363ec58f?w=900&q=80'); }
.ph-a4 { background-image: linear-gradient(135deg, rgba(62,62,66,0.35), rgba(62,62,66,0.12)), url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=900&q=80'); }
.ph-a5 { background-image: linear-gradient(135deg, rgba(62,62,66,0.35), rgba(232,119,34,0.1)), url('https://images.unsplash.com/photo-1573497019940-1c28c88b4f3e?w=900&q=80'); }
.ph-a6 { background-image: linear-gradient(135deg, rgba(62,62,66,0.4), rgba(62,62,66,0.12)), url('https://images.unsplash.com/photo-1565043666747-69f6646db940?w=900&q=80'); }

/* ---------- Associés ---------- */
.associes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.associes-grid.profile-layout { grid-template-columns: 380px 1fr; align-items: start; }
.associe-card-solo { grid-template-columns: 1fr; max-width: 380px; }
.associe-card-solo .associe-photo { min-height: 0; aspect-ratio: 3/4; background-position: center 15%; }
/* Portraits réels : photo flottée en haut à gauche à taille fixe,
   le texte l'entoure puis reprend toute la largeur en dessous. */
.associe-card.card-flow { display: block; }
.associe-card.card-flow::after { content: ''; display: block; clear: both; }
.associe-card.card-flow .associe-photo.portrait {
    float: left;
    width: 230px;
    aspect-ratio: 3/4;
    min-height: 0;
    margin: 0 1.75rem 1.5rem 0;
    background-position: center 15%;
}
.associe-card.card-flow .associe-body { display: block; }
.associe-card {
    background: var(--white);
    border: 1px solid var(--line);
    display: grid;
    grid-template-columns: 230px 1fr;
    position: relative;
    overflow: hidden;
    transition: all 0.35s var(--ease);
}
.associe-card::before { content: ''; position: absolute; top: 0; left: 0; width: 36px; height: 4px; background: var(--orange); z-index: 2; transition: width 0.4s var(--ease); }
.associe-card:hover { border-color: var(--anthracite); transform: translateY(-4px); box-shadow: 8px 8px 0 var(--orange); }
.associe-card:hover::before { width: 100%; }
.associe-photo {
    background-color: var(--anthracite);
    background-size: cover;
    background-position: center 20%;
    filter: grayscale(30%);
    transition: filter 0.4s var(--ease);
    min-height: 300px;
    position: relative;
}
.associe-photo::after { content: ''; position: absolute; bottom: 0; left: 0; width: 44px; height: 6px; background: var(--orange); }
.associe-card:hover .associe-photo { filter: grayscale(0); }
.associe-body { padding: 1.9rem 2rem; display: flex; flex-direction: column; }
.associe-body h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; font-variation-settings: "opsz" 144; }
.associe-role { display: block; font-size: 0.64rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange); margin: 0.4rem 0 1rem; }
.associe-bio { font-size: 0.9rem; color: var(--gray-700); line-height: 1.65; margin-bottom: 1.25rem; }
.associe-facts { margin-top: auto; border-top: 1px solid var(--line); padding-top: 1rem; list-style: none; }
.associe-facts li { display: flex; gap: 0.6rem; align-items: baseline; padding: 0.3rem 0; font-size: 0.82rem; color: var(--gray-700); }
.associe-facts li::before { content: ''; width: 12px; height: 3px; background: var(--orange); flex-shrink: 0; position: relative; top: -3px; }

/* ---------- Vision block ---------- */
.vision-block { position: relative; background: var(--anthracite); color: var(--white); padding: 3rem; margin-top: 1.25rem; overflow: hidden; }
.vision-block::before { content: ''; position: absolute; top: 0; left: 0; width: 52px; height: 6px; background: var(--orange); z-index: 1; }
.vision-block::after { content: ''; position: absolute; top: 0; right: 0; width: 24%; height: 100%; background: rgba(232, 119, 34, 0.09); clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%); }
.vision-label { display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange-soft); margin-bottom: 1rem; position: relative; z-index: 1; }
.vision-quote {
    font-family: var(--serif);
    font-size: clamp(1.25rem, 2.2vw, 1.75rem);
    font-weight: 350;
    line-height: 1.45;
    max-width: 62ch;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    font-variation-settings: "opsz" 144;
}
.vision-quote em { color: var(--orange-soft); }
.vision-sign { display: flex; gap: 2.5rem; flex-wrap: wrap; position: relative; z-index: 1; }
.vision-sign span { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-300); padding-top: 0.6rem; border-top: 2px solid var(--orange); }

/* ---------- Domaines (Nos études) ---------- */
.domaines-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.domaines-grid.cols-3 { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.domaine-card {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    color: var(--anthracite);
    position: relative;
    overflow: hidden;
    transition: all 0.35s var(--ease);
}
.domaine-card::before { content: ''; position: absolute; top: 0; left: 0; width: 32px; height: 4px; background: var(--orange); z-index: 2; transition: width 0.4s var(--ease); }
.domaine-card:hover { transform: translateY(-4px); border-color: var(--anthracite); box-shadow: 8px 8px 0 var(--orange); }
.domaine-card:hover::before { width: 100%; }
.domaine-num { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; color: var(--gray-500); padding-top: 0.4rem; }
.domaine-card h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 500; line-height: 1.15; margin: 0.6rem 0 1rem; font-variation-settings: "opsz" 144; }
.domaine-card p { font-size: 0.86rem; color: var(--gray-700); line-height: 1.55; margin-bottom: 1rem; }
.domaine-card ul { list-style: none; margin-bottom: 1.5rem; }
.domaine-card li { font-size: 0.84rem; color: var(--gray-700); padding: 0.4rem 0; border-top: 1px solid var(--line); }
.domaine-card li a { display: flex; justify-content: space-between; gap: 0.5rem; color: var(--anthracite); }
.domaine-card li a::after { content: '→'; color: var(--orange); opacity: 0; transition: opacity 0.2s var(--ease); }
.domaine-card li a:hover { color: var(--orange); }
.domaine-card li a:hover::after { opacity: 1; }
.domaine-card .card-link { margin-top: auto; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); }

/* liens dans les encadrés latéraux des missions */
.m-aside li a { color: var(--anthracite); border-bottom: 1px solid var(--orange-pale); transition: all 0.2s var(--ease); }
.m-aside li a:hover { color: var(--orange); border-color: var(--orange); }

/* carte CTA de la grille d'accès en pleine largeur (7e élément) */
.access-grid .access-card-cta { grid-column: 1 / -1; min-height: 220px; }

/* ---------- Bureaux + équipe ---------- */
.bureaux-equipe { margin-top: 4.5rem; padding-top: 3.5rem; border-top: 1px solid var(--line-light); }
.bureaux-equipe .section-title { margin-bottom: 2.5rem; }

/* ---------- Recrutement ---------- */
.job-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 1.6rem 0;
    border-top: 1px solid var(--line);
    position: relative;
    transition: padding-left 0.3s var(--ease);
}
.job-row:last-of-type { border-bottom: 1px solid var(--line); }
.job-row::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--orange); transform: scaleY(0); transform-origin: top; transition: transform 0.3s var(--ease); }
.job-row:hover::before { transform: scaleY(1); }
.job-row:hover { padding-left: 1.25rem; }
.job-row h3 { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; margin-bottom: 0.5rem; font-variation-settings: "opsz" 144; }
.job-meta { display: flex; flex-wrap: wrap; gap: 0.5rem 1.4rem; font-size: 0.78rem; color: var(--gray-700); align-items: center; }
.job-meta span { display: inline-flex; align-items: center; gap: 0.45rem; }
.job-meta span::before { content: ''; width: 10px; height: 3px; background: var(--orange); }
.job-meta .badge::before { content: none; }

/* ---------- Recherche globale ---------- */
.search-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--anthracite);
    flex-shrink: 0;
    transition: all 0.25s var(--ease);
}
.search-toggle:hover { background: var(--anthracite); border-color: var(--anthracite); color: var(--white); }

.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(26, 26, 28, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 9vh 1.5rem 2rem;
}
.search-overlay[hidden] { display: none; }
.search-panel {
    width: 100%;
    max-width: 680px;
    max-height: 76vh;
    background: var(--white);
    border-top: 4px solid var(--orange);
    box-shadow: 0 30px 80px rgba(26, 26, 28, 0.4);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.search-bar {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1.1rem 1.4rem;
    border-bottom: 1px solid var(--line);
}
.search-bar svg { flex-shrink: 0; color: var(--orange); }
.search-bar input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--sans);
    font-size: 1.02rem;
    color: var(--anthracite);
}
.search-bar input::placeholder { color: var(--gray-500); }
.search-bar kbd {
    flex-shrink: 0;
    font-family: var(--sans);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--gray-500);
    border: 1px solid var(--gray-300);
    padding: 0.25rem 0.5rem;
    background: var(--cream);
}
.search-status {
    padding: 0.7rem 1.4rem;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray-500);
    border-bottom: 1px solid var(--line);
    flex-shrink: 0;
}
.search-results { overflow-y: auto; }
.sr-item {
    display: block;
    padding: 1rem 1.4rem 1.1rem;
    border-bottom: 1px solid var(--line);
    position: relative;
    transition: background 0.15s var(--ease);
}
.sr-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--orange);
    transform: scaleY(0);
    transition: transform 0.2s var(--ease);
}
.sr-item:hover, .sr-item.on { background: var(--cream); }
.sr-item:hover::before, .sr-item.on::before { transform: scaleY(1); }
.sr-item:last-child { border-bottom: none; }
.sr-origin {
    display: block;
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.35rem;
}
.sr-snippet { display: block; font-size: 0.9rem; color: var(--gray-700); line-height: 1.55; }
.sr-snippet mark {
    background: var(--orange-pale);
    color: var(--orange-deep);
    font-weight: 600;
    padding: 0 2px;
}
.search-empty { padding: 1.75rem 1.4rem; font-size: 0.9rem; color: var(--gray-500); }

/* ---------- Sub-pages responsive ---------- */
@media (max-width: 1100px) {
    .page-hero-block { display: none; }
    .subnav { top: 61px; }
    .story-main { grid-template-columns: 1fr; gap: 2rem; align-content: center; }
    .story-year-wrap { order: -1; justify-self: start; }
    .story-track { height: 520vh; }
    .associes-grid { grid-template-columns: 1fr; }
    .associes-grid.profile-layout { grid-template-columns: 1fr; }
    .domaines-grid, .domaines-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
    .footer-links-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 2rem; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .step::after { content: none; }
    .mission-row { grid-template-columns: 1fr; gap: 1.25rem; }
    .m-aside { border-left: none; border-top: 3px solid var(--orange); padding-left: 0; padding-top: 1.25rem; max-width: 440px; }
    .def-grid { grid-template-columns: 1fr; }
    .deonto { grid-template-columns: 1fr; gap: 2rem; }
    .profile-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .biens-grid { grid-template-columns: repeat(2, 1fr); }
    .articles-grid { grid-template-columns: repeat(2, 1fr); }
    .tools-grid { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
    .nl-inner { grid-template-columns: 1fr; }
    .searchbar { grid-template-columns: 1fr 1fr; }
    .gloss-group { grid-template-columns: 1fr; gap: 1.25rem; }
    .tl-item { grid-template-columns: 1fr; gap: 0.85rem; }
}
@media (max-width: 640px) {
    .page-hero { padding: 3.25rem 0; }
    .page-section { padding: 4rem 0; }
    .profile { padding: 4rem 0; }
    .team-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .biens-grid, .articles-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .searchbar { grid-template-columns: 1fr; }
    .nl-form { flex-direction: column; }
    .cta-inner { flex-direction: column; align-items: flex-start; }
    .associe-card { grid-template-columns: 1fr; }
    .domaines-grid, .domaines-grid.cols-3 { grid-template-columns: 1fr; }
    .story-grid { padding-top: 84px; }
    .story-title { font-size: 1.4rem; }
    .story-ring text { display: none; }
    .story-track { height: 480vh; }
    .story-item p { font-size: 0.9rem; }
    .associe-photo, .associe-card-solo .associe-photo { min-height: 0; aspect-ratio: 16/10; background-position: center 25%; }
    .associe-card.card-flow .associe-photo.portrait { float: none; width: 100%; aspect-ratio: 4/3; margin: 0; background-position: center 22%; }
    .associe-card-solo .associe-photo.portrait { aspect-ratio: 4/3; background-position: center 22%; }
    .vision-block { padding: 2rem 1.5rem; }
    .job-row { grid-template-columns: 1fr; gap: 1.25rem; }
    .job-row .btn { justify-self: start; }
}


/* ---------- Bandeau cookies ---------- */
.cookie-banner {
    position: fixed;
    left: 1.25rem;
    bottom: 1.25rem;
    z-index: 300;
    max-width: 440px;
    background: var(--white);
    border: 1px solid var(--line);
    border-top: 4px solid var(--orange);
    box-shadow: 12px 12px 0 rgba(26, 26, 28, 0.18);
    padding: 1.25rem 1.4rem;
}
.cookie-banner p { font-size: 0.84rem; line-height: 1.6; color: var(--gray-700); margin-bottom: 1rem; }
.cookie-banner p a { color: var(--orange); font-weight: 600; }
.cookie-actions { display: flex; gap: 0.6rem; justify-content: flex-end; }
@media (max-width: 640px) {
    .cookie-banner { left: 0.75rem; right: 0.75rem; bottom: 0.75rem; max-width: none; }
}

/* bureaux cliquables */
.offices-grid a.office { display: block; color: inherit; }

/* ==========================================================
   GLOSSAIRE — barre d'outils (recherche + filtres), index A–Z,
   fiches en accordéon. Réutilise les tokens du design system.
   ========================================================== */

/* ---------- Barre d'outils collante : recherche + filtres ---------- */
.glossary-toolbar {
    position: sticky;
    top: 69px;
    z-index: 90;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}
.glossary-toolbar-inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0.85rem 0 0.7rem;
}
.glossary-search-wrap { position: relative; flex: 1; display: flex; align-items: center; }
.glossary-search-wrap > svg { position: absolute; left: 1rem; color: var(--orange); pointer-events: none; }
.glossary-search {
    width: 100%;
    font-family: var(--sans);
    font-size: 0.95rem;
    color: var(--anthracite);
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 0.85rem 2.6rem 0.85rem 2.9rem;
    transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.glossary-search::placeholder { color: var(--gray-500); }
.glossary-search::-webkit-search-cancel-button { -webkit-appearance: none; }
.glossary-search:focus { outline: none; border-color: var(--orange); background: var(--white); }
.glossary-clear {
    position: absolute;
    right: 0.55rem;
    width: 26px;
    height: 26px;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-size: 1.25rem;
    line-height: 1;
}
.glossary-clear:hover { color: var(--anthracite); }
.glossary-search-wrap.has-value .glossary-clear { display: flex; }
.glossary-count {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-500);
    white-space: nowrap;
    flex-shrink: 0;
}
.glossary-count strong { color: var(--orange); font-weight: 700; }
.glossary-filters-wrap { padding-bottom: 0.8rem; }
.glossary-filters { display: flex; gap: 0.5rem; overflow-x: auto; scrollbar-width: none; }
.glossary-filters::-webkit-scrollbar { display: none; }
.gchip {
    white-space: nowrap;
    font-family: var(--sans);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.55rem 1rem;
    border: 1px solid var(--line);
    color: var(--anthracite);
    background: var(--white);
    transition: all 0.2s var(--ease);
}
.gchip:hover { border-color: var(--anthracite); }
.gchip.is-active { background: var(--orange); border-color: var(--orange); color: var(--white); }

/* ---------- Index alphabétique A–Z ---------- */
.glossary-az {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--line);
}
.glossary-az a {
    min-width: 36px;
    padding: 0.42rem 0.3rem;
    text-align: center;
    font-family: var(--sans);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--anthracite);
    border: 1px solid var(--line);
    transition: all 0.2s var(--ease);
}
.glossary-az a:hover { background: var(--anthracite); color: var(--white); border-color: var(--anthracite); }
.glossary-az a.is-faq {
    min-width: auto;
    padding: 0.42rem 0.85rem;
    font-size: 0.64rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    border-color: var(--orange-soft);
}
.glossary-az a.is-faq:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }

/* ---------- Groupes par lettre ---------- */
.glossary-group { margin-bottom: 2.75rem; scroll-margin-top: 190px; }
.glossary-letter {
    font-family: var(--serif);
    font-size: 1.9rem;
    font-weight: 500;
    color: var(--orange);
    letter-spacing: -0.01em;
    margin-bottom: 1.1rem;
    padding-bottom: 0.55rem;
    border-bottom: 2px solid var(--line);
    font-variation-settings: "opsz" 144;
}
.glossary-faq { margin-top: 4.5rem; padding-top: 3.5rem; border-top: 4px solid var(--orange); scroll-margin-top: 160px; }
.glossary-faq .glossary-letter { color: var(--anthracite); font-size: clamp(1.7rem, 3vw, 2.4rem); border-bottom-color: var(--anthracite); }

/* ---------- Fiche (accordéon <details>) ---------- */
.term {
    border: 1px solid var(--line);
    border-left: 3px solid transparent;
    margin-bottom: 0.6rem;
    background: var(--white);
    transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
    scroll-margin-top: 190px;
}
.term:hover { border-left-color: var(--orange); }
.term[open] { border-left-color: var(--orange); background: var(--off-white); }
.term > summary {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1.05rem 1.4rem;
    cursor: pointer;
    list-style: none;
    user-select: none;
}
.term > summary::-webkit-details-marker { display: none; }
.term > summary::marker { content: ''; }
.term > summary:focus-visible { outline: 2px solid var(--orange); outline-offset: -2px; }
.term-name {
    font-family: var(--serif);
    font-size: 1.12rem;
    font-weight: 500;
    color: var(--anthracite);
    font-variation-settings: "opsz" 144;
    flex: 1;
    line-height: 1.3;
}
.term-pills { display: flex; flex-wrap: wrap; gap: 0.35rem; justify-content: flex-end; }
.term-pill {
    font-family: var(--sans);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-700);
    background: var(--cream);
    border: 1px solid var(--line);
    padding: 0.22rem 0.5rem;
    white-space: nowrap;
}
.term-chev { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.term-chev::before, .term-chev::after {
    content: '';
    position: absolute;
    background: var(--orange);
    transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.term-chev::before { top: 8px; left: 2px; width: 14px; height: 2px; }
.term-chev::after { top: 2px; left: 8px; width: 2px; height: 14px; }
.term[open] .term-chev::after { opacity: 0; transform: scaleY(0); }
.term-body { padding: 0 1.4rem 1.45rem; }
.term-def { font-size: 0.98rem; line-height: 1.65; color: var(--anthracite); margin-bottom: 1.1rem; max-width: 74ch; }
.term-block { margin-bottom: 0.9rem; max-width: 74ch; }
.term-block-label {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.28rem;
}
.term-block p { font-size: 0.9rem; line-height: 1.62; color: var(--gray-700); }
.term-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.5rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    border-bottom: 2px solid var(--orange-pale);
    padding-bottom: 3px;
    transition: border-color 0.2s var(--ease), gap 0.2s var(--ease);
}
.term-link:hover { border-color: var(--orange); gap: 0.7rem; }
.term mark { background: var(--orange-pale); color: var(--orange-deep); font-weight: 600; padding: 0 2px; }

/* ---------- État vide ---------- */
.glossary-empty { padding: 3.5rem 0; text-align: center; font-size: 1rem; color: var(--gray-500); }
.glossary-empty strong { color: var(--anthracite); }

/* ---------- Responsive glossaire ---------- */
@media (max-width: 1100px) {
    .glossary-toolbar { top: 61px; }
    .glossary-group, .term { scroll-margin-top: 158px; }
    .glossary-faq { scroll-margin-top: 130px; }
}
@media (max-width: 640px) {
    .glossary-toolbar-inner { flex-wrap: wrap; gap: 0.6rem; padding-bottom: 0.4rem; }
    .glossary-count { order: 2; }
    .term > summary { flex-wrap: wrap; gap: 0.5rem 0.7rem; padding: 0.95rem 1.1rem; }
    .term-name { font-size: 1.04rem; flex-basis: calc(100% - 30px); }
    .term-pills { justify-content: flex-start; flex-basis: 100%; }
    .term-body { padding: 0 1.1rem 1.25rem; }
    .glossary-group, .term { scroll-margin-top: 150px; }
    .glossary-az a { min-width: 32px; font-size: 0.76rem; }
}

/* ---------- Glossaire : mode recherche (liste à plat, classée par pertinence) ---------- */
.glossary-list.searching { display: flex; flex-direction: column; }
.glossary-list.searching .glossary-group { display: contents; }
.glossary-list.searching .glossary-letter { display: none; }

/* ---------- Bande CTA : boutons adaptés au fond beige (scopé à .cta-band) ---------- */
.cta-band .btn-white { background: var(--orange); color: var(--white); border-color: var(--orange); }
.cta-band .btn-white:hover { background: var(--orange-dark); border-color: var(--orange-dark); box-shadow: 6px 6px 0 var(--anthracite); }
.cta-band .btn-ghost-light { color: var(--anthracite); border-color: var(--anthracite); }
.cta-band .btn-ghost-light:hover { background: var(--anthracite); color: var(--white); border-color: var(--anthracite); box-shadow: 6px 6px 0 var(--orange); }
