@font-face {
  font-family: "Alexandria";
  src: url("/assets/fonts/alexandria-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Alexandria";
  src: url("/assets/fonts/alexandria-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Baloo Tamma 2";
  src: url("/assets/fonts/baloo-tamma-2-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root{
  --bg:#f6f1ea;
  --bg-soft:#efe6da;
  --text:#1d2428;
  --muted:#5b6469;
  --line:#d7cabc;
  --white:#fff;
  --brand:#668893;
  --brand-dark:#50a2a0;
  --brand-jaune:#ccd503;
  --footer:#6f929c;
  --shadow:0 16px 50px rgba(20,20,20,.08);
  --radius:22px;
  --container:1100px;
}

/* Base */
*,
*::before,
*::after{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:'Alexandria', Arial, Helvetica, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
  max-width:100%;
  overflow-x:hidden;
}
.section-reseau,
.section-parole,
.article-mission{
  overflow-x:hidden;
}

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

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

h1,
h2,
h3{
  margin-top:0;
  line-height:1.15;
}

h1,
h2{
  font-family:'Baloo Tamma 2', sans-serif;
  font-weight:700;
}

h1{
   font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.12;
  margin-bottom:18px;
}

h2{
  font-size:clamp(1.9rem,3vw,2.2rem);
  margin-bottom:18px;
}

h3{
  font-family:'Alexandria', sans-serif;
  font-size:1.15rem;
  margin-bottom:10px;
}

.container{
  width:min(var(--container),calc(100% - 40px));
  margin:0 auto;
}
.baseline {
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 600;
  line-height: 1.15;
}

/* Accessibilité */
.skip-link{
  position:fixed;
  left:20px;
  top:20px;
  z-index:1000;

  padding:10px 14px;
  border-radius:999px;
  background:var(--white);
  color:var(--text);
  box-shadow:var(--shadow);

  transform:translateY(-150%);
  opacity:0;
  pointer-events:none;
  transition:.2s ease;
}

.skip-link:focus{
  transform:translateY(0);
  opacity:1;
  pointer-events:auto;
}

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(246,241,234,.9);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(0,0,0,.05);
}

.header-inner{
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.brand img{
  height:80px;
  width:auto;
}

.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.2;
}

.brand-text span{
  color:var(--muted);
  font-size:.9rem;
}

.nav{
  display:flex;
  align-items:center;
  gap:22px;
  flex-wrap:wrap;
}

.nav a{
  font-weight:600;
  font-size:.98rem;
}

/* Boutons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 22px;
  border-radius:999px;
  background:var(--brand);
  color:var(--white);
  font-weight:700;
  border:1px solid var(--brand);
  transition:.25s ease;
}

.btn:hover{
  background:var(--brand-dark);
  border-color:var(--brand-dark);
  transform:translateY(-1px);
}

.btn-outline{
  background:transparent;
  color:var(--brand);
}

.btn-outline:hover{
  color:#fff;
}

.btn-light{
  background:var(--white);
  color:var(--text);
  border-color:var(--line);
}
.btn-referent{
  min-height:24px;
  padding:0 10px;
  border: 1px solid #a3a3a3;
  radius:999px;
}
.btn-contact{
  min-height: 30px;
}

/* Hero */
.hero{
  padding:72px 0 56px;
  background:
    radial-gradient(circle at top left,rgba(155,107,67,.14),transparent 35%),
    linear-gradient(180deg,rgba(255,255,255,.5),rgba(255,255,255,0));
}

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:48px;
  align-items:start;
}

.lead{
  max-width:700px;
  font-size:1.12rem;
  color:var(--muted);
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin:28px 0;
}

.hero-badges{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.hero-badges span,
.values li{
  display:inline-flex;
  align-items:center;
  padding:10px 15px;
  border-radius:999px;
  background:var(--white);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  font-size:.95rem;
}

.hero-media picture {
  display: block;
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: transparent;
}

.hero-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
}
/* Sections */
.section{
  padding:50px 0;
}

.section-soft{
  background:var(--bg-soft);
}

.section-engagement{
  padding:30px 0;
  background:var(--bg);
}

.section-parole{
  padding:30px 0 30px;
  background:
    linear-gradient(to bottom, rgba(255,255,255,.6) 33%, rgba(255,255,255,1)),
    url("/assets/visuels/IA-PLATRE-480.webp") center / cover no-repeat;
}
.section-contact{
  padding:10px 0 10px;
}

.section-head{
  max-width:780px;
  margin-bottom:34px;
}

.section-label{
  margin:0 0 12px;
  text-transform:uppercase;
  letter-spacing:.1em;
  font-size:.82rem;
  font-weight:700;
  color:var(--brand);
}

.section-label.light{
  color:#d8b79b;
}

.align-start{
  align-items:flex-start;
}

/* Titres avec pictogramme */
.mission-block{
  padding:30px 0 0;
  background:var(--bg);
}

.mission-header{
  display:flex;
  align-items:flex-end;
  gap:12px;
  margin-bottom:10px;
}

.mission-icon{
  width:80px;
  height:80px;
  object-fit:contain;
  opacity:.9;
  position:relative;
  top:5px;
  margin-bottom:10px;
  flex:0 0 auto;
}

.mission-check{
  width:50px;
  height:auto;
  opacity:.9;
  position:relative;
  top:-8px;
  flex:0 0 auto;
}

.mission-label{
  display:inline-block;
  width:auto;
  background:#4b4f55;
  color:var(--white);
  font-family:'Baloo Tamma 2', sans-serif;
  font-weight:700;
  font-size:clamp(24px,2.5vw,42px);
  text-transform:uppercase;
  padding:5px 6px 0;
  line-height:1;
  margin-bottom:-4px;
}

.mission-title,
.coop-title{
  font-size:clamp(36px,4vw,40px);
  font-weight:800;
  color:var(--text);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.mission-title{
  margin:0 0 20px calc(80px + 12px);
}

/* Cards / timeline / engagements */
.timeline,
.features{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.timeline{
  gap:24px;
  padding-top:40px;
}

.card,
.feature,
.cta-box{
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.card{
  position:relative;
  z-index:1;
  padding:24px;
  border:none;
  background:transparent;
}

.icon-wrapper{
  position:absolute;
  top:0;
  left:50%;
  transform:translate(-50%,-50%);
  width:70px;
  height:70px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.icon-wrapper img{
  width:auto;
  height:40px;
  margin-top:30px;
}

.card-content{
  padding-top:30px;
}

.card-header{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
}

.step{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:32px;
  height:32px;
  padding:0 10px;
  background-color:var(--brand);
  color:#fff;
  border:0;
  border-radius:999px;
  font-weight:700;
  font-size:.88rem;
  flex-shrink:0;
}

.card h3{
  margin:0;
  font-size:1rem;
}

.card p{
  margin:0;
}

.feature{
  background:var(--white);
  padding:30px;
  border:10px solid var(--line);
}

/* Valeurs */
.values{
  list-style:none;
  padding:0;
  margin:24px 0 0;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

/* Bloc mission avec photos avant/après */
.article-mission{
  position:relative;
  overflow:hidden;
  padding:10px 0 0;
  background:#fff;
}

.article-mission::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:128px;
  background:#6f929c;
  z-index:0;
}

.article-mission__grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:60px;
  align-items:start;
}

.article-mission__left{
  padding-top:16px;
}

.article-mission__content{
  margin:0 34px 0 70px;
  position:relative;
}

.article-mission__content::before{
  content:"";
  position:absolute;
  left:-25px;
  top:7px;
  height:95%;
  width:5px;
  background:var(--brand-jaune);
  border-radius:3px;
}

.article-mission__illustration{
  display:flex;
  align-items:center;
  gap:20px;
  margin-top:-9px;
  padding-left:60px;
  position:relative;
  z-index:5;
  overflow:visible;
}

.article-mission__picto{
  width:130px;
  filter:drop-shadow(0 10px 25px rgba(0,0,0,.08));
}

.article-mission__arrow{
  width:110px;
  margin:80px -34px 0;
  z-index:2;
}

.article-mission__right{
  position:relative;
  min-height:640px;
  padding:0;
  z-index:1;
}

.article-mission__right::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:80%;
  background:
    linear-gradient(rgba(255,255,255,.55), rgba(255,255,255,.55)),
    url("/assets/visuels/IA-PLATRE-480.webp") center top / cover no-repeat;
  z-index:0;
}

.article-mission__photos{
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  gap:11px;
  margin-top:60px;
  padding:0 0 0 14px;
}

.article-mission__row{
  position:relative;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
  padding:8px;
  background:#dadada;
}

.article-mission__photo + .article-mission__photo{
  margin-left:10px;
}

.article-mission__photo img{
  width:100%;
  height:140px;
  object-fit:cover;
  object-position:center;
  display:block;
}

.tag{
  position:absolute;
  top:-12px;
  font-size:.8rem;
  font-weight:700;
  padding:4px 10px;
}

.tag.before{
  left:23px;
  background:#333;
  color:#fff;
}

.tag.after{
  left:53%;
  background:#c9dd00;
  color:#000;
}

/* Section réseau */
.section-reseau{
  position:relative;
  overflow:hidden;
  background:var(--white);
  color:var(--text);
  padding:30px 0;
}

.section-reseau::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-90px;
  height:140px;
  background:#6f929c;
  z-index:0;
}

.section-reseau .grid-reseau{
  position:relative;
  z-index:1;
  width:100%;
  max-width:1100px;
  margin-inline:auto;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:clamp(2rem,5vw,4.5rem);
}

.section-reseau .grid-reseau > *,
.section-reseau .reseau-column{
  min-width:0;
}

.section-reseau .reseau-column--text{
  flex:0 1 48%;
  max-width:48%;
}

.section-reseau .reseau-column--visual{
  flex:0 1 52%;
  max-width:52%;
}

/* Header gauche de la section réseau */
.section-reseau .mission-header{
  align-items:center;
}

.section-reseau .mission-icon{
  width:80px;
  height:auto;
  flex:0 0 80px;
}

.section-reseau .mission-label--offset{
  display:inline-block;
  width:auto;
  margin-left:calc(80px + 12px);
}

/* Important : le label ne doit PAS prendre 100% de la colonne */
.section-reseau .mission-label--center{
  display:inline-block;
  width:auto;
  max-width:100%;
  align-self:center;
  text-align:center;
}

/* Logo + carte */
.section-reseau .article-mission__illustration{
  width:100%;
  min-width:0;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:clamp(1rem,3vw,2rem);
  margin-top:2rem;
  margin-bottom:2rem;
}

.section-reseau .article-reseau__logo{
  flex:0 0 clamp(120px,15vw,170px);
  width:clamp(120px,15vw,170px);
  max-width:100%;
  height:auto;
  filter:drop-shadow(0 10px 25px rgba(0,0,0,.08));
}

.section-reseau .article-reseau__carte{
  flex:1 1 auto;
  width:auto;
  max-width:min(100%,200px);
  height:auto;
  object-fit:contain;
  filter:drop-shadow(0 10px 25px rgba(0,0,0,.08));
}

/* Texte section réseau */
.article-reseau__content{
  margin:0 34px 0 70px;
  position:relative;
}

.article-reseau__content::before{
  content:"";
  position:absolute;
  left:-45px;
  top:5px;
  height:97%;
  width:5px;
  background:var(--brand-jaune);
  border-radius:3px;
}

.section-reseau .article-reseau__content{
  max-width:560px;
}

.section-reseau .article-reseau__content p{
  margin-top:0;
}

.section-reseau .values{
  margin:1.25rem 0 0;
  gap:.6rem .9rem;
}

.section-reseau .values li{
  white-space:nowrap;
}

/* Correction titre gauche "Une couverture / Nationale" */
.section-reseau .reseau-column--text > .mission-header{
  position:relative;
  display:block;
  height:auto;
  min-height:0;
  margin:0;
  padding:0 0 0 calc(80px + 12px);
}

.section-reseau .reseau-column--text > .mission-header .mission-icon{
  position:absolute;
  left:0;
  top:-44px;
  width:80px;
  height:auto;
  margin:0;
}

.section-reseau .reseau-column--text > .mission-header .mission-label{
  display:inline-block;
  width:auto;
  margin:0;
}

.section-reseau .reseau-column--text > .mission-label--offset{
  display:block;
  width:fit-content;
  max-width:100%;
  margin:8px 0 0 calc(80px + 12px);
}

/* Visuel droit */
.section-reseau .coop-visual{
  width:100%;
  overflow:visible;
  background:var(--white);
  text-align:center;
}

.section-reseau .reseau-column--visual.coop-visual{
  display:flex;
  flex-direction:column;
  align-items:center;
  min-width:0;
}

.section-reseau .coop-visual__intro-space{
  height:48px;
}

.section-reseau .coop-title{
  margin:.4rem 0 18px;
  text-align:center;
}

.section-reseau .coop-visual__top,
.section-reseau .coop-visual__center{
  width:100%;
  max-width:none;
  margin-inline:0;
}

.section-reseau .coop-visual__top{
  background:var(--white);
}


.coop-visual__top picture,
.coop-visual__top img {
  display: block;
  width: 100%;
  max-width:100%;
  height:auto;
}

.coop-visual__top img {
  object-fit: cover;
  object-position: center;
}


.section-reseau .coop-visual__center{
  position:relative;
  min-height:300px;
}

.section-reseau .coop-visual__texture{
  position:absolute;
  inset:0;
  height:80%;
  z-index:0;
  pointer-events:none;
  background:
    linear-gradient(rgba(255,255,255,.55), rgba(255,255,255,.55)),
    url("/assets/visuels/IA-PLATRE-480.webp") center top / cover no-repeat;
}

.section-reseau .coop-visual__oval{
  position:relative;
  z-index:1;
  display:block;
  width:100%;
  max-width:100%;
  height:auto;
  margin-inline:auto;
  top:-40px;
  left:auto;
  transform:none;
  filter:drop-shadow(0 20px 40px rgba(0,0,0,.15));
}

/* Témoignages */
.quotes{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  align-items:center;
  justify-items:center;
  gap:3px;
  padding:0;
  width:100vw;
  margin-left:calc(50% - 50vw);
}

.quote-wrapper{
  position:relative;
  width:min(430px,90vw);
  aspect-ratio:430 / 322;
  margin:0 auto;
}

.quote-wrapper p{
  font-size:clamp(1rem,3.5vw,1.6rem);
  line-height:1.35;
}

.quote-wrapper img{
  position:absolute;
  width:80px;
  z-index:2;
}

.quote-wrapper:nth-child(1){
  grid-column:1;
  transform:translate(1px,-40px);
}

.quote-wrapper:nth-child(2){
  grid-column:2;
  transform:translate(9%,67px);
}

.quote-wrapper:nth-child(3){
  grid-column:3;
  transform:translate(-19%,-5%);
}

.quote-wrapper:nth-child(1) img{
  left:18px;
  top:94px;
}

.quote-wrapper:nth-child(2) img{
  left:-40px;
  top:68px;
}

.quote-wrapper:nth-child(3) img{
  left:20px;
  top:90px;
}

.quote-bubble{
  position:relative;
  color:#111;
  font-family:Arial, sans-serif;
  width:var(--bubble-width);
  height:var(--bubble-height);
  padding:var(--bubble-padding);
  background:var(--bubble-color);
  clip-path:path(var(--bubble-path));
}

.bubble-quote-1{
  --bubble-width:550px;
  --bubble-height:550px;
  --bubble-color:#d0e2bf;
  --bubble-padding:137px 101px 112px 108px;
  --bubble-path:"M65 167 C9 235 43 356 118 394 C212 446 299 444 377 412 C410 400 477 372 483 286 C489 196 468 120 430 76 C360 31 116 95 65 167 Z";
}

.bubble-quote-2{
  --bubble-width:420px;
  --bubble-height:390px;
  --bubble-color:#b9d6d7;
  --bubble-padding:110px 60px 94px 71px;
  --bubble-path:"M147 32c138 17 252 84 252 189 0 42-27 119-125 149-64 18-148 19-209-30-47-43-45-127-44-161C21 95 60 20 147 32Z";
}

.bubble-quote-3{
  --bubble-width:550px;
  --bubble-height:550px;
  --bubble-color:#fdebb8;
  --bubble-padding:137px 101px 112px 108px;
  --bubble-path:"M65 167 C9 235 43 356 118 394 C212 446 299 444 377 412 C410 400 477 372 483 286 C489 196 468 120 430 76 C360 31 116 95 65 167 Z";
}

.quote-bubble p{
  margin:0 0 25px;
  font-size:20px;
  line-height:1.45;
  font-weight:700;
  font-style:italic;
}

.quote-bubble strong{
  display:block;
  text-align:center;
  font-size:22px;
  line-height:1.25;
  font-weight:900;
  font-style:italic;
}

/* Contact */
.cta-box{
  background:var(--white);
  padding:34px;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:28px;
  align-items:start;
}

.cta-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  position: relative;
  overflow: visible;
  background: transparent;
  width: 100%;
  text-align: center;
}
.accompagnement{
}

.contact-card__liste{
  display: flex;
  flex-direction: column;
  align-items: start;
  min-width: 0;
  position: relative;
  overflow: visible;
  background: transparent;
  width: 100%;
  text-align: center;

  justify-content:space-between;
  gap:3px;
  flex-wrap:nowrap;
}

.contact-card__item{
  display: flex;
  align-items: center;
  justify-content:space-between;
  gap:20px;
  width: 100%;
  flex-wrap:nowrap;
/*  align-items: center;*/
}

.contact-card__item p {
  margin: 0;
  text-align: left; /* texte aligné à gauche dans le p */
  flex: 1;
}

.contact-card__item:nth-child(even) {
  flex-direction: row-reverse;
}
.contact-card__item:nth-child(even) p {
  text-align:right;
}
.contact-card__item img {
  flex: 0 0 auto;
}

/* trait entre le téléphone et la photo */
.contact-card__item p::after {
  content: "";
  display: block;
  height: 3px;
  background: #c9c9c9;
  width: 60%;
  margin: 15px 0 0 0px;
}
.contact-card__item:nth-child(even) p::after {
  margin: 15px 0 0 85px;
}


.contact-card__item-oval{
  max-width:min(100px,20vw);
  height:100%;
}

.contact-card p{
  margin-top:0;
}

/* Footer */
.footer{
  background:var(--footer);
  color:rgba(255,255,255,.72);
  padding:28px 0;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}


/* Responsive                                              ------------------------------- */
@media (max-width:1024px){
  .hero-grid,
  .cta-box{
    grid-template-columns:1fr;
  }

  .timeline,
  .features{
    grid-template-columns:1fr 1fr;
  }

  .article-mission__grid{
    grid-template-columns:1fr;
  }

  .article-mission__illustration{
    justify-content:center;
  }
}

@media (max-width:900px){
  .quotes{
    min-height:auto;
    display:flex;
    flex-direction:column;
    gap:45px;
  }

  .quote-wrapper{
    position:relative;
    inset:auto;
    margin:0 auto;
  }

  .section-reseau .grid-reseau{
    max-width:720px;
    flex-direction:column;
    align-items:stretch;
    gap:3rem;
    padding-inline:20px;
  }

  .section-reseau .reseau-column--text,
  .section-reseau .reseau-column--visual{
    flex:1 1 auto;
    width:100%;
    max-width:100%;
  }

  .section-reseau .coop-visual{
    align-self:center;
    width:100%;
  }

  .section-reseau .coop-visual__intro-space{
    display:none;
  }

  .section-reseau .article-reseau__content{
    max-width:100%;
  }

  .section-reseau img{
    max-width:100%;
    height:auto;
  }

  .section-reseau .coop-visual__top,
  .section-reseau .coop-visual__center{
    max-width:430px;
    margin-inline:auto;
  }
}

@media (max-width:760px){
  .nav{
    display:none;
  }

  .timeline,
  .features{
    grid-template-columns:1fr;
  }

  .section{
    padding:20px 0;
  }

  .hero{
    padding:50px 0 36px;
  }

  .mission-block{
    padding:40px 0;
  }

  .mission-header{
    gap:10px;
  }

  .mission-icon{
    width:70px;
    height:70px;
  }

  .mission-label{
    font-size:24px;
    padding:10px 14px 8px;
  }

  .mission-title,
  .coop-title{
    margin-left:0;
    font-size:34px;
    white-space:normal;
  }

  .article-mission__content{
    padding-left:22px;
    border-left:5px solid var(--brand-jaune);
    margin:0;
  }

  .article-mission__content::before{
    display:none;
  }

  .section-reseau .article-reseau__content{
    margin:0;
    padding-left:22px;
  }

  .section-reseau .article-reseau__content::before{
    left:0;
  }

  .quote-bubble{
    margin:-114px;
  }

  .quote-wrapper:nth-child(1){
    transform-origin:top center;
    transform:scale(.8) translate(20px,20px);
  }

  .quote-wrapper:nth-child(2){
    transform-origin:top center;
    transform:scale(.8) translate(40px,-20px);
  }

  .quote-wrapper:nth-child(3){
    transform-origin:top center;
    transform:scale(.8) translate(40px,-100px);
  }

  .quote-wrapper{
    width:92vw;
    max-width:430px;
  }

  .quote-wrapper p{
    font-size:clamp(.95rem,4vw,1.25rem);
  }
}

@media (max-width:600px){
  .brand img{
    height:46px;
  }

  .section-reseau .grid-reseau{
    padding-inline:16px;
    gap:2.5rem;
  }

  .section-reseau .mission-icon{
    width:64px;
    height:auto;
    flex-basis:64px;
  }

  .section-reseau .mission-label--offset{
    margin-left:calc(64px + 12px);
  }

  .section-reseau .article-mission__illustration{
    justify-content:center;
    gap:1rem;
    padding-left:0;
  }

  .section-reseau .article-reseau__logo{
    flex:0 0 min(34vw,135px);
    width:min(34vw,135px);
  }

  .section-reseau .article-reseau__carte{
    max-width:min(52vw,260px);
  }

  .section-reseau .values{
    gap:.5rem .7rem;
  }

  .section-reseau .values li{
    white-space:normal;
  }

  .section-reseau .coop-visual__top,
  .section-reseau .coop-visual__center{
    max-width:100%;
  }

  .section-reseau .coop-visual__oval{
    max-width:min(360px,92vw);
  }
  .section-reseau .reseau-column--text > .mission-header{
    padding-left:calc(64px + 12px);
  }

  .section-reseau .reseau-column--text > .mission-header .mission-icon{
    width:64px;
    top:-15px;
  }

  .section-reseau .reseau-column--text > .mission-label--offset{
    margin-left:calc(64px + 12px);
  }
}

@media (max-width:420px){
  .section-reseau .mission-header{
    gap:10px;
  }

  .section-reseau .mission-icon{
    width:56px;
    flex-basis:56px;
  }

  .section-reseau .mission-label--offset{
    margin-left:calc(56px + 10px);
  }

  .section-reseau .article-mission__illustration{
    flex-direction:column;
    align-items:center;
  }

  .section-reseau .article-reseau__logo{
    display: none;
  }

  .section-reseau .article-reseau__carte{
    width:min(320px,50vw);
    max-width:100%;
  }

  .section-reseau .reseau-column--text > .mission-header{
    padding-left:calc(56px + 10px);
  }

  .section-reseau .reseau-column--text > .mission-header .mission-icon{
    width:56px;
    top:-5px;
  }

  .section-reseau .reseau-column--text > .mission-label--offset{
    margin-left:calc(56px + 10px);
  }

}




/* =========================================================
   EFFET PLAQUETTE - SECTION RÉSEAU
   Bandeau bas + image ovale en chevauchement
   ========================================================= */

.section-reseau{
  --reseau-band-height: clamp(100px, 10vw, 120px);
  --reseau-oval-top: -20px;
  --reseau-oval-width: min(94%, 620px);

  position: relative;
  overflow: hidden;
  padding-bottom: 0;
}

/* Le bandeau bleu doit être en BAS, pas en haut */
.section-reseau::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:auto;
  bottom:0;
  height:var(--reseau-band-height);
  background:#6f929c;
  z-index:0;
}

