/* ============================================================
   Le Choix de Valence — Feuille de style principale
   Police : Luciole | Couleur principale : #6c2984
   ============================================================ */

/* ── @font-face ─────────────────────────────────────────── */
@font-face {
  font-family: 'Luciole';
  src: url('../fonts/Luciole-Regular.woff2') format('woff2'),
       url('../fonts/Luciole-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Luciole';
  src: url('../fonts/Luciole-Bold.woff2') format('woff2'),
       url('../fonts/Luciole-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Luciole';
  src: url('../fonts/Luciole-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Luciole';
  src: url('../fonts/Luciole-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* ── Variables ──────────────────────────────────────────── */
:root {
  --violet:     #6c2984;
  --violet-dk:  #4a1a5e;
  --violet-lt:  #f3edf7;
  --violet-md:  #e0cfe8;
  --accent:     #c8a84b;
  --text:       #1a1218;
  --muted:      #6b5f72;
  --white:      #ffffff;
  --off-white:  #faf8fc;
  --border:     #e8e0ee;

  --font:       'Luciole', system-ui, -apple-system, sans-serif;
  --radius:     6px;
  --shadow:     0 2px 16px rgba(108, 41, 132, .12);
  --transition: .2s ease;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--violet); }
a:hover { color: var(--violet-dk); }

/* ── Skip link (accessibilité) ──────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--violet);
  color: var(--white);
  padding: .5rem 1rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 700;
  text-decoration: none;
  z-index: 9999;
}
.skip-link:focus { top: 0; }

/* ── Layout ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container--narrow {
  max-width: 860px;
}

/* ── Header / Navigation ────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--violet-dk);
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.site-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.site-logo__name {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: .01em;
}
.site-logo__slogan {
  font-size: .72rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .06em;
  font-style: italic;
}

/* Bouton burger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav principale */
.site-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.site-nav__link {
  display: inline-block;
  padding: .45rem .9rem;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .03em;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  border-radius: var(--radius);
  transition: var(--transition);
}
.site-nav__link:hover,
.site-nav__link[aria-current="page"] {
  background: rgba(255,255,255,.15);
  color: var(--white);
}
.site-nav__cta {
  display: inline-block;
  padding: .45rem 1rem;
  font-size: .85rem;
  font-weight: 700;
  color: var(--violet-dk);
  background: var(--white);
  border-radius: var(--radius);
  text-decoration: none;
  transition: var(--transition);
  margin-left: .5rem;
}
.site-nav__cta:hover {
  background: var(--violet-lt);
  color: var(--violet-dk);
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  background: var(--violet-dk);
  color: var(--white);
  padding: 5rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 85%, rgba(200,168,75,.12) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 10%, rgba(108,41,132,.5) 0%, transparent 50%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.hero__badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: .35rem .9rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.hero__title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}
.hero__title::before { content: '\AB\A0'; }
.hero__title::after  { content: '\A0\BB'; }
.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,.8);
  line-height: 1.55;
  max-width: 580px;
  margin-bottom: 2.5rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
}

/* ── Boutons ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: .75rem 1.6rem;
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1.3;
  text-align: center;
}
.btn--primary {
  background: var(--white);
  color: var(--violet-dk);
  border-color: var(--white);
}
.btn--primary:hover {
  background: var(--violet-lt);
  color: var(--violet-dk);
  border-color: var(--violet-lt);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn--outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  color: var(--white);
}
.btn--violet {
  background: var(--violet);
  color: var(--white);
  border-color: var(--violet);
}
.btn--violet:hover {
  background: var(--violet-dk);
  border-color: var(--violet-dk);
  color: var(--white);
}
.btn--ghost {
  background: transparent;
  color: var(--violet);
  border-color: var(--violet);
}
.btn--ghost:hover {
  background: var(--violet);
  color: var(--white);
}
.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: .45;
  cursor: not-allowed;
  pointer-events: none;
}
.btn--sm {
  font-size: .82rem;
  padding: .5rem 1.1rem;
}

/* ── Sections génériques ─────────────────────────────────── */
.section {
  padding: 4rem 1.5rem;
}
.section--alt {
  background: var(--off-white);
}
.section--violet {
  background: var(--violet-dk);
  color: var(--white);
}
.section__header {
  text-align: center;
  margin-bottom: 3rem;
}
.section__badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--violet);
  border: 1px solid var(--violet-md);
  background: var(--violet-lt);
  padding: .3rem .8rem;
  border-radius: 2px;
  margin-bottom: .75rem;
}
.section--violet .section__badge {
  color: var(--accent);
  border-color: var(--accent);
  background: transparent;
}
.section__title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: .75rem;
}
.section--violet .section__title { color: var(--white); }
.section__lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}
.section--violet .section__lead { color: rgba(255,255,255,.75); }

