/* =======================================================
   MOUVEMENT AVENIR CITOYEN — DESIGN SYSTEM
   Palette : Orange & Vert (France) + Anthracite + Or (R&D)
======================================================= */

:root{
  /* Couleurs de marque */
  --orange:        #F2761E;
  --orange-dark:   #C85A0F;
  --orange-light:  #FBE3CE;
  --green:         #0B8A4F;
  --green-dark:    #06603A;
  --green-light:   #DDF0E4;
  --gold:          #C9A227;

  /* Neutres */
  --ink:           #15181B;
  --ink-soft:      #3A4045;
  --anthracite:    #1B1F23;
  --anthracite-2:  #23282D;
  --cream:         #FBF8F3;
  --cream-2:       #F3EEE5;
  --white:         #FFFFFF;
  --line:          #E4DED2;

  /* Typo */
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Manrope", "Inter", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;

  /* Rayon / ombre */
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 12px 30px rgba(21,24,27,0.10);
  --shadow-lg: 0 25px 60px rgba(21,24,27,0.18);

  /* Motif signature : silhouette abstraite (carte + réseau de points) */
  --ci-map-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='500' height='500' viewBox='0 0 500 500'%3E%3Cpath d='M120 60 L260 40 L320 90 L300 150 L360 170 L400 240 L370 320 L390 380 L320 430 L240 440 L180 400 L140 420 L90 370 L110 300 L70 250 L100 190 L80 130 Z' fill='none' stroke='white' stroke-width='2'/%3E%3Ccircle cx='200' cy='200' r='4' fill='%23F2761E'/%3E%3Ccircle cx='280' cy='260' r='4' fill='%230B8A4F'/%3E%3Ccircle cx='230' cy='330' r='4' fill='%23C9A227'/%3E%3Cline x1='200' y1='200' x2='280' y2='260' stroke='white' stroke-width='1' stroke-dasharray='4 4'/%3E%3Cline x1='280' y1='260' x2='230' y2='330' stroke='white' stroke-width='1' stroke-dasharray='4 4'/%3E%3C/svg%3E");
  --ci-map-svg-white: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='500' height='500' viewBox='0 0 500 500'%3E%3Cpath d='M120 60 L260 40 L320 90 L300 150 L360 170 L400 240 L370 320 L390 380 L320 430 L240 440 L180 400 L140 420 L90 370 L110 300 L70 250 L100 190 L80 130 Z' fill='none' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ text-decoration:none; color:inherit; }
ul{ list-style:none; }
button{ font-family:inherit; cursor:pointer; }
:focus-visible{ outline:3px solid var(--gold); outline-offset:2px; }
.container{ max-width:1180px; margin:0 auto; padding:0 24px; }

h1,h2,h3,h4{ font-family: var(--font-display); font-weight:600; line-height:1.15; color:var(--ink); }
h1{ font-size:clamp(2.4rem,5vw,4.2rem); font-weight:500; }
h2{ font-size:clamp(1.7rem,3vw,2.5rem); }
h3{ font-size:1.25rem; }
p{ color: var(--ink-soft); }

.section-tag{
  display:inline-flex; align-items:center; gap:8px;
  font-family: var(--font-mono);
  font-size:0.72rem; letter-spacing:0.14em; text-transform:uppercase;
  color: var(--orange-dark);
  background: var(--orange-light);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 18px;
}
.section-tag.green{ color:var(--green-dark); background:var(--green-light); }
.section-tag.dark{ color:var(--gold); background:rgba(201,162,39,0.12); }

.section-header{ max-width:760px; margin:0 auto 56px; text-align:center; }
.section-header p{ margin-top:16px; font-size:1.05rem; }