/* Le contenu passe au-dessus du bandeau */
.section-reseau .grid-reseau{
  position:relative;
  z-index:1;
}

/* La colonne droite ne doit pas masquer tout le bandeau */
.section-reseau .coop-visual{
  position:relative;
  overflow:visible;
  background:transparent;
}

/* Image du haut */
.section-reseau .coop-visual__top{
  position:relative;
  z-index:2;
  background:#fff;
}

/* Zone qui contient le fond texturé + l'ovale */
.section-reseau .coop-visual__center{
  position:relative;
  overflow:visible;
  min-height: 474px; /*clamp(380px, 36vw, 560px);*/
  background:transparent;
}

/* Le fond texturé s'arrête AVANT le bas,
   pour laisser apparaître le bandeau bleu derrière */
.section-reseau .coop-visual__texture{
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:calc(100% - var(--reseau-band-height) );
  z-index:1;
  pointer-events:none;
  background:
    linear-gradient(rgba(255,255,255,.55), rgba(255,255,255,.55)),
    url("/assets/visuels/IA-PLATRE-480.webp") center top / cover no-repeat;
}

/* L'ovale est sorti du flux :
   il peut donc chevaucher le fond texturé ET le bandeau bleu */
.section-reseau .coop-visual__oval{
  position:absolute;
  left:50%;
  top:var(--reseau-oval-top);
  transform:translateX(-50%);
  z-index:3;

  width:var(--reseau-oval-width);
  max-width:none;
  height:auto;

  margin:0;
  filter:drop-shadow(0 22px 42px rgba(0,0,0,.16));
}
@media (max-width:900px){
  .section-reseau{
    --reseau-band-height: 130px;
    --reseau-oval-top: -28px;
    --reseau-oval-width: min(92vw, 430px);
  }

  .section-reseau .coop-visual__center{
    max-width:430px;
    min-height:clamp(300px, 72vw, 430px);
    margin-inline:auto;
  }

  .section-reseau .coop-visual__top{
    max-width:430px;
    margin-inline:auto;
  }
}

