/* =========================================================================
   Femmes de territoire 84 — feuille de style principale
   Couleurs et typographies relevées sur la maquette de référence
   (uploads/visuels/). Playfair Display pour les titres, Poppins pour le
   texte, Sacramento pour les mentions manuscrites (« 84 », « S'inspirer »).
   ========================================================================= */

@import url('fonts.css');

:root {
  --cream: #faf7f4;      /* fond principal */
  --blush: #faf0ee;      /* sections roses */
  --blush-line: #f3ddd9; /* filets sur fond rose */
  --red: #f2504a;        /* rouge corail de la marque */
  --red-dark: #d93f39;
  --ink: #1d1d1b;        /* noir des titres et du footer */
  --body: #4a4744;       /* texte courant */
  --muted: #7d7873;
  --line: #e6e0da;
  --white: #ffffff;

  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --script: 'Sacramento', 'Brush Script MT', cursive;

  --max: 1180px;
  --pad: 40px;
}

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

body, h1, h2, h3, h4, p, ul, ol, figure, blockquote {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  /* Compense le header collant quand on arrive sur une ancre. */
  scroll-padding-top: 110px;
}

body {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--body);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* Visible uniquement pour les lecteurs d'écran. */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  font-size: 13px;
}
.skip-link:focus { left: 8px; top: 8px; }

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

/* -------------------------------------------------------------------------
   Éléments d'identité réutilisés (logo, « 84 », baseline)
   ------------------------------------------------------------------------- */

.wordmark {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.02;
  letter-spacing: -0.015em;
}

/* Le « 84 » manuscrit rouge. */
.eighty-four {
  font-family: var(--script);
  color: var(--red);
  line-height: 1;
  display: block;
}

/* « LE CERCLE · VAUCLUSE » — petites capitales très espacées. */
.baseline {
  font-family: var(--sans);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  color: var(--ink);
  white-space: nowrap;
}

/* Bloc logo complet : nom + 84 + filet + baseline. */
.brand { display: inline-block; text-align: center; }
.brand .wordmark { font-size: 19px; text-align: left; }
.brand .eighty-four { font-size: 26px; margin: -2px 0 -6px; text-align: center; }
.brand .rule {
  height: 1px;
  background: var(--ink);
  opacity: 0.75;
  margin: 4px 0 5px;
}
.brand .baseline { font-size: 6.5px; }

/* -------------------------------------------------------------------------
   En-tête
   ------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 2px 20px rgba(29, 29, 27, 0.045);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-height: 92px;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  position: relative;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--ink);
  padding: 6px 0;
  white-space: nowrap;
  transition: color 0.2s;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.24s ease;
}
.main-nav a:hover { color: var(--red); }
.main-nav a:hover::after,
.main-nav a[aria-current='page']::after { transform: scaleX(1); }
.main-nav a[aria-current='page'] { color: var(--ink); }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 11px;
  width: 18px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.25s, opacity 0.2s;
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 25px; }
.nav-toggle[aria-expanded='true'] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded='true'] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* -------------------------------------------------------------------------
   Boutons
   ------------------------------------------------------------------------- */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 13px 26px;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.22s, color 0.22s, border-color 0.22s, transform 0.22s;
}

/* Rouge plein. */
.btn-solid { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-solid:hover { background: var(--red-dark); border-color: var(--red-dark); }

/* Contour rouge sur fond clair. */
.btn-outline { background: transparent; color: var(--red); border-color: var(--red); }
.btn-outline:hover { background: var(--red); color: var(--white); }

/* Le CTA du header est le seul arrondi en pilule. */
.btn-pill { border-radius: 40px; padding: 12px 26px; }

.btn-lg { padding: 15px 34px; font-size: 11px; }

/* Lien fléché rouge. */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 10.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--red);
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}
.link-arrow svg { transition: transform 0.24s; }
.link-arrow:hover svg { transform: translateX(5px); }

/* -------------------------------------------------------------------------
   Titres et intertitres
   ------------------------------------------------------------------------- */

.eyebrow {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  color: var(--red);
  margin-bottom: 14px;
}

