/* =========================================================================
   Ensemble On Va'a Loin — feuille de style principale
   Palette et typographies issues du logo et des supports de l'association.
   Accessibilité : contrastes WCAG AA, focus visibles, mouvement réduit.
   ========================================================================= */

/* --- Polices auto-hébergées (aucune requête vers Google, conforme RGPD) --- */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-800.woff2') format('woff2');
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Nunito';
  src: url('../fonts/nunito.woff2') format('woff2');
  font-weight: 400 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Caveat';
  src: url('../fonts/caveat.woff2') format('woff2');
  font-weight: 400 700; font-style: normal; font-display: swap;
}

/* ------------------------------- Jetons --------------------------------- */
:root {
  /* couleurs de marque */
  --navy:        #14335F;
  --navy-dark:   #0C2247;
  --navy-soft:   #2C4E80;
  --blue:        #3450A0;
  --blue-light:  #6090C0;
  --yellow:      #FBC91B;
  --yellow-soft: #FFF0BE;
  --orange:      #E85A16;
  --pink:        #E4529B;      /* aplats et fonds */
  --pink-text:   #C62E76;      /* variante lisible pour le texte (AA) */
  --pink-soft:   #FCE4F0;
  --green:       #12A97B;
  --green-soft:  #DDF3EA;
  --sand:        #FDF8EF;
  --white:       #FFFFFF;

  /* rôles */
  --bg:          var(--white);
  --bg-alt:      var(--sand);
  --text:        #17325A;
  --text-soft:   #48607F;
  --border:      #E2E8F1;

  /* typographie */
  --font-title:  'Poppins', 'Trebuchet MS', system-ui, sans-serif;
  --font-body:   'Nunito', 'Segoe UI', system-ui, sans-serif;
  --font-script: 'Caveat', 'Bradley Hand', cursive;

  /* échelle fluide */
  --step--1: clamp(0.88rem, 0.85rem + 0.15vw, 0.95rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.12rem);
  --step-1:  clamp(1.2rem, 1.12rem + 0.4vw, 1.45rem);
  --step-2:  clamp(1.45rem, 1.3rem + 0.75vw, 1.95rem);
  --step-3:  clamp(1.8rem, 1.5rem + 1.4vw, 2.75rem);
  --step-4:  clamp(2.2rem, 1.7rem + 2.4vw, 3.9rem);

  /* rythme */
  --radius:    18px;
  --radius-lg: 28px;
  --shadow:    0 6px 22px rgba(20, 51, 95, 0.09);
  --shadow-lg: 0 18px 48px rgba(20, 51, 95, 0.16);
  --wrap:      1180px;
  --gutter:    clamp(1.1rem, 4vw, 2.5rem);
  --section-y: clamp(3.5rem, 8vw, 6.5rem);
}

/* --------------------------- Remise à zéro ------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 5.5rem; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { font-family: var(--font-title); line-height: 1.15; margin: 0 0 .6em; color: var(--navy); }
h1 { font-size: var(--step-4); font-weight: 800; letter-spacing: -.02em; }
h2 { font-size: var(--step-3); font-weight: 800; letter-spacing: -.015em; }
h3 { font-size: var(--step-1); font-weight: 700; }
p  { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
a { color: var(--blue); text-underline-offset: .18em; }
a:hover { color: var(--orange); }
ul { margin: 0 0 1.1em; padding-left: 1.3em; }
li { margin-bottom: .4em; }
strong { font-weight: 700; color: var(--navy); }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 6px;
}

/* -------------------------- Utilitaires --------------------------------- */
.wrap { width: min(100% - var(--gutter) * 2, var(--wrap)); margin-inline: auto; }
.wrap--narrow { width: min(100% - var(--gutter) * 2, 820px); margin-inline: auto; }

