/* ─────────────────────────────────────────────
   site.css — feuille de style partagee
   Utilisee par index.html et espaces.html
   ───────────────────────────────────────────── */

    :root {
      --navy:   #1C2B3A;
      --gold:   #C9993E;
      --gold-l: #E8C06A;
      --gold-d: #8A6420;
      --cream:  #F7F3ED;
      --white:  #FFFFFF;
      --ink:    #1C2B3A;
      --muted:  #50606E;
      --light:  #EDE8E1;
      --sage:   #4A7C6F;
      --brick:  #8B3A2A;
      --border: rgba(28,43,58,.12);
      --shadow: 0 4px 32px rgba(28,43,58,.10);
      --r:      12px;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body { font-family: 'DM Sans', sans-serif; color: var(--ink); background: var(--white); line-height: 1.6; overflow-x: hidden; }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }
    :focus-visible { outline: 2px solid #C9993E; outline-offset: 3px; border-radius: 3px; }
    /* pictogrammes : tracés SVG, rendu identique sur tous les OS (contrairement aux emoji) */
    .ico { width: 24px; height: 24px; display: block; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5%; height: 72px;
      background: rgba(255,255,255,.92); backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border); transition: box-shadow .3s;
    }
    nav.scrolled { box-shadow: var(--shadow); }
    .nav-logo { display: flex; align-items: center; gap: 10px; }
    .nav-logo img { height: 58px; width: auto; }
    .nav-links { display: flex; align-items: center; gap: 22px; list-style: none; }
    .nav-links a { font-size: 14px; font-weight: 500; color: var(--muted); transition: color .2s; letter-spacing: .2px; }
    .nav-links a:hover { color: var(--navy); }
    .nav-cta {
      background: var(--gold); color: var(--white) !important;
      padding: 10px 22px; border-radius: 8px; font-size: 14px; font-weight: 600;
      transition: background .2s, transform .15s;
    }
    .nav-cta:hover { background: #b8882e !important; transform: translateY(-1px); }
    .nav-cta-ghost {
      border: 1.5px solid var(--sage); color: var(--sage) !important;
      padding: 8.5px 18px; border-radius: 8px; font-size: 14px; font-weight: 600;
      transition: background .2s, color .2s;
    }
    .nav-cta-ghost:hover { background: var(--sage); color: var(--white) !important; }
    .nav-burger { display: none; flex-direction: column; gap: 6px; padding: 8px 10px; }
    .nav-burger span { width: 28px; height: 3px; background: var(--navy); border-radius: 3px; transition: .3s; display: block; }

    /* ── BANDEAU ADHÉSION ── */
    #bandeau-adhesion {
      background: var(--sage); color: #fff; text-align: center;
      padding: 10px 20px; font-size: 14px; font-weight: 600;
      display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
    }
    #bandeau-adhesion a {
      background: #fff; color: #35594f; padding: 6px 16px; border-radius: 20px;
      text-decoration: none; font-weight: 700; font-size: 13px; white-space: nowrap;
    }

    /* ── BANDEAU NOTIFICATION ── */
    #notif-bandeau {
      display: none; position: fixed; top: 72px; left: 0; right: 0; z-index: 9999;
      padding: 14px 24px; font-size: 15px; font-weight: 600;
      text-align: center; box-shadow: 0 4px 16px rgba(0,0,0,.15);
    }
    #notif-bandeau.success { background: #1a7a4a; color: #fff; }
    #notif-bandeau.error   { background: #c0392b; color: #fff; }
    #notif-bandeau button  {
      background: rgba(255,255,255,.2); border: none; color: #fff;
      padding: 2px 10px; border-radius: 4px; cursor: pointer; font-size: 14px; margin-left: 16px;
    }

    /* ── HERO ── */
    .hero {
      min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
      /* Façade en filigrane, voile uniforme pour que la brique se lise aussi
         DERRIÈRE le titre. .82 est le plancher : en dessous, les libellés de
         stats (blanc 68 %, 12,5 px) passent sous les 4,5:1 exigés par WCAG AA. */
      background:
        linear-gradient(rgba(28,43,58,.82), rgba(28,43,58,.82)),
        url('../img/facade-1600.webp') center/cover no-repeat;
      position: relative; overflow: hidden; padding: 120px 5% 72px;
    }
    .hero-bg { position: absolute; inset: 0; z-index: 0; background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,153,62,.15) 0%, transparent 60%), radial-gradient(ellipse 40% 40% at 10% 80%, rgba(74,124,111,.12) 0%, transparent 50%); }
    .hero-grid { position: absolute; inset: 0; z-index: 0; opacity: .05; background-image: linear-gradient(var(--cream) 1px, transparent 1px), linear-gradient(90deg, var(--cream) 1px, transparent 1px); background-size: 60px 60px; }
    .hero-content { position: relative; z-index: 1; max-width: 760px; }
    .hero-surtitre {
      display: block; font-family: 'DM Mono', monospace;
      font-size: 12.5px; font-weight: 500; letter-spacing: 1.6px; text-transform: uppercase;
      color: var(--gold-l); margin-bottom: 20px;
    }
    .hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 5.6vw, 4.4rem); font-weight: 900; line-height: 1.06; color: var(--white); margin-bottom: 24px; letter-spacing: -1px; }
    .hero h1 em { color: var(--gold-l); font-style: italic; }
    .hero-sub { font-size: 1.08rem; color: rgba(255,255,255,.82); line-height: 1.72; margin: 0 auto 36px; max-width: 620px; font-weight: 300; }
    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; justify-content: center; }
    .btn-primary { background: var(--gold); color: var(--white); padding: 14px 28px; border-radius: 10px; font-size: 15px; font-weight: 600; transition: all .2s; display: inline-flex; align-items: center; gap: 8px; }
    .btn-primary:hover { background: #b8882e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,153,62,.4); }
    .btn-sage { background: var(--sage); color: var(--white); padding: 14px 28px; border-radius: 10px; font-size: 15px; font-weight: 600; transition: all .2s; display: inline-flex; align-items: center; gap: 8px; }
    .btn-sage:hover { background: #3a6158; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(74,124,111,.4); color: var(--white); }
    .btn-ghost { background: rgba(255,255,255,.1); color: var(--white); padding: 14px 28px; border-radius: 10px; border: 1px solid rgba(255,255,255,.25); font-size: 15px; font-weight: 500; transition: all .2s; }
    .btn-ghost:hover { background: rgba(255,255,255,.18); }
    .hero-stats { display: flex; gap: 40px; flex-wrap: wrap; justify-content: center; border-top: 1px solid rgba(255,255,255,.14); padding-top: 36px; }
    .hero-stat { max-width: 210px; }
    .hero-stat-n { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 900; color: var(--gold-l); line-height: 1; }
    .hero-stat-l { font-size: 12.5px; color: rgba(255,255,255,.68); letter-spacing: .3px; margin-top: 6px; line-height: 1.5; }

    /* ── GALERIE ── */
    .galerie { background: var(--white); }
    .galerie-grid-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 260px 260px; gap: 4px; }
    .g-main { grid-column: 1; grid-row: 1 / 3; overflow: hidden; }
    .g-side { overflow: hidden; }
    /* <picture> est inline par défaut : sans ça, le height:100% de l'img n'a plus de référence */
    .galerie-grid-inner picture, .espace-media picture { display: block; width: 100%; height: 100%; }
    .galerie-grid-inner img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
    .galerie-grid-inner img:hover { transform: scale(1.04); }

    /* ── BANDEAU INFO ── */
    .infobanner { background: var(--navy); padding: 20px 5%; display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
    .infobanner-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.85); font-size: 14px; font-weight: 500; }
    .infobanner-item svg { color: var(--gold-l); flex-shrink: 0; }

    /* ── SECTIONS ──
       Le contenu est borné puis centré horizontalement : sur grand écran il ne
       colle plus au bord gauche. Les fonds, eux, restent pleine largeur. */
    section { padding: 96px 5%; }
    section > *, .galerie-grid-inner { max-width: 1240px; margin-left: auto; margin-right: auto; }
    .section-head { text-align: center; }
    .section-head .section-sub { margin-left: auto; margin-right: auto; }
    .section-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--gold-d); margin-bottom: 12px; }
    .section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; line-height: 1.12; color: var(--navy); margin-bottom: 16px; letter-spacing: -.5px; }
    .section-title em { font-style: italic; color: var(--gold-d); }
    .section-sub { font-size: 1.05rem; color: var(--muted); line-height: 1.7; max-width: 640px; }
    .section-head { margin-bottom: 56px; }
    .container { max-width: 1200px; margin: 0 auto; }
    .section-header { margin-bottom: 36px; }
    .section-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; color: var(--navy); line-height: 1.1; margin-bottom: 10px; }
    .section-header p { font-size: 1rem; color: var(--muted); line-height: 1.6; }
    /* variantes sur fond navy */
    .on-navy { background: var(--navy); color: rgba(255,255,255,.78); }
    .on-navy .section-tag { color: var(--gold-l); }
    .on-navy .section-title { color: var(--white); }
    .on-navy .section-title em { color: var(--gold-l); }
    .on-navy .section-sub { color: rgba(255,255,255,.72); }

    /* ── MANIFESTE ── */
    #manifeste { padding: 104px 5%; }
    .manifeste-inner { max-width: 780px; margin: 0 auto; text-align: center; }
    .manifeste-inner h2 {
      font-family: 'Playfair Display', serif; font-weight: 900;
      font-size: clamp(1.7rem, 3.6vw, 2.6rem); line-height: 1.18;
      color: var(--white); margin-bottom: 36px; letter-spacing: -.5px;
    }
    .manifeste-corps p {
      font-family: 'Playfair Display', serif; font-size: 1.28rem; font-weight: 400;
      line-height: 1.85; color: rgba(255,255,255,.84); margin-bottom: 26px; text-align: left;
    }
    .manifeste-corps p strong { color: var(--gold-l); font-weight: 700; }
    .manifeste-corps p:last-child { text-align: center; font-size: 1.45rem; color: var(--white); margin-top: 34px; }
    .manifeste-signature {
      display: block; margin-top: 40px; font-family: 'DM Mono', monospace;
      font-size: 12.5px; letter-spacing: .6px; color: var(--gold-l);
    }

    /* ── PILIERS ── */
    #piliers { background: var(--cream); }
    .piliers-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 1100px; }
    .pilier-card {
      background: var(--white); border: 1px solid var(--border); border-radius: var(--r);
      border-top: 4px solid var(--gold); padding: 30px 28px 26px;
      display: flex; flex-direction: column; gap: 12px;
      transition: transform .25s, box-shadow .25s;
    }
    .pilier-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
    .pilier-card.p-sage  { border-top-color: var(--sage); }
    .pilier-card.p-gold  { border-top-color: var(--gold); }
    .pilier-card.p-brick { border-top-color: var(--brick); }
    .pilier-card.p-navy  { border-top-color: var(--navy); }
    .pilier-ico {
      width: 52px; height: 52px; border-radius: 14px; display: flex;
      align-items: center; justify-content: center; margin-bottom: 4px;
    }
    .pilier-ico svg { width: 26px; height: 26px; stroke-width: 1.6; }
    .p-sage  .pilier-ico { background: rgba(74,124,111,.12);  color: var(--sage); }
    .p-gold  .pilier-ico { background: rgba(201,153,62,.15);  color: var(--gold-d); }
    .p-brick .pilier-ico { background: rgba(139,58,42,.10);   color: var(--brick); }
    .p-navy  .pilier-ico { background: rgba(28,43,58,.09);    color: var(--navy); }
    .pilier-card h3 { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; color: var(--navy); line-height: 1.25; }
    .pilier-card h3 span { display: block; font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .9px; text-transform: uppercase; color: var(--muted); margin-top: 6px; }
    .pilier-card p { font-size: 14.5px; color: var(--muted); line-height: 1.75; flex: 1; }
    .pilier-lien { font-size: 14px; font-weight: 700; color: var(--gold-d); display: inline-flex; align-items: center; gap: 6px; }
    .pilier-lien:hover { text-decoration: underline; }
    .p-sage .pilier-lien  { color: var(--sage); }
    .p-brick .pilier-lien { color: var(--brick); }
    .p-navy .pilier-lien  { color: var(--navy); }

    /* ── PANTHÉON ── */
    #pantheon { background: var(--white); }
    .pantheon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 44px; }
    .pantheon-item {
      background: var(--cream); border-radius: 10px; padding: 22px 22px 20px;
      border-left: 3px solid transparent; transition: border-color .25s, transform .25s, background .25s;
    }
    .pantheon-item:hover { border-left-color: var(--gold); transform: translateX(4px); background: #F2ECE2; }
    .pantheon-nom { font-family: 'Playfair Display', serif; font-size: 1.12rem; font-weight: 700; color: var(--navy); line-height: 1.25; margin-bottom: 4px; }
    .pantheon-dates { font-family: 'DM Mono', monospace; font-size: 11.5px; color: var(--muted); margin-bottom: 10px; }
    .pantheon-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }
    .pantheon-bascule {
      margin-top: 40px; background: var(--cream); border-left: 4px solid var(--gold);
      border-radius: 0 10px 10px 0; padding: 22px 26px;
      font-size: 15px; color: var(--ink); line-height: 1.75; max-width: 900px;
    }
    .pantheon-bascule strong { color: var(--sage); }
    .pantheon-bascule a { color: var(--gold-d); font-weight: 700; text-decoration: underline; }

    /* ── APPRENDRE ── */
    #apprendre { background: var(--cream); }
    .apprendre-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
    .app-col { border-radius: var(--r); padding: 32px 30px; display: flex; flex-direction: column; gap: 16px; }
    .app-col-gratuit { background: rgba(74,124,111,.08); border: 1px solid rgba(74,124,111,.28); }
    .app-col-acad    { background: var(--white); border: 1.5px solid var(--gold); }
    .app-col h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--navy); line-height: 1.2; }
    .app-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; flex: 1; }
    .app-col li { font-size: 14.5px; color: var(--ink); line-height: 1.65; display: flex; gap: 10px; align-items: flex-start; }
    .app-col li::before { content: '—'; flex-shrink: 0; font-weight: 700; }
    .app-col-gratuit li::before { color: var(--sage); }
    .app-col-acad li::before { color: var(--gold-d); }
    .app-badge {
      display: inline-block; align-self: flex-start; font-size: 12px; font-weight: 700;
      letter-spacing: .4px; padding: 6px 14px; border-radius: 20px;
    }
    .badge-sage { background: var(--sage); color: var(--white); }
    .badge-gold { background: rgba(201,153,62,.16); color: var(--gold-d); }
    .app-encadre {
      margin-top: 28px; background: var(--white); border-left: 4px solid var(--gold);
      border-radius: 0 10px 10px 0; padding: 24px 28px; font-size: 15px;
      line-height: 1.78; color: var(--ink); max-width: 980px;
    }
    .app-encadre strong { color: var(--navy); }

    /* ── ENTREPRENDRE ── */
    #entreprendre { background: var(--white); }
    .badge-lancement {
      display: inline-block; font-family: 'DM Mono', monospace; font-size: 11px;
      letter-spacing: .8px; text-transform: uppercase; color: var(--muted);
      border: 1px solid var(--border); border-radius: 20px; padding: 4px 12px; margin-left: 10px;
      vertical-align: middle;
    }
    .frise { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 48px 0 44px; position: relative; }
    .frise-etape { position: relative; display: flex; flex-direction: column; gap: 10px; }
    .frise-num {
      width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--gold);
      color: var(--gold-d); font-family: 'DM Mono', monospace; font-weight: 500; font-size: 15px;
      display: flex; align-items: center; justify-content: center; background: var(--white);
      position: relative; z-index: 1; flex-shrink: 0;
    }
    .frise-etape:not(:last-child) .frise-num::after {
      content: ''; position: absolute; left: 100%; top: 50%; width: calc(100% + 20px);
      height: 2px; background: repeating-linear-gradient(90deg, rgba(201,153,62,.45) 0 6px, transparent 6px 12px);
    }
    .frise-etape h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--navy); }
    .frise-duree { font-family: 'DM Mono', monospace; font-size: 11.5px; color: var(--muted); }
    .frise-etape p { font-size: 13.5px; color: var(--muted); line-height: 1.7; flex: 1; }
    .frise-cout { align-self: flex-start; font-size: 11.5px; font-weight: 700; padding: 4px 12px; border-radius: 20px; letter-spacing: .3px; }
    .cout-gratuit  { background: var(--sage); color: #fff; }
    .cout-solidaire{ background: rgba(74,124,111,.14); color: #35594f; }
    .cout-adherent { background: rgba(201,153,62,.16); color: var(--gold-d); }
    .entre-blocs { display: grid; grid-template-columns: 1.15fr 1fr; gap: 24px; margin-bottom: 36px; }
    .entre-bloc-prio h3, .entre-bloc-non h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
    .entre-bloc-prio ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 9px 18px; }
    .entre-bloc-prio li { font-size: 14px; color: var(--ink); line-height: 1.6; display: flex; gap: 9px; align-items: flex-start; }
    .entre-bloc-prio li::before { content: '✓'; color: var(--sage); font-weight: 700; flex-shrink: 0; }
    .entre-bloc-non { background: var(--cream); border-radius: var(--r); padding: 26px 28px; }
    .entre-bloc-non p { font-size: 14.5px; color: var(--muted); line-height: 1.78; }
    .entre-cta-zone { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
    .entre-mention { font-family: 'DM Mono', monospace; font-size: 12px; color: var(--muted); }

    /* ── TÉMOIGNAGES ── */
    .temoignages { background: #F7F3ED; padding: 64px 5%; }

    /* ── ÉCOSYSTÈME ── */
    #ecosysteme { background: var(--cream); padding-bottom: 56px; }
    .eco-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
    .eco-item {
      background: var(--white); border: 1px solid var(--border); border-radius: 10px;
      padding: 24px 22px 22px; display: flex; flex-direction: column; align-items: center;
      text-align: center; transition: transform .25s, box-shadow .25s, border-color .25s;
    }
    /* Les partenaires ayant un site sont des <a> : toute la carte est cliquable. */
    a.eco-item:hover, a.eco-item:focus-visible { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
    /* width:100% indispensable : sans lui, ce flex-item dans une colonne
       align-items:center se reduit a 0 et l'image ne peut pas se dimensionner. */
    .eco-logo { width: 100%; height: 66px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
    /* Boite fixe + object-fit : sans dimensions definies l'image non chargee
       occupe 0x0, et loading="lazy" ne se declenche jamais faute de surface
       observable. Uniformise aussi l'alignement des logos entre cartes. */
    .eco-logo img { width: 150px; height: 66px; object-fit: contain; }
    /* Monogramme de repli pour les structures dont je n'ai pas de logo. */
    .eco-mono {
      width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
      background: rgba(28,43,58,.06); color: var(--navy);
      font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.2rem; letter-spacing: .5px;
    }
    .eco-mono.mono-sage { background: rgba(74,124,111,.12); color: #35594f; }
    .eco-mono svg { width: 28px; height: 28px; }
    .eco-nom { font-family: 'Playfair Display', serif; font-size: 1.08rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; line-height: 1.3; }
    .eco-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }
    .eco-lien { margin-top: auto; padding-top: 14px; font-size: 12px; font-weight: 700; color: var(--gold-d); display: inline-flex; align-items: center; gap: 5px; }
    a.eco-item:hover .eco-lien { text-decoration: underline; }
    .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

    /* ── ESPACES ── */
    #espaces { background: var(--cream); }
    .espaces-bandeau {
      display: flex; flex-wrap: wrap; gap: 10px 26px; align-items: center;
      font-family: 'DM Mono', monospace; font-size: 13px; color: var(--navy);
      background: var(--white); border: 1px solid var(--border); border-radius: 10px;
      padding: 16px 22px; margin: 24px 0 32px;
    }
    .espaces-bandeau span { display: flex; align-items: center; gap: 26px; }
    .espaces-bandeau span:not(:last-child)::after { content: '·'; color: var(--gold); font-size: 18px; }
    .espaces-bandeau em { font-style: normal; color: var(--sage); font-weight: 500; }
    .espaces-cta-duo { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
    .espaces-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
    .espace-tab { display: inline-flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 9px 16px; font-size: 14px; font-weight: 500; color: var(--muted); cursor: pointer; transition: all .2s; }
    .espace-tab .ico { width: 17px; height: 17px; }
    /* État au chargement : l'onglet « Tous » est actif, les fiches en bail
       doivent donc être masquées dès le premier rendu — sinon 12 fiches
       s'affichent, puis 6 dès qu'on touche aux onglets. filtrerEspaces()
       force display:block pour les réafficher : ne pas remplacer par une
       chaîne vide, cette règle reprendrait le dessus. */
    .espace-hidden { display: none; }
    .espace-tab:hover, .espace-tab.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
    .espaces-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
    .espace-card { background: var(--white); border-radius: var(--r); border: 1px solid var(--border); overflow: hidden; transition: transform .25s, box-shadow .25s; }
    .espace-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
    /* média de tête : photo réelle, ou plan quand la photo n'existe pas encore */
    .espace-media { position: relative; height: 200px; }
    .espace-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .espace-media-plan {
      display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
      background:
        repeating-linear-gradient(0deg,  transparent 0 23px, rgba(232,192,106,.13) 23px 24px),
        repeating-linear-gradient(90deg, transparent 0 23px, rgba(232,192,106,.13) 23px 24px),
        linear-gradient(135deg, #1C2B3A 0%, #2A3F52 100%);
    }
    .espace-media-plan .ico { width: 40px; height: 40px; color: rgba(232,192,106,.8); }
    .plan-ref  { font-family: 'DM Mono', monospace; font-size: 12px; letter-spacing: 2px; color: rgba(232,192,106,.9); }
    .espace-icon { position: absolute; top: 12px; right: 12px; width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; background: rgba(28,43,58,.86); color: var(--gold-l); }
    .espace-badge { font-size: 11px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; background: rgba(201,153,62,.25); color: var(--gold-l); padding: 4px 10px; border-radius: 20px; }
    .espace-media .espace-badge { position: absolute; top: 12px; left: 12px; background: rgba(28,43,58,.86); }
    .espace-badge.loue { background: rgba(255,255,255,.16); color: rgba(255,255,255,.92); }
    .espace-media .espace-badge.loue { background: rgba(139,58,42,.9); color: #fff; }
    .espace-loue-note { font-size: 12px; font-weight: 700; color: var(--brick); letter-spacing: .3px; }
    .espace-card-body { padding: 20px 24px 24px; }
    .espace-ref { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--muted); margin-bottom: 4px; }
    .espace-nom { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
    .espace-desc { font-size: 13.5px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
    /* liste tarifaire à pointillés */
    .espace-tarifs { list-style: none; margin: 0 0 10px; }
    .espace-tarifs li { display: flex; align-items: baseline; padding: 5px 0; font-size: 13.5px; }
    .espace-tarifs .lbl  { color: var(--muted); white-space: nowrap; }
    .espace-tarifs .dots { flex: 1; border-bottom: 2px dotted var(--border); margin: 0 10px; transform: translateY(-4px); }
    .espace-tarifs .val  { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--brick); white-space: nowrap; }
    .espace-tarifs-note { font-size: 11.5px; line-height: 1.5; color: var(--muted); margin-bottom: 14px; }
    .espace-tarifs-note strong { color: var(--sage); font-weight: 600; }
    /* alias classes pour blocs en bail */
    .espace-card-header { background: var(--navy); padding: 20px 20px 16px; display: flex; align-items: center; gap: 14px; }
    .espace-card-header h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
    .espace-card-header .sous-titre { font-size: 12px; color: rgba(255,255,255,.55); font-family: 'DM Mono', monospace; }
    .espace-ico { width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; background: rgba(201,153,62,.25); }
    .espace-prix-box { display: flex; align-items: baseline; gap: 6px; background: var(--cream); border-radius: 8px; padding: 10px 14px; margin: 12px 0; }
    .espace-prix-box .prix { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--brick); }
    .espace-prix-box .unite { font-size: 12px; color: var(--muted); }
    .btn-reserver-card { display: block; text-align: center; background: var(--gold); color: var(--white); padding: 10px 18px; border-radius: 8px; font-size: 14px; font-weight: 600; transition: background .2s; }
    .btn-reserver-card:hover { background: #b8882e; color: var(--white); }

    /* ── TARIFS ── */
    #tarifs { background: var(--white); }
    .tarifs-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 56px; align-items: start; }
    .profils-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .profil-card { border: 2px solid var(--border); border-radius: var(--r); padding: 20px; transition: border-color .2s; }
    .profil-card:hover { border-color: var(--gold); }
    .profil-icon { color: var(--gold); margin-bottom: 10px; }
    .profil-icon .ico { width: 26px; height: 26px; }
    .profil-nom { font-weight: 700; font-size: 14px; color: var(--navy); margin-bottom: 4px; }
    .profil-desc { font-size: 12px; color: var(--muted); line-height: 1.5; }
    .tarifs-table { width: 100%; border-collapse: collapse; font-size: 14px; }
    .tarifs-table th { background: var(--navy); color: var(--white); padding: 12px 16px; text-align: left; font-weight: 600; font-size: 12px; letter-spacing: .4px; }
    .tarifs-table th:first-child { border-radius: 8px 0 0 0; }
    .tarifs-table th:last-child { border-radius: 0 8px 0 0; }
    .tarifs-table td { padding: 10px 16px; border-bottom: 1px solid var(--border); }
    .tarifs-table tr:hover td { background: var(--cream); }
    .tarifs-table .free { color: var(--sage); font-weight: 700; }
    .tarifs-note { margin-top: 20px; font-size: 13px; color: var(--muted); background: var(--cream); border-radius: 8px; padding: 14px 18px; border-left: 3px solid var(--gold); }
    /* min-width:0 indispensable : sans lui, l'item de grille refuse de passer sous la
       largeur min-content de la table à 6 colonnes et fait déborder toute la page. */
    .tarifs-intro > * { min-width: 0; }
    .tarifs-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; max-width: 100%; }
    .tarifs-scroll .tarifs-table { min-width: 460px; }

    /* ── TRANSPARENCE ── */
    #transparence { background: var(--navy); color: rgba(255,255,255,.78); }
    .transp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 1000px; }
    .transp-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.15); border-radius: var(--r); padding: 26px 26px 24px; transition: background .25s; }
    .transp-card:hover { background: rgba(255,255,255,.09); }
    .transp-card h3 { font-family: 'Playfair Display', serif; font-size: 1.18rem; font-weight: 700; color: var(--gold-l); margin-bottom: 10px; }
    .transp-card p { font-size: 14px; color: rgba(255,255,255,.72); line-height: 1.75; }
    .transp-final {
      max-width: 1000px; margin-top: 40px; background: rgba(255,255,255,.05);
      border-left: 4px solid var(--gold); border-radius: 0 var(--r) var(--r) 0; padding: 30px 32px;
    }
    .transp-final p { font-size: 15.5px; line-height: 1.8; color: rgba(255,255,255,.82); margin-bottom: 22px; }
    .transp-final strong { color: var(--white); }
    .transp-jauge { margin: 22px 0 24px; max-width: 460px; }
    .transp-jauge-bar { display: flex; width: 100%; height: 16px; border-radius: 8px; overflow: hidden; background: rgba(255,255,255,.12); }
    .transp-jauge-legende { display: flex; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,.72); margin-top: 8px; }
    .transp-jauge-legende strong { color: #fff; }

    /* ── REJOINDRE ── */
    #rejoindre { background: var(--white); }
    .portes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 56px; }
    .porte-card { border: 1px solid var(--border); border-radius: var(--r); padding: 30px 28px; display: flex; flex-direction: column; gap: 12px; border-top: 4px solid var(--sage); }
    .porte-card.porte-gold { border-top-color: var(--gold); }
    .porte-card.porte-navy { border-top-color: var(--navy); }
    .porte-card h3 { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; color: var(--navy); }
    .porte-card p { font-size: 14.5px; color: var(--muted); line-height: 1.72; flex: 1; }
    .porte-card .btn-sage, .porte-card .btn-primary { align-self: flex-start; padding: 11px 22px; font-size: 14px; }
    .porte-lien { align-self: flex-start; font-size: 14px; font-weight: 700; color: var(--navy); border-bottom: 2px solid var(--gold); padding-bottom: 2px; }
    .cotis-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
    .cotis-card { border-radius: var(--r); border: 2px solid var(--border); padding: 32px; transition: border-color .25s, transform .25s; }
    .cotis-card:hover { border-color: var(--gold); transform: translateY(-4px); }
    .cotis-card.featured { border-color: var(--gold); background: linear-gradient(135deg, #fffbf3, #fef6e4); }
    .cotis-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--gold-d); margin-bottom: 8px; }
    .cotis-nom { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
    .cotis-prix { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900; color: var(--brick); line-height: 1; margin-bottom: 16px; }
    .cotis-prix span { font-size: 1rem; font-weight: 400; color: var(--muted); }
    .cotis-avantages { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .cotis-avantages li { font-size: 13.5px; color: var(--ink); display: flex; gap: 8px; align-items: flex-start; }
    .cotis-avantages li::before { content: '✓'; color: var(--sage); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
    .paiement-bloc { background: var(--cream); border-radius: var(--r); padding: 24px; margin: 32px 0; }
    .paiement-bloc h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
    .paiement-tags { display: flex; flex-wrap: wrap; gap: 8px; }
    .paiement-tag { font-size: 13px; padding: 6px 14px; background: var(--white); border: 1px solid var(--border); border-radius: 20px; color: var(--ink); }
    .formulaire-mbr { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r); padding: 32px; margin-top: 8px; }
    .formulaire-mbr h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
    .formulaire-mbr > p { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
    .form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .form-full { grid-column: 1 / -1; }
    .fg { display: flex; flex-direction: column; gap: 5px; }
    .fg label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .4px; color: var(--muted); }
    .fg label .req { color: var(--brick); }
    .fg input, .fg select { border: 1.5px solid var(--border); border-radius: 8px; padding: 9px 12px; font-family: inherit; font-size: 13px; color: var(--ink); background: var(--white); transition: border-color .2s; resize: vertical; width: 100%; }
    .fg input:focus, .fg select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,153,62,.1); }
    .hint { font-size: 11px; color: var(--muted); }
    .form-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 8px; }
    .btn-submit-mbr { background: var(--sage); color: var(--white); border: none; border-radius: 8px; padding: 13px 24px; font-size: 15px; font-weight: 700; cursor: pointer; transition: background .2s, transform .15s; font-family: inherit; }
    .btn-submit-mbr:hover { background: #3a6158; transform: translateY(-1px); }
    .btn-submit-mbr:disabled { opacity: .55; cursor: not-allowed; transform: none; }
    .btn-dl-mbr { display: inline-flex; align-items: center; gap: 6px; padding: 13px 20px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 14px; font-weight: 600; color: var(--navy); text-decoration: none; transition: border-color .2s; }
    .btn-dl-mbr:hover { border-color: var(--navy); }

    /* ── CONTACT ── */
    #contact { background: var(--cream); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
    .contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; }
    .ci-ico { width: 42px; height: 42px; border-radius: 10px; background: var(--navy); color: var(--gold-l); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
    .ci-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--muted); margin-bottom: 2px; }
    .ci-val { font-size: 15px; font-weight: 500; color: var(--navy); }
    .ci-val a { color: var(--navy); }
    .ci-val a:hover { color: var(--gold-d); }
    .contact-map { border-radius: var(--r); overflow: hidden; border: 1px solid var(--border); height: 340px; }
    .contact-map iframe { width: 100%; height: 100%; border: none; }
    .contact-form-bloc { background: var(--white); border-radius: var(--r); border: 1px solid var(--border); padding: 28px; }
    .contact-form-bloc h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
    .contact-form-bloc .fg textarea { border: 1.5px solid var(--border); border-radius: 8px; padding: 9px 12px; font-family: inherit; font-size: 13px; color: var(--ink); background: var(--white); resize: vertical; min-height: 90px; width: 100%; transition: border-color .2s; }
    .contact-form-bloc .fg textarea:focus { outline: none; border-color: var(--gold); }

    /* ── FAQ ── */
    .faq-section { background: #F7F3ED; padding: 64px 5%; }

    /* ── SERVICES ── */
    #services { background: var(--white); }
    .services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; }
    .service-card { background: var(--white); border-radius: var(--r); border: 1px solid var(--border); padding: 24px; display: flex; flex-direction: column; gap: 10px; transition: transform .2s, box-shadow .2s; }
    .service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
    .service-icon { width: 44px; height: 44px; border-radius: 11px; background: rgba(201,153,62,.12); color: var(--gold); display: flex; align-items: center; justify-content: center; }
    .service-icon .ico { width: 24px; height: 24px; }
    .service-title { font-weight: 700; font-size: 15px; color: var(--navy); }
    .service-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }
    .service-tag { display: inline-block; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px; background: rgba(201,153,62,.15); color: var(--gold-d); }

    /* ── ÉVÉNEMENTS ── */
    .evenements-section { background: #F7F3ED; padding: 64px 5%; }

    /* ── FOOTER ── */
    footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 56px 5% 32px; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
    .footer-brand-name { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 900; color: var(--white); margin-bottom: 6px; }
    .footer-brand-sub { font-size: 12px; letter-spacing: .8px; text-transform: uppercase; color: var(--gold-l); margin-bottom: 14px; }
    .footer-brand-desc { font-size: 13.5px; line-height: 1.7; max-width: 320px; }
    .footer-col-title { font-size: 13px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: .6px; margin-bottom: 16px; }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .footer-links a { font-size: 13.5px; color: rgba(255,255,255,.68); transition: color .2s; }
    .footer-links a:hover { color: var(--gold-l); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
    .footer-bottom p { font-size: 12.5px; }
    .footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
    .footer-legal a { font-size: 12.5px; color: rgba(255,255,255,.6); transition: color .2s; }
    .footer-legal a:hover { color: var(--gold-l); }

    /* ── COOKIE BANNER ── */
    #cookie-banner {
      position: fixed; bottom: 20px; left: 20px; right: 20px;
      background: var(--navy); color: var(--white); padding: 20px 24px; border-radius: 14px;
      display: flex; align-items: center; justify-content: space-between;
      gap: 20px; flex-wrap: wrap; z-index: 999;
      box-shadow: 0 8px 40px rgba(0,0,0,.4);
      transform: translateY(120%); transition: transform .4s cubic-bezier(.34,1.56,.64,1);
    }
    #cookie-banner.show { transform: translateY(0); }
    #cookie-banner p { font-size: 13.5px; color: rgba(255,255,255,.85); flex: 1; min-width: 200px; }
    .cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
    .cookie-accept { background: var(--gold); color: var(--white); padding: 8px 18px; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; border: none; }
    .cookie-refuse { background: rgba(255,255,255,.1); color: rgba(255,255,255,.85); padding: 8px 18px; border-radius: 8px; font-size: 13px; border: 1px solid rgba(255,255,255,.2); cursor: pointer; }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .tarifs-intro { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .pantheon-grid { grid-template-columns: repeat(2, 1fr); }
      .frise { grid-template-columns: repeat(2, 1fr); gap: 28px; }
      .frise-etape:nth-child(2) .frise-num::after { display: none; }
      .eco-grid { grid-template-columns: repeat(2, 1fr); }
      .entre-blocs { grid-template-columns: 1fr; }
      .portes-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      section { padding: 56px 4%; }
      #manifeste { padding: 64px 6%; }
      .nav-links { display: none; }
      .nav-links.open {
        display: flex; flex-direction: column;
        position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
        background: var(--navy); padding: 24px 6%;
        align-items: flex-start; gap: 0;
        border-top: 2px solid var(--gold); overflow-y: auto;
        animation: slideDown .25s ease; z-index: 999;
      }
      @keyframes slideDown { from{opacity:0;transform:translateY(-10px)} to{opacity:1;transform:none} }
      .nav-links.open a { font-size: 20px; font-weight: 600; color: #fff; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.12); width: 100%; display: block; }
      .nav-links.open a:last-child { border-bottom: none; }
      .nav-links.open .nav-cta, .nav-links.open .nav-cta-ghost { margin-top: 14px; width: 100%; text-align: center; font-size: 18px; padding: 14px; }
      .nav-links.open .nav-cta-ghost { color: var(--gold-l) !important; border-color: var(--gold-l); }
      .nav-burger { display: flex; }
      .contact-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .hero { min-height: auto; padding: 100px 5% 56px; }
      .hero h1 { font-size: clamp(1.9rem, 8vw, 2.8rem); }
      .hero-actions { flex-direction: column; gap: 10px; }
      .btn-primary, .btn-ghost, .btn-sage { text-align: center; justify-content: center; width: 100%; }
      .hero-stats { gap: 22px; padding-top: 28px; }
      .hero-stat-n { font-size: 1.9rem; }
      .profils-grid { grid-template-columns: 1fr; }
      .espaces-grid { grid-template-columns: 1fr; gap: 14px; }
      .espaces-bandeau { flex-direction: column; align-items: flex-start; gap: 8px; }
      .espaces-bandeau span:not(:last-child)::after { display: none; }
      .cotis-grid { grid-template-columns: 1fr; gap: 14px; }
      .form-grid-2 { grid-template-columns: 1fr !important; }
      .galerie-grid-inner { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px; }
      .g-main { grid-column: span 2; grid-row: 1; }
      .piliers-grid { grid-template-columns: 1fr; }
      .pantheon-grid { grid-template-columns: 1fr; }
      .apprendre-cols { grid-template-columns: 1fr; }
      .frise { grid-template-columns: 1fr; gap: 24px; }
      .frise-etape .frise-num::after { display: none !important; }
      .transp-grid { grid-template-columns: 1fr; }
      .eco-grid { grid-template-columns: 1fr; }
      .entre-bloc-prio ul { grid-template-columns: 1fr; }
      .manifeste-corps p { font-size: 1.1rem; }
      .manifeste-corps p:last-child { font-size: 1.2rem; }
    }
    @media (max-width: 480px) {
      section { padding: 44px 4%; }
      .form-actions { flex-direction: column; gap: 10px; }
      .btn-submit-mbr, .btn-dl-mbr { width: 100%; text-align: center; justify-content: center; }
      footer { padding: 40px 16px 24px; }
      .footer-grid { gap: 24px; }
      .app-col { padding: 24px 20px; }
      .transp-final { padding: 24px 20px; }
    }

    /* ── CONTRASTE DES BOUTONS OR ──
       Le blanc sur --gold (#C9993E) ne donne que 2,59:1, très en dessous des 4.5:1
       exigés. L'encre navy sur ce même or donne 5,56:1 et conserve la couleur de
       marque intacte. Le !important couvre les quelques boutons stylés en inline. */
    .btn-primary, .nav-cta, .cookie-accept, .btn-reserver-card,
    a[style*="background:var(--gold)"], a[style*="background:#C9993E"] {
      color: var(--navy) !important;
    }
    .btn-primary:hover, .nav-cta:hover, .btn-reserver-card:hover { color: var(--navy) !important; }
    /* Sage sur crème plafonne à 4,31:1 — on assombrit pour le corps de texte. */
    .pantheon-bascule strong { color: #3A6158; }
    /* Badge « Adhérents » hérité : #e65100 sur #fff3e0 ne donne que 3,46:1.
       Corrigé en CSS pour ne pas toucher au balisage de la carte événement. */
    span[style*="color:#e65100"] { color: #B03E00 !important; }
    /* Textes gris produits par le script d'avis (#6B7A8A codé en dur, 3,98:1).
       Corrigé ici pour laisser le script strictement inchangé. */
    #gav-grid [style*="#6B7A8A"], #gav-loading [style*="#6B7A8A"],
    #gav-loading { color: var(--muted) !important; }

    /* ── MOUVEMENT RÉDUIT ── */
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
      }
      .espace-card:hover, .pilier-card:hover, .cotis-card:hover,
      .service-card:hover, .pantheon-item:hover,
      .btn-primary:hover, .btn-sage:hover, .galerie-grid-inner img:hover { transform: none; }
    }