/* ── Cartes d'engagements ────────────────────────────────── */
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}
.engagement-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--violet);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-decoration: none;
  color: var(--text);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.engagement-card:hover {
  border-left-color: var(--accent);
  box-shadow: 0 6px 24px rgba(108,41,132,.18);
  transform: translateY(-2px);
  color: var(--text);
}
.engagement-card__num {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .6rem;
}
.engagement-card__icon {
  font-size: 1.5rem;
  margin-bottom: .75rem;
  line-height: 1;
}
.engagement-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--violet-dk);
  line-height: 1.3;
  margin-bottom: .5rem;
}
.engagement-card__desc {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.5;
  flex: 1;
}
.engagement-card__arrow {
  margin-top: 1rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--violet);
}

/* ── Section intro accueil ───────────────────────────────── */
.intro-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.intro-block__text p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.intro-block__text p:last-of-type { margin-bottom: 0; }
.intro-block__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(108,41,132,.2);
}
.intro-block__image img {
  width: 100%;
  object-fit: cover;
}

/* ── Section affiche ─────────────────────────────────────── */
.affiche-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.affiche-block__img {
  max-width: 340px;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(108,41,132,.25);
}

/* ── Réseaux sociaux ─────────────────────────────────────── */
.social-links {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
.social-link {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1rem;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 700;
  transition: var(--transition);
}
.social-link:hover {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.social-link--dark {
  border-color: var(--border);
  color: var(--muted);
}
.social-link--dark:hover {
  background: var(--violet-lt);
  color: var(--violet);
  border-color: var(--violet);
}
.social-link svg {
  flex-shrink: 0;
}

/* ── Page header (pages intérieures) ─────────────────────── */
.page-hero {
  background: var(--violet-dk);
  color: var(--white);
  padding: 3rem 1.5rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(200,168,75,.1) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero__inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.page-hero__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: .5rem;
}
.page-hero__subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
}

/* ── Engagements – sommaire ──────────────────────────────── */
.engagements-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
  padding: 3rem 1.5rem;
}
.engagements-toc {
  position: sticky;
  top: 80px;
}
.engagements-toc__title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .75rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border);
}
.engagements-toc__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.engagements-toc__item a {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .55rem .75rem;
  font-size: .88rem;
  font-weight: 700;
  color: var(--muted);
  text-decoration: none;
  border-radius: var(--radius);
  border-left: 3px solid transparent;
  transition: var(--transition);
}
.engagements-toc__item a:hover,
.engagements-toc__item a.active {
  color: var(--violet);
  background: var(--violet-lt);
  border-left-color: var(--violet);
}
.engagements-toc__num {
  font-size: .68rem;
  letter-spacing: .1em;
  color: var(--accent);
  font-weight: 700;
}