.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: fixed; top: 0; left: 50%; transform: translate(-50%, -140%);
  z-index: 999; background: var(--navy); color: #fff; padding: .8rem 1.4rem;
  border-radius: 0 0 12px 12px; font-weight: 700; text-decoration: none;
  transition: transform .2s;
}
.skip-link:focus { transform: translate(-50%, 0); color: #fff; }

.section { padding-block: var(--section-y); position: relative; }
.section--alt { background: var(--bg-alt); }
.section--navy { background: var(--navy); color: #EAF1FA; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy a { color: var(--yellow); }
.section--navy a:hover { color: #fff; }

.section__head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section__head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-title); font-weight: 700; font-size: var(--step--1);
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--pink-text); margin-bottom: .8rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 3px; border-radius: 3px; background: var(--yellow);
}
.section__head--center .eyebrow::after {
  content: ""; width: 26px; height: 3px; border-radius: 3px; background: var(--yellow);
}
.section--navy .eyebrow { color: var(--yellow); }
.section--navy .eyebrow::before, .section--navy .eyebrow::after { background: var(--pink); }

.lead { font-size: var(--step-1); color: var(--text-soft); line-height: 1.55; }
.section--navy .lead { color: #C7D8EE; }

.script { font-family: var(--font-script); font-weight: 700; color: var(--pink-text); }

/* --------------------------- Boutons ------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-title); font-weight: 700; font-size: var(--step-0);
  padding: .85em 1.7em; border-radius: 999px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer; transition: transform .18s, box-shadow .18s, background .18s;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: #D0357F; color: #fff; box-shadow: 0 8px 20px rgba(198, 46, 118, .35); }
.btn--primary:hover { background: #B8286C; color: #fff; box-shadow: 0 12px 26px rgba(198, 46, 118, .45); }
.btn--sun { background: var(--yellow); color: var(--navy); box-shadow: 0 8px 20px rgba(251, 201, 27, .4); }
.btn--sun:hover { background: #F0BB00; color: var(--navy); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: #fff; }
.btn--ghost-light { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.7); }
.btn--ghost-light:hover { background: #fff; color: var(--navy); }
.btn--block { width: 100%; }

/* --------------------------- En-tête ------------------------------------ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s, border-color .25s;
}
.site-header.is-stuck { box-shadow: 0 4px 20px rgba(20,51,95,.1); border-color: var(--border); }
.site-header__inner {
  display: flex; align-items: center; gap: 1rem;
  min-height: 4.6rem;
}
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; margin-right: auto; }
.brand img { width: 48px; height: 48px; }
.brand__name {
  font-family: var(--font-title); font-weight: 800; color: var(--navy);
  font-size: 1.02rem; line-height: 1.1; letter-spacing: -.01em;
}
.brand__place {
  display: block; font-family: var(--font-body); font-weight: 600;
  font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--pink-text);
}

.nav { display: flex; align-items: center; gap: .3rem; }
.nav a {
  font-family: var(--font-title); font-weight: 600; font-size: .95rem;
  color: var(--navy); text-decoration: none; padding: .5rem .7rem; border-radius: 10px;
}
.nav a:hover, .nav a.is-active { background: var(--yellow-soft); color: var(--navy); }
.nav .btn { margin-left: .6rem; padding: .6em 1.2em; font-size: .95rem; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  padding: .5rem; color: var(--navy);
}
.nav-toggle svg { width: 30px; height: 30px; }

@media (max-width: 1000px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 4.6rem 0 auto 0;
    flex-direction: column; align-items: stretch; gap: .2rem;
    background: #fff; padding: 1rem var(--gutter) 1.6rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 30px rgba(20,51,95,.12);
    max-height: calc(100dvh - 4.6rem); overflow-y: auto;
    transform: translateY(-120%); transition: transform .28s ease;
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { padding: .8rem .6rem; font-size: 1.05rem; border-bottom: 1px solid var(--border); border-radius: 0; }
  .nav .btn { margin: .8rem 0 0; }
}

/* ----------------------------- Héros ------------------------------------ */
.hero {
  position: relative; margin-top: 4.6rem;
  background: linear-gradient(160deg, #0C2247 0%, #14335F 45%, #2B5490 100%);
  color: #fff; overflow: hidden; isolation: isolate;
}
.hero__photo {
  position: absolute; inset: 0; z-index: -2;
  background-image: url('../img/hero-pirogue.jpg');
  background-image: image-set(url('../img/hero-pirogue.webp') type('image/webp'),
                              url('../img/hero-pirogue.jpg')  type('image/jpeg'));
  background-size: cover; background-position: center 45%;
  opacity: .5;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, rgba(12,34,71,.94) 0%, rgba(12,34,71,.75) 45%, rgba(12,34,71,.35) 100%);
}
.hero__inner {
  display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center; padding-block: clamp(3.5rem, 9vw, 6.5rem) clamp(5rem, 10vw, 8rem);
}
.hero h1 { color: #fff; margin-bottom: .35em; }
.hero h1 .script {
  display: block; font-size: 1.12em; color: var(--yellow); font-weight: 700;
  letter-spacing: 0; line-height: 1;
}
.hero__baseline {
  font-size: var(--step-1); color: #D5E3F5; max-width: 34ch; margin-bottom: 1.6rem;
}
.hero__tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; padding: 0; list-style: none; }
.hero__tags li {
  font-family: var(--font-title); font-weight: 700; font-size: .8rem;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .45em 1em; border-radius: 999px; margin: 0;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
}
.hero__tags li:nth-child(1) { border-color: var(--yellow); color: var(--yellow); }
.hero__tags li:nth-child(2) { border-color: var(--green); color: #6FE0BC; }
.hero__tags li:nth-child(3) { border-color: var(--pink); color: #FF9CCB; }
.hero__tags li:nth-child(4) { border-color: var(--blue-light); color: #A8CDEB; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero__badge { justify-self: center; }
.hero__badge img {
  width: min(330px, 100%); filter: drop-shadow(0 20px 40px rgba(0,0,0,.35));
  animation: float 7s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.hero__leaf { position: absolute; z-index: -1; pointer-events: none; opacity: .5; }
.hero__leaf--1 { top: -3%; right: 40%; width: 190px; transform: rotate(24deg); }
.hero__leaf--2 { bottom: -6%; left: -3%; width: 230px; transform: rotate(-18deg); }

@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; padding-bottom: 4.5rem; }
  .hero__baseline { margin-inline: auto; }
  .hero__tags, .hero__cta { justify-content: center; }
  .hero__badge { order: -1; }
  .hero__inner { padding-block: 2.2rem 3.4rem; }
  .hero__badge img { width: min(160px, 44%); margin-inline: auto; }
  .hero__baseline { margin-bottom: 1.1rem; }
  .hero__tags { margin-bottom: 1.4rem; }
  .hero__cta { flex-direction: column; align-items: stretch; gap: .6rem; }
  .hero__cta .btn { width: 100%; }
  .hero__leaf--1 { display: none; }
}

/* Vague de séparation */
.wave { display: block; width: 100%; height: auto; line-height: 0; }
.wave--bottom { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 1; }

/* --------------------------- Chiffres clés ------------------------------ */
.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem; margin-top: 2.5rem;
}
.stat {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.4rem 1rem; text-align: center; box-shadow: var(--shadow);
}
.stat__num {
  font-family: var(--font-title); font-weight: 800; font-size: var(--step-3);
  color: var(--pink-text); line-height: 1; display: block;
}
.stat:nth-child(2) .stat__num { color: var(--green); }
.stat:nth-child(3) .stat__num { color: var(--orange); }
.stat:nth-child(4) .stat__num { color: var(--blue); }
.stat__label { font-size: var(--step--1); color: var(--text-soft); font-weight: 600; }

/* --------------------------- Grilles / cartes --------------------------- */
.grid { display: grid; gap: clamp(1.2rem, 2.5vw, 1.8rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.1rem); box-shadow: var(--shadow);
  position: relative; overflow: hidden;
  transition: transform .22s, box-shadow .22s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card h3 { margin-bottom: .5rem; }
.card p:last-child { margin-bottom: 0; }
.card__icon {
  width: 62px; height: 62px; border-radius: 50%; display: grid; place-items: center;
  margin-bottom: 1.1rem; flex-shrink: 0;
}
.card__icon svg { width: 32px; height: 32px; }
.card__icon--yellow { background: var(--yellow-soft); color: #A67C00; }
.card__icon--pink   { background: var(--pink-soft);   color: #C43C82; }
.card__icon--green  { background: var(--green-soft);  color: #0A7D5A; }
.card__icon--blue   { background: #E3EDFA;            color: var(--blue); }
.card__motif {
  position: absolute; right: -30px; top: -26px; width: 140px; opacity: .13;
  pointer-events: none; transform: rotate(18deg);
}

/* Cartes valeurs */
.value { text-align: left; }
.value__badge {
  font-family: var(--font-script); font-size: 2.4rem; font-weight: 700;
  line-height: 1; color: var(--orange); display: block; margin-bottom: .2rem;
}

/* Cartes activités */
.activity { display: flex; flex-direction: column; }
.activity__tag {
  align-self: flex-start; font-family: var(--font-title); font-weight: 700;
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  padding: .35em .9em; border-radius: 999px; margin-bottom: .9rem;
}
.tag--pink   { background: var(--pink-soft); color: #B8306F; }
.tag--green  { background: var(--green-soft); color: #076048; }
.tag--yellow { background: var(--yellow-soft); color: #8A6600; }
.tag--blue   { background: #E3EDFA; color: #26437F; }
.tag--orange { background: #FDE8DC; color: #B3410C; }
.activity__script { font-family: var(--font-script); font-size: 1.5rem; color: var(--pink-text); line-height: 1.1; margin-bottom: .6rem; display: block; }

/* --------------------------- Sport santé -------------------------------- */
.split {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

.checklist { list-style: none; padding: 0; margin: 1.4rem 0 0; }
.checklist li {
  position: relative; padding-left: 2.3rem; margin-bottom: .9rem; line-height: 1.5;
}
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .15em;
  width: 1.5rem; height: 1.5rem; border-radius: 50%;
  background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 62% no-repeat;
}
.section--navy .checklist li::before { background-color: var(--yellow); }
.section--navy .checklist li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2314335F' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

.panel {
  background: #fff; border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.section--navy .panel { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.18); box-shadow: none; color: #EAF1FA; }
.section--navy strong { color: #fff; }
/* Panneau clair posé sur fond marine (formulaire de contact) */
.section--navy .panel--light {
  background: #fff; border-color: var(--border); color: var(--text); box-shadow: var(--shadow-lg);
}
.section--navy .panel--light strong { color: var(--navy); }

/* ------------------------------ Lieux ----------------------------------- */
.place { display: flex; gap: 1.2rem; align-items: flex-start; }
.place__pin {
  width: 54px; height: 54px; flex-shrink: 0; border-radius: 50%;
  display: grid; place-items: center; background: var(--yellow-soft); color: #8A6600;
}
.place__pin svg { width: 26px; height: 26px; }
.place:nth-child(2) .place__pin { background: var(--green-soft); color: #0A7D5A; }
.map-frame {
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow); background: var(--bg-alt); min-height: 320px;
}
.map-frame iframe { display: block; width: 100%; height: 100%; min-height: 380px; border: 0; }
.map-consent {
  display: grid; place-content: center; gap: 1rem; text-align: center;
  padding: 2.5rem 1.5rem; min-height: 380px;
}

/* ------------------------------ Tarifs ---------------------------------- */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1.2rem; }
.price {
  text-align: center; border-radius: var(--radius-lg); padding: 2rem 1.2rem;
  background: #fff; border: 2px solid var(--border); box-shadow: var(--shadow);
  position: relative;
}
.price--feature { border-color: var(--pink); }
.price__flag {
  position: absolute; top: -.85rem; left: 50%; transform: translateX(-50%);
  background: var(--pink-text); color: #fff; font-family: var(--font-title); font-weight: 700;
  font-size: .72rem; letter-spacing: .09em; text-transform: uppercase;
  padding: .35em 1em; border-radius: 999px; white-space: nowrap;
}
.price__name { font-family: var(--font-title); font-weight: 700; font-size: var(--step-1); color: var(--navy); }
.price__amount {
  font-family: var(--font-title); font-weight: 800; font-size: clamp(2.6rem, 6vw, 3.4rem);
  color: var(--pink-text); line-height: 1; margin: .3rem 0 .1rem;
}
.price__amount span { font-size: .45em; vertical-align: super; }
.price--feature .price__amount { color: var(--orange); }
.price__note { font-size: var(--step--1); color: var(--text-soft); }

/* ------------------------------ Agenda ---------------------------------- */
.agenda { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.agenda li {
  display: flex; gap: 1.2rem; align-items: center; margin: 0;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1rem 1.3rem; box-shadow: var(--shadow);
}
.agenda__date {
  flex-shrink: 0; width: 74px; text-align: center; border-radius: 14px;
  background: var(--navy); color: #fff; padding: .5rem .2rem; line-height: 1.05;
}
.agenda__day { display: block; font-family: var(--font-title); font-weight: 800; font-size: 1.6rem; }
.agenda__month { display: block; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--yellow); font-weight: 700; }
.agenda__body h3 { font-size: var(--step-0); margin-bottom: .15rem; }
.agenda__meta { font-size: var(--step--1); color: var(--text-soft); margin: 0; }
.agenda__empty { text-align: center; color: var(--text-soft); }

/* ------------------------------ Galerie --------------------------------- */
.gallery {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: clamp(195px, 21vw, 280px); gap: 1rem;
}
.gallery figure {
  margin: 0; position: relative; height: 100%; min-height: 180px;
  border-radius: var(--radius); overflow: hidden; background: var(--bg-alt);
}
.gallery__wide { grid-column: span 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
@media (max-width: 880px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__wide { grid-column: span 2; }
}
@media (max-width: 560px) {
  .gallery { grid-template-columns: 1fr; grid-auto-rows: clamp(200px, 54vw, 290px); }
  .gallery__wide { grid-column: span 1; }
}
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption {
  position: absolute; inset: auto 0 0 0; padding: 2.4rem .9rem .8rem;
  background: linear-gradient(transparent, rgba(12,34,71,.9));
  color: #fff; font-size: var(--step--1); font-weight: 600;
}
.gallery figcaption .credit {
  display: block; font-weight: 400; font-size: .84em; color: #D7E4F5; margin-top: .15rem;
}
.gallery__placeholder {
  display: grid; place-content: center; gap: .5rem; text-align: center;
  aspect-ratio: 4 / 3; border: 2px dashed var(--blue-light); border-radius: var(--radius);
  color: var(--text-soft); padding: 1rem; font-size: var(--step--1);
}
.gallery__placeholder svg { width: 38px; height: 38px; margin-inline: auto; color: var(--blue-light); }

/* ------------------- Publics accueillis (pastilles) --------------------- */
.pill-list { list-style: none; padding: 0; margin: .9rem 0 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.pill {
  margin: 0; font-family: var(--font-title); font-weight: 700; font-size: .82rem;
  letter-spacing: .03em; padding: .5em 1.1em; border-radius: 999px;
}
.pill--yellow { background: var(--yellow-soft); color: #8A6600; }
.pill--green  { background: var(--green-soft);  color: #076048; }
.pill--blue   { background: #E3EDFA;            color: #26437F; }
.pill--pink   { background: var(--pink-soft);   color: #B8306F; }

/* ---------------------------- Créneaux ---------------------------------- */
.slot__hours { list-style: none; padding: 0; margin: .7rem 0 0; display: grid; gap: .5rem; }
.slot__hours li {
  display: flex; align-items: center; gap: .6rem; margin: 0;
  font-family: var(--font-title); font-weight: 700; color: var(--navy);
}
.slot__hours svg { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; }
.slot--pending { border-style: dashed; border-color: var(--blue-light); }

/* ---------------------------- Adhésion ---------------------------------- */
.join {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.2rem, 3vw, 2rem); align-items: stretch;
}
.join__card {
  border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.2rem);
  display: flex; flex-direction: column; gap: .8rem;
}
.join__card--pink   { background: linear-gradient(150deg, #E4529B, #C6357E); color: #fff; }
.join__card--yellow { background: linear-gradient(150deg, #FBC91B, #F0A400); color: var(--navy); }
.join__card--green  { background: linear-gradient(150deg, #12A97B, #0A7D5A); color: #fff; }
.join__card h3 { color: inherit; }
.join__card .btn { margin-top: auto; align-self: flex-start; }
.join__card--yellow .btn { background: var(--navy); color: #fff; }
.join__card--yellow .btn:hover { background: var(--navy-dark); color: #fff; }
.join__card--pink .btn, .join__card--green .btn { background: #fff; color: var(--navy); }

/* --------------------------- Partenaires -------------------------------- */
.partners { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.partner {
  display: grid; place-items: center; min-width: 160px; min-height: 90px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1rem 1.4rem; color: var(--text-soft); font-weight: 600; font-size: var(--step--1);
  text-align: center;
}
.partner { min-height: 122px; min-width: 190px; padding: 1.2rem 1.5rem; }
.partner picture { display: block; }
.partner img { max-height: 80px; max-width: 180px; width: auto; object-fit: contain; }
@media (max-width: 620px) {
  .partners { display: grid; grid-template-columns: repeat(2, 1fr); }
  .partner { min-width: 0; min-height: 100px; padding: .9rem; }
  .partner img { max-height: 58px; max-width: 100%; }
}
.partner__todo {
  display: block; padding: .3rem .2rem; border: 2px dashed var(--blue-light);
  border-radius: 10px; color: var(--text-soft); font-size: .84rem; width: 100%;
}

/* --------------------------- Formulaire --------------------------------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }

.contact-info { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 1.1rem; }
.contact-info li { display: flex; gap: .9rem; align-items: center; margin: 0; }
.contact-info a { color: inherit; font-weight: 700; text-decoration: none; }
.contact-info a:hover { color: var(--yellow); text-decoration: underline; }
.contact-info__icon {
  width: 46px; height: 46px; flex-shrink: 0; border-radius: 50%;
  display: grid; place-items: center; background: rgba(255,255,255,.12); color: var(--yellow);
}
.contact-info__icon svg { width: 22px; height: 22px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--font-title); font-weight: 600; font-size: var(--step--1); color: var(--navy); }
.field .req, .req { color: #B3410C; font-weight: 700; }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: var(--step-0); color: var(--text);
  padding: .8rem 1rem; border: 2px solid var(--border); border-radius: 14px;
  background: #fff; width: 100%; transition: border-color .18s, box-shadow .18s;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 4px rgba(52,80,160,.14); outline: none;
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"], .field select[aria-invalid="true"] {
  border-color: #C62828; background: #FFF6F6;
}
.field__error { font-size: var(--step--1); color: #C62828; font-weight: 600; min-height: 0; }
.field__error:empty { display: none; }
.field--consent { flex-direction: row; align-items: flex-start; gap: .7rem; grid-column: 1 / -1; }
.field--consent input { width: 1.35rem; height: 1.35rem; margin-top: .25rem; flex-shrink: 0; accent-color: var(--pink); }
.field--consent label { font-family: var(--font-body); font-weight: 400; font-size: var(--step--1); color: var(--text-soft); line-height: 1.5; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }

.form-status {
  grid-column: 1 / -1; border-radius: 14px; padding: 1rem 1.2rem; font-weight: 600;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status--ok    { background: var(--green-soft); color: #075E44; border: 1px solid #7FD3B8; }
.form-status--error { background: #FDECEC; color: #A31515; border: 1px solid #F0B4B4; }

/* ------------------------------ Footer ---------------------------------- */
.site-footer { background: var(--navy-dark); color: #B9CBE4; padding-block: 3.5rem 2rem; }
.site-footer h3 { color: #fff; font-size: var(--step-0); margin-bottom: .9rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.site-footer a { color: #D7E4F5; text-decoration: none; }
.site-footer a:hover { color: var(--yellow); text-decoration: underline; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .5rem; }
.footer-brand { display: flex; gap: 1rem; align-items: center; margin-bottom: 1rem; }
.footer-brand img { width: 62px; height: 62px; }
.socials { display: flex; gap: .7rem; margin-top: 1rem; }
.socials a {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.1); color: #fff; transition: background .2s, transform .2s;
}
.socials a:hover { background: var(--pink); transform: translateY(-2px); }
.socials svg { width: 22px; height: 22px; }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.14);
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between;
  font-size: var(--step--1);
}

/* ------------------------ Confort de lecture ---------------------------- */
.a11y-bar {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 90;
  display: flex; flex-direction: column; gap: .4rem;
}
@media (max-width: 620px) {
  .a11y-bar { right: .6rem; bottom: .6rem; gap: .35rem; }
  .a11y-bar button { width: 40px; height: 40px; font-size: .85rem; }
  .a11y-bar button svg { width: 19px; height: 19px; }
}
.a11y-bar button {
  width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--navy);
  background: #fff; color: var(--navy); font-family: var(--font-title); font-weight: 800;
  cursor: pointer; box-shadow: var(--shadow); display: grid; place-items: center;
  font-size: .95rem; transition: background .18s, color .18s;
}
.a11y-bar button:hover, .a11y-bar button[aria-pressed="true"] { background: var(--navy); color: #fff; }
.a11y-bar button svg { width: 22px; height: 22px; }

html[data-fontsize="lg"] { font-size: 112.5%; }
html[data-fontsize="xl"] { font-size: 125%; }

html[data-contrast="high"] {
  --text: #06182F; --text-soft: #1D3557; --border: #6E829E;
  --bg-alt: #FFFFFF; --pink: #B32A72; --pink-text: #99205F; --green: #06735A; --orange: #B33F0B;
}
html[data-contrast="high"] .hero__photo { opacity: .16; }
html[data-contrast="high"] .card,
html[data-contrast="high"] .agenda li,
html[data-contrast="high"] .stat { border-width: 2px; }

@media print {
  .site-header, .a11y-bar, .hero__leaf, .nav-toggle, .form-actions { display: none !important; }
  body { color: #000; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* ---------------------- Apparition au défilement ------------------------ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ------------------------- Motifs décoratifs ---------------------------- */
.deco { position: absolute; pointer-events: none; z-index: 0; opacity: .5; }
.deco img { width: 100%; }
.section > .wrap { position: relative; z-index: 2; }
.deco--tr { top: -30px; right: -40px; width: clamp(120px, 14vw, 210px); transform: rotate(22deg); }
.deco--bl { bottom: -30px; left: -40px; width: clamp(120px, 14vw, 210px); transform: rotate(-160deg); }
.deco--tl { top: -20px; left: -30px; width: clamp(100px, 11vw, 170px); transform: rotate(-25deg); }
.deco--br { bottom: -20px; right: -30px; width: clamp(100px, 11vw, 170px); transform: rotate(150deg); }
@media (max-width: 700px) { .deco { display: none; } }

/* -------------------------- Pages internes ------------------------------ */
.page-head {
  margin-top: 4.6rem; background: linear-gradient(150deg, #0C2247, #2B5490);
  color: #fff; padding-block: clamp(2.5rem, 6vw, 4rem); position: relative; overflow: hidden;
}
.page-head h1 { color: #fff; font-size: var(--step-3); margin-bottom: .2em; }
.page-head p { color: #C7D8EE; margin: 0; }
.prose { max-width: 74ch; }
.prose h2 { font-size: var(--step-2); margin-top: 2.2em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: var(--step-1); margin-top: 1.6em; }
.prose table { width: 100%; border-collapse: collapse; margin-bottom: 1.5em; font-size: var(--step--1); }
.prose th, .prose td { border: 1px solid var(--border); padding: .7rem .8rem; text-align: left; vertical-align: top; }
.prose th { background: var(--bg-alt); font-family: var(--font-title); }
.table-scroll { overflow-x: auto; }

.thanks { text-align: center; padding-block: clamp(4rem, 10vw, 7rem); }
.thanks__icon {
  width: 96px; height: 96px; margin: 0 auto 1.5rem; border-radius: 50%;
  background: var(--green-soft); color: #0A7D5A; display: grid; place-items: center;
}
.thanks__icon svg { width: 48px; height: 48px; }
