/* ==== styles from block 1 ==== */

  :root {
    --orange: #E96B0B;
    --orange-contrast: #B85A09;
    --brun: #171717;
    --creme: #fff;
    --brun-light: #2e2e2e;
    --brun-dark: #1a1a1a;
    --orange-light: #F58A3A;
    --white: #fafafa;
    --text: #2a2a2a;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Outfit', system-ui, -apple-system, sans-serif;
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 4rem;
    background: #efefef;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(42,42,42,0.1);
    transition: box-shadow .3s;
  }
  nav.scrolled { box-shadow: 0 4px 40px rgba(42,42,42,0.1); }

  .nav-logo {
    display: flex; flex-direction: row; align-items: center; gap: .75rem; line-height: 1; text-decoration: none;
  }
  .nav-logo-img {
    height: 2.75rem; max-height: 44px; width: auto; object-fit: contain; flex-shrink: 0;
  }
  .nav-logo-text {
    display: flex; flex-direction: column;
  }
  .nav-logo .firm { font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 1.35rem; font-weight: 600; letter-spacing: .08em; color: var(--orange); }
  .nav-logo .sub { font-size: .6rem; letter-spacing: .25em; text-transform: uppercase; color: var(--orange-contrast); margin-top: .25rem; font-weight: 500; }

  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    font-size: .78rem; letter-spacing: .15em; text-transform: uppercase;
    text-decoration: none; color: var(--brun); font-weight: 500;
    position: relative; padding-bottom: 3px;
    transition: color .25s;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1.5px; background: var(--orange);
    transition: width .3s ease;
  }
  .nav-links a:hover { color: var(--orange); }
  .nav-links a:hover::after { width: 100%; }

  /* Dropdown "Domaines" */
  .nav-dropdown { position: relative; }
  /* zone tampon pour éviter la perte de hover entre le lien et le menu */
  .nav-dropdown::after{
    content:"";
    position:absolute;
    left:-18px;
    right:-18px;
    top:100%;
    height:16px;
    background:transparent;
  }
  .nav-dropdown-toggle { display: inline-flex; align-items: center; gap: .5rem; }
  .nav-caret {
    width: 0; height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid currentColor;
    opacity: .75;
    transform: translateY(1px);
  }
  .nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    margin-top: 14px;
    left: -14px;
    min-width: 320px;
    max-height: min(60vh, 520px);
    overflow: auto;
    background: rgba(250,250,250,.98);
    border: 1px solid rgba(42,42,42,.12);
    box-shadow: 0 18px 50px rgba(42,42,42,.14);
    padding: .75rem .5rem;
    z-index: 200;
    backdrop-filter: blur(10px);
  }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu { display: block; }
  /* IMPORTANT: sur-spécifier pour écraser `.nav-links a` (qui sinon "blanchit" le texte) */
  .nav-links .nav-dropdown-menu .nav-dropdown-item{
    display: block;
    padding: .55rem .75rem;
    border-radius: 6px;
    text-decoration: none;
    color: var(--brun);
    font-size: .82rem;
    letter-spacing: .02em;
    text-transform: none !important;
    font-weight: 500;
    white-space: normal;
    line-height: 1.3;
    position: relative;
    padding-bottom: .55rem; /* neutralise le padding-bottom du menu principal */
  }
  .nav-links .nav-dropdown-menu .nav-dropdown-item::after{ display:none !important; }
  .nav-links .nav-dropdown-menu .nav-dropdown-item:hover {
    background: #000;
    border-radius: 0;
    color: #fff;
  }
  .nav-links .nav-dropdown-menu .nav-dropdown-item--all {
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 600;
    border-bottom: 1px solid rgba(42,42,42,.08);
    padding-bottom: .7rem;
    margin-bottom: .35rem;
  }

  /* Responsive: dropdown désactivé (on passe par le menu mobile) */
  @media (max-width: 980px){
    .nav-dropdown-menu{ display:none !important; }
    .nav-dropdown::after{ display:none; }
    .nav-caret{ display:none; }
  }

  .nav-cta {
    background: var(--orange); color: white;
    padding: .6rem 1.4rem; border-radius: 2px;
    font-size: .75rem; letter-spacing: .15em; text-transform: uppercase;
    text-decoration: none; font-weight: 500;
    transition: background .25s, transform .2s;
  }
  .nav-cta:hover { background: var(--brun); transform: translateY(-1px); }

  .hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; padding: .5rem; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--brun); transition: transform .3s ease, opacity .3s ease; transform-origin: center; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu { display: none; }

  /* Bouton crayon admin — visible uniquement pour l'admin connecté */
  .admin-edit-fab {
    position: fixed;
    right: 1.5rem;
    bottom: 2rem;
    z-index: 999;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange);
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(233, 107, 11, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
  }
  .admin-edit-fab:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(233, 107, 11, 0.5);
    color: white;
  }
  .admin-edit-fab svg {
    width: 22px;
    height: 22px;
  }

  /* Mobile sous-menu "Domaines" */
  .mobile-submenu-group { display: block; }
  .mobile-submenu-group > summary { list-style: none; }
  .mobile-submenu-group > summary::-webkit-details-marker { display: none; }
  .mobile-submenu-title {
    font-weight: 600;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
  .mobile-submenu-title::after{
    content:"";
    width: 0; height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 7px solid rgba(250,250,250,.9);
    opacity: .85;
    transform: translateY(1px);
    transition: transform .2s ease;
  }
  .mobile-submenu-group[open] > .mobile-submenu-title::after{
    transform: translateY(1px) rotate(180deg);
  }
  .mobile-submenu {
    display: flex;
    flex-direction: column;
    gap: .15rem;
    padding: .25rem 0 .5rem;
  }
  .mobile-submenu-item{
    font-size: .78rem;
    letter-spacing: .02em;
    text-transform: none;
    padding: .55rem 0 .55rem 1rem;
    border-bottom: 1px solid rgba(42,42,42,.06);
    position: relative;
  }
  .mobile-submenu-item::before{
    content:"";
    position:absolute;
    left:.35rem;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    transform: translateY(-50%);
    background: rgba(233,107,11,.35);
  }
  .mobile-submenu-item--all{
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .72rem;
    font-weight: 600;
  }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    display: grid; grid-template-columns: 1fr 1fr;
    padding-top: 80px;
    overflow: hidden;
  }

  .hero-left {
    background: var(--brun);
    display: flex; flex-direction: column; justify-content: center;
    padding: 6rem 4rem 4rem 5rem;
    position: relative; overflow: hidden;
  }
  .hero-left::before {
    content: ''; position: absolute; top: -80px; right: -80px;
    width: 300px; height: 300px; border-radius: 50%;
    background: rgba(233,107,11,0.12);
    pointer-events: none;
  }

  .hero-eyebrow {
    font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
    color: var(--orange); font-weight: 500; margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: .75rem;
  }
  .hero-eyebrow::before {
    content: ''; width: 32px; height: 1px; background: var(--orange);
  }

  .hero-title {
    font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.05;
    color: var(--creme);
    margin-bottom: 2rem;
    letter-spacing: 8px;
    text-transform: uppercase;
  }
  .hero-title em, .hero-title .hero-line-orange {
    font-style: normal;
    color: var(--orange-light) !important;
    font-weight: 500;
  }

  .hero-desc {
    font-size: .92rem; line-height: 1.85; color: rgba(237,229,208,.75);
    max-width: 440px; margin-bottom: 3rem;
    font-weight: 300;
  }

  .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    background: var(--orange); color: white;
    padding: 1rem 2.2rem; border: none; cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: .78rem; letter-spacing: .15em; text-transform: uppercase;
    font-weight: 500; text-decoration: none;
    transition: background .25s, transform .2s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); }

  .btn-secondary {
    background: transparent; color: var(--orange);
    padding: 1rem 2.2rem;
    border: 1px solid var(--orange);
    font-family: 'Outfit', sans-serif;
    font-size: .78rem; letter-spacing: .15em; text-transform: uppercase;
    font-weight: 500; cursor: pointer; text-decoration: none;
    transition: border-color .25s, color .25s;
    display: inline-block;
  }
  .btn-secondary:hover { border-color: white; color: white; }

  .hero-right {
    position: relative; overflow: hidden;
    background: var(--creme);
    min-height: 400px;
  }
  .hero-right-image {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    display: block;
  }

  /* ─── HERO SLIDER ─── */
  .hero-slider {
    position: absolute; inset: 0;
    z-index: 1;
  }
  .hero-slider-track {
    position: absolute; inset: 0;
  }
  .hero-slider-slide {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
  }
  .hero-slider-slide.active {
    opacity: 1;
    pointer-events: auto;
  }
  .hero-slider-slide .hero-right-image {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
  }
  .hero-slider-dots {
    position: absolute; bottom: 5rem; left: 50%; transform: translateX(-50%);
    display: flex; gap: 0.5rem; z-index: 3;
  }
  .hero-slider-dot {
    width: 8px; height: 8px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,.6);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background .25s, border-color .25s;
  }
  .hero-slider-dot:hover {
    background: rgba(255,255,255,.4);
  }
  .hero-slider-dot.active {
    background: var(--orange);
    border-color: var(--orange);
  }
  .hero-right-gradient {
    position: absolute; inset: 0;
    min-height: 0;
    background: linear-gradient(160deg, #171717 0%, #2e2e2e 40%, #E96B0B 100%);
    display: flex; align-items: center; justify-content: center;
  }
  .hero-right::after {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(135deg, rgba(42,42,42,.08) 0%, transparent 60%);
  }

  .hero-stat-bar {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: rgba(42,42,42,0.85); backdrop-filter: blur(8px);
    display: flex; justify-content: space-around;
    padding: 1.5rem 2rem; z-index: 2;
  }
  .stat { text-align: center; color: var(--creme); }
  .stat-num {
    font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 2.2rem; font-weight: 600; line-height: 1;
    color: var(--orange); display: block;
  }
  .stat-label { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; opacity: .75; margin-top: .25rem; display: block; }

  /* ─── INTRO BAND ─── */
  .intro-band {
    background: #282828;
    padding: 3.5rem 5rem;
    text-align: center;
  }
  .intro-band p {
    font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    font-style: italic; color: var(--creme);
    max-width: 900px; margin: 0 auto;
    line-height: 1.7; font-weight: 300;
  }
  .intro-band strong { font-weight: 600; font-style: normal; color: var(--white); }

  /* ─── DOMAINES ─── */
  .domaines {
    padding: 7rem 5rem;
    background: var(--white);
  }
  .section-header {
    display: flex; align-items: baseline; gap: 2rem;
    margin-bottom: 4rem;
  }
  .section-title-group {}
  .section-eyebrow {
    font-size: .65rem; letter-spacing: .3em; text-transform: uppercase;
    color: var(--orange-contrast); font-weight: 500; margin-bottom: .5rem;
  }
  .section-title {
    font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400; color: var(--brun); line-height: 1.1;
  }
  .section-header-action { margin-left: auto; flex-shrink: 0; }
  .section-link {
    font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
    font-weight: 500; color: var(--orange); text-decoration: none;
    white-space: nowrap;
  }
  .section-link:hover { text-decoration: underline; }

  .home-actus {
    padding: 7rem 5rem;
    background: var(--white);
  }
  .home-actus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(42,42,42,.07);
  }

  .domaines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5px;
    background: rgba(42,42,42,.08);
  }

  .domaine-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    position: relative; overflow: hidden;
    transition: background .3s;
    text-decoration: none;
    color: inherit;
    display: block;
  }
  a.domaine-card { cursor: pointer; }
  .domaine-card::before {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 3px; background: var(--orange);
    transition: width .4s ease;
  }
  .domaine-card:hover { background: rgba(42,42,42,.06); }
  .domaine-card:hover::before { width: 100%; }

  .domaine-icon {
    width: 52px; height: 52px; margin-bottom: 1.5rem;
    display: flex; align-items: center; justify-content: center;
  }
  .domaine-icon svg { width: 36px; height: 36px; stroke: var(--orange); fill: none; stroke-width: 1.5; }
  .domaine-icon .bi, .domaine-icon .fa-light, .domaine-icon img {
    width: 36px; height: 36px; font-size: 1.5rem; color: var(--orange); object-fit: contain;
    display: flex; align-items: center; justify-content: center; line-height: 1;
  }
  .domaine-icon img { filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(2476%) hue-rotate(0deg) brightness(98%) contrast(91%); }

  .domaine-name {
    font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.35rem; font-weight: 600;
    color: var(--brun); margin-bottom: .75rem; line-height: 1.2;
  }
  .domaine-desc {
    font-size: .82rem; line-height: 1.75;
    color: rgba(46,26,16,.6); font-weight: 300;
  }

  /* ─── EQUIPE ─── */
  .equipe {
    padding: 7rem 5rem;
    background: var(--brun);
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 6rem; align-items: center;
  }

  .equipe-text .section-eyebrow { color: var(--orange); }
  .equipe-text .section-title { color: var(--creme); }
  .equipe-text .section-title .equipe-home-title-line2 {
    font-style: italic;
    color: var(--orange);
  }
  .equipe-intro {
    font-size: .9rem; line-height: 1.9;
    color: rgba(237,229,208,.7); margin-top: 2rem; font-weight: 300;
    max-width: 480px;
  }

  .equipe-profiles {
    display: flex; flex-direction: column; gap: 2rem;
  }
  .profile {
    display: flex; gap: 1.5rem; align-items: flex-start;
    padding: 1.5rem;
    border: 1px solid rgba(237,229,208,.12);
    transition: border-color .3s, background .3s;
  }
  a.profile.profile--link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    box-sizing: border-box;
  }
  a.profile.profile--link *,
  a.profile.profile--link *::before,
  a.profile.profile--link *::after {
    text-decoration: none !important;
  }
  a.profile.profile--link:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 3px;
  }
  .profile:hover {
    border-color: var(--orange);
    background: rgba(42,42,42,.08);
  }
  .profile-avatar {
    width: 64px;
    height: 80px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .profile-avatar-initials {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    pointer-events: none;
  }
  .profile-info {}
  .profile-name {
    font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.2rem; font-weight: 600; color: var(--creme);
    margin-bottom: .25rem;
  }
  .profile-role { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--orange); font-weight: 500; margin-bottom: .5rem; }
  .profile-desc { font-size: .8rem; color: rgba(237,229,208,.6); line-height: 1.65; font-weight: 300; }

  /* ─── VALEURS ─── */
  .valeurs {
    padding: 7rem 5rem;
    background: #efefef;
  }

  .valeurs-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 3rem; margin-top: 4rem;
  }
  .valeur { position: relative; padding-left: 1.5rem; }
  .valeur::before {
    content: ''; position: absolute; left: 0; top: .25rem;
    width: 2px; height: calc(100% - .5rem);
    background: var(--orange); opacity: .4;
    transition: opacity .3s;
  }
  .valeur:hover::before { opacity: 1; }

  .valeur-title {
    font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.4rem; font-weight: 600; color: var(--brun);
    margin-bottom: .75rem;
  }
  .valeur-desc { font-size: .84rem; line-height: 1.8; color: rgba(46,26,16,.65); font-weight: 300; }

  /* ─── CONTACT CTA ─── */
  .contact-cta {
    padding: 7rem 5rem;
    background: var(--white);
    display: grid; grid-template-columns: 1fr auto;
    gap: 4rem; align-items: center;
    border-top: 1px solid rgba(42,42,42,.08);
  }

  .cta-title {
    font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300; color: var(--brun); line-height: 1.15;
  }
  .cta-title em { font-style: italic; color: var(--orange); }

  .cta-offices { margin-top: 2rem; display: flex; gap: 3rem; flex-wrap: wrap; }
  .office-city {
    font-size: .7rem; letter-spacing: .25em; text-transform: uppercase;
    color: var(--orange); font-weight: 500; margin-bottom: .4rem;
  }
  .office-address { font-size: .82rem; line-height: 1.7; color: rgba(46,26,16,.65); font-weight: 300; }
  .office-address .office-tel-link,
  .office-address a[x-apple-data-detectors] { color: inherit; text-decoration: none; }

  .cta-actions { display: flex; flex-direction: column; gap: 1rem; min-width: 200px; }

  /* ─── FOOTER ─── */
  .site-footer {
    background: var(--brun-dark);
    padding: 4rem 2rem 2.5rem;
  }
  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr auto;
    gap: 3rem 2rem;
    align-items: start;
  }
  .footer-brand .firm {
    font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.25rem;
    color: var(--creme);
    font-weight: 600;
    letter-spacing: .08em;
    line-height: 1.3;
  }
  .footer-brand .tagline {
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgb(255 255 255 / 45%);
    margin-top: .5rem;
    line-height: 1.5;
  }
  .footer-nav {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    position: relative;
    background: no-repeat;
    align-items: baseline;
  }
  .footer-nav a {
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgb(255 255 255 / 45%);
    text-decoration: none;
    transition: color .2s, padding-left .2s;
  }
  .footer-nav a:hover { color: var(--orange); padding-left: 4px; }
  .footer-social {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
  }
  .footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    color: rgba(237,229,208,.5);
    text-decoration: none;
    background: rgba(237,229,208,.06);
    transition: color .25s, background .25s, transform .2s;
  }
  .footer-social-link:hover {
    color: var(--orange);
    background: rgba(255,255,255,.12);
    transform: translateY(-2px);
  }
  .footer-social-link svg { width: 18px; height: 18px; fill: currentColor; }
  .footer-copy {
    font-size: .7rem;
    color: rgba(237,229,208,.25);
    margin-top: 2.5rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(237,229,208,.08);
  }

  /* ─── SCROLL ANIMATIONS ─── */
  .reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: .1s; }
  .reveal-delay-2 { transition-delay: .2s; }
  .reveal-delay-3 { transition-delay: .3s; }
  .reveal-delay-4 { transition-delay: .4s; }

  /* ─── HERO ANIMATIONS ─── */
  @keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-eyebrow { animation: fadeSlideUp .8s .2s both ease; }
  .hero-title { animation: fadeSlideUp .8s .4s both ease; }
  .hero-desc { animation: fadeSlideUp .8s .6s both ease; }
  .hero-btns { animation: fadeSlideUp .8s .8s both ease; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1100px) {
    nav { padding: 1.2rem 1rem; }
    .nav-links { gap: 1.8rem; }
    .hero-left { padding: 5rem 3rem 4rem 3rem; }
    .domaines { padding: 5rem 2.5rem; }
    .equipe { padding: 5rem 2.5rem; gap: 4rem; }
    .valeurs { padding: 5rem 2.5rem; }
    .contact-cta { padding: 5rem 2.5rem; }
    .site-footer { padding: 3rem 2.5rem 2rem; }
  }

  @media (max-width: 900px) {
    nav { padding: 1.2rem 2rem; }
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .mobile-menu.open { display: flex; }

    .hero { grid-template-columns: 1fr; }
    .hero-right { height: 350px; }
    .hero-left { padding: 4rem 2rem; }

    .equipe { grid-template-columns: 1fr; gap: 3rem; }

    .valeurs-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

    .contact-cta { grid-template-columns: 1fr; }
    .cta-actions { flex-direction: row; flex-wrap: wrap; }

    .footer-main {
      grid-template-columns: 1fr;
      gap: 2.5rem;
      text-align: center;
    }
    .footer-brand { max-width: 320px; margin: 0 auto; }
    .footer-nav {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem 1.5rem;
    }
    .footer-nav a:hover { padding-left: 0; }
    .footer-social { justify-content: center; }

    .intro-band { padding: 2.5rem 2rem; }
  }

  @media (max-width: 600px) {
    nav { padding: 1.2rem 2rem; }
    .hero-left { padding: 3rem 1.5rem; }
    .hero-title { font-size: 2.6rem; }
    .domaines { padding: 4rem 1.5rem; }
    .domaines-grid { grid-template-columns: 1fr; }
    .valeurs-grid { grid-template-columns: 1fr; }
    .equipe { padding: 4rem 1.5rem; }
    .valeurs { padding: 4rem 1.5rem; }
    .contact-cta { padding: 4rem 1.5rem; }
    .site-footer { padding: 2.5rem 1.5rem 2rem; }
    .footer-main { gap: 2rem; }
    .footer-nav { flex-direction: column; align-items: center; gap: .5rem; }
  }

  /* Mobile menu */
  .mobile-menu {
    position: fixed; top: 70px; left: 0; right: 0;
    background: var(--white); z-index: 99;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(42,42,42,.1);
    box-shadow: 0 20px 40px rgba(42,42,42,.1);
    flex-direction: column; gap: .5rem;
  }
  .mobile-menu a {
    font-size: .8rem; letter-spacing: .15em; text-transform: uppercase;
    text-decoration: none; color: var(--brun); font-weight: 500;
    padding: .8rem 0; border-bottom: 1px solid rgba(42,42,42,.06);
    transition: color .2s;
  }
  .mobile-menu a:last-child { border-bottom: none; }
  .mobile-menu a:hover { color: var(--orange); }