@media (max-width:600px){
  .section-reseau{
    --reseau-band-height: 110px;
    --reseau-oval-top: -18px;
    --reseau-oval-width: min(94vw, 360px);
  }

  .section-reseau .coop-visual__center{
    min-height:clamp(260px, 78vw, 360px);
  }

  .section-reseau .coop-visual__texture{
    height:calc(100% - var(--reseau-band-height) + 25px);
  }
}

/* =========================================================
   FORMULAIRE CONTACT - ACCESSIBILITÉ / LIGHTHOUSE / MOBILE
   ========================================================= */

/* Grille du formulaire */
.contact-form-grid {
  grid-template-columns: 480px 1fr;
  align-items: start;
}

/* Fieldset propre */
.contact-fieldset {
  border-radius: 13px;
  width: calc(100% - 26px);
  border: 1px solid var(--line);
  padding: 18px;
  margin: 0;
}

/* Labels masqués visuellement mais lisibles par lecteurs d’écran */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* Champs du formulaire */
.cf__field {
  display: block;
  width: 100%;
  min-height: 42px;
  padding: 0.65em 0.8em;
  border: 1px solid var(--brand);
  border-radius: 6px;
  font-family: 'Alexandria', Arial, Helvetica, sans-serif;
  font-size: 15px;
  color: var(--text);
  background: #fff;
  margin: 5px;
}