.h-display {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.16;
  letter-spacing: -0.015em;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.h-section {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.section { padding: 96px 0; }
.section-blush { background: var(--blush); }
.section-cream { background: var(--cream); }

/* -------------------------------------------------------------------------
   Hero de la page d'accueil
   ------------------------------------------------------------------------- */

.hero {
  padding: 60px 0 44px;
}
/* La maquette enchaîne assez vite sur la mission : on resserre le raccord. */
.hero + .section { padding-top: 58px; }
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  gap: 70px;
  align-items: center;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.8rem, 6.2vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.hero-mark { margin-bottom: 30px; }
.hero-mark .eighty-four {
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  margin: 2px 0 6px;
  padding-left: 0.9em;
}
.hero-mark .baseline {
  font-size: 11px;
  letter-spacing: 0.42em;
  padding-left: 0.35em;
}
.hero-text {
  max-width: 355px;
  font-size: 14.5px;
  line-height: 1.85;
  margin-bottom: 34px;
}

/* Visuel : photo, mention manuscrite et tampon circulaire. */
.hero-visual { position: relative; }
/* Pas de grayscale ici : la photo est déjà en noir et blanc et le filtre
   ferait tomber la mention manuscrite rouge incrustée dans le gris. */
.hero-photo {
  width: 100%;
  aspect-ratio: 840 / 846;
  object-fit: cover;
}
.hero-script {
  position: absolute;
  right: 26px;
  bottom: 34px;
  font-family: var(--script);
  font-size: clamp(1.8rem, 3.1vw, 2.6rem);
  line-height: 1.18;
  color: var(--red);
  text-align: right;
  transform: rotate(-7deg);
  transform-origin: bottom right;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.28);
  pointer-events: none;
}
/* Le tampon chevauche le bord gauche de la photo : posé par-dessus, il reste
   franc sur le fond crème et se devine sur la partie sombre, comme la maquette. */
.hero-stamp {
  position: absolute;
  left: -69px;
  bottom: 58px;
  width: 130px;
  height: 130px;
  z-index: 2;
}

/* Tampon circulaire : texte courbé autour d'un « 84 » manuscrit. */
.stamp { display: block; width: 100%; height: 100%; }
.stamp text {
  font-family: var(--sans);
  font-size: 8.2px;
  font-weight: 500;
  letter-spacing: 0.3em;
  fill: var(--ink);
  text-transform: uppercase;
}
.stamp .stamp-84 {
  font-family: var(--script);
  font-size: 54px;
  letter-spacing: 0;
  fill: var(--red);
}
.stamp circle { fill: none; stroke: var(--ink); stroke-width: 0.8; opacity: 0.75; }
/* Sur fond sombre, le tampon passe en blanc. */
.stamp--light text { fill: var(--white); }
.stamp--light circle { stroke: var(--white); }

/* -------------------------------------------------------------------------
   Section « Notre mission »
   ------------------------------------------------------------------------- */

.mission .container {
  display: grid;
  grid-template-columns: 1.05fr 1.3fr;
  gap: 60px;
  align-items: start;
}
/* Assez large pour que le titre tienne sur trois lignes, comme la maquette. */
.mission-intro { padding-right: 0; }
.mission-intro .h-display { font-size: clamp(1.55rem, 2.5vw, 2.05rem); }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  border-left: 1px solid var(--line);
  padding-left: 68px;
}
.pillar { text-align: center; }
.pillar-icon {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.pillar-icon svg { stroke: var(--red); fill: none; stroke-width: 1.35; }
.pillar h3 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}
.pillar p { font-size: 12.8px; line-height: 1.72; color: var(--body); }

/* -------------------------------------------------------------------------
   Section « Prochaine rencontre » (fond rose)
   ------------------------------------------------------------------------- */

.next-meeting .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  align-items: center;
}
.meeting-date {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.9vw, 2.15rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.14;
  margin-bottom: 8px;
}
.meeting-time {
  font-size: 13.5px;
  color: var(--body);
  margin-bottom: 20px;
}
.meeting-desc {
  font-size: 13.2px;
  line-height: 1.78;
  max-width: 330px;
  margin-bottom: 28px;
}
.meeting-portrait {
  width: 218px;
  height: 218px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(1);
}
.guest { padding-left: 10px; }
.guest .h-display { font-size: clamp(1.5rem, 2.6vw, 1.95rem); margin-bottom: 16px; }
.guest p { font-size: 13.2px; line-height: 1.78; margin-bottom: 24px; max-width: 300px; }

/* -------------------------------------------------------------------------
   Section « Rejoindre le cercle »
   ------------------------------------------------------------------------- */

.join .container {
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  gap: 68px;
  align-items: center;
}
.join-intro p {
  font-size: 13.4px;
  line-height: 1.8;
  max-width: 330px;
  margin: 18px 0 30px;
}
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.benefit { text-align: center; }
.benefit-icon {
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.benefit-icon svg { stroke: var(--ink); fill: none; stroke-width: 1.3; }
.benefit p {
  font-size: 12.4px;
  line-height: 1.6;
  color: var(--ink);
}

/* -------------------------------------------------------------------------
   Pied de page
   ------------------------------------------------------------------------- */

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  padding: 62px 0 0;
  font-size: 13px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 52px;
}
.footer-brand { position: relative; padding-right: 40px; }
/* Filet vertical qui sépare le logo des colonnes de liens. */
.footer-brand::after {
  content: '';
  position: absolute;
  right: 0; top: 4px; bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.16);
}
.footer-brand .wordmark { color: var(--white); font-size: 21px; }
.footer-brand .brand .rule { background: var(--white); opacity: 0.85; }
.footer-brand .brand .baseline { color: var(--white); font-size: 7px; }