/* ── Fiche engagement ────────────────────────────────────── */
.engagement-section {
  margin-bottom: 5rem;
  scroll-margin-top: 90px;
}
.engagement-section:last-child { margin-bottom: 2rem; }
.engagement-section__header {
  background: var(--eng-color, var(--violet-dk));
  border-radius: var(--radius);
  padding: 2rem 2rem 1.75rem;
  margin-bottom: 2rem;
}
.engagement-section__num {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: .6rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.engagement-section__num::after {
  content: '';
  height: 1px;
  flex: 1;
  background: rgba(255,255,255,.3);
  max-width: 60px;
}
.engagement-section__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: .75rem;
}
.engagement-section__vision {
  font-size: 1rem;
  color: rgba(255,255,255,.9);
  font-style: italic;
  border-left: 3px solid rgba(255,255,255,.4);
  padding-left: 1rem;
  line-height: 1.6;
  margin: 0;
}
.engagement-contexte {
  background: var(--violet-lt);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  font-size: .95rem;
  line-height: 1.7;
  border-left: 3px solid var(--violet);
}
.engagement-contexte strong { color: var(--violet); }
.engagement-phare {
  background: var(--violet);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.75rem;
}
.engagement-phare__label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .5rem;
}
.engagement-phare__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.engagement-phare__desc {
  font-size: .9rem;
  color: rgba(255,255,255,.82);
  line-height: 1.6;
}
.engagement-subsection {
  margin-bottom: 1.75rem;
}
.engagement-subsection__title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: .75rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--violet-md);
}
.engagement-items {
  display: flex;
  flex-direction: column;
}
.engagement-item {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 0 .75rem;
  padding: .85rem 0;
  border-bottom: 1px solid #ede8f2;
  align-items: start;
}
.engagement-item:last-child { border-bottom: none; }
.engagement-item__dot {
  width: 6px;
  height: 6px;
  background: var(--violet);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}
.engagement-item__title {
  font-weight: 700;
  font-size: .95rem;
  color: var(--text);
  margin-bottom: .2rem;
  line-height: 1.4;
}
.engagement-item__desc {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.5;
}
.engagement-stats {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.engagement-stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  min-width: 120px;
}
.engagement-stat strong {
  display: block;
  font-size: 1.4rem;
  color: var(--violet);
  font-weight: 700;
  line-height: 1.2;
}
.engagement-stat span {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.4;
}

/* ── Équipe ──────────────────────────────────────────────── */
.tete-de-liste {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 860px;
  margin: 0 auto;
}
.tete-de-liste__photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--violet-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .9rem;
  font-weight: 700;
  text-align: center;
}
.tete-de-liste__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bio-section {
  margin-bottom: 2rem;
}
.bio-section__title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: .75rem;
  padding-bottom: .4rem;
  border-bottom: 1px solid var(--border);
}
.bio-section p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: .75rem;
}
.bio-section p:last-child { margin-bottom: 0; }

.equipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}
.equipe-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.equipe-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--violet-md);
  margin: 0 auto .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.equipe-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.equipe-card__initials {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--violet);
}
.equipe-card__name {
  font-weight: 700;
  font-size: .95rem;
  color: var(--text);
  margin-bottom: .25rem;
}
.equipe-card__role {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.4;
}
.equipe-card__quartier {
  display: inline-block;
  margin-top: .5rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--violet);
  background: var(--violet-lt);
  padding: .2rem .5rem;
  border-radius: 3px;
}