/* Selects contenus dans un wrapper .cf__field */
div.cf__field {
  padding: 0;
  background: transparent;
  border: 0;
}

div.cf__field select {
  width: 100%;
  min-height: 42px;
  padding: 0.65em 0.8em;
  border: 1px solid var(--brand);
  border-radius: 6px;
  font-family: 'Alexandria', Arial, Helvetica, sans-serif;
  font-size: 15px;
  color: var(--text);
  background: #fff;
}

/* Placeholder plus contrasté */
.cf__field::placeholder {
  color: #5f6368;
  opacity: 1;
}

/* Focus visible */
.cf__field:focus,
div.cf__field select:focus,
.rgpd input:focus,
.btn-contact:focus {
  outline: 3px solid rgba(102, 136, 147, 0.35);
  outline-offset: 2px;
}

/* Organisation des lignes */
.cf .row {
  display: flex;
  gap: 10px;
  align-items: stretch;
  margin-bottom: 8px;
}

.cf .row > input,
.cf .row > .cf__field,
.cf .row > .rgpd {
  flex: 1 1 0;
  min-width: 0;
}

/* Liste / select */
.cf__liste {
  display: block;
  width: 100%;
  padding-right: 0;
}

/* Textarea */
.cf__textarea {
  width: 100%;
  min-height: 100px;
  resize: vertical;
}