.footer-col h4 {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col li { margin-bottom: 11px; }
.footer-col a {
  font-size: 12.8px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--red); }

.socials { display: flex; gap: 12px; }
.socials a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.22s, border-color 0.22s;
}
.socials svg { width: 15px; height: 15px; fill: var(--white); }
.socials a:hover { background: var(--red); border-color: var(--red); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 22px 0 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.55);
}
.footer-bottom nav { display: flex; gap: 10px; align-items: center; }
.footer-bottom a:hover { color: var(--red); }

/* -------------------------------------------------------------------------
   Page « Notre manifeste »
   ------------------------------------------------------------------------- */

.manifesto {
  position: relative;
  padding: 74px 0 0;
  overflow: hidden;
}
.manifesto .container {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 56px;
  align-items: start;
  /* Laisse la place à la photo qui occupe le tiers droit. */
  padding-right: calc(var(--pad) + 24%);
  padding-bottom: 90px;
}
.manifesto-title {
  padding-top: 78px;
  text-align: center;
}
.manifesto-title .h-section {
  font-size: clamp(2.3rem, 4.6vw, 3.4rem);
  line-height: 1.05;
}
.manifesto-title .eighty-four { font-size: 2.6rem; margin: 10px 0 8px; }
.manifesto-title .baseline { font-size: 10px; letter-spacing: 0.4em; }

.manifesto-text {
  border-left: 1.5px solid var(--red);
  padding-left: 34px;
  max-width: 560px;
}
.manifesto-text p {
  font-size: 13.4px;
  line-height: 1.85;
  margin-bottom: 20px;
}
.manifesto-text p.strong { font-weight: 500; color: var(--ink); }
.manifesto-text p.signature { color: var(--red); font-weight: 400; }

.manifesto-photo {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 28%;
  min-width: 240px;
}
.manifesto-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}
.manifesto-photo .hero-stamp {
  left: auto;
  right: 22%;
  bottom: 34%;
  width: 104px;
  height: 104px;
}

/* -------------------------------------------------------------------------
   Équipe
   ------------------------------------------------------------------------- */

.team-head { text-align: center; margin-bottom: 54px; }
.team-head .h-section { font-size: clamp(2.2rem, 4.4vw, 3.2rem); }
.team-head .eighty-four { font-size: 2.4rem; margin: 6px 0 6px; }
.team-head .baseline { font-size: 9.5px; letter-spacing: 0.4em; }

.team-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}
.team-grid.team-grid-6 { grid-template-columns: repeat(6, 1fr); }

.member {
  background: var(--cream);
  text-align: center;
  padding-bottom: 20px;
}
.member img {
  width: 100%;
  aspect-ratio: 1 / 1.12;
  object-fit: cover;
  filter: grayscale(1);
  margin-bottom: 16px;
}
.member .role {
  font-size: 8.6px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--red);
  margin-bottom: 7px;
  padding: 0 8px;
}
.member h3 {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 6px;
  padding: 0 8px;
}
.member p {
  font-size: 11.4px;
  line-height: 1.55;
  color: var(--body);
  margin-bottom: 13px;
  padding: 0 8px;
}
.member .linkedin {
  width: 25px; height: 25px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.22s, border-color 0.22s;
}
.member .linkedin svg { width: 11px; height: 11px; fill: var(--ink); transition: fill 0.22s; }
.member .linkedin:hover { background: var(--red); border-color: var(--red); }
.member .linkedin:hover svg { fill: var(--white); }

/* Grille resserrée pour la seconde rangée (pôles). */
.team-grid-6 .member img { aspect-ratio: 1 / 1.05; }
.team-grid-6 .member h3 { font-size: 14px; }
.team-grid-6 .member .role { font-size: 8px; }
.team-grid-6 .member p { font-size: 10.8px; }

.team-sep {
  height: 1px;
  background: var(--blush-line);
  margin: 46px 0;
}

.team-cta {
  margin-top: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}
.team-cta p {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
}

/* -------------------------------------------------------------------------
   Pages internes : en-tête de page, contenus courants
   ------------------------------------------------------------------------- */

.page-head {
  padding: 72px 0 58px;
  text-align: center;
}
.page-head .h-section { margin-bottom: 10px; }
.page-head .eighty-four { font-size: 2.2rem; margin: 4px 0 6px; }
.page-head .baseline { font-size: 9.5px; letter-spacing: 0.4em; }
.page-head .lead {
  max-width: 620px;
  margin: 22px auto 0;
  font-size: 14px;
  line-height: 1.85;
}