/* =================== BOUTONS =================== */
.btn-primary, .btn-secondary, .btn-join, .btn-outline{
  display:inline-flex; align-items:center; gap:10px;
  font-weight:700; font-size:0.95rem;
  padding:14px 28px; border-radius: 999px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  border: 2px solid transparent;
  white-space:nowrap;
}
.btn-primary{ background: var(--orange); color:var(--white); box-shadow: 0 10px 24px rgba(242,118,30,0.35); }
.btn-primary:hover{ transform:translateY(-2px); background:var(--orange-dark); }
.btn-secondary{ background:transparent; color:var(--white); border-color: rgba(255,255,255,0.5); }
.btn-secondary:hover{ background: rgba(255,255,255,0.12); border-color:#fff; }
.btn-outline{ background:transparent; color:var(--ink); border-color: var(--line); }
.btn-outline:hover{ border-color: var(--orange); color: var(--orange-dark); }
.btn-join{ background: var(--green); color:#fff; padding:11px 22px; box-shadow:0 8px 18px rgba(11,138,79,0.3); }
.btn-join:hover{ background:var(--green-dark); transform:translateY(-1px); }

/* =================== TOPBAR =================== */
.topbar{
  background: var(--anthracite); color: rgba(255,255,255,0.75);
  font-size:0.82rem; padding:8px 24px;
  display:flex; justify-content:space-between; align-items:center;
}
.topbar-left i{ color: var(--orange); margin-right:6px; }
.topbar-right{ display:flex; gap:16px; }
.topbar-right a{ color: rgba(255,255,255,0.75); transition:color .2s; }
.topbar-right a:hover{ color: var(--gold); }

/* =================== NAVBAR =================== */
.navbar{
  position: sticky; top:0; z-index:100;
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 24px;
  background: rgba(251,248,243,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.logo img{ height:54px; }
.logo-text{ font-family:var(--font-display); font-weight:700; font-size:1.15rem; }
.logo-text span{ color:var(--orange); }
.nav-links{ display:flex; gap:30px; }
.nav-links a{ font-weight:600; font-size:0.94rem; color: var(--ink-soft); position:relative; padding:4px 0; }
.nav-links a::after{
  content:""; position:absolute; left:0; bottom:-4px; width:0; height:2px;
  background: var(--orange); transition: width .25s ease;
}
.nav-links a:hover, .nav-links a.active{ color:var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after{ width:100%; }
.burger{ display:none; font-size:1.4rem; }

@media (max-width:960px){
  .nav-links{
    position:absolute; top:100%; left:0; right:0;
    background: var(--cream); flex-direction:column; gap:0;
    max-height:0; overflow:hidden; transition:max-height .3s ease;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open{ max-height:500px; }
  .nav-links a{ padding:16px 24px; border-top:1px solid var(--line); }
  .burger{ display:block; }
  .btn-join{ display:none; }
}

/* =================== HERO =================== */
.hero{
  position:relative; overflow:hidden;
  background: linear-gradient(160deg, var(--anthracite) 0%, #262b30 55%, var(--green-dark) 130%);
  color:#fff;
  padding: 100px 24px 140px;
  display:flex; flex-wrap:wrap; gap:60px;
  align-items:center; justify-content:space-between;
}
.hero::before{
  content:""; position:absolute; inset:0;
  background-image: var(--ci-map-svg);
  background-repeat:no-repeat; background-position: 92% 40%;
  background-size: 480px; opacity:0.10; pointer-events:none;
}
.hero::after{
  content:""; position:absolute; left:0; right:0; bottom:0; height:8px;
  background: linear-gradient(90deg, var(--orange) 0 33%, #fff 33% 66%, var(--green) 66% 100%);
}
.hero-content{ position:relative; z-index:2; max-width:600px; padding-left:24px; }
.hero-content .eyebrow{
  font-family:var(--font-mono); text-transform:uppercase; letter-spacing:.16em;
  font-size:0.75rem; color: var(--gold); margin-bottom:18px; display:block;
}
.hero-content h1{ color:#fff; }
.hero-content h1 em{ font-style:italic; color: var(--orange); }
.hero-content p{ color: rgba(255,255,255,0.78); font-size:1.15rem; margin-top:20px; max-width:480px; }
.hero-buttons{ display:flex; gap:16px; margin-top:36px; flex-wrap:wrap; }

.hero-card{
  position:relative; z-index:2;
  background: rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  border-radius: var(--radius);
  padding:32px; width:300px;
  margin-right:24px;
}
.hero-card h3{ color:#fff; font-size:1rem; text-transform:uppercase; letter-spacing:.06em; margin-bottom:18px; font-family:var(--font-mono); font-weight:500;}
.hero-card ul li{ display:flex; align-items:center; gap:12px; padding:10px 0; border-top:1px solid rgba(255,255,255,0.12); color:rgba(255,255,255,0.85); font-size:0.95rem;}
.hero-card ul li:first-child{ border-top:none; }
.hero-card ul li i{ color: var(--orange); width:18px; }

/* =================== STATS STRIP =================== */
.stats-strip{
  background: var(--anthracite-2);
  color:#fff;
  display:grid; grid-template-columns:repeat(4,1fr);
  margin-top:-70px; position:relative; z-index:5;
  max-width:1100px; margin-left:auto; margin-right:auto;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  overflow:hidden;
}
.stat{ padding:30px 20px; text-align:center; border-left:1px solid rgba(255,255,255,0.08); }
.stat:first-child{ border-left:none; }
.stat .num{ font-family:var(--font-display); font-size:2.2rem; color: var(--orange); }
.stat .label{ font-size:0.8rem; color:rgba(255,255,255,0.65); margin-top:4px; }
@media (max-width:760px){ .stats-strip{ grid-template-columns:repeat(2,1fr);} }

/* =================== OVERVIEW / GRID CARDS =================== */
.overview, .vision, .values, .poles-section, .objectifs, .programmes-section, .team-section, .news-home{
  padding: 100px 24px;
}
.overview{ background: var(--cream); }
.overview-grid, .vision-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:24px; max-width:1180px; margin:0 auto;
}
.vision-grid{ grid-template-columns:repeat(3,1fr); }
.overview-card, .vision-card{
  background:#fff; border:1px solid var(--line); border-radius: var(--radius);
  padding:32px 26px; transition: transform .25s ease, box-shadow .25s ease;
}
.overview-card:hover, .vision-card:hover{ transform:translateY(-6px); box-shadow: var(--shadow); }
.card-icon, .vision-card > i{
  width:52px; height:52px; border-radius:12px;
  background: var(--orange-light); color: var(--orange-dark);
  display:flex; align-items:center; justify-content:center; font-size:1.3rem;
  margin-bottom:18px;
}
.vision-card{ text-align:left; }
.vision-card > i{ display:inline-flex; }
.overview-card h3, .vision-card h3{ margin-bottom:10px; }
@media (max-width:960px){ .overview-grid{ grid-template-columns:repeat(2,1fr);} .vision-grid{grid-template-columns:1fr 1fr;} }
@media (max-width:600px){ .overview-grid, .vision-grid{ grid-template-columns:1fr;} }

/* =================== ABOUT / SPLIT =================== */
.about{
  display:grid; grid-template-columns: 1fr 1fr; gap:70px;
  padding:100px 24px; max-width:1180px; margin:0 auto; align-items:center;
}
.about-image img{ border-radius: var(--radius); box-shadow: var(--shadow); }
.about-content p{ margin-bottom:16px; }
.about-content .btn-primary{ margin-top:10px; }
@media (max-width:900px){ .about{ grid-template-columns:1fr; gap:36px;} }

/* =================== VISION (dark) =================== */
.vision{ background: var(--anthracite); }
.vision .section-header h2, .vision .section-header p{ color:#fff; }
.vision .section-header p{ color: rgba(255,255,255,0.65); }
.vision-card{ background: var(--anthracite-2); border-color: rgba(255,255,255,0.08); }
.vision-card h3{ color:#fff; }
.vision-card p{ color: rgba(255,255,255,0.6); }
.vision-card > i{ background: rgba(242,118,30,0.15); color: var(--orange); }

/* =================== VALEURS =================== */
.values{ background: var(--cream-2); }
.values-grid{
  display:grid; grid-template-columns:repeat(6,1fr); gap:18px; max-width:1180px; margin:0 auto;
}
.value-card{
  background:#fff; border-radius: var(--radius-sm); border:1px solid var(--line);
  padding:26px 14px; text-align:center; transition: transform .2s ease;
}
.value-card:hover{ transform: translateY(-4px); border-color: var(--orange); }
.value-card i{ font-size:1.5rem; color: var(--green); margin-bottom:12px; display:block; }
@media (max-width:960px){ .values-grid{ grid-template-columns:repeat(3,1fr);} }
@media (max-width:600px){ .values-grid{ grid-template-columns:repeat(2,1fr);} }

/* =================== POLES =================== */
.poles-section{ background: var(--cream); }
.poles-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:26px; max-width:1180px; margin:0 auto;
}
.pole-card{
  background:#fff; border:1px solid var(--line); border-radius: var(--radius);
  padding:30px; position:relative; overflow:hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.pole-card:hover{ transform:translateY(-6px); box-shadow: var(--shadow); }
.pole-card .pole-num{
  font-family:var(--font-mono); font-size:0.75rem; color: var(--line); position:absolute; top:20px; right:22px;
}
.pole-card .card-icon{ margin-bottom:22px; }
.pole-card.rd{ background: var(--anthracite); border-color: var(--anthracite); }
.pole-card.rd h3, .pole-card.rd p{ color:#fff; }
.pole-card.rd p{ color: rgba(255,255,255,0.65); }
.pole-card.rd .card-icon{ background: rgba(201,162,39,0.16); color: var(--gold); }
.pole-card.rd .pole-num{ color: rgba(255,255,255,0.25); }
.pole-card .pole-tags{ display:flex; flex-wrap:wrap; gap:8px; margin-top:16px; }
.pole-card .pole-tags span{
  font-family:var(--font-mono); font-size:0.68rem; letter-spacing:.03em;
  background: var(--cream-2); color: var(--ink-soft); padding:4px 10px; border-radius:999px;
}
.pole-card.rd .pole-tags span{ background: rgba(255,255,255,0.08); color:rgba(255,255,255,0.75); }
@media (max-width:960px){ .poles-grid{ grid-template-columns:repeat(2,1fr);} }
@media (max-width:600px){ .poles-grid{ grid-template-columns:1fr;} }

.pole-card .pole-objectifs{ margin-top:18px; padding-top:16px; border-top:1px solid var(--line); }
.pole-card.rd .pole-objectifs{ border-top-color: rgba(255,255,255,0.12); }
.pole-card .pole-objectifs li{ display:flex; gap:8px; font-size:0.88rem; color:var(--ink-soft); padding:4px 0; }
.pole-card.rd .pole-objectifs li{ color: rgba(255,255,255,0.65); }
.pole-card .pole-objectifs li i{ color: var(--green); margin-top:3px; font-size:0.8rem; }
.pole-card.rd .pole-objectifs li i{ color: var(--gold); }

/* =================== OBJECTIFS (timeline horizontale) =================== */
.objectifs{ background: var(--green-dark); color:#fff; }
.objectifs .section-header h2, .objectifs .section-header p{ color:#fff; }
.objectifs .section-header p{ color: rgba(255,255,255,0.75); }
.objectifs-list{ max-width:900px; margin:0 auto; display:flex; flex-direction:column; }
.objectif-row{
  display:grid; grid-template-columns:90px 1fr; gap:24px;
  padding:26px 0; border-top:1px solid rgba(255,255,255,0.18);
}
.objectif-row:last-child{ border-bottom:1px solid rgba(255,255,255,0.18); }
.objectif-row .axe{ font-family:var(--font-mono); font-size:0.78rem; color: var(--gold); }
.objectif-row h3{ color:#fff; margin-bottom:6px; }
.objectif-row p{ color: rgba(255,255,255,0.72); }

/* =================== ACTUALITES (accueil, carrousel) =================== */
.news-home{ background: var(--cream-2); }
.news-track-wrap{ overflow:hidden; max-width:1180px; margin:0 auto; position:relative; }
.news-track{ display:flex; gap:24px; transition: transform .5s ease; }
.news-card{
  flex:0 0 340px; background:#fff; border-radius: var(--radius); overflow:hidden;
  border:1px solid var(--line); box-shadow: var(--shadow);
}
.news-card img{ height:190px; width:100%; object-fit:cover; }
.news-card .news-body{ padding:22px; }
.news-card .news-date{ font-family:var(--font-mono); font-size:0.72rem; color: var(--orange-dark); text-transform:uppercase; letter-spacing:.06em;}
.news-card h3{ font-size:1.05rem; margin:10px 0 8px; }
.news-card p{ font-size:0.92rem; }
.news-controls{ display:flex; justify-content:center; gap:14px; margin-top:30px; }
.news-controls button{
  width:42px; height:42px; border-radius:50%; border:1px solid var(--line); background:#fff;
  display:flex; align-items:center; justify-content:center; transition: background .2s;
}
.news-controls button:hover{ background: var(--orange); color:#fff; border-color:var(--orange); }
.news-section-top{ display:flex; justify-content:space-between; align-items:flex-end; max-width:1180px; margin:0 auto 40px; flex-wrap:wrap; gap:20px; }

/* =================== CTA BAND =================== */
.cta-band{
  background: var(--orange); color:#fff; text-align:center;
  padding: 80px 24px; position:relative; overflow:hidden;
}
.cta-band::before{
  content:""; position:absolute; inset:0;
  background-image: var(--ci-map-svg-white); background-repeat:no-repeat; background-position: -60px -40px; background-size:420px;
  opacity:0.12;
}
.cta-band h2{ color:#fff; position:relative; }
.cta-band p{ color: rgba(255,255,255,0.85); max-width:560px; margin:16px auto 32px; position:relative; }
.cta-band .btn-primary{ background:#fff; color:var(--orange-dark); box-shadow:none; position:relative;}
.cta-band .btn-primary:hover{ background: var(--anthracite); color:#fff; }

/* =================== FOOTER =================== */
footer{ background: var(--anthracite); color: rgba(255,255,255,0.7); padding: 70px 24px 24px; }
.footer-grid{
  max-width:1180px; margin:0 auto; display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px;
  padding-bottom:50px; border-bottom:1px solid rgba(255,255,255,0.12);
}
.footer-col h4{ color:#fff; font-family:var(--font-body); font-size:0.85rem; text-transform:uppercase; letter-spacing:.08em; margin-bottom:20px; }
.footer-col p{ color: rgba(255,255,255,0.6); font-size:0.92rem; }
.footer-col li{ margin-bottom:10px; }
.footer-col a{ color: rgba(255,255,255,0.65); font-size:0.92rem; transition:color .2s; }
.footer-col a:hover{ color: var(--orange); }
.footer-logo{ display:flex; align-items:center; gap:10px; margin-bottom:16px; }
.footer-logo img{ height:88px; }
.footer-social{ display:flex; gap:12px; margin-top:18px; }
.footer-social a{ width:36px; height:36px; border-radius:50%; background: rgba(255,255,255,0.08); display:flex; align-items:center; justify-content:center; }
.footer-social a:hover{ background: var(--orange); }
.footer-bottom{ max-width:1180px; margin:0 auto; padding-top:24px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; font-size:0.82rem; color:rgba(255,255,255,0.45); }
@media (max-width:900px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .footer-grid{ grid-template-columns:1fr; } }

/* =================== PAGE HEADER (pages internes) =================== */
.page-hero{
  background: var(--anthracite); color:#fff; padding:70px 24px 60px; position:relative; overflow:hidden;
}
.page-hero::before{
  content:""; position:absolute; inset:0; background-image: var(--ci-map-svg);
  background-repeat:no-repeat; background-position: 100% 0%; background-size:360px; opacity:0.10;
}
.page-hero .breadcrumb{ font-family:var(--font-mono); font-size:0.78rem; color: rgba(255,255,255,0.5); margin-bottom:14px; }
.page-hero .breadcrumb a{ color: rgba(255,255,255,0.75); }
.page-hero h1{ color:#fff; font-size:clamp(2rem,4vw,3rem); position:relative; }
.page-hero p{ color: rgba(255,255,255,0.7); max-width:600px; margin-top:16px; position:relative; }

/* =================== TEAM / BUREAU =================== */
.team-section{ background:var(--cream); }
.team-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; max-width:1180px; margin:0 auto; }
.team-card{ background:#fff; border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; text-align:center; transition:transform .25s ease, box-shadow .25s ease; }
.team-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow); }
.team-card img{ width:100%; height:400px; object-fit:cover; }
.team-card .team-body{ padding:22px; }
.team-card h3{ font-size:1.05rem; }
.team-card .role{ font-family:var(--font-mono); font-size:0.75rem; color:var(--orange-dark); text-transform:uppercase; letter-spacing:.05em; margin:6px 0 10px; }
.team-card p{ font-size:0.9rem; }
@media (max-width:960px){ .team-grid{ grid-template-columns:repeat(2,1fr);} }
@media (max-width:600px){ .team-grid{ grid-template-columns:1fr;} }

/* =================== PROGRAMMES =================== */
.programmes-section{ background: var(--cream); }
.programme-row{
  display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center;
  max-width:1180px; margin:0 auto 110px;
}
.programme-row:last-child{ margin-bottom:0; }
.programme-row.reverse{ direction:rtl; }
.programme-row.reverse > *{ direction:ltr; }
.programme-row img{ border-radius: var(--radius); box-shadow: var(--shadow); }
.programme-tag{ font-family:var(--font-mono); font-size:0.75rem; color:var(--green-dark); text-transform:uppercase; letter-spacing:.08em; margin-bottom:14px; display:block;}
.programme-row ul{ margin-top:18px; }
.programme-row ul li{ display:flex; gap:10px; padding:6px 0; color:var(--ink-soft); font-size:0.95rem;}
.programme-row ul li i{ color:var(--green); margin-top:4px; }
@media (max-width:900px){ .programme-row, .programme-row.reverse{ grid-template-columns:1fr; direction:ltr; } }

/* =================== ACTU (page complète) & GRID GENERIQUE =================== */
.news-grid-page{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; max-width:1180px; margin:0 auto; padding: 90px 24px; }
@media (max-width:960px){ .news-grid-page{ grid-template-columns:repeat(2,1fr);} }
@media (max-width:600px){ .news-grid-page{ grid-template-columns:1fr;} }

/* =================== MEDIATHEQUE =================== */
.media-tabs{ display:flex; gap:12px; justify-content:center; margin-bottom:44px; flex-wrap:wrap; }
.media-tabs button{
  padding:10px 22px; border-radius:999px; border:1px solid var(--line); background:#fff; font-weight:600; font-size:0.88rem;
}
.media-tabs button.active{ background: var(--orange); color:#fff; border-color:var(--orange); }
.gallery-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; max-width:1180px; margin:0 auto; padding: 0 24px 90px; }
.gallery-grid img{ border-radius: var(--radius-sm); aspect-ratio: 1/1; object-fit:cover; }
@media (max-width:900px){ .gallery-grid{ grid-template-columns:repeat(2,1fr);} }

/* =================== FORMULAIRES (contact / adhesion) =================== */
.form-section{ padding: 90px 24px; max-width:820px; margin:0 auto; }
.form-grid{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.form-grid .full{ grid-column: 1/-1; }
label{ font-size:0.85rem; font-weight:700; margin-bottom:8px; display:block; color: var(--ink); }
input, select, textarea{
  width:100%; padding:13px 16px; border-radius: var(--radius-sm); border:1px solid var(--line);
  background:#fff; font-family:inherit; font-size:0.95rem; color:var(--ink);
}
input:focus, select:focus, textarea:focus{ border-color: var(--orange); }
textarea{ resize:vertical; min-height:120px; }
.field{ margin-bottom:18px; }
.contact-info-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; max-width:1180px; margin: 0 auto 70px; padding:0 24px; }
.contact-info-card{ background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:28px; text-align:center; }
.contact-info-card i{ font-size:1.4rem; color:var(--orange); margin-bottom:14px; display:block; }
@media (max-width:900px){ .contact-info-grid{ grid-template-columns:1fr;} .form-grid{ grid-template-columns:1fr;} }

/* =================== PAGE LEGALE =================== */
.legal-content{ max-width:820px; margin:0 auto; padding: 90px 24px; }
.legal-content h2{ margin-top:40px; margin-bottom:14px; font-size:1.3rem; }
.legal-content h2:first-child{ margin-top:0; }
.legal-content p, .legal-content li{ color:var(--ink-soft); margin-bottom:12px; }
.legal-content li{ margin-left:20px; }

/* =================== UTILS =================== */
.mt-0{ margin-top:0 !important; }
.text-center{ text-align:center; }