/* ── Audio bannière engagements ───────────────────────────── */
.audio-banner {
  background: var(--violet-lt, #f3eef9);
  border: 1px solid var(--violet-md, #e0d3f0);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.audio-banner__label {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--violet);
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.audio-banner audio {
  flex: 1;
  min-width: 200px;
  height: 36px;
  accent-color: var(--violet);
}

/* ── Encart "impact" (Qu'est-ce que ça change pour vous) ─── */
.engagement-impact {
  background: var(--violet-lt, #f3eef9);
  border-left: 3px solid var(--violet);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  margin-top: 1.25rem;
}
.engagement-impact__title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: .75rem;
}
.engagement-impact ul {
  margin: 0;
  padding-left: 1.1rem;
}
.engagement-impact li {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: .4rem;
}
.engagement-impact li:last-child { margin-bottom: 0; }

/* ── CE QUE ÇA CHANGE POUR VOUS ─────────────────────────── */
.engagement-changement {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-left: 4px solid var(--eng-color, var(--violet));
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.engagement-changement__title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--eng-color, var(--violet));
  margin-bottom: .85rem;
}
.engagement-changement__list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: changement-counter;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.engagement-changement__item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  counter-increment: changement-counter;
}
.engagement-changement__item::before {
  content: counter(changement-counter);
  flex-shrink: 0;
  min-width: 1.5rem;
  height: 1.5rem;
  border-radius: 3px;
  background: var(--violet);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  line-height: 1.5rem;
  text-align: center;
  margin-top: .1rem;
}
.engagement-changement__item > div {
  display: flex;
  flex-direction: column;
}
.engagement-changement__key {
  order: -1;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #222;
  line-height: 1.3;
}
.engagement-changement__desc {
  font-size: .85rem;
  color: #555;
  font-style: italic;
  line-height: 1.5;
  margin-top: .1rem;
}

/* ── Leviers financement ───────────────────────────────────── */
.engagement-leviers {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.engagement-levier {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow);
}
.engagement-levier__num {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .4rem;
}
.engagement-levier__title {
  font-weight: 700;
  font-size: .95rem;
  color: var(--text);
  margin-bottom: .5rem;
}
.engagement-levier__desc {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.5;
}
.engagement-levier ul {
  margin: .5rem 0 0;
  padding-left: 1rem;
}
.engagement-levier li {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.45;
  margin-bottom: .3rem;
}

/* Chiffres clés financement */
.financement-kpis {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 1rem 0 1.5rem;
}
.financement-kpi {
  background: var(--violet);
  color: var(--white);
  border-radius: var(--radius);
  padding: .85rem 1.25rem;
  text-align: center;
  min-width: 120px;
}
.financement-kpi__value {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}
.financement-kpi__label {
  font-size: .72rem;
  opacity: .8;
  margin-top: .25rem;
}

/* ── Documents ───────────────────────────────────────────── */
.documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.document-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.document-card__icon {
  font-size: 1.8rem;
  line-height: 1;
}
.document-card__title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.3;
}
.document-card__desc {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.5;
  flex: 1;
}
.document-card__meta {
  font-size: .78rem;
  color: var(--muted);
  font-style: italic;
}
.document-card__actions {
  margin-top: .25rem;
}