.prose { max-width: 720px; }
.prose h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin: 42px 0 16px;
}
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 18px; font-size: 14px; line-height: 1.85; }
.prose ul { margin: 0 0 20px; }
.prose ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 14px;
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: 2px; top: 11px;
  width: 7px; height: 1.5px;
  background: var(--red);
}
.prose a { color: var(--red); border-bottom: 1px solid currentColor; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.tile {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 32px 30px;
}
.section-blush .tile { border-color: var(--blush-line); }
.tile .eyebrow { margin-bottom: 10px; }
.tile h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.3;
}
.tile p { font-size: 13.2px; line-height: 1.78; margin-bottom: 16px; }
.tile > *:last-child { margin-bottom: 0; }

/* Agenda : une ligne par événement. */
.agenda { border-top: 1px solid var(--line); }
.agenda-item {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.agenda-date {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.agenda-date span {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 3px;
}
.agenda-body h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.agenda-body p { font-size: 13px; line-height: 1.7; max-width: 560px; }

/* -------------------------------------------------------------------------
   Formulaires
   ------------------------------------------------------------------------- */

.form { max-width: 640px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 10.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink);
  margin-bottom: 8px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 12px 14px;
  transition: border-color 0.2s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus,
.field textarea:focus,
.field select:focus { outline: none; border-color: var(--red); }
.field-check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 12.5px;
  line-height: 1.6;
}
.field-check input { width: auto; margin-top: 3px; flex-shrink: 0; accent-color: var(--red); }
.field-check a { color: var(--red); border-bottom: 1px solid currentColor; }
.field-check label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 12.5px;
  font-weight: 300;
  color: var(--body);
  margin: 0;
}
.form-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
}

/* Bandeau de contact simple. */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.contact-info p { font-size: 13.4px; line-height: 1.8; margin-bottom: 26px; }
.contact-info a { color: var(--red); }

/* -------------------------------------------------------------------------
   Bandeau d'appel en bas de page
   ------------------------------------------------------------------------- */

.cta-band {
  background: var(--blush);
  padding: 74px 0;
  text-align: center;
}
.cta-band .h-section { font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-bottom: 14px; }
.cta-band p {
  font-size: 13.6px;
  max-width: 480px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

/* -------------------------------------------------------------------------
   Apparition douce au défilement
   ------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

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

/* -------------------------------------------------------------------------
   Adaptations écrans
   ------------------------------------------------------------------------- */

@media (max-width: 1120px) {
  .main-nav ul { gap: 18px; }
  .main-nav a { font-size: 9.8px; letter-spacing: 0.08em; }
  .team-grid-6 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 980px) {
  :root { --pad: 28px; }

  /* Le menu passe en panneau déroulant. */
  .nav-toggle { display: block; order: 3; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 12px var(--pad) 22px;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav a { display: block; padding: 13px 0; font-size: 11px; border-bottom: 1px solid var(--line); }
  .main-nav li:last-child a { border-bottom: none; }
  .main-nav a::after { display: none; }
  .header-cta { display: none; }

  .hero { padding: 46px 0 70px; }
  .hero .container { grid-template-columns: 1fr; gap: 54px; }
  .hero-text { max-width: none; }
  /* À gauche : la mention manuscrite occupe le bas droit de la photo. */
  .hero-stamp { left: -16px; right: auto; bottom: -30px; width: 96px; height: 96px; }

  .mission .container,
  .join .container { grid-template-columns: 1fr; gap: 44px; }
  .pillars { border-left: none; padding-left: 0; border-top: 1px solid var(--line); padding-top: 40px; }

  .next-meeting .container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .meeting-desc, .guest p { margin-left: auto; margin-right: auto; }
  .meeting-portrait { margin: 0 auto; }
  .guest { padding-left: 0; }

  .manifesto { padding-top: 48px; }
  .manifesto .container {
    grid-template-columns: 1fr;
    padding-right: var(--pad);
    padding-bottom: 56px;
    gap: 38px;
  }
  .manifesto-title { padding-top: 0; text-align: left; }
  .manifesto-photo { position: relative; width: 100%; min-width: 0; height: 420px; }
  .manifesto-photo .hero-stamp { right: 26px; bottom: 26px; }

  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid.team-grid-6 { grid-template-columns: repeat(3, 1fr); }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; padding-right: 0; padding-bottom: 26px; }
  .footer-brand::after { display: none; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .agenda-item { grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width: 620px) {
  .section { padding: 62px 0; }
  .pillars { grid-template-columns: 1fr; gap: 34px; }
  .benefits { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .team-grid,
  .team-grid.team-grid-6 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .hero-script { right: 16px; bottom: 20px; }
  .team-cta { flex-direction: column; gap: 18px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
