  :root{
    --ink:#1c2b2a;
    --paper:#f5f2ea;
    --tile:#00ced1;
    --tile-dark:#046d6f;
    --tile-pale:#d6f5f5;
    --brass:#b8863b;
    --brick:#a8503a;
    --line: rgba(28,43,42,.14);
    --maxw: 1080px;
  }
  *{box-sizing:border-box;}
  html{scroll-behavior:smooth; overflow-x:hidden;}
  body{
    margin:0;
    overflow-x:hidden;
    width:100%;
    background:var(--paper);
    color:var(--ink);
    font-family:'Work Sans', sans-serif;
    font-size:16px;
    line-height:1.55;
    -webkit-font-smoothing:antialiased;
  }
  h1,h2,h3,h4{
    font-family:'Space Grotesk', sans-serif;
    font-weight:600;
    line-height:1.1;
    margin:0;
    letter-spacing:-.01em;
  }
  a{color:inherit;}
  img{max-width:100%;display:block;}
  .wrap{max-width:var(--maxw); margin:0 auto; padding:0 28px;}

  /* ---------- header ---------- */
  header{
    position:sticky; top:0; z-index:50;
    background:rgba(245,242,234,.92);
    backdrop-filter:blur(6px);
    border-bottom:1px solid var(--line);
  }
  .nav{
    max-width:var(--maxw); margin:0 auto; padding:16px 28px;
    display:flex; align-items:center; justify-content:space-between;
    gap:20px;
  }
  .brand{
    font-family:'Space Grotesk', sans-serif; font-weight:600; font-size:1.15rem;
    display:flex; align-items:center; gap:10px; white-space:nowrap;
    text-decoration:none; color:var(--ink); cursor:pointer;
  }
  .logoMark{
    width:34px; height:34px; border-radius:50%;
    overflow:hidden; flex-shrink:0;
    display:inline-flex; align-items:center; justify-content:center;
  }
  .logoMark img{width:100%; height:100%; object-fit:cover; display:block;}
  .logoMark--hero{
    width:220px; height:220px; margin-bottom:24px;
    box-shadow:0 8px 20px rgba(10,18,17,.3);
  }
  nav.links{
    display:none;
  }
  nav.links.open{
    display:flex; flex-direction:column; gap:0;
    position:absolute; top:100%; left:0; right:0;
    background:var(--paper); border-bottom:1px solid var(--line);
    box-shadow:0 12px 24px rgba(10,18,17,.12);
  }
  nav.links.open a{
    padding:14px 28px; border-bottom:1px solid var(--line);
    width:100%; box-sizing:border-box;
    text-decoration:none; font-size:.94rem; color:var(--ink);
    display:flex; align-items:center; gap:12px;
  }
  nav.links.open a svg{width:18px; height:18px; flex-shrink:0; color:var(--tile-dark);}
  nav.links.open a:last-child{border-bottom:none;}
  nav.links.open a:hover{background:var(--tile-pale);}
  nav.links.open a.navHighlight{background:#fdecd9; font-weight:600;}
  nav.links.open a.navHighlight:hover{background:#fbdcb8;}
  .navToggleGroup{display:flex; align-items:center; gap:0;}
  .menuHint{
    display:flex; align-items:center; gap:2px;
    margin-right:-6px; margin-left:-10px;
    color:var(--ink); pointer-events:none;
  }
  .menuHint__label{
    font-family:'Caveat', cursive; font-weight:700;
    font-size:1.5rem; transform:translateX(-6px) rotate(-8deg);
  }
  .menuHint__arrow{width:38px; height:26px; transform:rotate(-8deg);}

  .navToggle{
    display:flex;
    width:38px; height:38px; padding:0;
    background:none; border:none; color:var(--ink); cursor:pointer;
    align-items:center; justify-content:center;
  }
  .navToggle svg{width:24px; height:24px;}
  .navToggle .iconClose{display:none;}
  .navToggle.open .iconBurger{display:none;}
  .navToggle.open .iconClose{display:block;}
  .nav{position:relative;}

  /* ---------- hero ---------- */
  .hero{
    position:relative;
    width:100%;
    min-height:86vh;
    display:flex;
    align-items:center;
    background:
      linear-gradient(180deg, rgba(16,28,27,.30) 0%, rgba(16,28,27,.42) 45%, rgba(13,23,22,.88) 100%),
      url('assets/HERO.png') center 30%/cover no-repeat;
    background-attachment:fixed;
    color:#f5f2ea;
  }
  .hero .wrap{
    width:100%;
    display:grid; grid-template-columns: 1.3fr .9fr; gap:48px; align-items:center;
    padding-top:60px; padding-bottom:52px;
  }
  .hero .wrap > div:first-child{text-align:center;}
  .eyebrow-plain{
    color:#cfe0dc; font-size:.95rem; margin-top:16px;
  }
  .hero h1{
    color:#fff;
    font-size:clamp(2.3rem, 4.6vw, 3.6rem);
    max-width:11ch;
    margin-left:auto; margin-right:auto;
    letter-spacing:-.01em;
    text-wrap:balance;
  }
  .hero h1.punchline{
    font-family:'Caveat', cursive;
    font-weight:700;
    font-size:clamp(3.2rem, 6.5vw, 5.2rem);
    line-height:1.05;
    max-width:12ch;
    letter-spacing:0;
    text-shadow:0 3px 10px rgba(0,0,0,.45);
    display:inline-block;
    transform:rotate(-5deg);
  }
  .hero p.lead{
    margin-top:22px; max-width:46ch; font-size:1.08rem; color:#dbe6e3;
    margin-left:auto; margin-right:auto;
  }
  .hero .cta-row{
    margin-top:30px; display:flex; gap:14px; flex-wrap:wrap; justify-content:center;
  }
  .hero .btn.ghost{border-color:#f5f2ea; color:#f5f2ea;}
  .btn{
    display:inline-flex; align-items:center; gap:8px;
    padding:12px 22px; border-radius:3px;
    font-size:.95rem; text-decoration:none; font-weight:500;
    border:1px solid var(--ink);
    transition:transform .15s ease;
  }
  .btn:hover{transform:translateY(-1px);}
  .btn.primary{background:var(--tile); color:#fff; border-color:var(--tile);}
  .btn.ghost{background:transparent; color:var(--ink);}

  .hoursCard{
    background:rgba(245,242,234,.97);
    backdrop-filter:blur(4px);
    padding:26px 26px 22px;
    align-self:end;
    box-shadow:0 18px 40px rgba(10,18,17,.35);
  }
  .hoursCard h3{font-size:1.05rem; margin-bottom:4px; text-align:center; color:var(--ink);}
  .hoursCard .status{
    display:flex; align-items:center; justify-content:center; gap:10px;
    margin:14px auto 20px; padding:10px 20px; width:fit-content;
    border-radius:999px; font-size:1rem; font-weight:600;
    border:2px solid #9aa6a4; color:#516462; background:transparent;
  }
  .hoursCard .status.open{border-color:#2f8f42; color:#215e2c; background:rgba(63,143,78,.18);}
  .hoursCard .status.closed{border-color:#c97a1f; color:#8a530f; background:rgba(217,154,78,.2);}
  .status .led{width:11px;height:11px;border-radius:50%; background:#9aa6a4;}
  .status.open .led{background:#2f8f42; box-shadow:0 0 0 3px rgba(47,143,66,.25);}
  .status.closed .led{background:#c97a1f; box-shadow:0 0 0 3px rgba(201,122,31,.25);}
  .hoursCard table{width:100%; border-collapse:collapse; font-size:.94rem; color:var(--ink);}
  .hoursCard td{padding:7px 0; border-top:1px solid var(--line);}
  .hoursCard tr:first-child td{border-top:none;}
  .hoursCard td.day{color:var(--ink);}
  .hoursCard td.time{text-align:right; font-variant-numeric:tabular-nums; color:var(--ink);}
  .hoursCard .addr{
    margin-top:18px; padding-top:16px; border-top:1px solid var(--line);
    font-size:.9rem; color:var(--ink); text-align:center;
  }
  .socialRow{display:flex; flex-direction:column; gap:12px; margin-top:16px; align-items:center;}
  .iconGroup{display:flex; flex-wrap:wrap; gap:12px; justify-content:center;}
  .socialRow a{
    height:46px; border-radius:23px;
    display:inline-flex; align-items:center; justify-content:center; gap:9px;
    border:2px solid var(--tile); color:var(--tile); background:transparent;
    text-decoration:none; font-size:.9rem; font-weight:500;
    transition:background .15s ease, color .15s ease, border-color .15s ease;
  }
  .socialRow a.iconOnly{width:46px; padding:0;}
  .socialRow a.pill{padding:0 20px;}
  .socialRow a svg{width:18px;height:18px; flex-shrink:0;}
  .socialRow a:hover{background:var(--tile); color:#fff;}

  /* ---------- section shell ---------- */
  section{padding:70px 0;}
  .sectionHead{max-width:56ch; margin-bottom:42px;}
  .sectionHead .kicker{color:var(--tile-dark); font-size:.95rem; margin-bottom:10px;}
  .sectionHead h2{font-size:clamp(1.7rem,2.9vw,2.3rem);}
  .sectionHead p{margin-top:14px; color:#3a4a48;}

  section.alt{background:#d6f5f5;}

  /* ---------- services ---------- */
  .servicesGrid{
    display:grid; grid-template-columns:repeat(3,1fr); gap:5px;
  }
  .service{
    background:var(--paper); min-height:190px;
    border:1px solid var(--line);
    display:flex; flex-direction:column;
    overflow:hidden;
  }
  .service__photoWrap{position:relative;}
  .service__photo{
    width:100%; aspect-ratio:1/1; height:auto; object-fit:cover; display:block;
  }
  .svcPill{
    position:absolute; top:10px; right:10px;
    padding:5px 12px; border-radius:999px;
    font-size:.72rem; font-weight:700; letter-spacing:.02em;
    color:#fff; text-shadow:0 1px 2px rgba(0,0,0,.4);
    box-shadow:0 4px 10px rgba(0,0,0,.35);
  }
  .svcPill--free{background:#00ced1;}
  .svcPill--quote{background:#ffa726;}
  .service__body{
    padding:22px 26px 26px; display:flex; flex-direction:column; gap:10px; flex-grow:1;
  }
  .service__body--noPhoto{padding-top:28px;}
  .service .icon{
    position:absolute; bottom:10px; left:10px;
    width:34px; height:34px; color:#fff;
    filter:drop-shadow(0 2px 4px rgba(0,0,0,.5));
  }
  .service h4{font-size:1.05rem;}
  .service p{margin:0; font-size:.92rem; color:#3a4a48;}

  /* ---------- agenda ---------- */
  .agendaFrame{
    border:1px solid var(--line);
    background:#fff;
    padding:6px;
  }
  .agendaFrame iframe{width:100%; display:block; min-height:600px;}

  /* ---------- histoire timeline ---------- */
  .timeline{position:relative; padding-left:26px;}
  .timeline::before{
    content:''; position:absolute; left:4px; top:6px; bottom:6px; width:1px;
    background:var(--line);
  }
  .tlItem{position:relative; padding-bottom:34px;}
  .tlItem:last-child{padding-bottom:0;}
  .tlItem::before{
    content:''; position:absolute; left:-26px; top:5px; width:9px;height:9px;
    border-radius:50%; background:var(--tile); border:2px solid var(--paper); box-shadow:0 0 0 1px var(--tile);
  }
  .tlItem .yr{font-family:'Space Grotesk',sans-serif; font-size:1.3rem; color:var(--tile-dark);}
  .tlItem h4{margin-top:2px; font-size:1.08rem;}
  .tlItem p{margin:6px 0 0; color:#3a4a48; max-width:60ch; font-size:.95rem;}

  .histoireConclusion{
    margin-top:36px; padding:20px 24px;
    background:#fff; border-left:4px solid var(--tile);
    border-radius:6px; max-width:70ch;
  }
  .histoireConclusion p{margin:0; color:#3a4a48; font-size:.96rem; line-height:1.6;}
  .histoireConclusion strong{color:var(--tile-dark);}

  /* ---------- team ---------- */
  .teamGrid{
    display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:32px;
    align-items:stretch;
  }
  .member{
    display:flex; flex-direction:column; align-items:center;
    height:100%;
  }
  .member .avatar{
    width:108px;height:108px;border-radius:50%;
    object-fit:cover; margin-bottom:16px;
    border:1px solid var(--line);
  }
  .member h4{font-size:1.15rem;}
  .member .role{font-size:.96rem; color:#516462; margin-top:4px;}
  .member .links{
    margin-top:auto; padding-top:16px;
    display:flex; gap:10px; justify-content:center;
    min-height:42px; width:100%;
  }
  .member .links a{
    width:42px; height:42px; border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    border:2px solid var(--tile); color:var(--tile);
    text-decoration:none; transition:background .15s ease, color .15s ease;
  }
  .member .links a svg{width:18px; height:18px;}
  .member .links a:hover{background:var(--tile); color:#fff;}

  /* ---------- démarches ---------- */
  .demarchesGroup{margin-bottom:16px; border:1px solid var(--line); border-radius:10px; background:#fff; padding:20px 22px;}
  .demarchesGroup:last-of-type{margin-bottom:0;}
  .groupHead{
    display:flex; align-items:center; gap:12px;
    cursor:pointer; list-style:none;
  }
  .groupHead::-webkit-details-marker{display:none;}
  .groupHead .dot{width:16px; height:16px; border-radius:5px; flex:0 0 auto;}
  .groupHead h3{font-size:1.15rem; margin:0; flex-grow:1;}
  .groupHead .chev{width:20px; height:20px; flex:0 0 auto; color:var(--muted,#516462); transition:transform .2s ease;}
  .demarchesGroup[open] .groupHead .chev{transform:rotate(180deg);}
  .groupSub{color:#516462; font-size:.92rem; margin:14px 0 20px 28px; max-width:60ch;}

  .demarchesGrid{
    display:grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); gap:16px;
  }
  .demarcheCard{
    background:#fff; border:1px solid var(--line); border-radius:10px;
    padding:20px 20px 18px; display:flex; flex-direction:column; gap:10px;
  }
  .demarcheCard .badge{
    width:48px; height:48px; border-radius:10px;
    display:flex; align-items:center; justify-content:center;
    color:#fff; font-weight:700; font-size:.9rem; letter-spacing:-.01em;
  }
  .demarcheCard h4{margin:0; font-size:1.02rem;}
  .demarcheCard p{margin:0; color:#516462; font-size:.86rem; flex-grow:1;}
  .demarcheCard .linksRow{display:flex; flex-wrap:wrap; gap:8px; margin-top:2px;}
  .demarcheCard .linksRow a{
    text-decoration:none; font-size:.82rem; font-weight:600;
    padding:7px 14px; border-radius:20px; border:1.5px solid currentColor;
    transition:background .15s ease, color .15s ease;
  }

  /* groupe organismes : vert pastel */
  .demarchesGroup.admin .dot{background:#6fd3c2;}
  .demarchesGroup.admin .badge{background:#6fd3c2;}
  .demarchesGroup.admin .linksRow a{color:#1f7f70;}
  .demarchesGroup.admin .linksRow a.primary{background:#6fd3c2; color:#0e3f37; border-color:#6fd3c2;}
  .demarchesGroup.admin .linksRow a:hover{background:#e0f7f3;}
  .demarchesGroup.admin .linksRow a.primary:hover{background:#4fbba8;}

  /* groupe signalement : orange pastel */
  .demarchesGroup.alert .dot{background:#ffbf86;}
  .demarchesGroup.alert .badge{background:#ffbf86; color:#7a4610;}
  .demarchesGroup.alert .linksRow a{color:#c9772f;}
  .demarchesGroup.alert .linksRow a.primary{background:#ffbf86; color:#7a4610; border-color:#ffbf86;}
  .demarchesGroup.alert .linksRow a:hover{background:#fdecd9;}
  .demarchesGroup.alert .linksRow a.primary:hover{background:#f5a962;}

  /* groupe France Connect : turquoise (couleur de marque) */
  .demarchesGroup.fc .dot{background:var(--tile);}
  .demarchesGroup.fc .badge{background:var(--tile); color:#fff;}
  .demarchesGroup.fc .linksRow a{color:var(--tile-dark);}
  .demarchesGroup.fc .linksRow a.primary{background:var(--tile); color:#fff; border-color:var(--tile);}
  .demarchesGroup.fc .linksRow a:hover{background:var(--tile-pale);}
  .demarchesGroup.fc .linksRow a.primary:hover{filter:brightness(.93);}

  /* groupe "Loin de Tulle" : brass pastel */
  .demarchesGroup.loin .dot{background:var(--brass);}

  .fsPrompt{
    font-family:'Caveat', cursive; font-weight:700;
    font-size:clamp(1.8rem, 3.6vw, 2.5rem);
    color:var(--ink); max-width:44ch; margin:0 0 20px;
    line-height:1.1;
  }
  .fsSearchRow{margin-top:0;}
  .fsSearch{
    width:100%; max-width:360px; padding:12px 20px;
    border-radius:999px; border:1.5px solid var(--line);
    font-family:'Work Sans',sans-serif; font-size:.95rem;
    outline:none; background:#fff; color:var(--ink);
  }
  .fsSearch::placeholder{font-family:'Work Sans',sans-serif; font-size:.95rem; color:#8a9490;}
  .fsSearch:focus{border-color:var(--tile);}
  .fsMeta{font-size:.85rem; color:#516462; margin:8px 0 0;}

  .fsGrid{
    display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:18px;
    margin-top:22px;
  }
  .fsCard{
    background:#fff; border:1px solid var(--line); border-radius:12px;
    padding:22px 20px 20px; display:flex; flex-direction:column;
  }
  .fsCard h4{font-size:1.05rem; text-align:center; margin:0 0 8px; font-family:'Space Grotesk',sans-serif;}
  .fsType{text-align:center; color:#516462; font-size:.82rem; margin:0 0 12px; line-height:1.5;}

  .fsStatus{
    display:flex; align-items:center; justify-content:center; gap:7px;
    margin:0 auto 12px; padding:6px 14px; width:fit-content;
    border-radius:999px; font-size:.78rem; font-weight:600;
    border:1.5px solid #9aa6a4; color:#516462;
  }
  .fsStatus.open{border-color:#2f8f42; color:#215e2c; background:rgba(63,143,78,.12);}
  .fsStatus.closed{border-color:#c97a1f; color:#8a530f; background:rgba(217,154,78,.14);}
  .fsStatus .led{width:7px; height:7px; border-radius:50%; background:currentColor;}

  .fsDist{display:block; text-align:center; color:var(--tile-dark); font-size:.78rem; font-weight:600; margin:-4px 0 12px;}

  .fsHours{margin:0 0 14px;}
  .fsHours-row{display:flex; justify-content:space-between; gap:10px; padding:6px 0; border-top:1px solid var(--line); font-size:.82rem;}
  .fsHours-row:first-child{border-top:none;}
  .fsHours-row .day{color:var(--ink);}
  .fsHours-row .time{color:#516462; text-align:right;}
  .fsHours-row.today .day, .fsHours-row.today .time{color:var(--tile-dark); font-weight:700;}

  .fsNote{
    font-size:.74rem; color:#8a530f; text-align:center; margin:0 0 12px;
    background:#fdecd9; border:1px solid #f0c98a; border-radius:8px; padding:6px 10px;
  }
  .fsAddr{
    text-align:center; color:#516462; font-size:.82rem;
    border-top:1px solid var(--line); padding-top:12px; margin-top:auto;
  }
  .fsPhone{
    display:flex; align-items:center; justify-content:center; gap:7px;
    margin:14px auto 12px; width:fit-content;
    border:2px solid var(--tile); color:var(--tile);
    background:transparent; border-radius:999px; padding:8px 16px;
    font-size:.82rem; font-weight:600; text-decoration:none;
    transition:background .15s ease, color .15s ease;
  }
  .fsPhone:hover{background:var(--tile); color:#fff;}
  .fsPhone svg{width:14px; height:14px; flex-shrink:0;}

  .fsIconRow{display:flex; justify-content:center; gap:10px; margin-top:2px;}
  .fsIconRow a{
    width:36px; height:36px; border-radius:50%;
    border:2px solid var(--tile); color:var(--tile);
    display:flex; align-items:center; justify-content:center;
    text-decoration:none;
    transition:background .15s ease, color .15s ease;
  }
  .fsIconRow a:hover{background:var(--tile); color:#fff;}
  .fsIconRow svg{width:15px; height:15px;}

  .fsOfficial{
    display:flex; align-items:center; justify-content:center; gap:6px;
    margin:14px auto 0; width:fit-content;
    background:var(--tile-pale); color:var(--tile-dark);
    border:none; border-radius:999px; padding:7px 16px;
    font-size:.78rem; font-weight:600; text-decoration:none;
  }
  .fsOfficial:hover{background:#c3ebe8;}
  .fsOfficial svg{width:12px; height:12px;}

  .fsShowAllRow{text-align:center; margin-top:26px;}
  .fsShowAll{
    display:inline-flex; align-items:center; gap:8px;
    padding:11px 24px; border-radius:999px;
    border:2px solid var(--tile); color:var(--tile);
    text-decoration:none; font-size:.92rem; font-weight:600;
    transition:background .15s ease, color .15s ease;
  }
  .fsShowAll:hover{background:var(--tile); color:#fff;}

  .fsSource{margin-top:24px; font-size:.8rem; color:#516462; line-height:1.6;}
  .fsSource a{color:var(--tile-dark);}

  .fcContent{max-width:70ch; margin-top:18px;}
  .fcSubhead{
    font-size:1.02rem; margin:26px 0 10px; color:var(--ink);
  }
  .fcSubhead:first-child{margin-top:0;}
  .fcContent > p{color:#3a4a48; font-size:.94rem; margin:0;}
  .fcList, .fcSteps{
    margin:0; padding-left:0; list-style:none;
    display:flex; flex-direction:column; gap:10px;
  }
  .fcList li, .fcSteps li{
    color:#3a4a48; font-size:.92rem; line-height:1.5;
    padding-left:28px; position:relative;
  }
  .fcList li::before{
    content:''; position:absolute; left:0; top:8px;
    width:8px; height:8px; border-radius:50%; background:var(--tile);
  }
  .fcSteps{counter-reset:fcstep;}
  .fcSteps li::before{
    counter-increment:fcstep; content:counter(fcstep);
    position:absolute; left:0; top:0;
    width:20px; height:20px; border-radius:50%;
    background:var(--tile); color:#fff; font-size:.72rem; font-weight:700;
    display:flex; align-items:center; justify-content:center;
  }
  .fcNote{
    margin-top:22px; padding:16px 18px;
    background:var(--tile-pale); border-left:4px solid var(--tile);
    border-radius:6px; font-size:.88rem; color:#215048;
  }
  .fcNote strong{color:var(--ink);}
  .fcHelp{
    margin-top:20px; padding:16px 18px;
    background:#fff; border:1.5px solid var(--tile);
    border-radius:8px; font-size:.98rem; color:var(--ink);
    line-height:1.5;
  }
  .fcHelp strong{font-weight:700;}

  .demarcheNote{
    margin-top:36px; padding:18px 22px;
    background:#fff; border:1px solid var(--line); border-left:4px solid #ffbf86;
    border-radius:6px; font-size:.9rem; color:#516462;
  }
  .demarcheNote strong{color:var(--ink);}

  /* ---------- chiffres ---------- */
  .statsCols{display:grid; grid-template-columns:.9fr 1.1fr; gap:56px; align-items:start;}
  .bars{display:flex; align-items:flex-end; gap:18px; height:200px; margin-top:26px;}
  .bar{flex:1; display:flex; flex-direction:column; align-items:center; height:100%;}
  .bar .val{font-size:.78rem; margin-bottom:6px; color:var(--ink); white-space:nowrap;}
  .bar .track{flex:1; width:100%; position:relative;}
  .bar .fill{position:absolute; left:0; right:0; bottom:0; background:var(--tile); min-height:2px;}
  .bar .yr{margin-top:8px; font-size:.82rem; color:#516462;}
  .barRow{margin-bottom:14px;}
  .barRow .label{display:flex; justify-content:space-between; font-size:.88rem; margin-bottom:5px;}
  .barTrack{height:8px; background:var(--tile-pale); position:relative;}
  .barTrack .fill{position:absolute; left:0; top:0; bottom:0; background:var(--brass);}

  .accrocheBlock{
    height:100%; min-height:180px;
    display:flex; flex-direction:column; align-items:flex-start; justify-content:center;
    border-right:3px solid var(--tile);
    padding-right:28px;
  }
  .accrocheBlock h3{
    font-size:clamp(1.5rem,2.6vw,2rem);
    color:var(--ink);
  }
  .accrocheBlock .thanksLine{
    font-family:'Caveat', cursive;
    font-weight:700;
    font-size:clamp(2.6rem, 4.5vw, 3.8rem);
    line-height:1.05;
    color:var(--tile-dark);
    display:inline-block;
    transform:rotate(-5deg);
  }
  /* ---------- nos réseaux ---------- */
  .networkGrid{
    display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:22px;
  }
  .networkCard{
    background:#fff; border:1px solid var(--line); border-radius:10px;
    padding:24px 24px 22px; display:flex; flex-direction:column; height:100%;
  }
  .networkCard h4{
    font-size:1.05rem; margin:0 0 10px;
    display:flex; align-items:center; gap:10px;
  }
  .networkCard h4 img{
    width:28px; height:28px; border-radius:7px; object-fit:contain;
    background:#fff; border:1px solid var(--line); padding:3px; flex-shrink:0;
  }
  .networkCard p{font-size:.92rem; color:#516462; line-height:1.6; margin:0 0 16px; flex-grow:1;}
  .networkBtn{
    display:inline-flex; align-items:center; justify-content:center; gap:6px;
    width:fit-content; align-self:flex-start;
    background:var(--tile-pale); color:var(--tile-dark);
    border:none; border-radius:999px; padding:8px 18px;
    font-size:.82rem; font-weight:600; text-decoration:none;
    transition:background .15s ease;
  }
  .networkBtn:hover{background:#c3ebe8;}
  .networkCard__footer{margin-top:auto; text-align:center;}
  .networkCard__footer .networkBtn{align-self:center;}
  .networkCard__addr{
    font-size:.82rem; color:#516462; margin:0 0 14px;
    border-top:1px solid var(--line); padding-top:14px;
  }

  /* ---------- partners ---------- */
  .partners{
    display:grid; grid-template-columns:repeat(4, 1fr);
    gap:36px 44px; align-items:center; justify-items:center;
  }
  .partners a{display:block; line-height:0;}
  .partners img{
    height:135px; width:auto; max-width:100%; object-fit:contain;
    filter:grayscale(1); opacity:.7;
    transition:filter .15s ease, opacity .15s ease;
  }
  .partners a:hover img{filter:grayscale(0); opacity:1;}

  /* ---------- contact / dons ---------- */
  .contactGrid{display:grid; grid-template-columns:1fr 1fr; gap:48px;}
  .contactCard{background:#fff; text-align:center; border:1px solid var(--line); border-radius:0; overflow:hidden;}
  .contactCard__map{display:block; width:100%;}
  .contactCard__map img{width:100%; height:220px; object-fit:cover; display:block;}
  .contactCard__body{padding:30px;}
  .contactCard--solo{max-width:520px; margin:0 auto;}
  .contactCard h3{font-size:1.4rem; margin-bottom:16px;}
  .contactCard .row{display:flex; gap:10px; padding:9px 0; border-top:1px solid var(--line); font-size:.94rem; justify-content:center; text-align:center;}
  .contactCard .row:first-of-type{border-top:none;}
  .contactCard a{text-decoration:none; color:var(--tile-dark);}
  .contactCard .socialRow a{color:var(--tile);}
  .contactCard .socialRow a:hover{color:#fff;}
  .contactCard .addrRow{color:var(--tile-dark); font-weight:500;}
  .contactCard .addrRow svg{width:19px; height:19px; flex-shrink:0; color:var(--tile);}
  .donBox{
    text-align:center; align-items:center;
    background:var(--tile-dark); color:#f5f2ea; padding:30px;
    display:flex; flex-direction:column; justify-content:center; gap:20px;
  }
  .donBox h3{color:#fff; font-size:1.4rem; margin-bottom:14px;}
  .donBox p{color:#cfe0dc; font-size:.92rem; margin:0;}
  .donBox p.donBox__caveat{
    font-family:'Caveat', cursive; font-weight:700;
    font-size:clamp(1.6rem, 3vw, 2.1rem);
    color:#fff; line-height:1.2;
    display:inline-block; transform:rotate(-4deg);
    margin-bottom:0;
  }
  .donBox .cta-row{display:flex; gap:12px; flex-wrap:wrap; justify-content:center;}
  .donBox .btn.primary{background:#ffa726; border-color:#ffa726; color:#1c2b2a; font-weight:600;}
  .donBox .btn.primary:hover{background:#ff9800; border-color:#ff9800;}
  .donBox .btn.ghost{border-color:#cfe0dc; color:#f5f2ea;}
  .donBox--solo{max-width:520px; margin:0 auto;}


  /* ---------- back to top ---------- */
  .backToTop{
    position:fixed; right:24px; bottom:24px; z-index:60;
    width:48px; height:48px; border-radius:50%;
    background:var(--tile); color:#fff; border:none;
    display:flex; align-items:center; justify-content:center;
    box-shadow:0 8px 20px rgba(10,18,17,.25);
    cursor:pointer;
    opacity:0; visibility:hidden; transform:translateY(10px);
    transition:opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .backToTop svg{width:22px; height:22px;}
  .backToTop.visible{opacity:1; visibility:visible; transform:translateY(0);}
  .backToTop:hover{filter:brightness(.93);}

  @media (max-width: 860px){
    .menuHint{display:none;}
    .donBox{flex-direction:column; text-align:center; align-items:center;}
    .donBox .cta-row{justify-content:center;}
    .hero{
      min-height:auto;
      background:
        linear-gradient(180deg, rgba(16,28,27,.30) 0%, rgba(16,28,27,.42) 45%, rgba(13,23,22,.88) 100%),
        url('assets/HERO_Telephone.png') center center/cover no-repeat;
      background-attachment:scroll;
    }
    .hero .wrap{grid-template-columns:1fr; padding-top:50px;}
    .partners{grid-template-columns:repeat(2, 1fr); justify-content:center; align-items:center;}
    .agendaFrame iframe{min-height:480px;}
    .hero .wrap > div:first-child{text-align:center;}
    .hero h1{margin-left:auto; margin-right:auto;}
    .hero .lead{margin-left:auto; margin-right:auto;}
    .hero .cta-row{justify-content:center;}
    .servicesGrid{grid-template-columns:repeat(2,1fr);}
    .statsCols{grid-template-columns:1fr;}
    .accrocheBlock{border-right:none; border-bottom:3px solid var(--tile); padding-right:0; padding-bottom:24px; margin-bottom:8px;}
    .contactGrid{grid-template-columns:1fr;}
    .teamGrid{text-align:center;}
    .member{display:flex; flex-direction:column; align-items:center;}
    .member .links{justify-content:center;}
  }
  @media (max-width: 540px){
    .servicesGrid{grid-template-columns:1fr;}
  }

  /* ---------- apparition des sections au scroll ---------- */
  .reveal{
    opacity:0;
    transition:opacity .7s ease-in, transform .7s ease-in;
    will-change:opacity, transform;
  }
  .reveal-left{transform:translateX(-60px);}
  .reveal-right{transform:translateX(60px);}
  .reveal.visible{opacity:1; transform:translateX(0);}

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