/* ==== styles from block 2 ==== */

  :root {
    --orange: #E96B0B;
    --orange-contrast: #B85A09;
    --brun: #171717;
    --creme: #fff;
    --brun-light: #2e2e2e;
    --brun-dark: #1a1a1a;
    --orange-light: #F58A3A;
    --white: #fafafa;
    --text: #2a2a2a;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Outfit', sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 4rem;
    background: #efefef;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(42,42,42,0.1);
    transition: box-shadow .3s;
  }
  nav.scrolled { box-shadow: 0 4px 40px rgba(42,42,42,0.1); }
  .nav-logo { display: flex; flex-direction: row; align-items: center; gap: .75rem; line-height: 1; text-decoration: none; }
  .nav-logo .firm { font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 1.35rem; font-weight: 600; letter-spacing: .08em; color: var(--brun); }
  .nav-logo .sub { font-size: .6rem; letter-spacing: .25em; text-transform: uppercase; color: var(--orange-contrast); margin-top: .25rem; font-weight: 500; }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a { font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; text-decoration: none; color: var(--brun); font-weight: 500; position: relative; padding-bottom: 3px; transition: color .25s; }
  .nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1.5px; background: var(--orange); transition: width .3s ease; }
  .nav-links a:hover, .nav-links a.active { color: var(--orange); }
  .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
  .nav-cta { background: var(--orange); color: white; padding: .6rem 1.4rem; border-radius: 2px; font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; text-decoration: none; font-weight: 500; transition: background .25s, transform .2s; }
  .nav-cta:hover { background: var(--brun); transform: translateY(-1px); }
  .hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; padding: .5rem; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--brun); transition: transform .3s ease, opacity .3s ease; transform-origin: center; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu { display: none; }

  /* ─── PAGE HERO ─── */
  .page-hero {
    padding-top: 80px;
    background: #000;
    min-height: 38vh;
    display: grid; grid-template-columns: 1fr 1fr;
    position: relative; overflow: hidden;
  }
  .page-hero::before {
    content: ''; position: absolute; bottom: -80px; right: 25%;
    width: 500px; height: 500px; border-radius: 50%;
    background: rgb(255 255 255 / 5%); pointer-events: none;
  }
  .page-hero-left {
    display: flex; flex-direction: column; justify-content: center;
    padding: 5rem 4rem 5rem 5rem;
  }
  .page-hero-eyebrow {
    font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
    color: var(--orange); font-weight: 500; margin-bottom: 1.2rem;
    display: flex; align-items: center; gap: .75rem;
    animation: fadeSlideUp .8s .2s both ease;
  }
  .page-hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--orange); }
  .page-hero-title {
    font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.05;
    color: var(--creme);
    animation: fadeSlideUp .8s .4s both ease;
    text-transform: none;
    letter-spacing: 5px;
  }
  .page-hero-title em, .page-hero-title .hero-line-orange { font-style: italic; color: var(--orange-light) !important; }
  .page-hero-desc {
    font-size: .9rem; line-height: 1.85; color: #fff;
    max-width: 420px; margin-top: 1.5rem; font-weight: 300;
    animation: fadeSlideUp .8s .6s both ease;
  }
  .page-hero-right { position: relative; }
  .page-hero-deco {
    font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 18rem; font-weight: 300; line-height: 1;
    color: rgba(237,229,208,.04);
    position: absolute; right: 3rem; bottom: -2rem;
    user-select: none; letter-spacing: -.02em;
    animation: fadeSlideUp .8s .3s both ease;
  }

  /* Page hero avec image de fond (comme les articles) */
  .page-hero--with-bg .page-hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    filter: sepia(20%) saturate(70%);
  }
  .page-hero--with-bg .page-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgb(7 7 7 / 97%) 0%, rgb(0 0 0 / 75%) 40%, rgb(4 4 4 / 30%) 70%, transparent 100%);
  }
  .page-hero--with-bg .page-hero-left,
  .page-hero--with-bg .page-hero-right {
    position: relative; z-index: 2;
  }

  /* ─── DOMAINES GRID ─── */
  .domaines-section { padding: 7rem 5rem; background: var(--white); }

  .domaines-intro {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: end;
    margin-bottom: 5rem;
  }
  .domaines-intro-title {
    font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 300; color: var(--brun); line-height: 1.2;
  }
  .domaines-intro-title em { font-style: italic; color: var(--orange-contrast); }
  .domaines-intro-text {
    font-size: .88rem; line-height: 1.9; color: rgba(46,26,16,.6); font-weight: 300;
    border-left: 2px solid rgba(233,107,11,.3); padding-left: 1.5rem;
  }

  /* Grille principale — 4 colonnes */
  .domaines-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: rgba(42,42,42,.07);
  }

  /* Dernière rangée centrée (3 items) */
  .domaines-grid-row2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(42,42,42,.07);
    margin-top: 2px;
    max-width: calc(75% - 1.5px); /* 3/4 de la grille */
  }

  .domaine-card {
    background: var(--white);
    padding: 3.5rem 2rem;
    display: flex; flex-direction: column; align-items: center; text-align: center;
    position: relative; overflow: hidden;
    text-decoration: none; color: inherit;
    transition: background .35s;
    cursor: pointer;
  }
  .domaine-card::after {
    content: ''; position: absolute; bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 3px; background: var(--orange);
    transition: width .45s ease;
  }
  .domaine-card:hover { background: rgba(42,42,42,.06); }
  .domaine-card:hover::after { width: 70%; }

  .domaine-circle {
    width: 100px; height: 100px; border-radius: 50%;
    border: 1.5px solid var(--brun);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
    transition: border-color .35s, transform .4s ease;
    flex-shrink: 0;
  }
  .domaine-card:hover .domaine-circle {
    border-color: var(--orange);
    transform: scale(1.06);
  }
  .domaine-circle svg {
    width: 42px; height: 42px;
    fill: none; stroke: var(--orange); stroke-width: 1.5;
    stroke-linecap: round; stroke-linejoin: round;
    transition: stroke .35s;
  }
  .domaine-card:hover .domaine-circle svg { stroke: var(--orange); }
  .domaine-circle .bi, .domaine-circle .fa-light, .domaine-circle img {
    width: 42px; height: 42px; font-size: 1.5rem; color: var(--orange);
    object-fit: contain; transition: color .35s, filter .35s;
    display: flex; align-items: center; justify-content: center;
    line-height: 1; flex-shrink: 0;
  }
  .domaine-circle img {
    filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(2476%) hue-rotate(0deg) brightness(98%) contrast(91%);
  }
  .domaine-card:hover .domaine-circle .bi { color: var(--orange); }
  .domaine-card:hover .domaine-circle img { opacity: 1; filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(2476%) hue-rotate(0deg) brightness(98%) contrast(91%); }

  .domaine-name {
    font-size: 1.2rem; letter-spacing: .12em; text-transform: uppercase;
    font-weight: 600; color: var(--brun); line-height: 1.6;
    margin-bottom: .75rem;
    transition: color .35s;
  }
  .domaine-card:hover .domaine-name { color: var(--brun); }