/* ── Formulaire ──────────────────────────────────────────── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.form-field--full {
  grid-column: 1 / -1;
}
.form-label {
  font-size: .88rem;
  font-weight: 700;
  color: var(--text);
}
.form-label--optional::after {
  content: ' (facultatif)';
  font-weight: 400;
  color: var(--muted);
  font-size: .8rem;
}
.form-input,
.form-select,
.form-textarea {
  font-family: var(--font);
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: .65rem .9rem;
  width: 100%;
  transition: var(--transition);
  line-height: 1.5;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(108,41,132,.12);
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  cursor: pointer;
  font-size: .9rem;
  color: var(--text);
  line-height: 1.5;
}
.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--violet);
  flex-shrink: 0;
  margin-top: .15rem;
  cursor: pointer;
}
.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}
.form-rgpd {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.6;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.form-rgpd a { color: var(--violet); }

/* ── Alertes (success/error) ─────────────────────────────── */
.alert {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: .95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.alert--success {
  background: #e6f4ea;
  border: 1px solid #4caf50;
  color: #1b5e20;
}
.alert--error {
  background: #fde8e8;
  border: 1px solid #ef5350;
  color: #b71c1c;
}

/* ── Cookie banner ───────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--violet-dk);
  color: var(--white);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
  transform: translateY(0);
  transition: transform .3s ease;
}
.cookie-banner.hidden {
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner__text {
  flex: 1;
  font-size: .88rem;
  color: rgba(255,255,255,.85);
  line-height: 1.5;
  min-width: 220px;
}
.cookie-banner__text a {
  color: var(--accent);
}
.cookie-banner__actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.cookie-btn {
  padding: .5rem 1.1rem;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.cookie-btn--accept {
  background: var(--white);
  color: var(--violet-dk);
  border-color: var(--white);
}
.cookie-btn--accept:hover {
  background: var(--violet-lt);
}
.cookie-btn--refuse {
  background: transparent;
  color: rgba(255,255,255,.7);
  border-color: rgba(255,255,255,.3);
}
.cookie-btn--refuse:hover {
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--violet-dk);
  color: rgba(255,255,255,.7);
  padding: 3rem 1.5rem 2rem;
}
.site-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-col__title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: .75rem;
}
.footer-col p,
.footer-col address {
  font-size: .88rem;
  line-height: 1.6;
  font-style: normal;
  color: rgba(255,255,255,.65);
}
.footer-col a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
}
.footer-col a:hover { color: var(--white); }
.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.footer-nav a {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  text-decoration: none;
}
.footer-nav a:hover { color: var(--white); }
.site-footer__bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.site-footer__bottom a {
  color: rgba(255,255,255,.4);
  text-decoration: none;
}
.site-footer__bottom a:hover { color: rgba(255,255,255,.7); }
.site-footer__bottom span:last-child { font-size: .9rem; }

/* ── Bandeau vote 15 mars ─────────────────────────────────── */
.vote-notif {
  position: fixed;
  top: 5.5rem;
  right: 1.5rem;
  z-index: 150;
  width: 300px;
  background: #c8a84b;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,.18), 0 2px 8px rgba(0,0,0,.1);
  padding: 14px 12px 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Luciole', sans-serif;
  transform: translateX(calc(100% + 2rem));
  opacity: 0;
  transition: transform .45s cubic-bezier(.22,1,.36,1), opacity .3s ease;
  pointer-events: none;
}
.vote-notif.vote-notif--visible {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.vote-notif__badge {
  background: var(--violet-dk);
  color: #fff;
  font-weight: 700;
  font-size: .72rem;
  padding: 3px 9px;
  border-radius: 4px;
  white-space: nowrap;
  letter-spacing: .04em;
  flex-shrink: 0;
  margin-top: 2px;
}
.vote-notif__body { flex: 1; min-width: 0; }
.vote-notif__title {
  font-weight: 700;
  font-size: .875rem;
  color: var(--violet-dk);
  line-height: 1.35;
  margin-bottom: 4px;
}
.vote-notif__link {
  font-size: .78rem;
  font-weight: 700;
  color: var(--violet-dk);
  text-decoration: underline;
}
.vote-notif__link:hover { opacity: .75; }
.vote-notif__close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--violet-dk);
  font-size: 1.2rem;
  line-height: 1;
  padding: 0 2px;
  flex-shrink: 0;
  opacity: .55;
  transition: opacity .15s;
}
.vote-notif__close:hover { opacity: 1; }
@media (max-width: 680px) {
  .vote-notif {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    width: auto;
    border-radius: 12px 12px 0 0;
    transform: translateY(110%);
    opacity: 1;
    box-shadow: 0 -4px 24px rgba(0,0,0,.16);
    padding: 16px 20px;
    align-items: center;
    gap: 12px;
    z-index: 250;
  }
  .vote-notif.vote-notif--visible { transform: translateY(0); }
}

/* ── Mentions légales ────────────────────────────────────── */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  color: var(--text);
  line-height: 1.75;
}
.legal-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--violet-dk);
  margin: 2rem 0 .75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.legal-content h2:first-child { border-top: none; margin-top: 0; }
.legal-content p { margin-bottom: .75rem; color: var(--muted); }
.legal-content ul {
  margin: .5rem 0 .75rem 1.5rem;
  color: var(--muted);
}
.legal-content a { color: var(--violet); }