/* RGPD */
.rgpd {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 5px;
  color: #4b5563;
  font-size: 0.88rem;
  line-height: 1.4;
}

.rgpd input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--brand);
}

.rgpd label {
  color: #4b5563;
}

.rgpd a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rgpd a:hover {
  color: var(--brand-dark);
}

/* Messages formulaire */
.msg {
  margin: 10px 5px;
  font-size: 0.95rem;
}

/* Bouton contact */
.btn-contact {
  min-height: 42px;
  margin: 10px 5px 0;
  cursor: pointer;
}

/* Notice RGPD sous le formulaire */
.form-notice {
  color: #4b5563;
  font-style: italic;
  font-size: 0.85em;
  line-height: 1.5;
  margin: 10px 0 0;
}

/* Turnstile */
.cf-turnstile-slot {
  margin: 10px 5px;
  min-height: 0;
}

/* Stepper */
.stepper {
  margin-top: 12px;
}

.step-title-active {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 5px 10px;
  font-weight: 700;
  color: var(--text);
}

.step-incomplete {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 700;
}

.step-incomplete::before {
  content: attr(data-step-nr);
}

/* Responsive formulaire */
@media (max-width: 1024px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .contact-fieldset {
    width: 100%;
    padding: 14px;
  }

  .cf .row {
    flex-direction: column;
    gap: 0;
  }

  .cf__field,
  div.cf__field,
  .rgpd,
  .btn-contact,
  .msg,
  .cf-turnstile-slot {
    margin-left: 0;
    margin-right: 0;
  }

  .form-notice {
    margin-top: 14px;
  }
}