.domaine-desc {
    font-size: 1rem;
    line-height: 1.4;
    color: rgba(46,26,16,.5);
    font-weight: 300;
    max-width: 200px;
}

  .domaine-link {
    margin-top: 1.25rem;
    font-size: .65rem; letter-spacing: .18em; text-transform: uppercase;
    font-weight: 500; color: transparent;
    display: inline-flex; align-items: center; gap: .4rem;
    transition: color .3s, gap .25s;
  }
  .domaine-link::after { content: '→'; }
  .domaine-card:hover .domaine-link { color: var(--orange); gap: .7rem; }

  /* ─── APPROCHE SECTION ─── */
  .approche-section {
    background: var(--brun);
    padding: 7rem 5rem;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 6rem; align-items: center;
  }
  .approche-text {}
  .approche-eyebrow { font-size: .65rem; letter-spacing: .3em; text-transform: uppercase; color: var(--orange); font-weight: 500; margin-bottom: .75rem; }
  .approche-title {
    font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 300; color: var(--creme); line-height: 1.1;
    margin-bottom: 2rem;
  }
  .approche-title em { font-style: italic; color: var(--orange); }
  .approche-body {
    font-size: .88rem; line-height: 1.9; color: rgba(237,229,208,.65); font-weight: 300;
    margin-bottom: 2.5rem;
  }
  .approche-btn {
    display: inline-flex; align-items: center; gap: .6rem;
    background: var(--orange); color: white;
    padding: .95rem 2rem; text-decoration: none;
    font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 500;
    transition: background .25s, gap .25s;
  }
  .approche-btn:hover { background: var(--orange-light); gap: .9rem; }
  .approche-btn::after { content: '→'; }

  .approche-stats {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2px; background: rgba(237,229,208,.06);
  }
  .approche-stat {
    padding: 2.5rem 2rem; background: rgba(255,255,255,.03);
    text-align: center;
    transition: background .3s;
  }
  .approche-stat:hover { background: rgba(42,42,42,.08); }
  .stat-num {
    font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 3.5rem; font-weight: 300; line-height: 1;
    color: var(--orange); display: block; margin-bottom: .35rem;
  }
  .stat-label { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(237,229,208,.5); font-weight: 500; }

  /* ─── CTA CONTACT ─── */
  .contact-cta {
    padding: 6rem 5rem;
    background: var(--creme);
    display: grid; grid-template-columns: 1fr auto;
    gap: 4rem; align-items: center;
  }
  .cta-title {
    font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 300; color: var(--brun); line-height: 1.15;
  }
  .cta-title em { font-style: italic; color: var(--orange); }
  .cta-sub { font-size: .88rem; line-height: 1.8; color: rgba(46,26,16,.6); font-weight: 300; margin-top: 1rem; max-width: 500px; }
  .cta-actions { display: flex; flex-direction: column; gap: 1rem; min-width: 200px; }
  .contact-cta .btn-primary { background: var(--orange); color: white; padding: 1rem 2.2rem; border: none; cursor: pointer; font-family: 'Outfit', sans-serif; font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 500; text-decoration: none; display: inline-block; transition: background .25s, transform .2s; }
  .contact-cta .btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); }
  .contact-cta .btn-secondary { background: transparent; color: var(--brun); padding: 1rem 2.2rem; border: 1px solid rgba(42,42,42,.3); font-family: 'Outfit', sans-serif; font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 500; cursor: pointer; text-decoration: none; display: inline-block; transition: border-color .25s, color .25s; }
  .contact-cta .btn-secondary:hover { border-color: var(--orange); color: var(--orange); }

  /* ─── FOOTER ─── */
  .site-footer { background: var(--brun-dark); padding: 4rem 2rem 2.5rem; }
  .footer-inner { max-width: 1200px; margin: 0 auto; }
  .footer-main { display: grid; grid-template-columns: 1.2fr 1fr auto; gap: 3rem 2rem; align-items: start; }
  .footer-brand .firm { font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 1.25rem; color: var(--creme); font-weight: 600; letter-spacing: .08em; line-height: 1.3; }
  .footer-brand .tagline { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: rgb(255 255 255 / 45%); margin-top: .5rem; line-height: 1.5; }
  .footer-nav { display: flex; flex-direction: column; gap: .6rem; position: relative; background: no-repeat; align-items: baseline; }
  .footer-nav a { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: rgb(255 255 255 / 45%); text-decoration: none; transition: color .2s, padding-left .2s; }
  .footer-nav a:hover { color: var(--orange); padding-left: 4px; }
  .footer-social { display: flex; gap: .6rem; flex-wrap: wrap; }
  .footer-social-link { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 8px; color: rgba(237,229,208,.5); text-decoration: none; background: rgba(237,229,208,.06); transition: color .25s, background .25s, transform .2s; }
  .footer-social-link:hover { color: var(--orange); background: rgba(255,255,255,.12); transform: translateY(-2px); }
  .footer-social-link svg { width: 18px; height: 18px; fill: currentColor; }
  .footer-copy { font-size: .7rem; color: rgba(237,229,208,.25); margin-top: 2.5rem; padding-top: 1.75rem; border-top: 1px solid rgba(237,229,208,.08); }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeSlideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: .1s; }
  .reveal-delay-2 { transition-delay: .2s; }
  .reveal-delay-3 { transition-delay: .3s; }
  .reveal-delay-4 { transition-delay: .4s; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1200px) {
    nav { padding: 1.2rem 2.5rem; }
    .page-hero-left { padding: 4rem 3rem; }
    .domaines-section { padding: 5rem 2.5rem; }
    .approche-section { padding: 5rem 2.5rem; gap: 4rem; }
    .contact-cta { padding: 5rem 2.5rem; }
    .site-footer { padding: 3rem 2.5rem 2rem; }
  }
  @media (max-width: 1000px) {
    .domaines-grid { grid-template-columns: repeat(2, 1fr); }
    .domaines-grid-row2 { grid-template-columns: repeat(2, 1fr); max-width: 50%; }
  }
  @media (max-width: 900px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .mobile-menu.open { display: flex; }
    .page-hero { grid-template-columns: 1fr; }
    .page-hero-right { display: none; }
    .page-hero-left { padding: 4rem 2rem; }
    .domaines-intro { grid-template-columns: 1fr; gap: 2rem; }
    .approche-section { grid-template-columns: 1fr; gap: 3rem; }
    .approche-stats { grid-template-columns: repeat(2, 1fr); }
    .contact-cta { grid-template-columns: 1fr; }
    .cta-actions { flex-direction: row; flex-wrap: wrap; }
  }
  @media (max-width: 600px) {
    .domaines-section { padding: 4rem 1.5rem; }
    .domaines-grid { grid-template-columns: 1fr; }
    .domaines-grid-row2 { grid-template-columns: 1fr; max-width: 100%; }
    .approche-section { padding: 4rem 1.5rem; }
    .contact-cta { padding: 4rem 1.5rem; }
    .site-footer { padding: 2.5rem 1.5rem 2rem; }
    .footer-main { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .footer-brand { max-width: 320px; margin: 0 auto; }
    .footer-nav { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 1rem 1.5rem; }
    .footer-nav a:hover { padding-left: 0; }
    .footer-social { justify-content: center; }
  }

  .mobile-menu { position: fixed; top: 70px; left: 0; right: 0; background: var(--white); z-index: 99; padding: 1.5rem 2rem; border-bottom: 1px solid rgba(42,42,42,.1); box-shadow: 0 20px 40px rgba(42,42,42,.1); flex-direction: column; gap: .5rem; }
  .mobile-menu a { font-size: .8rem; letter-spacing: .15em; text-transform: uppercase; text-decoration: none; color: var(--brun); font-weight: 500; padding: .8rem 0; border-bottom: 1px solid rgba(42,42,42,.06); transition: color .2s; }
  .mobile-menu a:last-child { border-bottom: none; }
  .mobile-menu a:hover { color: var(--orange); }


/* ==== styles from block 3 ==== */

  :root {
    --orange: #E96B0B;
    --orange-contrast: #B85A09;
    --brun: #171717;
    --creme: #fff;
    --brun-light: #2e2e2e;
    --brun-dark: #1a1a1a;
    --orange-light: #F58A3A;
    --white: #fafafa;
    --text: #2a2a2a;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Outfit', sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 4rem;
    background: #efefef;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(42,42,42,0.1);
    transition: box-shadow .3s;
  }
  nav.scrolled { box-shadow: 0 4px 40px rgba(42,42,42,0.1); }

  .nav-logo { display: flex; flex-direction: row; align-items: center; gap: .75rem; line-height: 1; text-decoration: none; }
  .nav-logo .firm { font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 1.35rem; font-weight: 600; letter-spacing: .08em; color: var(--brun); }
  .nav-logo .sub { font-size: .6rem; letter-spacing: .25em; text-transform: uppercase; color: var(--orange-contrast); margin-top: .25rem; font-weight: 500; }

  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    font-size: .78rem; letter-spacing: .15em; text-transform: uppercase;
    text-decoration: none; color: var(--brun); font-weight: 500;
    position: relative; padding-bottom: 3px; transition: color .25s;
  }
  .nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1.5px; background: var(--orange); transition: width .3s ease; }
  .nav-links a:hover, .nav-links a.active { color: var(--orange); }
  .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

  .nav-cta {
    background: var(--orange); color: white;
    padding: .6rem 1.4rem; border-radius: 2px;
    font-size: .75rem; letter-spacing: .15em; text-transform: uppercase;
    text-decoration: none; font-weight: 500;
    transition: background .25s, transform .2s;
  }
  .nav-cta:hover { background: var(--brun); transform: translateY(-1px); }

  .hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; padding: .5rem; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--brun); transition: transform .3s ease, opacity .3s ease; transform-origin: center; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu { display: none; }

  /* ─── PAGE HERO ─── */
  .page-hero {
    padding-top: 80px;
    background: #000;
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: 42vh;
    position: relative; overflow: hidden;
  }
  .page-hero::before {
    content: ''; position: absolute; bottom: -60px; right: 30%;
    width: 400px; height: 400px; border-radius: 50%;
    background: rgb(255 255 255 / 5%);
    pointer-events: none;
  }

  .page-hero-left {
    display: flex; flex-direction: column; justify-content: center;
    padding: 5rem 4rem 5rem 5rem;
  }
  .page-hero-eyebrow {
    font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
    color: var(--orange); font-weight: 500; margin-bottom: 1.2rem;
    display: flex; align-items: center; gap: .75rem;
    animation: fadeSlideUp .8s .2s both ease;
  }
  .page-hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--orange); }

  .page-hero-title {
    font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.05;
    color: var(--creme);
    animation: fadeSlideUp .8s .4s both ease;
    text-transform: none;
    letter-spacing: 5px;
  }
  .page-hero-title em, .page-hero-title .hero-line-orange { font-style: italic; color: var(--orange-light) !important; }

  .page-hero-desc {
    font-size: .9rem; line-height: 1.85; color: #fff;
    max-width: 400px; margin-top: 1.5rem; font-weight: 300;
    animation: fadeSlideUp .8s .6s both ease;
  }

  .page-hero-right {
    display: flex; align-items: flex-end; justify-content: flex-end;
    padding: 0 5rem 0 0; position: relative;
  }
  .page-hero-deco {
    font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 18rem; font-weight: 300; line-height: 1;
    color: rgba(237,229,208,.04);
    position: absolute; right: 3rem; bottom: -2rem;
    user-select: none; letter-spacing: -.02em;
    animation: fadeSlideUp .8s .3s both ease;
  }

  /* ─── EQUIPE SECTION ─── */
  .equipe-section { padding: 6rem 2rem; background: var(--white); max-width: 1200px; margin: 0 auto; }

  /* Groupe label */
  .groupe-label {
    display: flex; align-items: center; gap: 1.5rem;
    margin-bottom: 3rem;
  }
  .groupe-label-text {
    font-size: .65rem; letter-spacing: .35em; text-transform: uppercase;
    color: var(--orange); font-weight: 600;
  }
  .groupe-label-line {
    flex: 1; height: 1px; background: rgba(42,42,42,.1);
  }

  /* Grille associés */
  .assoc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: rgba(42,42,42,.08);
    margin-bottom: 6rem;
  }

  .membre-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    display: flex; flex-direction: column; align-items: center; text-align: center;
    gap: 1.5rem;
    position: relative; overflow: hidden;
    transition: background .3s;
    cursor: default;
  }
  .membre-card::after {
    content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 0; height: 3px; background: var(--orange);
    transition: width .4s ease;
  }
  .membre-card:hover { background: #efefef; }
  .membre-card:hover::after { width: 80%; }
  .membre-card--link { cursor: pointer; }
  .membre-card-link,
  .membre-card-link * {
    text-decoration: none !important;
  }
  .membre-card-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    color: inherit;
    width: 100%;
  }

  .membre-avatar {
    width: 149px;
    height: 184px;
    overflow: hidden;
    flex-shrink: 0;
    transition: border-color .3s, transform .4s ease;
    position: relative;
  }
  .membre-avatar--fallback {
    background: var(--orange);
    display: flex; align-items: center; justify-content: center;
  }
  .membre-avatar-initials {
    font-size: 2rem; font-weight: 600; color: white;
    font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
    display: flex; align-items: center; justify-content: center;
    width: 100%; height: 100%;
  }
  .membre-card:hover .membre-avatar {
    transform: scale(1.03);
  }
  .membre-avatar img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: grayscale(100%);
    transition: filter .5s ease;
  }
  .membre-card:hover .membre-avatar img { filter: grayscale(20%); }

  .membre-info { display: flex; flex-direction: column; align-items: center; }
  .membre-name {
    font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.35rem; font-weight: 600;
    color: var(--brun); line-height: 1.2;
    margin-bottom: .35rem;
  }
  .membre-role {
    font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
    color: var(--orange); font-weight: 500; margin-bottom: .75rem;
  }
  .membre-bio {
    font-size: .82rem; line-height: 1.75; color: rgba(46,26,16,.6);
    font-weight: 300; max-width: 340px;
  }

  /* ─── VALEURS BAND ─── */
  .valeurs-band {
    background: var(--brun);
    padding: 5rem;
    display: grid; grid-template-columns: 1fr 2fr;
    gap: 5rem; align-items: center;
  }
  .valeurs-band-title {
    font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 300; color: var(--creme); line-height: 1.15;
  }
  .valeurs-band-title em { font-style: italic; color: var(--orange); }

  .valeurs-band-items {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .valeur-item { border-left: 2px solid rgba(237,229,208,.15); padding-left: 1.25rem; transition: border-color .3s; }
  .valeur-item:hover { border-color: var(--orange); }
  .valeur-item-title { font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 1.2rem; font-weight: 600; color: var(--creme); margin-bottom: .5rem; }
  .valeur-item-desc { font-size: .78rem; line-height: 1.75; color: rgba(237,229,208,.55); font-weight: 300; }

  /* ─── FOOTER ─── */
  .site-footer { background: var(--brun-dark); padding: 4rem 2rem 2.5rem; }
  .footer-inner { max-width: 1200px; margin: 0 auto; }
  .footer-main { display: grid; grid-template-columns: 1.2fr 1fr auto; gap: 3rem 2rem; align-items: start; }
  .footer-brand .firm { font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 1.25rem; color: var(--creme); font-weight: 600; letter-spacing: .08em; line-height: 1.3; }
  .footer-brand .tagline { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: rgb(255 255 255 / 45%); margin-top: .5rem; line-height: 1.5; }
  .footer-nav { display: flex; flex-direction: column; gap: .6rem; position: relative; background: no-repeat; align-items: baseline; }
  .footer-nav a { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: rgb(255 255 255 / 45%); text-decoration: none; transition: color .2s, padding-left .2s; }
  .footer-nav a:hover { color: var(--orange); padding-left: 4px; }
  .footer-social { display: flex; gap: .6rem; flex-wrap: wrap; }
  .footer-social-link { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 8px; color: rgba(237,229,208,.5); text-decoration: none; background: rgba(237,229,208,.06); transition: color .25s, background .25s, transform .2s; }
  .footer-social-link:hover { color: var(--orange); background: rgba(255,255,255,.12); transform: translateY(-2px); }
  .footer-social-link svg { width: 18px; height: 18px; fill: currentColor; }
  .footer-copy { font-size: .7rem; color: rgba(237,229,208,.25); margin-top: 2.5rem; padding-top: 1.75rem; border-top: 1px solid rgba(237,229,208,.08); }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: .1s; }
  .reveal-delay-2 { transition-delay: .2s; }
  .reveal-delay-3 { transition-delay: .3s; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1100px) {
    nav { padding: 1.2rem 1rem; }
    .page-hero-left { padding: 4rem 3rem; }
    .equipe-section { padding: 5rem 2.5rem; }
    .valeurs-band { padding: 4rem 2.5rem; gap: 3rem; }
    .site-footer { padding: 3rem 2.5rem 2rem; }
  }

  @media (max-width: 900px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .mobile-menu.open { display: flex; }

    .page-hero { grid-template-columns: 1fr; }
    .page-hero-right { display: none; }
    .page-hero-left { padding: 4rem 2rem; }

    .assoc-grid { grid-template-columns: 1fr 1fr; }
    .collab-grid { grid-template-columns: 1fr 1fr; }

    .valeurs-band { grid-template-columns: 1fr; gap: 2.5rem; }
    .valeurs-band-items { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 600px) {
    .equipe-section { padding: 4rem 1.5rem; }
    .assoc-grid { grid-template-columns: 1fr; }
    .collab-grid { grid-template-columns: 1fr 1fr; }
    .valeurs-band { padding: 3rem 1.5rem; }
    .valeurs-band-items { grid-template-columns: 1fr; }
    .site-footer { padding: 2.5rem 1.5rem 2rem; }
    .footer-main { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .footer-brand { max-width: 320px; margin: 0 auto; }
    .footer-nav { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 1rem 1.5rem; }
    .footer-nav a:hover { padding-left: 0; }
    .footer-social { justify-content: center; }
  }

  .mobile-menu {
    position: fixed; top: 70px; left: 0; right: 0;
    background: var(--white); z-index: 99;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(42,42,42,.1);
    box-shadow: 0 20px 40px rgba(42,42,42,.1);
    flex-direction: column; gap: .5rem;
  }
  .mobile-menu a {
    font-size: .8rem; letter-spacing: .15em; text-transform: uppercase;
    text-decoration: none; color: var(--brun); font-weight: 500;
    padding: .8rem 0; border-bottom: 1px solid rgba(42,42,42,.06);
    transition: color .2s;
  }
  .mobile-menu a:last-child { border-bottom: none; }
  .mobile-menu a:hover { color: var(--orange); }


/* ==== styles from block 4 ==== */

  :root {
    --orange: #E96B0B;
    --orange-contrast: #B85A09;
    --brun: #171717;
    --creme: #fff;
    --brun-light: #2e2e2e;
    --brun-dark: #1a1a1a;
    --orange-light: #F58A3A;
    --white: #fafafa;
    --text: #2a2a2a;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Outfit', sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 4rem;
    background: #efefef;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(42,42,42,0.1);
    transition: box-shadow .3s;
  }
  nav.scrolled { box-shadow: 0 4px 40px rgba(42,42,42,0.1); }

  .nav-logo { display: flex; flex-direction: row; align-items: center; gap: .75rem; line-height: 1; text-decoration: none; }
  .nav-logo .firm { font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 1.35rem; font-weight: 600; letter-spacing: .08em; color: var(--brun); }
  .nav-logo .sub { font-size: .6rem; letter-spacing: .25em; text-transform: uppercase; color: var(--orange-contrast); margin-top: .25rem; font-weight: 500; }

  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    font-size: .78rem; letter-spacing: .15em; text-transform: uppercase;
    text-decoration: none; color: var(--brun); font-weight: 500;
    position: relative; padding-bottom: 3px; transition: color .25s;
  }
  .nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1.5px; background: var(--orange); transition: width .3s ease; }
  .nav-links a:hover, .nav-links a.active { color: var(--orange); }
  .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

  .nav-cta {
    background: var(--orange); color: white;
    padding: .6rem 1.4rem; border-radius: 2px;
    font-size: .75rem; letter-spacing: .15em; text-transform: uppercase;
    text-decoration: none; font-weight: 500;
    transition: background .25s, transform .2s;
  }
  .nav-cta:hover { background: var(--brun); transform: translateY(-1px); }

  .hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; padding: .5rem; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--brun); transition: transform .3s ease, opacity .3s ease; transform-origin: center; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu { display: none; }

  /* ─── PAGE HERO ─── */
  .page-hero {
    padding-top: 80px;
    background: #000;
    min-height: 38vh;
    display: grid; grid-template-columns: 1fr 1fr;
    position: relative; overflow: hidden;
  }
  .page-hero::before {
    content: ''; position: absolute; bottom: -80px; right: 25%;
    width: 500px; height: 500px; border-radius: 50%;
    background: rgb(255 255 255 / 5%); pointer-events: none;
  }

  .page-hero-left {
    display: flex; flex-direction: column; justify-content: center;
    padding: 5rem 4rem 5rem 5rem;
  }
  .page-hero-eyebrow {
    font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
    color: var(--orange); font-weight: 500; margin-bottom: 1.2rem;
    display: flex; align-items: center; gap: .75rem;
    animation: fadeSlideUp .8s .2s both ease;
  }
  .page-hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--orange); }
  .page-hero-title {
    font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.05;
    color: var(--creme);
    animation: fadeSlideUp .8s .4s both ease;
    text-transform: none;
    letter-spacing: 5px;
  }
  .page-hero-title em, .page-hero-title .hero-line-orange { font-style: italic; color: var(--orange-light) !important; }
  .page-hero-desc {
    font-size: .9rem; line-height: 1.85; color: #fff;
    max-width: 400px; margin-top: 1.5rem; font-weight: 300;
    animation: fadeSlideUp .8s .6s both ease;
  }
  .page-hero-right { position: relative; }
  .page-hero-deco {
    font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 18rem; font-weight: 300; line-height: 1;
    color: rgba(237,229,208,.04);
    position: absolute; right: 3rem; bottom: -2rem;
    user-select: none; letter-spacing: -.02em;
    animation: fadeSlideUp .8s .3s both ease;
  }

  /* ─── TABS ─── */
  .tabs-bar {
    background: var(--white);
    border-bottom: 1px solid rgba(42,42,42,.08);
    padding: 0 5rem;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    position: sticky; top: 70px; z-index: 50;
  }
  .tabs-bar-left { display: flex; gap: 0; }
  .tabs-bar-search { margin-left: auto; }
  .tabs-search-input {
    font-family: 'Outfit', sans-serif;
    font-size: .8rem;
    padding: .6rem 1rem .6rem 2.25rem;
    border: 1px solid rgba(42,42,42,.15);
    border-radius: 2px;
    background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%232A2A2A' opacity='0.4' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'/%3E%3C/svg%3E") no-repeat .75rem center;
    color: var(--brun);
    min-width: 220px;
    transition: border-color .2s;
  }
  /* Select catégorie : pas d'icône loupe, padding adapté, curseur */
  .tabs-search-select{
    background-image: none;
    padding-left: 1rem;
    padding-right: 2.25rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 10px 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 20 20'%3E%3Cpath fill='%232A2A2A' opacity='0.55' d='M5.6 7.6 10 12l4.4-4.4 1.2 1.2L10 14.4 4.4 8.8z'/%3E%3C/svg%3E");
  }
  .tabs-search-input::placeholder { color: rgba(42,42,42,.4); }
  .tabs-search-input:focus {
    outline: none;
    border-color: var(--orange);
  }
  .visually-hidden {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
  }
  .tab-btn {
    font-family: 'Outfit', sans-serif;
    font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 500;
    padding: 1.2rem 2rem;
    background: none; border: none; cursor: pointer;
    color: rgba(42,42,42,.45);
    position: relative; transition: color .25s;
    display: flex; align-items: center; gap: .6rem;
    text-decoration: none;
  }
  .tab-btn::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: var(--orange);
    transform: scaleX(0); transition: transform .3s ease;
  }
  .tab-btn.active { color: var(--brun); }
  .tab-btn.active::after { transform: scaleX(1); }
  .tab-btn:hover { color: var(--orange); }
  .tab-icon { font-size: 1rem; }

  /* ─── ARTICLES SECTION ─── */
  .articles-section { padding: 5rem 5rem 7rem; background: var(--white); }

  /* Article à la une — grande carte */
  .article-une {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0; margin-bottom: 4rem;
    border: 1px solid rgba(42,42,42,.08);
    overflow: hidden;
    transition: box-shadow .3s;
    cursor: pointer;
    text-decoration: none;
  }
  .article-une:hover { box-shadow: 0 20px 60px rgba(42,42,42,.1); }

  .une-image {
    position: relative; overflow: hidden;
    min-height: 380px;
  }
  .une-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .7s ease;
    filter: sepia(15%) saturate(85%);
  }
  .article-une:hover .une-image img { transform: scale(1.04); }
  .une-image-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgb(7 7 7 / 97%) 0%, rgb(0 0 0 / 75%) 40%, rgb(4 4 4 / 30%) 70%, transparent 100%);
  }
  .une-badge {
    position: absolute; top: 1.5rem; left: 1.5rem;
    background: var(--orange); color: white;
    font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 600;
    padding: .35rem .8rem;
  }

  .une-content {
    background: var(--brun);
    padding: 3.5rem;
    display: flex; flex-direction: column; justify-content: center;
  }
  .une-date {
    font-size: .65rem; letter-spacing: .25em; text-transform: uppercase;
    color: rgb(255 255 255 / 45%); font-weight: 500; margin-bottom: 1.2rem;
    display: flex; align-items: center; gap: .5rem;
  }
  .une-date::before { content: ''; width: 20px; height: 1px; background: var(--orange); }
  .une-title {
    font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 400; color: var(--creme); line-height: 1.2;
    margin-bottom: 1.25rem;
  }
  .une-excerpt {
    font-size: .85rem; line-height: 1.8; color: rgba(237,229,208,.6);
    font-weight: 300; margin-bottom: 2rem;
  }
  .une-cta {
    display: inline-flex; align-items: center; gap: .6rem;
    font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
    font-weight: 500; color: var(--orange);
    text-decoration: none;
    transition: gap .25s;
  }
  .une-cta:hover { gap: 1rem; }
  .une-cta::after { content: '→'; }

  /* Grille articles secondaires */
  .articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(42,42,42,.07);
  }

  .article-card {
    background: var(--white);
    overflow: hidden; cursor: pointer;
    text-decoration: none; color: inherit;
    display: flex; flex-direction: column;
    transition: background .3s;
    position: relative;
  }
  .article-card::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 3px; background: var(--orange);
    transition: width .4s ease;
  }
  .article-card:hover { background: rgba(42,42,42,.06); }
  .article-card:hover::after { width: 100%; }

  .card-image {
    position: relative; overflow: hidden;
    height: 200px;
  }
  .card-image img {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(20%) sepia(10%);
    transition: transform .6s ease, filter .5s ease;
  }
  .article-card:hover .card-image img {
    transform: scale(1.05);
    filter: grayscale(0%) sepia(5%);
  }
  .card-date-badge {
    position: absolute; bottom: 0; left: 0;
    background: rgba(42,42,42,.85); backdrop-filter: blur(4px);
    padding: .35rem .8rem;
    font-size: .6rem; letter-spacing: .18em; text-transform: uppercase;
    color: rgba(237,229,208,.7); font-weight: 500;
  }

  .card-body { padding: 1.75rem 2rem 2rem; flex: 1; display: flex; flex-direction: column; }
  .card-tag {
    font-size: .6rem; letter-spacing: .2em; text-transform: uppercase;
    color: var(--orange); font-weight: 600; margin-bottom: .75rem;
  }
  .card-title {
    font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.2rem; font-weight: 600; color: var(--brun);
    line-height: 1.3; margin-bottom: .75rem; flex: 1;
  }
  .card-excerpt {
    font-size: .78rem; line-height: 1.7; color: rgba(46,26,16,.55);
    font-weight: 300; margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .card-link {
    font-size: .68rem; letter-spacing: .15em; text-transform: uppercase;
    font-weight: 500; color: var(--brun);
    display: inline-flex; align-items: center; gap: .4rem;
    text-decoration: none; transition: color .2s, gap .25s;
    margin-top: auto;
  }
  .card-link::after { content: '→'; }
  .article-card:hover .card-link { color: var(--orange); gap: .7rem; }

  .article-read-more a {
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(233, 107, 11, 0.35);
  }
  .article-read-more a:hover { border-color: var(--orange); }

  /* ─── PAGINATION ─── */
  .pagination-wrap {
    position: relative;
    margin-top: 4rem; padding-top: 3rem;
    background: var(--white);
    border-top: 1px solid rgba(42,42,42,.08);
  }
  .pagination {
    position: relative;
    display: flex; justify-content: center; align-items: center;
    gap: .5rem;
  }
  .page-btn {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    font-size: .75rem; font-weight: 500; font-family: 'Outfit', sans-serif;
    background: none; border: 1px solid rgba(42,42,42,.15);
    color: rgba(42,42,42,.5); cursor: pointer;
    transition: all .2s;
    text-decoration: none;
  }
  .page-btn:hover { border-color: var(--orange); color: var(--orange); }
  .page-btn.active { background: var(--orange); border-color: var(--orange); color: white; }
  .page-btn.arrow { font-size: 1rem; border-color: transparent; }
  .page-btn.arrow:hover { background: rgba(42,42,42,.05); border-color: rgba(42,42,42,.15); }
  .page-dots { color: rgba(42,42,42,.3); font-size: .8rem; padding: 0 .25rem; }

  /* ─── NEWSLETTER BAND ─── */
  .newsletter-band {
    background: var(--creme);
    padding: 5rem;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center;
  }
  .newsletter-title {
    font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 300; color: var(--brun); line-height: 1.2;
  }
  .newsletter-title em { font-style: italic; color: var(--orange); }
  .newsletter-desc {
    font-size: .85rem; line-height: 1.8; color: rgba(46,26,16,.6);
    font-weight: 300; margin-top: 1rem;
  }
  .newsletter-form { display: flex; gap: 0; }
  .newsletter-input {
    flex: 1; padding: 1rem 1.5rem;
    border: 1px solid rgba(42,42,42,.2); border-right: none;
    background: var(--white);
    font-family: 'Outfit', sans-serif; font-size: .85rem;
    color: var(--text); outline: none;
    transition: border-color .25s;
  }
  .newsletter-input::placeholder { color: rgba(42,42,42,.35); }
  .newsletter-input:focus { border-color: var(--orange); }
  .newsletter-submit {
    background: var(--orange); color: white; border: none; cursor: pointer;
    padding: 1rem 2rem;
    font-family: 'Outfit', sans-serif;
    font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 500;
    transition: background .25s;
  }
  .newsletter-submit:hover { background: var(--brun); }

  /* ─── FOOTER ─── */
  .site-footer { background: var(--brun-dark); padding: 4rem 2rem 2.5rem; }
  .footer-inner { max-width: 1200px; margin: 0 auto; }
  .footer-main { display: grid; grid-template-columns: 1.2fr 1fr auto; gap: 3rem 2rem; align-items: start; }
  .footer-brand .firm { font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 1.25rem; color: var(--creme); font-weight: 600; letter-spacing: .08em; line-height: 1.3; }
  .footer-brand .tagline { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: rgb(255 255 255 / 45%); margin-top: .5rem; line-height: 1.5; }
  .footer-nav { display: flex; flex-direction: column; gap: .6rem; position: relative; background: no-repeat; align-items: baseline; }
  .footer-nav a { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: rgb(255 255 255 / 45%); text-decoration: none; transition: color .2s, padding-left .2s; }
  .footer-nav a:hover { color: var(--orange); padding-left: 4px; }
  .footer-social { display: flex; gap: .6rem; flex-wrap: wrap; }
  .footer-social-link { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 8px; color: rgba(237,229,208,.5); text-decoration: none; background: rgba(237,229,208,.06); transition: color .25s, background .25s, transform .2s; }
  .footer-social-link:hover { color: var(--orange); background: rgba(255,255,255,.12); transform: translateY(-2px); }
  .footer-social-link svg { width: 18px; height: 18px; fill: currentColor; }
  .footer-copy { font-size: .7rem; color: rgba(237,229,208,.25); margin-top: 2.5rem; padding-top: 1.75rem; border-top: 1px solid rgba(237,229,208,.08); }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: .1s; }
  .reveal-delay-2 { transition-delay: .2s; }
  .reveal-delay-3 { transition-delay: .3s; }
  .reveal-delay-4 { transition-delay: .4s; }
  .reveal-delay-5 { transition-delay: .5s; }

  /* ─── TABS CONTENT ─── */
  .tab-content { display: none; }
  .tab-content.active { display: block; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1100px) {
    nav { padding: 1.2rem 1rem; }
    .page-hero-left { padding: 4rem 3rem; }
    .tabs-bar { padding: 0 2.5rem; }
    .articles-section { padding: 4rem 2.5rem 6rem; }
    .newsletter-band { padding: 4rem 2.5rem; gap: 3rem; }
    .site-footer { padding: 3rem 2.5rem 2rem; }
  }

  @media (max-width: 900px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .mobile-menu.open { display: flex; }

    .page-hero { grid-template-columns: 1fr; }
    .page-hero-right { display: none; }
    .page-hero-left { padding: 4rem 2rem; }

    .article-une { grid-template-columns: 1fr; }
    .une-image { min-height: 260px; }
    .articles-grid { grid-template-columns: repeat(2, 1fr); }
    .home-actus { padding: 5rem 2.5rem; }
    .home-actus-grid { grid-template-columns: repeat(2, 1fr); }
    .newsletter-band { grid-template-columns: 1fr; gap: 2rem; }
  }

  @media (max-width: 600px) {
    .articles-section { padding: 3rem 1.5rem 5rem; }
    .articles-grid { grid-template-columns: 1fr; }
    .home-actus { padding: 3rem 1.5rem; }
    .home-actus-grid { grid-template-columns: 1fr; }
    .section-header { flex-wrap: wrap; }
    .section-header-action { margin-left: 0; width: 100%; margin-top: .5rem; }
    .tabs-bar { padding: 0 1.5rem; flex-wrap: wrap; }
    .tabs-bar-search { margin-left: 0; width: 100%; order: 3; padding-bottom: .75rem; }
    .tabs-search-input { min-width: 100%; box-sizing: border-box; }
    .tab-btn { padding: 1rem 1.2rem; font-size: .68rem; }
    .site-footer { padding: 2.5rem 1.5rem 2rem; }
    .footer-main { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .footer-brand { max-width: 320px; margin: 0 auto; }
    .footer-nav { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 1rem 1.5rem; }
    .footer-nav a:hover { padding-left: 0; }
    .footer-social { justify-content: center; }
    .newsletter-band { padding: 3rem 1.5rem; }
    .newsletter-form { flex-direction: column; }
    .newsletter-input { border-right: 1px solid rgba(42,42,42,.2); border-bottom: none; }
  }

  .mobile-menu {
    position: fixed; top: 70px; left: 0; right: 0;
    background: var(--white); z-index: 99;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(42,42,42,.1);
    box-shadow: 0 20px 40px rgba(42,42,42,.1);
    flex-direction: column; gap: .5rem;
  }
  .mobile-menu a {
    font-size: .8rem; letter-spacing: .15em; text-transform: uppercase;
    text-decoration: none; color: var(--brun); font-weight: 500;
    padding: .8rem 0; border-bottom: 1px solid rgba(42,42,42,.06); transition: color .2s;
  }
  .mobile-menu a:last-child { border-bottom: none; }
  .mobile-menu a:hover { color: var(--orange); }


/* ==== styles from block 5 ==== */

  :root {
    --orange: #E96B0B;
    --orange-contrast: #B85A09;
    --brun: #171717;
    --creme: #fff;
    --brun-light: #2e2e2e;
    --brun-dark: #1a1a1a;
    --orange-light: #F58A3A;
    --white: #fafafa;
    --text: #2a2a2a;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Outfit', sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 4rem;
    background: #efefef;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(42,42,42,0.1);
    transition: box-shadow .3s;
  }
  nav.scrolled { box-shadow: 0 4px 40px rgba(42,42,42,0.1); }
  .nav-logo { display: flex; flex-direction: row; align-items: center; gap: .75rem; line-height: 1; text-decoration: none; }
  .nav-logo .firm { font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 1.35rem; font-weight: 600; letter-spacing: .08em; color: var(--brun); }
  .nav-logo .sub { font-size: .6rem; letter-spacing: .25em; text-transform: uppercase; color: var(--orange-contrast); margin-top: .25rem; font-weight: 500; }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a { font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; text-decoration: none; color: var(--brun); font-weight: 500; position: relative; padding-bottom: 3px; transition: color .25s; }
  .nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1.5px; background: var(--orange); transition: width .3s ease; }
  .nav-links a:hover, .nav-links a.active { color: var(--orange); }
  .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
  .nav-cta { background: var(--orange); color: white; padding: .6rem 1.4rem; border-radius: 2px; font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; text-decoration: none; font-weight: 500; transition: background .25s, transform .2s; }
  .nav-cta:hover { background: var(--brun); transform: translateY(-1px); }
  .hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; padding: .5rem; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--brun); transition: transform .3s ease, opacity .3s ease; transform-origin: center; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu { display: none; }

  /* ─── ARTICLE HERO ─── */
  .article-hero {
    padding-top: 80px;
    position: relative; overflow: hidden;
    min-height: 70vh;
    display: flex; flex-direction: column; justify-content: flex-end;
  }
  .article-hero-bg {
    position: absolute; inset: 0;
    background-image: url("img/photo-1589829545856-d10d557cf95f_401d85bb");
    background-size: cover; background-position: center;
    filter: sepia(20%) saturate(70%);
  }
  .article-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgb(7 7 7 / 97%) 0%, rgb(0 0 0 / 75%) 40%, rgb(4 4 4 / 30%) 70%, transparent 100%);
  }
  .article-hero-content {
    position: relative; z-index: 2;
    padding: 5rem 5rem 4rem;
    max-width: 900px;
  }

  .article-breadcrumb {
    display: flex; align-items: center; gap: .6rem;
    font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
    color: rgb(252 252 252 / 76%);
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: fadeSlideUp .6s .1s both ease;
  }
  .article-breadcrumb a { color: rgba(237,229,208,.5); text-decoration: none; transition: color .2s; }
  .article-breadcrumb a:hover { color: var(--orange); }
  .article-breadcrumb span { color: rgb(252 252 252 / 76%); }

  .article-tag {
    display: inline-block;
    background: var(--orange); color: white;
    font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 600;
    padding: .35rem .9rem; margin-bottom: 1.25rem;
    animation: fadeSlideUp .6s .2s both ease;
  }

  .article-hero-title {
    font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 400; line-height: 1.12; color: var(--creme);
    margin-bottom: 1.5rem;
    animation: fadeSlideUp .6s .3s both ease;
  }

  .article-meta {
    display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
    animation: fadeSlideUp .6s .4s both ease;
  }
  .article-meta-item {
    display: flex; align-items: center; gap: .5rem;
    font-size: .72rem; letter-spacing: .1em; color: rgba(237,229,208,.55); font-weight: 400;
  }
  .article-meta-item strong { color: rgba(237,229,208,.8); font-weight: 500; }
  .meta-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--orange); }

  /* ─── LAYOUT ─── */
  .article-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 5rem 7rem;
  }

  /* ─── CONTENU ARTICLE ─── */
  .article-body {}

  .article-intro {
    font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.25rem; font-weight: 400; font-style: italic;
    line-height: 1.8; color: var(--brun);
    border-left: 3px solid var(--orange);
    padding-left: 1.75rem;
    margin-bottom: 3rem;
  }

  .article-text { font-size: 1.05rem; line-height: 1.95; color: rgba(46,26,16,.78); font-weight: 300; margin-bottom: 1.5rem; }
  .article-text a { color: var(--orange); text-decoration: none; border-bottom: 1px solid rgba(233,107,11,.3); transition: border-color .2s; }
  .article-text a:hover { border-color: var(--orange); }
  .article-text strong { font-weight: 600; color: var(--brun); }
  .article-text h1, .article-text h2, .article-text h3 {
    font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 600; color: var(--brun);
    line-height: 1.45;
  }
  .article-text h2 { font-size: 1.8rem; margin: 3rem 0 1.25rem; }
  .article-text h1 { font-size: 2rem; margin: 2rem 0 1rem; }
  .article-text h3 { font-size: 1.3rem; margin: 2rem 0 .75rem; }

  /* Pages statiques (honoraires, mentions, etc.) */
  .page-hero--simple .page-hero-left { padding: 4rem 5rem 3rem; }
  .page-hero--simple .page-hero-right { display: none; }
  .page-content-wrap { max-width: 800px; margin: 0 auto; padding: 2.5rem 2rem 4rem; }
  .page-content--legal { font-size: 1.05rem; line-height: 1.9; color: rgba(46,26,16,.85); }
  .page-content--legal h2 { font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 1.6rem; font-weight: 600; color: var(--brun); margin: 2.5rem 0 1rem; }
  .page-content--legal h3 { font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 1.2rem; font-weight: 600; color: var(--orange); margin: 2rem 0 .75rem; }
  .page-content--legal p { margin-bottom: 1rem; }
  .page-content--legal ul { margin: 1rem 0 1.5rem 1.5rem; }
  .page-content--legal a { color: var(--orange); text-decoration: none; border-bottom: 1px solid rgba(233,107,11,.3); }
  .page-content--legal a:hover { border-color: var(--orange); }
  .legal-notice-banner {
    background: var(--orange);
    color: white;
    padding: 1.75rem 2rem;
    margin: 0 0 2.5rem 0;
    border-radius: 8px;
    border-left: 4px solid rgba(0,0,0,.12);
    width: 100%;
    box-sizing: border-box;
  }
  .legal-notice-banner p { margin: 0; font-size: 1rem; line-height: 1.7; font-weight: 400; }

  /* Fiche membre */
  .membre-hero {
    background: var(--brun);
    padding: 7rem 2rem 2rem 2rem;
    display: flex;
    justify-content: center;
  }
  .membre-hero-inner {
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
  }
  .membre-hero-avatar {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(237,229,208,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
    margin: 1.5rem;
  }
  .membre-hero-avatar--fallback {
    background: var(--orange);
  }
  .membre-hero-initials {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  .membre-hero-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  .membre-hero-eyebrow {
    font-size: .7rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 500;
    margin: 0 0 .75rem;
    display: flex;
    align-items: center;
    gap: .75rem;
  }
  .membre-hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--orange);
  }
  .membre-hero-avatar .membre-hero-initials {
    font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 3rem;
    font-weight: 300;
    color: rgba(237,229,208,.9);
  }
  .membre-hero-avatar--fallback .membre-hero-initials {
    color: white;
  }
  .membre-hero-name {
    font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--creme);
    margin: 0 0 .5rem;
  }
  .membre-hero-role {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: .75rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 500;
    margin: 0;
    display: flex;
    align-items: center;
    gap: .75rem;
  }
  .membre-hero-role::before {
    content: '';
    width: 3px;
    height: 1em;
    background: var(--orange);
  }
  .membre-content-wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem 4rem;
  }
  .membre-section {
    margin-bottom: 2.5rem;
  }
  .membre-section-title {
    font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--orange);
    margin: 0 0 1rem;
    padding-bottom: .5rem;
    border-bottom: 2px solid rgba(233,107,11,.3);
  }
  .membre-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .membre-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: .6rem;
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(46,26,16,.85);
  }
  .membre-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .55em;
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 1px;
  }
  .membre-parcours {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(46,26,16,.85);
  }
  .membre-parcours p { margin: 0 0 1rem; }
  .membre-parcours p:last-child { margin-bottom: 0; }
  .membre-bio-fallback {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(46,26,16,.85);
  }
  @media (max-width: 640px) {
    .membre-hero { padding: 6rem 2rem 2rem 2rem; }
    .membre-hero-inner { flex-direction: column; text-align: center; gap: 1.5rem; align-items: center; }
    .membre-hero-info { display: flex; flex-direction: column; align-items: center; }
    .membre-hero-eyebrow { justify-content: center; }
    .membre-hero-avatar { width: 120px; height: 120px; }
    .membre-hero-role::before { display: none; }
    .membre-content-wrap { text-align: center; }
    .membre-section { text-align: center; }
    .membre-list { margin-left: auto; margin-right: auto; width: fit-content; text-align: left; }
    .membre-parcours { text-align: center; }
    .membre-bio-fallback { text-align: center; }
  }

  .article-h2 {
    font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.8rem; font-weight: 600; color: var(--brun);
    line-height: 1.45; margin: 3rem 0 1.25rem;
    position: relative; padding-bottom: .75rem;
  }
  .article-h2::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 40px; height: 2px; background: var(--orange);
  }

  .article-h3 {
    font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.3rem; font-weight: 600; color: var(--brun);
    margin: 2rem 0 .75rem;
  }

  /* Citation encadrée */
  .article-quote {
    background: var(--creme);
    border-left: 4px solid var(--orange);
    padding: 2rem 2.5rem;
    margin: 2.5rem 0;
  }
  .article-quote p {
    font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.15rem; font-weight: 400; font-style: italic;
    line-height: 1.75; color: var(--brun);
  }
  .article-quote cite {
    display: block; margin-top: .75rem;
    font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
    color: var(--orange); font-weight: 500; font-style: normal;
  }

  /* Points clés */
  .key-points {
    background: var(--brun);
    padding: 2.5rem;
    margin: 2.5rem 0;
  }
  .key-points-title {
    font-size: .65rem; letter-spacing: .3em; text-transform: uppercase;
    color: var(--orange); font-weight: 600; margin-bottom: 1.25rem;
  }
  .key-points ul { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
  .key-points li {
    display: flex; gap: .75rem; align-items: flex-start;
    font-size: .85rem; line-height: 1.65; color: rgba(237,229,208,.8); font-weight: 300;
  }
  .key-points li::before {
    content: '→'; color: var(--orange); font-weight: 500;
    flex-shrink: 0; margin-top: .05rem;
  }

  /* Séparateur */
  .article-sep {
    width: 60px; height: 1px; background: rgba(42,42,42,.2);
    margin: 3rem 0;
  }

  /* Partage */
  .article-share {
    display: flex; align-items: center; gap: 1rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(42,42,42,.1);
    margin-top: 3rem;
  }
  .share-label { font-size: .65rem; letter-spacing: .25em; text-transform: uppercase; color: rgba(42,42,42,.4); font-weight: 500; }
  .share-btn {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid rgba(42,42,42,.15);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; cursor: pointer;
    transition: border-color .25s, background .25s;
    background: none;
  }
  .share-btn:hover { border-color: var(--orange); background: rgba(42,42,42,.08); }
  .share-btn svg { width: 14px; height: 14px; fill: none; stroke: rgba(42,42,42,.5); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: stroke .25s; }
  .share-btn:hover svg { stroke: var(--orange); }

  /* ─── SIDEBAR ─── */
  .article-sidebar { display: flex; flex-direction: column; gap: 2rem; }

  /* Bloc auteur */
  .sidebar-author {
    background: var(--brun);
    padding: 2rem;
  }
  .sidebar-author-label { font-size: .6rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(237,229,208,.4); font-weight: 500; margin-bottom: 1.25rem; }
  .author-row { display: flex; gap: 1rem; align-items: center; margin-bottom: 1rem; }
  .author-avatar {
    width: 52px; height: 52px; border-radius: 50%;
    overflow: hidden; flex-shrink: 0; border: 2px solid rgba(233,107,11,.4);
  }
  .author-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top center; filter: grayscale(30%); }
  .author-name { font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 1.05rem; font-weight: 600; color: var(--creme); line-height: 1.2; }
  .author-role { font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; color: var(--orange); font-weight: 500; margin-top: .2rem; }
  .author-desc { font-size: .78rem; line-height: 1.65; color: rgba(237,229,208,.55); font-weight: 300; }
  .author-cta {
    display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.25rem;
    font-size: .68rem; letter-spacing: .15em; text-transform: uppercase;
    font-weight: 500; color: var(--orange); text-decoration: none;
    transition: gap .25s;
  }
  .author-cta:hover { gap: .8rem; }
  .author-cta::after { content: '→'; }

  /* Bloc sommaire */
  .sidebar-toc {
    background: var(--creme);
    padding: 2rem;
    position: sticky; top: 90px;
  }
  .toc-label { font-size: .6rem; letter-spacing: .3em; text-transform: uppercase; color: var(--orange); font-weight: 600; margin-bottom: 1.25rem; }
  .toc-list { list-style: none; display: flex; flex-direction: column; gap: .1rem; }
  .toc-list li a {
    display: block; padding: .6rem .75rem;
    font-size: .78rem; line-height: 1.4; color: rgba(46,26,16,.6);
    text-decoration: none; font-weight: 400;
    border-left: 2px solid transparent;
    transition: color .2s, border-color .2s, background .2s;
  }
  .toc-list li a:hover { color: var(--orange); border-color: var(--orange); background: rgba(42,42,42,.06); }
  .toc-list li a.active { color: var(--brun); border-color: var(--orange); font-weight: 500; background: rgba(42,42,42,.06); }

  /* Bloc contact */
  .sidebar-contact {
    background: var(--orange);
    padding: 2rem; text-align: center;
  }
  .sidebar-contact p {
    font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.2rem; font-weight: 400; color: white;
    line-height: 1.4; margin-bottom: 1.25rem;
  }
  .sidebar-contact-btn {
    display: block; background: white; color: var(--orange);
    padding: .75rem 1.5rem; text-decoration: none;
    font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 600;
    transition: background .25s, color .25s;
  }
  .sidebar-contact-btn:hover { background: var(--brun); color: white; }

  /* ─── ARTICLES LIÉS ─── */
  .related-section {
    background: var(--creme);
    padding: 5rem;
  }
  .related-header { display: flex; align-items: baseline; gap: 2rem; margin-bottom: 3rem; }
  .related-eyebrow { font-size: .65rem; letter-spacing: .3em; text-transform: uppercase; color: var(--orange); font-weight: 500; }
  .related-title { font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 2rem; font-weight: 400; color: var(--brun); margin-top: .25rem; }
  .related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(42,42,42,.08); }
  .related-card {
    background: var(--creme); padding: 2rem;
    text-decoration: none; color: inherit;
    position: relative; overflow: hidden;
    transition: background .3s;
    display: flex; flex-direction: column; gap: .75rem;
  }
  .related-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: var(--orange); transition: width .4s ease; }
  .related-card:hover { background: var(--white); }
  .related-card:hover::after { width: 100%; }
  .related-date { font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--orange); font-weight: 500; }
  .related-card-title { font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 1.15rem; font-weight: 600; color: var(--brun); line-height: 1.3; }
  .related-card-link { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(42,42,42,.45); font-weight: 500; margin-top: auto; display: flex; align-items: center; gap: .4rem; transition: color .2s, gap .25s; }
  .related-card-link::after { content: '→'; }
  .related-card:hover .related-card-link { color: var(--orange); gap: .7rem; }

  /* ─── FOOTER ─── */
  .site-footer { background: var(--brun-dark); padding: 4rem 2rem 2.5rem; }
  .footer-inner { max-width: 1200px; margin: 0 auto; }
  .footer-main { display: grid; grid-template-columns: 1.2fr 1fr auto; gap: 3rem 2rem; align-items: start; }
  .footer-brand .firm { font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 1.25rem; color: var(--creme); font-weight: 600; letter-spacing: .08em; line-height: 1.3; }
  .footer-brand .tagline { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: rgb(255 255 255 / 45%); margin-top: .5rem; line-height: 1.5; }
  .footer-nav { display: flex; flex-direction: column; gap: .6rem; position: relative; background: no-repeat; align-items: baseline; }
  .footer-nav a { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: rgb(255 255 255 / 45%); text-decoration: none; transition: color .2s, padding-left .2s; }
  .footer-nav a:hover { color: var(--orange); padding-left: 4px; }
  .footer-social { display: flex; gap: .6rem; flex-wrap: wrap; }
  .footer-social-link { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 8px; color: rgba(237,229,208,.5); text-decoration: none; background: rgba(237,229,208,.06); transition: color .25s, background .25s, transform .2s; }
  .footer-social-link:hover { color: var(--orange); background: rgba(255,255,255,.12); transform: translateY(-2px); }
  .footer-social-link svg { width: 18px; height: 18px; fill: currentColor; }
  .footer-copy { font-size: .7rem; color: rgba(237,229,208,.25); margin-top: 2.5rem; padding-top: 1.75rem; border-top: 1px solid rgba(237,229,208,.08); }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeSlideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
  .reveal { opacity: 0; transform: translateY(25px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: .1s; }
  .reveal-delay-2 { transition-delay: .2s; }

  /* ─── PROGRESS BAR ─── */
  .read-progress {
    position: fixed; top: 70px; left: 0; right: 0; z-index: 99;
    height: 3px; background: rgba(42,42,42,.08);
  }
  .read-progress-bar {
    height: 100%; background: var(--orange);
    width: 0%; transition: width .1s linear;
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1100px) {
    nav { padding: 1.2rem 1rem; }
    .article-hero-content { padding: 4rem 2.5rem 3rem; }
    .article-layout { padding: 4rem 2.5rem 6rem; gap: 3rem; }
    .related-section { padding: 4rem 2.5rem; }
    .site-footer { padding: 3rem 2.5rem 2rem; }
  }
  @media (max-width: 900px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .mobile-menu.open { display: flex; }
    .article-layout { grid-template-columns: 1fr; }
    .article-sidebar { order: -1; }
    .sidebar-toc { position: static; }
    .related-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 600px) {
    .article-hero-content { padding: 3rem 1.5rem 2.5rem; }
    .article-layout { padding: 3rem 1.5rem 5rem; }
    .related-section { padding: 3rem 1.5rem; }
    .related-grid { grid-template-columns: 1fr; }
    .site-footer { padding: 2.5rem 1.5rem 2rem; }
    .footer-main { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .footer-brand { max-width: 320px; margin: 0 auto; }
    .footer-nav { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 1rem 1.5rem; }
    .footer-nav a:hover { padding-left: 0; }
    .footer-social { justify-content: center; }
    .article-meta { gap: 1rem; }
  }

  .mobile-menu { position: fixed; top: 70px; left: 0; right: 0; background: var(--white); z-index: 99; padding: 1.5rem 2rem; border-bottom: 1px solid rgba(42,42,42,.1); box-shadow: 0 20px 40px rgba(42,42,42,.1); flex-direction: column; gap: .5rem; }
  .mobile-menu a { font-size: .8rem; letter-spacing: .15em; text-transform: uppercase; text-decoration: none; color: var(--brun); font-weight: 500; padding: .8rem 0; border-bottom: 1px solid rgba(42,42,42,.06); transition: color .2s; }
  .mobile-menu a:last-child { border-bottom: none; }
  .mobile-menu a:hover { color: var(--orange); }


/* ==== styles from block 6 ==== */

  :root {
    --orange: #E96B0B;
    --orange-contrast: #B85A09;
    --brun: #171717;
    --creme: #fff;
    --brun-light: #2e2e2e;
    --brun-dark: #1a1a1a;
    --orange-light: #F58A3A;
    --white: #fafafa;
    --text: #2a2a2a;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Outfit', sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 4rem;
    background: #efefef;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(42,42,42,0.1);
    transition: box-shadow .3s;
  }
  nav.scrolled { box-shadow: 0 4px 40px rgba(42,42,42,0.1); }
  .nav-logo { display: flex; flex-direction: row; align-items: center; gap: .75rem; line-height: 1; text-decoration: none; }
  .nav-logo .firm { font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 1.35rem; font-weight: 600; letter-spacing: .08em; color: var(--brun); }
  .nav-logo .sub { font-size: .6rem; letter-spacing: .25em; text-transform: uppercase; color: var(--orange-contrast); margin-top: .25rem; font-weight: 500; }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a { font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; text-decoration: none; color: var(--brun); font-weight: 500; position: relative; padding-bottom: 3px; transition: color .25s; }
  .nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1.5px; background: var(--orange); transition: width .3s ease; }
  .nav-links a:hover, .nav-links a.active { color: var(--orange); }
  .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
  .nav-cta { background: var(--orange); color: white; padding: .6rem 1.4rem; border-radius: 2px; font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; text-decoration: none; font-weight: 500; transition: background .25s, transform .2s; }
  .nav-cta:hover { background: var(--brun); transform: translateY(-1px); }
  .hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; padding: .5rem; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--brun); transition: transform .3s ease, opacity .3s ease; transform-origin: center; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu { display: none; }

  /* ─── PAGE HERO ─── */
  .page-hero {
    padding-top: 80px;
    background: #000;
    min-height: 38vh;
    display: grid; grid-template-columns: 1fr 1fr;
    position: relative; overflow: hidden;
  }
  .page-hero::before {
    content: ''; position: absolute; bottom: -80px; right: 25%;
    width: 500px; height: 500px; border-radius: 50%;
    background: rgb(255 255 255 / 5%); pointer-events: none;
  }
  .page-hero-left {
    display: flex; flex-direction: column; justify-content: center;
    padding: 5rem 4rem 5rem 5rem;
  }
  .page-hero-eyebrow {
    font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
    color: var(--orange); font-weight: 500; margin-bottom: 1.2rem;
    display: flex; align-items: center; gap: .75rem;
    animation: fadeSlideUp .8s .2s both ease;
  }
  .page-hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--orange); }
  .page-hero-title {
    font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.05;
    color: var(--creme);
    animation: fadeSlideUp .8s .4s both ease;
    text-transform: none;
    letter-spacing: 5px;
  }
  .page-hero-title em, .page-hero-title .hero-line-orange { font-style: italic; color: var(--orange-light) !important; }
  .page-hero-desc {
    font-size: .9rem; line-height: 1.85; color: #fff;
    max-width: 400px; margin-top: 1.5rem; font-weight: 300;
    animation: fadeSlideUp .8s .6s both ease;
  }
  .page-hero-right { position: relative; }
  .page-hero-deco {
    font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 18rem; font-weight: 300; line-height: 1;
    color: rgba(237,229,208,.04);
    position: absolute; right: 3rem; bottom: -2rem;
    user-select: none; letter-spacing: -.02em;
    animation: fadeSlideUp .8s .3s both ease;
  }

  /* ─── CONTACT SECTION ─── */
  .contact-section {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    min-height: 80vh;
  }

  /* ─── COLONNE GAUCHE : CABINETS ─── */
  .contact-offices {
    background: var(--brun);
    padding: 5rem 4rem;
    display: flex; flex-direction: column; justify-content: center;
    gap: 2rem;
  }

  .offices-label {
    font-size: .65rem; letter-spacing: .3em; text-transform: uppercase;
    color: rgba(237,229,208,.4); font-weight: 500; margin-bottom: .5rem;
  }
  .offices-title {
    font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 2rem; font-weight: 300; color: var(--creme);
    line-height: 1.2; margin-bottom: 2.5rem;
  }
  .offices-title em, .offices-title .hero-line-orange { font-style: italic; color: var(--orange); }

  .office-card {
    background: var(--orange);
    padding: 2.5rem;
    position: relative; overflow: hidden;
    transition: background .3s;
  }
  .office-card:last-of-type { background: var(--brun-light); }
  .office-card::before {
    content: ''; position: absolute; top: -40px; right: -40px;
    width: 130px; height: 130px; border-radius: 50%;
    background: rgba(255,255,255,.06);
    pointer-events: none;
  }

  .office-card-city {
    display: flex; align-items: center; gap: .6rem;
    font-size: .75rem; letter-spacing: .2em; text-transform: uppercase;
    font-weight: 600; color: white; margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,.2);
  }
  .office-card-city svg { width: 14px; height: 14px; fill: none; stroke: white; stroke-width: 2; flex-shrink: 0; }

  .office-card-addr {
    font-size: .88rem; line-height: 1.75; color: rgba(255,255,255,.85);
    font-weight: 300; margin-bottom: 1.25rem;
  }
  .office-card-tel {
    font-size: .8rem; color: rgba(255,255,255,.7); font-weight: 300;
    display: flex; flex-direction: column; gap: .2rem;
  }
  .office-card-tel span { display: flex; align-items: center; gap: .5rem; }
  .office-card-tel svg { width: 12px; height: 12px; fill: none; stroke: rgba(255,255,255,.5); stroke-width: 2; }
  .office-card-tel .office-tel-link,
  .office-card-tel a[x-apple-data-detectors] {
    color: inherit;
    text-decoration: none;
  }
  .office-card-tel .office-tel-link:active { opacity: .85; }

  .office-card-btns {
    display: flex; gap: .75rem; margin-top: 1.5rem; flex-wrap: wrap;
  }
  .office-btn {
    font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 500;
    padding: .5rem 1.1rem; text-decoration: none;
    border: 1px solid rgba(255,255,255,.4); color: white;
    display: flex; align-items: center; gap: .4rem;
    transition: background .25s, border-color .25s;
  }
  .office-btn:hover { background: rgba(255,255,255,.15); border-color: white; }

  /* Réseaux sociaux */
  .offices-social {
    display: flex; gap: .75rem; margin-top: 1rem;
  }
  .social-link {
    width: 38px; height: 38px; border: 1px solid rgba(237,229,208,.15); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; transition: border-color .25s, background .25s;
  }
  .social-link:hover { border-color: var(--orange); background: rgba(42,42,42,.08); }
  .social-link svg { width: 14px; height: 14px; fill: none; stroke: rgba(237,229,208,.5); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: stroke .25s; }
  .social-link:hover svg { stroke: var(--orange); }

  /* ─── COLONNE DROITE : FORMULAIRE ─── */
  .contact-form-wrap {
    background: var(--white);
    padding: 5rem 5rem 5rem 4rem;
    display: flex; flex-direction: column; justify-content: center;
  }

  .form-label {
    font-size: .65rem; letter-spacing: .3em; text-transform: uppercase;
    color: var(--orange); font-weight: 500; margin-bottom: .5rem;
  }
  .form-title {
    font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    font-weight: 300; color: var(--brun); line-height: 1.2;
    margin-bottom: 2.5rem;
  }
  .form-title em, .form-title .hero-line-orange { font-style: italic; color: var(--orange); }

  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
  .form-group { display: flex; flex-direction: column; gap: .4rem; }
  .form-group.full { grid-column: 1 / -1; }

  .form-field-label {
    font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
    font-weight: 500; color: rgba(42,42,42,.5);
  }
  .form-field-label .required { color: var(--orange); margin-left: .2rem; }

  .form-input, .form-select, .form-textarea {
    font-family: 'Outfit', sans-serif; font-size: .88rem; color: var(--text);
    background: var(--white);
    border: 1px solid rgba(42,42,42,.15);
    padding: .85rem 1.1rem;
    outline: none; transition: border-color .25s, box-shadow .25s;
    width: 100%;
    -webkit-appearance: none;
  }
  .form-input::placeholder, .form-textarea::placeholder { color: rgba(42,42,42,.25); }
  .form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(233,107,11,.08);
  }
  .form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232A2A2A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 1rem center;
    padding-right: 2.5rem; cursor: pointer;
  }
  .form-textarea { resize: vertical; min-height: 130px; }

  .form-submit {
    margin-top: 1.5rem;
    background: var(--orange); color: white; border: none; cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 500;
    padding: 1.1rem 2.5rem;
    display: inline-flex; align-items: center; gap: .6rem;
    transition: background .25s, transform .2s;
    align-self: flex-start;
  }
  .form-submit:hover { background: var(--orange-light); transform: translateY(-2px); }
  .form-submit svg { width: 16px; height: 16px; fill: none; stroke: white; stroke-width: 2; }

  .form-legal {
    margin-top: 2rem; padding-top: 1.5rem;
    border-top: 1px solid rgba(42,42,42,.08);
    font-size: .72rem; line-height: 1.7; color: rgba(42,42,42,.4); font-weight: 300;
  }
  .form-legal strong { font-weight: 500; color: rgba(42,42,42,.6); }
  .form-required-note {
    font-size: .68rem; color: rgba(42,42,42,.4); margin-bottom: 1.75rem;
  }
  .form-required-note span { color: var(--orange); }

  /* ─── MAP BAND (OpenStreetMap) — Charte graphique ─── */
  .map-band {
    height: 400px;
    background: var(--creme);
    position: relative; overflow: hidden;
  }
  .map-container {
    width: 100%; height: 100%;
    min-height: 400px;
  }
  /* Teinte des tuiles pour harmonie crème / anthracite */
  .map-band .leaflet-tile-pane {
    filter: sepia(0.2) saturate(0.85) hue-rotate(-8deg) brightness(1.05);
  }
  /* Contrôles zoom */
  .map-band .leaflet-control-zoom {
    border: none !important;
    box-shadow: 0 2px 10px rgba(42,42,42,.12);
  }
  .map-band .leaflet-control-zoom a {
    background: var(--white) !important;
    color: var(--brun) !important;
    border: 1px solid rgba(42,42,42,.15) !important;
    font-weight: 600 !important;
  }
  .map-band .leaflet-control-zoom a:hover {
    background: rgba(42,42,42,.08) !important;
    color: var(--orange) !important;
    border-color: var(--orange) !important;
  }
  .map-band .leaflet-control-zoom a + a {
    border-top: 1px solid rgba(42,42,42,.15) !important;
  }
  /* Attribution */
  .map-band .leaflet-control-attribution {
    background: rgba(253,250,245,.92) !important;
    color: rgba(42,42,42,.5) !important;
    font-size: .6rem !important;
    padding: .25rem .5rem !important;
  }
  .map-band .leaflet-control-attribution a {
    color: var(--brun-light) !important;
  }
  .map-band .leaflet-control-attribution a:hover {
    color: var(--orange) !important;
  }
  /* Popup */
  .map-band .leaflet-popup-content-wrapper {
    background: var(--white);
    color: var(--brun);
    border: 1px solid rgba(42,42,42,.12);
    box-shadow: 0 4px 20px rgba(42,42,42,.1);
  }
  .map-band .leaflet-popup-tip { background: var(--white); }
  .map-band .leaflet-popup-content-wrapper a {
    color: var(--orange);
    font-weight: 500;
  }
  .map-band .leaflet-popup-content-wrapper a:hover {
    color: var(--brun);
  }
  /* Marqueurs orange (style épingle) */
  .map-band .map-marker-custom { background: none !important; border: none !important; }
  .map-band .map-marker-dot {
    display: block;
    width: 22px; height: 22px;
    background: var(--orange);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 4px 16px rgba(233,107,11,.4);
    position: relative;
  }
  .map-band .map-marker-dot::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 8px; height: 8px;
    margin: -4px 0 0 -4px;
    background: var(--white);
    border-radius: 50%;
    transform: rotate(45deg);
  }
  .map-band .map-cta {
    position: absolute; bottom: 1.5rem; right: 2rem; z-index: 1000;
    display: flex; gap: .75rem;
  }
  .map-cta-btn {
    font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 500;
    padding: .55rem 1.1rem; text-decoration: none;
    background: var(--brun); color: var(--creme);
    display: flex; align-items: center; gap: .4rem;
    transition: background .25s;
  }
  .map-cta-btn:hover { background: var(--orange); }
  .map-cta-btn svg { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 2; }

  /* ─── FOOTER ─── */
  .site-footer { background: var(--brun-dark); padding: 4rem 2rem 2.5rem; }
  .footer-inner { max-width: 1200px; margin: 0 auto; }
  .footer-main { display: grid; grid-template-columns: 1.2fr 1fr auto; gap: 3rem 2rem; align-items: start; }
  .footer-brand .firm { font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 1.25rem; color: var(--creme); font-weight: 600; letter-spacing: .08em; line-height: 1.3; }
  .footer-brand .tagline { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: rgb(255 255 255 / 45%); margin-top: .5rem; line-height: 1.5; }
  .footer-nav { display: flex; flex-direction: column; gap: .6rem; position: relative; background: no-repeat; align-items: baseline; }
  .footer-nav a { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: rgb(255 255 255 / 45%); text-decoration: none; transition: color .2s, padding-left .2s; }
  .footer-nav a:hover { color: var(--orange); padding-left: 4px; }
  .footer-social { display: flex; gap: .6rem; flex-wrap: wrap; }
  .footer-social-link { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 8px; color: rgba(237,229,208,.5); text-decoration: none; background: rgba(237,229,208,.06); transition: color .25s, background .25s, transform .2s; }
  .footer-social-link:hover { color: var(--orange); background: rgba(255,255,255,.12); transform: translateY(-2px); }
  .footer-social-link svg { width: 18px; height: 18px; fill: currentColor; }
  .footer-copy { font-size: .7rem; color: rgba(237,229,208,.25); margin-top: 2.5rem; padding-top: 1.75rem; border-top: 1px solid rgba(237,229,208,.08); }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeSlideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: .15s; }
  .reveal-delay-2 { transition-delay: .3s; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1100px) {
    nav { padding: 1.2rem 1rem; }
    .page-hero-left { padding: 4rem 3rem; }
    .contact-offices { padding: 4rem 3rem; }
    .contact-form-wrap { padding: 4rem 3rem; }
    .site-footer { padding: 3rem 2.5rem 2rem; }
  }
  @media (max-width: 900px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .mobile-menu.open { display: flex; }
    .page-hero { grid-template-columns: 1fr; }
    .page-hero-right { display: none; }
    .page-hero-left { padding: 4rem 2rem; }
    .contact-section { grid-template-columns: 1fr; }
    .contact-offices { padding: 4rem 2rem; }
    .contact-form-wrap { padding: 4rem 2rem; }
    .form-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 600px) {
    .contact-offices, .contact-form-wrap { padding: 3rem 1.5rem; }
    .site-footer { padding: 2.5rem 1.5rem 2rem; }
    .footer-main { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .footer-brand { max-width: 320px; margin: 0 auto; }
    .footer-nav { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 1rem 1.5rem; }
    .footer-nav a:hover { padding-left: 0; }
    .footer-social { justify-content: center; }
    .map-band { height: 280px; }
  }

  .mobile-menu { position: fixed; top: 70px; left: 0; right: 0; background: var(--white); z-index: 99; padding: 1.5rem 2rem; border-bottom: 1px solid rgba(42,42,42,.1); box-shadow: 0 20px 40px rgba(42,42,42,.1); flex-direction: column; gap: .5rem; }
  .mobile-menu a { font-size: .8rem; letter-spacing: .15em; text-transform: uppercase; text-decoration: none; color: var(--brun); font-weight: 500; padding: .8rem 0; border-bottom: 1px solid rgba(42,42,42,.06); transition: color .2s; }
  .mobile-menu a:last-child { border-bottom: none; }
  .mobile-menu a:hover { color: var(--orange); }

/* Footer — navigation principale (même entrées que le menu, Contact une seule fois) */
@media (min-width: 601px) {
  .site-footer .footer-main {
    grid-template-columns: 1.15fr 1fr 1fr auto;
  }
}
.footer-nav-main {
  display: flex;
  align-items: baseline;
  align-content: inherit;
  padding: 0;
  position: relative;
  background: none;
  flex-direction: column;
  gap: .6rem;
}
.footer-nav-main a {
  font-size: .72rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #ffffff8f;
  text-decoration: none;
  transition: color .2s;
  display: block;
}
.footer-nav-main a:hover { color: var(--orange); }
.footer-nav-main a.is-active { color: var(--orange); }
@media (max-width: 600px) {
  .footer-nav-main {
    align-items: self-start;
    text-align: left;
    background: #ede5d017;
    padding: 20px;
  }
  .footer-copy {
    text-align: center;
  }
}

.site-footer .footer-nav {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  position: relative;
  background: no-repeat;
  align-items: baseline;
  padding: 0;
}

/* ——— FAQ ——— */
.faq-section {
  padding: 2.5rem 0 5rem;
}
.faq-empty {
  text-align: center;
  color: rgba(74, 46, 30, 0.65);
  font-size: 1.05rem;
  max-width: 36rem;
  margin: 2rem auto 0;
}
.faq-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 3rem 5rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}
.faq-nav {
  position: sticky;
  top: 120px;
  align-self: start;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  padding: 0;
  scrollbar-width: thin;
  display: block;
  background: no-repeat;
}
.faq-nav-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(74, 46, 30, 0.45);
  margin: 0 0 1rem;
  font-weight: 600;
}
.faq-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.faq-nav-list li {
  margin: 0 0 0.65rem;
}
.faq-nav-list a {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--brun);
  font-weight: 600;
  display: inline-block;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.faq-nav-list a:hover {
  color: var(--orange);
  border-bottom-color: var(--orange);
}
.faq-category {
  scroll-margin-top: 7rem;
}
.faq-category + .faq-category {
  margin-top: 3rem;
}
.faq-category-title {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #e96b0b;
  margin: 0 0 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(74, 46, 30, 0.2);
}
.faq-item {
  border-bottom: 1px solid rgba(74, 46, 30, 0.15);
}
.faq-item-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem 0;
  cursor: pointer;
  list-style: none;
  font-size: 1rem;
  font-weight: 500;
  color: var(--brun);
  line-height: 1.45;
}
.faq-item-summary::-webkit-details-marker {
  display: none;
}
.faq-item-question {
  flex: 1;
  min-width: 0;
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}
.faq-item-toggle {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
  border-radius: 2px;
}
.faq-item-toggle::before,
.faq-item-toggle::after {
  content: "";
  position: absolute;
  background: var(--brun);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s;
}
.faq-item-toggle::before {
  width: 10px;
  height: 2px;
}
.faq-item-toggle::after {
  width: 2px;
  height: 10px;
}
.faq-item[open] .faq-item-toggle::after {
  opacity: 0;
}
.faq-item-answer {
  padding: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(74, 46, 30, 0.85);
  max-width: 52rem;
}
.faq-item-answer p:first-child {
  margin-top: 0;
}
.faq-item-answer p:last-child {
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .faq-section {
    padding-top: 1.5rem;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 0 clamp(1rem, 4vw, 1.5rem);
  }
  .faq-nav {
    position: static;
    max-height: none;
    overflow: visible;
    padding: 0 0 1rem;
    margin: 0 -0.25rem;
    border-bottom: 1px solid rgba(74, 46, 30, 0.1);
  }
  .faq-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem 1.25rem;
    overflow-x: auto;
    padding-bottom: 0.35rem;
  }
  .faq-nav-list li {
    margin: 0;
  }
  .faq-category {
    scroll-margin-top: 5.5rem;
  }
}