/* ── Presse placeholder ──────────────────────────────────── */
.presse-placeholder {
  text-align: center;
  padding: 5rem 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}
.presse-placeholder__icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  opacity: .35;
}
.presse-placeholder__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--violet-dk);
  margin-bottom: 1rem;
}
.presse-placeholder__text {
  color: var(--muted);
  line-height: 1.7;
}

/* ── Contact layout ──────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  align-items: start;
}
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .92rem;
}
.contact-info__item:last-child { border-bottom: none; }
.contact-info__icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.contact-info__label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .25rem;
}
.contact-info__value {
  color: var(--text);
}
.contact-info__value a { color: var(--violet); text-decoration: none; }
.contact-info__value a:hover { text-decoration: underline; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .intro-block,
  .tete-de-liste,
  .engagements-layout {
    grid-template-columns: 1fr;
  }
  .engagements-toc { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .candidats-grid {
    grid-template-columns: 1fr;
    gap: .75rem;
  }
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--violet-dk);
    flex-direction: column;
    align-items: stretch;
    padding: .75rem 1rem;
    gap: .2rem;
    display: none;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .site-nav.is-open { display: flex; }
  .site-nav__link {
    padding: .65rem 1rem;
  }
  .site-nav__cta {
    margin-left: 0;
    text-align: center;
    margin-top: .5rem;
    padding: .65rem 1rem;
  }
  .site-header { position: relative; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field--full { grid-column: 1; }
  .hero { padding: 3.5rem 1.25rem 3rem; }
  .hero__title { letter-spacing: -.01em; }
  .site-footer__inner { grid-template-columns: 1fr; }
  .engagement-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .engagement-grid { grid-template-columns: 1fr; }
  .section { padding: 2.5rem 1.25rem; }
  .tete-de-liste__photo { max-width: 200px; margin: 0 auto; }
}

/* ── Galerie ─────────────────────────────────────────────── */
.gallery-video {
  max-width: 900px;
  margin: 0 auto 3rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg, 0 8px 32px rgba(0,0,0,.18));
}
.gallery-video video {
  width: 100%;
  display: block;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/2;
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.04); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 4px;
  object-fit: contain;
}
.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: .7;
}
.lightbox__close:hover { opacity: 1; }

/* ── Liste des candidats ──────────────────────────────────── */
.candidats-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: .6rem;
  max-width: 1100px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
.candidat-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .65rem .9rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.candidat-item__num {
  flex-shrink: 0;
  width: 1.8rem;
  height: 1.8rem;
  background: var(--violet);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
}
.candidat-item__name {
  font-weight: 700;
  font-size: .9rem;
  color: var(--text);
  line-height: 1.3;
}
.candidat-item__role {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.3;
}
/* ── Grille candidats avec photos ── */
.candidats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0 auto;
}
.candidat-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: center;
  display: flex;
  flex-direction: column;
}
.candidat-card__photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f0e8f7;
  flex-shrink: 0;
}
.candidat-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.candidat-card__photo--empty {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  color: var(--muted);
  font-size: .7rem;
}
.candidat-card__body {
  padding: .6rem .5rem .75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.candidat-card__num {
  font-size: .65rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.candidat-card__name {
  font-size: .8rem;
  font-weight: 700;
  color: var(--violet-dk);
  line-height: 1.3;
}
.candidat-card__role {
  font-size: .68rem;
  color: var(--muted);
  line-height: 1.3;
}

.remplacants-list {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  max-width: 1100px;
  margin: 1rem auto 0;
  list-style: none;
  padding: 0;
}
.remplacant-item {
  padding: .5rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .85rem;
  color: var(--muted);
}
.remplacant-item strong { color: var(--text); }

/* Guillemets slogan header */
.site-logo__slogan::before { content: '\00AB\00A0'; }
.site-logo__slogan::after  { content: '\00A0\00BB'; }

/* ── Utilitaires ─────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