/* ─── OVERRIDES : header noir ─── */
nav#navbar {
  background: var(--brun); /* #171717 */
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
nav#navbar.scrolled {
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.35);
}
.nav-logo .firm { color: var(--orange); }
.nav-logo .sub { color: rgba(255, 255, 255, 0.62); }
.nav-links a { color: rgba(255, 255, 255, 0.82); }
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-cta:hover { background: var(--brun-dark); }
.hamburger span { background: rgba(255, 255, 255, 0.82); }
.mobile-menu {
  background: var(--brun); /* #171717 */
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.mobile-menu a {
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-menu a:hover { color: var(--orange); }

/* Mobile : sous-menu Domaines (accordéon) */
.mobile-menu .mobile-submenu-group{
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-menu .mobile-submenu-title{
  padding: .8rem 0;
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
}
.mobile-menu .mobile-submenu-title:hover{
  color: var(--orange);
}
.mobile-menu .mobile-submenu-title::after{
  border-top-color: rgba(255, 255, 255, 0.72);
}
.mobile-menu .mobile-submenu-group[open] > .mobile-submenu-title{
  color: var(--orange);
}
.mobile-menu .mobile-submenu-group[open] > .mobile-submenu-title::after{
  border-top-color: var(--orange);
}
.mobile-menu .mobile-submenu{
  margin: .35rem 0 .75rem;
  padding: .6rem .75rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 0;
}
.mobile-menu .mobile-submenu-item{
  display: block;
  padding: .65rem .6rem .65rem .85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.86);
  font-size: .82rem;
  letter-spacing: .02em;
  text-transform: none;
  font-weight: 500;
  position: relative;
}
.mobile-menu .mobile-submenu-item:last-child{
  border-bottom: none;
}
.mobile-menu .mobile-submenu-item::before{
  content:"";
  position:absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 60%;
  transform: translateY(-50%);
  border-radius: 0;
  background: none;
}
.mobile-menu .mobile-submenu-item:hover{
  color: var(--orange);
  background: rgba(233, 107, 11, 0.10);
}
.mobile-menu .mobile-submenu-item--all{
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ─────────────────────────────────────────────────────────────
   Normalisation typographique des contenus (WYSIWYG)
   Objectif: mêmes alignements pour H*, listes, bullets partout.
   Cibles: articles, domaines, pages légales, FAQ, parcours membre.
   ───────────────────────────────────────────────────────────── */

:where(.article-text, .page-content--legal, .membre-parcours, .faq-item-answer) {
  text-align: left;
}

:where(.article-text, .page-content--legal, .membre-parcours, .faq-item-answer) :where(p) {
  margin: 0 0 1rem;
}
:where(.article-text, .page-content--legal, .membre-parcours, .faq-item-answer) :where(p:last-child) {
  margin-bottom: 0;
}

:where(.article-text, .page-content--legal, .membre-parcours, .faq-item-answer) :where(h2, h3, h4) {
  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  color: var(--brun);
  line-height: 1.35;
  margin: 2.25rem 0 1rem;
}
:where(.article-text, .page-content--legal, .membre-parcours, .faq-item-answer) :where(h2) {
  font-size: 1.65rem;
}
:where(.article-text, .page-content--legal, .membre-parcours, .faq-item-answer) :where(h3) {
  font-size: 1.25rem;
}
:where(.article-text, .page-content--legal, .membre-parcours, .faq-item-answer) :where(h4) {
  font-size: 1.05rem;
  letter-spacing: .02em;
}

/* Listes: alignement + marges identiques */
:where(.article-text, .page-content--legal, .membre-parcours, .faq-item-answer) :where(ul, ol) {
  margin: 1rem 0 1.35rem;
  padding-left: 1.35rem;
  list-style-position: outside;
}
:where(.article-text, .page-content--legal, .membre-parcours, .faq-item-answer) :where(li) {
  margin: .45rem 0;
  padding-left: .15rem;
  list-style-type: square;
}
:where(.article-text, .page-content--legal, .membre-parcours, .faq-item-answer) :where(li > ul, li > ol) {
  margin-top: .6rem;
  margin-bottom: .6rem;
}
:where(.article-text, .page-content--legal, .membre-parcours, .faq-item-answer) :where(li)::marker {
  color: rgba(233, 107, 11, 0.95);
}

/* Séparateurs / citations courantes */
:where(.article-text, .page-content--legal, .membre-parcours, .faq-item-answer) :where(hr) {
  border: none;
  height: 1px;
  background: rgba(42, 42, 42, 0.10);
  margin: 2rem 0;
}

/* ——— Plan du site ——— */
.sitemap-section {
  padding: 3.5rem 0 5rem;
  background: var(--white);
}
.sitemap-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}
.sitemap-block {
  background: #fafafa;
  border: 1px solid rgba(42, 42, 42, 0.08);
  border-radius: 4px;
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: 0 8px 32px rgba(42, 42, 42, 0.04);
}
.sitemap-block-title {
  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--orange);
  margin: 0 0 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(42, 42, 42, 0.1);
}
.sitemap-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sitemap-links li {
  margin: 0 0 0.55rem;
}
.sitemap-links li:last-child {
  margin-bottom: 0;
}
.sitemap-links a {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.75rem;
  font-size: 0.88rem;
  line-height: 1.45;
  text-decoration: none;
  color: var(--brun);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.sitemap-links a:hover {
  color: var(--orange);
  border-bottom-color: rgba(233, 107, 11, 0.35);
}
.sitemap-articles {
  border: 1px solid rgba(42, 42, 42, 0.1);
  border-radius: 4px;
  background: #fafafa;
  overflow: hidden;
}
.sitemap-articles-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.sitemap-articles-summary::-webkit-details-marker {
  display: none;
}
.sitemap-articles-summary::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid var(--orange);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.sitemap-articles[open] .sitemap-articles-summary::after {
  transform: rotate(180deg);
}
.sitemap-articles-title {
  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brun);
}
.sitemap-articles-count {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(42, 42, 42, 0.5);
  font-weight: 500;
}
.sitemap-articles-body {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid rgba(42, 42, 42, 0.08);
}
.sitemap-articles-intro {
  margin: 1rem 0 1.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.sitemap-articles-intro a {
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid rgba(233, 107, 11, 0.3);
}
.sitemap-articles-intro a:hover {
  border-color: var(--orange);
}
.sitemap-links--articles {
  max-height: 28rem;
  overflow-y: auto;
  padding-right: 0.5rem;
  column-count: 2;
  column-gap: 2rem;
}
.sitemap-links--articles li {
  break-inside: avoid;
  margin-bottom: 0.65rem;
}
.sitemap-links--articles a {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}
.sitemap-article-title {
  font-size: 0.82rem;
  line-height: 1.4;
  font-weight: 500;
}
.sitemap-article-date {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(42, 42, 42, 0.45);
  font-weight: 400;
}
@media (max-width: 700px) {
  .sitemap-links--articles {
    column-count: 1;
    max-height: none;
  }
  .sitemap-articles-summary {
    flex-wrap: wrap;
  }
}

.article-source-link {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(42, 42, 42, 0.1);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}
.article-source-link a {
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid rgba(233, 107, 11, 0.35);
}
.article-source-link a:hover {
  border-color: var(--orange);
}
.article-source-licence {
  margin-top: 1.25rem;
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(42, 42, 42, 0.65);
}
.article-source-licence a {
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid rgba(233, 107, 11, 0.25);
}
.article-source-licence a:hover {
  border-color: var(--orange);
}

.cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 10050;
  padding: 1rem clamp(1rem, 3vw, 1.5rem);
  pointer-events: none;
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.cookie-banner--visible {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 1.5rem;
  padding: 1.25rem 1.5rem;
  background: #171717;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.35);
}
.cookie-banner-title {
  margin: 0 0 0.5rem;
  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--orange);
}
.cookie-banner-text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  max-width: 52rem;
}
.cookie-banner-policy {
  margin: 0.65rem 0 0;
  font-size: 0.82rem;
}
.cookie-banner-policy a {
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid rgba(233, 107, 11, 0.35);
}
.cookie-banner-policy a:hover {
  border-color: var(--orange);
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  flex-shrink: 0;
}
.cookie-banner-btn {
  font-family: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.75rem 1.15rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.cookie-banner-btn--reject {
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.28);
}
.cookie-banner-btn--reject:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.cookie-banner-btn--accept {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.cookie-banner-btn--accept:hover {
  background: #d45f09;
  border-color: #d45f09;
}
body.cookie-banner-open {
  padding-bottom: env(safe-area-inset-bottom, 0);
}
@media (max-width: 640px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-banner-actions {
    width: 100%;
  }
  .cookie-banner-btn {
    flex: 1 1 auto;
    text-align: center;
  }
}

/* Liens: même style partout */
:where(.article-text, .page-content--legal, .membre-parcours, .faq-item-answer) :where(a) {
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid rgba(233,107,11,.3);
  transition: border-color .2s, color .2s;
}
:where(.article-text, .page-content--legal, .membre-parcours, .faq-item-answer) :where(a:hover) {
  border-color: var(--orange);
}
