/* ============================================================
   AKIWACU — Maquette site (statique, à valider)
   Design system partagé
   Palette inspirée des couleurs du Burundi (vert / rouge / crème)
   S'ajustera au logo officiel une fois reçu.
   ============================================================ */

:root {
  --vert: #57955C;
  --vert-fonce: #3B6B41;
  --vert-clair: #EAF1E6;
  --rouge: #C1272D;
  --rouge-fonce: #9C1E23;
  --or: #C1272D;
  --creme: #FBF7F0;
  --blanc: #FFFFFF;
  --ink: #1C1C1C;
  --gris: #5B5B5B;
  --gris-clair: #EDE7DC;
  --ombre: 0 10px 30px rgba(15, 77, 58, 0.08);
  --ombre-forte: 0 18px 44px rgba(15, 77, 58, 0.14);
  --rayon: 16px;
  --rayon-sm: 10px;
  --max: 1180px;
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--creme);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--vert); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--rouge); }

h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.15; font-weight: 600; color: var(--ink); }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.section { padding: 84px 0; }
.section--tight { padding: 56px 0; }
.section--creme { background: var(--creme); }
.section--blanc { background: var(--blanc); }
.section--vert { background: linear-gradient(135deg, var(--vert-fonce), #2A4E2C); color: #EAF3EE; }
.section--vert h1, .section--vert h2, .section--vert h3 { color: var(--blanc); }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rouge);
  margin-bottom: 14px;
}
.section--vert .eyebrow { color: #A7D89A; }

.section-title { font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; }
.section-lead { font-size: 19px; color: var(--gris); max-width: 680px; }
.section--vert .section-lead { color: #D5E7DD; }

.center { text-align: center; }
.center .section-lead { margin-left: auto; margin-right: auto; }

/* ---------- Marqueur brouillon (contenu provisoire) ---------- */
.draft {
  position: relative;
  border-left: 3px dashed var(--or);
  padding-left: 16px;
}
.draft::after {
  content: "Texte provisoire à valider";
  position: absolute;
  top: -10px; right: 0;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--or);
  background: #FFF7E6;
  padding: 2px 8px;
  border-radius: 20px;
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 26px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--rouge); color: var(--blanc); }
.btn--primary:hover { background: var(--rouge-fonce); color: var(--blanc); box-shadow: var(--ombre); }
.btn--vert { background: var(--vert); color: var(--blanc); }
.btn--vert:hover { background: var(--vert-fonce); color: var(--blanc); box-shadow: var(--ombre); }
.btn--ghost { background: transparent; border-color: currentColor; color: var(--blanc); }
.btn--ghost:hover { background: rgba(255,255,255,.12); color: var(--blanc); }
.btn--outline { background: transparent; border-color: var(--vert); color: var(--vert); }
.btn--outline:hover { background: var(--vert); color: var(--blanc); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 246, 238, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gris-clair);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { height: 52px; width: auto; display: block; }
.brand__mark {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--vert);
  display: grid; place-items: center;
  color: var(--blanc); font-family: var(--serif); font-weight: 700; font-size: 20px;
  border: 2px solid var(--or);
}
.brand__name { font-family: var(--serif); font-weight: 700; font-size: 22px; letter-spacing: .02em; color: var(--ink); }
.brand__name span { color: var(--vert); }

.nav__links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav__links a {
  font-weight: 500; font-size: 15px; color: var(--ink); position: relative; padding: 6px 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--rouge); transition: width .2s ease;
}
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.nav__links a.active { color: var(--vert); font-weight: 600; }
.nav__cta { margin-left: 8px; }

.nav__toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 8px;
}
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 15% 20%, rgba(224,165,38,.10), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(200,54,43,.08), transparent 45%),
    linear-gradient(180deg, var(--vert-clair), var(--creme));
  padding: 96px 0 88px;
  overflow: hidden;
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(38px, 5.4vw, 62px); margin-bottom: 20px; }
.hero h1 .accent { color: var(--vert); }
.hero__tag { color: var(--rouge); font-weight: 700; letter-spacing: .04em; margin-bottom: 18px; display: block; text-transform: uppercase; font-size: 14px; }
.hero__lead { font-size: 20px; color: var(--gris); margin-bottom: 30px; max-width: 540px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__card {
  background: var(--blanc);
  border-radius: 22px;
  box-shadow: var(--ombre-forte);
  padding: 30px;
  border: 1px solid var(--gris-clair);
}
.hero__card h3 { font-size: 20px; margin-bottom: 6px; }
.hero__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 18px; }
.stat { background: var(--vert-clair); border-radius: var(--rayon-sm); padding: 16px; }
.stat b { font-family: var(--serif); font-size: 26px; color: var(--vert); display: block; }
.stat span { font-size: 13px; color: var(--gris); }

/* ---------- Cartes activités ---------- */
.grid { display: grid; gap: 26px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--blanc);
  border-radius: var(--rayon);
  padding: 30px 26px;
  box-shadow: var(--ombre);
  border: 1px solid var(--gris-clair);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--ombre-forte); }
.card__icon {
  width: 54px; height: 54px; border-radius: 14px;
  display: grid; place-items: center; font-size: 26px;
  background: var(--vert-clair); margin-bottom: 18px;
}
.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { color: var(--gris); font-size: 15.5px; }

/* ---------- Bandeau CTA ---------- */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(26px, 3.6vw, 38px); margin-bottom: 14px; }
.cta-band p { color: #D5E7DD; font-size: 18px; margin-bottom: 26px; max-width: 620px; margin-left: auto; margin-right: auto; }

/* ---------- Page header (sous-pages) ---------- */
.page-head {
  background: linear-gradient(135deg, var(--vert-fonce), #2A4E2C);
  color: var(--blanc);
  padding: 70px 0 60px;
  text-align: center;
}
.page-head h1 { color: var(--blanc); font-size: clamp(32px, 5vw, 52px); margin-bottom: 12px; }
.page-head p { color: #CBE3D6; font-size: 19px; max-width: 640px; margin: 0 auto; }
.breadcrumb { font-size: 13px; color: #9FC7B4; margin-bottom: 18px; letter-spacing: .04em; text-transform: uppercase; }
.breadcrumb a { color: #CFE7DA; }

/* ---------- Blocs contenu ---------- */
.prose { max-width: 760px; }
.prose p { margin-bottom: 18px; color: #33362F; }
.prose h2 { font-size: 30px; margin: 34px 0 14px; }
.prose h3 { font-size: 22px; margin: 26px 0 10px; color: var(--vert); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

.value-list { list-style: none; display: grid; gap: 16px; margin-top: 10px; }
.value-list li { display: flex; gap: 14px; align-items: flex-start; }
.value-list .dot {
  flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%;
  background: var(--vert-clair); color: var(--vert); display: grid; place-items: center; font-weight: 700; font-family: var(--serif);
}
.value-list b { display: block; }
.value-list span { color: var(--gris); font-size: 15px; }

/* ---------- Tarifs adhésion ---------- */
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; max-width: 760px; margin: 0 auto; }
.price {
  background: var(--blanc); border-radius: var(--rayon); padding: 34px 30px;
  box-shadow: var(--ombre); border: 1px solid var(--gris-clair); text-align: center; position: relative;
}
.price--feature { border: 2px solid var(--vert); }
.price__label { font-family: var(--serif); font-size: 22px; margin-bottom: 6px; }
.price__amount { font-family: var(--serif); font-size: 48px; color: var(--vert); font-weight: 700; }
.price__amount small { font-size: 18px; color: var(--gris); font-weight: 400; }
.price__note { color: var(--gris); font-size: 14px; margin-top: 8px; min-height: 40px; }
.price .btn { margin-top: 18px; width: 100%; justify-content: center; }
.tag-pill {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--rouge); color: var(--blanc); font-size: 12px; font-weight: 700;
  padding: 5px 14px; border-radius: 20px; letter-spacing: .04em;
}

/* ---------- Formulaires ---------- */
.form-card {
  background: var(--blanc); border-radius: var(--rayon); padding: 36px;
  box-shadow: var(--ombre); border: 1px solid var(--gris-clair);
}
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 8px; }
.field .req { color: var(--rouge); }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--gris-clair);
  border-radius: var(--rayon-sm); font-family: var(--sans); font-size: 16px; background: var(--creme);
  transition: border-color .2s ease, background .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--vert); background: var(--blanc);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.radio-group { display: flex; gap: 14px; flex-wrap: wrap; }
.radio-pill {
  border: 1.5px solid var(--gris-clair); border-radius: 50px; padding: 10px 20px; cursor: pointer;
  font-size: 15px; display: inline-flex; align-items: center; gap: 8px; background: var(--creme);
}
.radio-pill input { width: auto; }
.form-note { font-size: 13px; color: var(--gris); margin-top: 6px; }

/* ---------- Contact aside ---------- */
.contact-line { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-line .ico {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px; background: var(--vert-clair);
  display: grid; place-items: center; font-size: 20px;
}
.contact-line b { display: block; font-size: 14px; }
.contact-line span, .contact-line a { color: var(--gris); font-size: 15px; }

/* ---------- Événements ---------- */
.empty-state {
  text-align: center; background: var(--blanc); border: 2px dashed var(--gris-clair);
  border-radius: var(--rayon); padding: 56px 30px; max-width: 720px; margin: 0 auto;
}
.empty-state .em { font-size: 44px; margin-bottom: 14px; }
.event-card { display: grid; grid-template-columns: 110px 1fr; gap: 22px; background: var(--blanc);
  border-radius: var(--rayon); padding: 22px; box-shadow: var(--ombre); border: 1px solid var(--gris-clair); align-items: center; }
.event-date { background: var(--vert); color: var(--blanc); border-radius: var(--rayon-sm); text-align: center; padding: 14px 8px; }
.event-date b { font-family: var(--serif); font-size: 30px; display: block; line-height: 1; }
.event-date span { font-size: 13px; text-transform: uppercase; letter-spacing: .05em; }

/* ---------- Footer ---------- */
.site-footer { background: var(--vert-fonce); color: #CFE3D9; padding: 35px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.site-footer h4 { color: var(--blanc); font-size: 16px; margin-bottom: 16px; font-family: var(--sans); font-weight: 700; letter-spacing: .04em; }
.site-footer a { color: #CFE3D9; }
.site-footer a:hover { color: var(--or); }
.footer-links { list-style: none; display: grid; gap: 10px; font-size: 15px; }
.footer-brand .brand__name { color: var(--blanc); }
.footer-brand p { color: #A9C7BA; font-size: 15px; margin-top: 12px; max-width: 300px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13px; color: #92B4A6; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .split { grid-template-columns: 1fr; gap: 30px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav__links {
    position: fixed; top: 74px; left: 0; right: 0;
    background: var(--creme); flex-direction: column; align-items: flex-start;
    gap: 4px; padding: 18px 24px; border-bottom: 1px solid var(--gris-clair);
    transform: translateY(-140%); transition: transform .3s ease; box-shadow: var(--ombre);
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { padding: 10px 0; width: 100%; font-size: 17px; }
  .nav__cta { margin: 8px 0 0; }
  .nav__toggle { display: block; }
  .section { padding: 60px 0; }
  .grid--4, .grid--3, .grid--2, .price-grid, .field-row, .footer-grid { grid-template-columns: 1fr; }
  .event-card { grid-template-columns: 1fr; text-align: center; }
  body { font-size: 16px; }
}

/* ============================================================
   Proposition « Neighborhood » (inspirée UnityPress) — accueil v2
   ============================================================ */
.hero2 {
  position: relative;
  background:
    radial-gradient(circle at 12% 15%, rgba(75,158,51,.14), transparent 42%),
    radial-gradient(circle at 90% 10%, rgba(193,39,45,.08), transparent 40%),
    linear-gradient(180deg, var(--vert-clair), var(--creme));
  padding: 70px 0 0;
  overflow: hidden;
}
.hero2__top { display: grid; grid-template-columns: 1.35fr .75fr; gap: 40px; align-items: start; }
.hero2__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blanc); border: 1px solid var(--gris-clair);
  padding: 7px 16px; border-radius: 50px; font-weight: 700; font-size: 13px;
  letter-spacing: .04em; color: var(--vert-fonce); box-shadow: var(--ombre);
}
.hero2__eyebrow .pip { width: 9px; height: 9px; border-radius: 50%; background: var(--rouge); }
.hero2 h1 {
  font-size: clamp(40px, 6vw, 74px);
  line-height: 1.02; letter-spacing: -0.02em; margin: 20px 0 18px;
}
.hero2 h1 .u { color: var(--vert); }
.hero2 h1 .r { color: var(--rouge); }
.hero2__lead { font-size: 20px; color: var(--gris); max-width: 520px; margin-bottom: 28px; }
.hero2__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Carte « note » de raccourcis (comme le post-it de la démo) */
.quickcard {
  background: linear-gradient(160deg, var(--vert-fonce), #2A4E2C); color: var(--blanc);
  border-radius: 20px; padding: 28px 26px; box-shadow: var(--ombre-forte);
  border: 1px solid rgba(255,255,255,.06);
}
.quickcard h3 { letter-spacing: .01em; }
.quickcard a .arw { color: #A7D89A; }
.quickcard h3 { color: var(--blanc); font-size: 19px; margin-bottom: 6px; }
.quickcard p { color: rgba(255,255,255,.85); font-size: 14px; margin-bottom: 16px; }
.quickcard a {
  display: flex; align-items: center; justify-content: space-between;
  color: var(--blanc); font-weight: 600; font-size: 16px;
  padding: 13px 0; border-top: 1px solid rgba(255,255,255,.22);
  transition: padding .18s ease;
}
.quickcard a:last-child { border-bottom: 1px solid rgba(255,255,255,.22); }
.quickcard a:hover { padding-left: 8px; color: var(--blanc); }
.quickcard a .arw { transition: transform .18s ease; }
.quickcard a:hover .arw { transform: translateX(4px); }

/* Bande photo large sous le hero */
.hero2__band {
  margin-top: 46px;
  height: 340px;
  border-radius: 22px 22px 0 0;
  background:
    linear-gradient(135deg, rgba(44,107,31,.9), rgba(30,74,21,.86)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 22px, transparent 22px 44px);
  display: grid; place-items: center; text-align: center; color: #EAF3EE;
  border: 1px solid rgba(0,0,0,.05); border-bottom: none;
}
.hero2__band .ph-ico { font-size: 40px; opacity: .9; }
.hero2__band p { color: #CFE7DA; font-size: 15px; margin-top: 6px; }
.hero2__band b { display:block; font-family: var(--serif); font-size: 22px; color: #fff; }

/* Bande de statistiques */
.statband { background: var(--vert-fonce); color: #EAF3EE; }
.statband .grid { grid-template-columns: repeat(4, 1fr); text-align: center; }
.statband .s b { font-family: var(--serif); font-size: 44px; color: #fff; display: block; line-height: 1; }
.statband .s span { color: #B9D6C7; font-size: 14px; }

/* Vignettes galerie (placeholders) */
.thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.thumb {
  aspect-ratio: 4/3; border-radius: 12px;
  background: linear-gradient(135deg, var(--vert-clair), #DDEAD6);
  display: grid; place-items: center; color: var(--vert-fonce); font-size: 24px;
  border: 1px dashed rgba(44,107,31,.3);
}

@media (max-width: 940px) {
  .hero2__top { grid-template-columns: 1fr; }
  .quickcard { transform: none; }
  .statband .grid { grid-template-columns: 1fr 1fr; gap: 26px; }
}

/* ============================================================
   Raffinements « premium » — accueil v3
   ============================================================ */
.hero2__band-img {
  margin-top: 44px;
  border-radius: 22px 22px 0 0;
  overflow: hidden;
  box-shadow: 0 -10px 40px rgba(27,70,20,.10);
  border: 1px solid rgba(0,0,0,.05); border-bottom: none;
  line-height: 0;
}
.hero2__band-img img { width: 100%; height: auto; display: block; }
.hero2__band-cap {
  text-align: center; font-size: 12.5px; color: var(--gris);
  padding: 10px 0 0; letter-spacing: .02em;
}

/* Cartes activité avec visuel */
.card--photo { padding: 0; overflow: hidden; }
.card--photo .card__media { line-height: 0; }
.card--photo .card__media img { width: 100%; height: 150px; object-fit: cover; display: block; }
.card--photo .card__body { padding: 24px 24px 28px; }
.card--photo h3 { font-size: 19px; margin-bottom: 8px; }
.card--photo p { color: var(--gris); font-size: 15px; }

/* Section intro avec panneau illustré */
.intro-visual { border-radius: 22px; overflow: hidden; box-shadow: var(--ombre-forte); line-height: 0; }
.intro-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Filet décoratif imigongo */
.imigongo-rule {
  height: 16px; width: 100%;
  background-image:
    linear-gradient(135deg, var(--vert) 25%, transparent 25%),
    linear-gradient(225deg, var(--vert) 25%, transparent 25%),
    linear-gradient(45deg, var(--rouge) 25%, transparent 25%),
    linear-gradient(315deg, var(--rouge) 25%, transparent 25%);
  background-position: 0 0, 8px 0, 8px -8px, 0 8px;
  background-size: 16px 16px;
  opacity: .22;
}

/* Hero premium: titre plus fin et racé */
.hero2 h1 { font-weight: 600; }
.hero2--lux { padding-top: 78px; }
.hero2--lux .hero2__lead { font-size: 20px; line-height: 1.6; }

/* Badge de confiance sous le hero */
.trust-row { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 26px; align-items: center; }
.trust-row .t { display: flex; align-items: center; gap: 9px; color: var(--vert-fonce); font-weight: 600; font-size: 14px; }
.trust-row .t .dotm { width: 8px; height: 8px; border-radius: 50%; background: var(--vert); }

/* Section titres avec petit filet */
.title-kicker { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.title-kicker .line { height: 2px; width: 34px; background: var(--rouge); }
.title-kicker span { font-weight: 700; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--rouge); }

/* ---------- Filet de carte (remplace les icônes emoji) ---------- */
.card__rule { display: block; width: 40px; height: 3px; border-radius: 2px; background: var(--rouge); margin-bottom: 18px; }
.card--photo .card__rule, .card--photo .card__body .card__rule { margin-bottom: 14px; }

/* Puce graphique pour les listes (dot vide) */
.value-list .dot:empty { background: var(--vert-clair); }
.value-list .dot:empty::before { content: ""; width: 9px; height: 9px; border-radius: 2px; background: var(--vert); }

/* Pastille de contact sans emoji */
.contact-line .ico { position: relative; }
.contact-line .ico::before { content: ""; width: 12px; height: 12px; border-radius: 3px; background: var(--vert); }

/* ============================================================
   Proposition « Enthusiasts » — blocs dédiés
   ============================================================ */
/* Piliers (bandeau 4 colonnes facon hero Enthusiasts) */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pillar {
  position: relative; border-radius: 18px; overflow: hidden;
  min-height: 340px; padding: 28px 24px;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: #EAF3EE; box-shadow: var(--ombre);
}
.pillar::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 20px, transparent 20px 40px);
  opacity: .5;
}
.pillar.p1 { background: linear-gradient(160deg, #6BA771, #3B6B41); }
.pillar.p2 { background: linear-gradient(160deg, #4B834F, #2A4E2C); }
.pillar.p3 { background: linear-gradient(160deg, #C1272D, #7C161B); }
.pillar.p4 { background: linear-gradient(160deg, #3B6B41, #234926); }
.pillar .num { position: relative; font-family: var(--serif); font-size: 15px; opacity: .8; margin-bottom: auto; letter-spacing: .1em; }
.pillar h3 { position: relative; color: #fff; font-size: 22px; margin-bottom: 8px; }
.pillar p { position: relative; color: rgba(255,255,255,.9); font-size: 14.5px; }

/* Bloc citation / mot du conseil */
.quote-block { max-width: 860px; margin: 0 auto; text-align: center; }
.quote-block .mark { font-family: var(--serif); font-size: 64px; line-height: .6; color: var(--rouge); }
.quote-block p.q { font-family: var(--serif); font-size: clamp(22px, 3vw, 30px); line-height: 1.4; color: var(--ink); margin: 10px 0 24px; }
.quote-block .sig { font-weight: 700; color: var(--vert-fonce); }
.quote-block .role { color: var(--gris); font-size: 15px; }

/* Bloc « depuis 2019 » : 4 items */
.since-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 40px; }
.since-item { border-top: 3px solid var(--rouge); padding-top: 16px; }
.since-item h4 { font-family: var(--serif); font-size: 19px; margin-bottom: 8px; }
.since-item p { color: var(--gris); font-size: 14.5px; }

/* Cartes navigation (offres) facon Enthusiasts */
.navcard { position: relative; }
.navcard .card__rule { margin-bottom: 16px; }
.navcard .more { display: inline-block; margin-top: 14px; font-weight: 600; font-size: 14px; color: var(--vert); }
.navcard .more:hover { color: var(--rouge); }

@media (max-width: 940px) {
  .pillars { grid-template-columns: 1fr 1fr; }
  .since-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .pillars { grid-template-columns: 1fr; }
  .since-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Priorité au VERT — le rouge est réservé aux boutons importants
   (override final, décision Raldy 2026-07-24)
   ============================================================ */
.eyebrow { color: var(--vert-fonce); }
a:hover { color: var(--vert-fonce); }
.nav__links a::after { background: var(--vert); }
.nav__links a.active { color: var(--vert-fonce); }
.card__rule { background: var(--vert); }
.title-kicker .line { background: var(--vert); }
.title-kicker span { color: var(--vert-fonce); }
.since-item { border-top-color: var(--vert); }
.hero2__eyebrow { color: var(--vert-fonce); }
.hero2__eyebrow .pip { background: var(--vert); }
.hero2 h1 .r { color: var(--vert-fonce); }
.quote-block .mark { color: var(--vert); }
.quote-block .sig { color: var(--vert-fonce); }
/* Pilier 3 : passe du rouge au vert pour une gamme tonale */
.pillar.p3 { background: linear-gradient(160deg, #79B07E, #3B6B41); }
/* Le rouge reste sur : .btn--primary (Devenir membre, Envoyer) et les 3 étoiles du logo dans les illustrations */
.navcard .more:hover { color: var(--vert-fonce); }
.tag-pill { background: var(--vert); }
.hero__tag { color: var(--vert-fonce); }

/* Icônes flat des lignes de contact */
.contact-line .ico { color: var(--vert); }
.contact-line .ico::before { content: none; }
.contact-line .ico svg { width: 22px; height: 22px; }

/* ============================================================
   Hero carrousel (grande image + texte par-dessus)
   ============================================================ */
.hero-carousel { position: relative; min-height: 600px; display: flex; align-items: center; overflow: hidden; }
.hero-carousel__slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.1s ease; transform: scale(1.03);
}
.hero-carousel__slide.is-active { opacity: 1; transform: scale(1); transition: opacity 1.1s ease, transform 6s ease; }
.hero-carousel__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(24,52,22,.86), rgba(24,52,22,.55) 55%, rgba(24,52,22,.30));
}
.hero-carousel__content { position: relative; z-index: 2; color: #fff; padding: 96px 0; width: 100%; }
.hero-carousel__content h1 { color: #fff; font-size: clamp(38px, 5.4vw, 64px); line-height: 1.05; margin-bottom: 18px; max-width: 760px; }
.hero-carousel__content h1 .u { color: #CFE7C6; }
.hero-carousel__lead { font-size: 20px; color: #EAF3EE; max-width: 560px; margin-bottom: 28px; line-height: 1.6; }
.hero-carousel .trust-row .t { color: #EAF3EE; }
.hero-carousel .trust-row .dotm { background: #CFE7C6; }
.btn--light { background: transparent; border-color: #fff; color: #fff; }
.btn--light:hover { background: rgba(255,255,255,.14); color: #fff; }
.hero-carousel__dots { position: absolute; bottom: 22px; left: 0; right: 0; z-index: 3; display: flex; gap: 10px; justify-content: center; }
.hero-carousel__dots button {
  width: 11px; height: 11px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,.45); transition: background .2s ease, width .2s ease;
}
.hero-carousel__dots button.is-active { background: #fff; width: 26px; border-radius: 6px; }

/* ============================================================
   Piliers avec photo (Ce qui nous rassemble)
   ============================================================ */
.pillar { background: var(--vert-fonce); }
.pillar::before { display: none; }
.pillar__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.pillar__overlay { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,45,20,.30), rgba(18,42,17,.88)); }
.pillar .num, .pillar h3, .pillar p { position: relative; z-index: 2; }

/* ============================================================
   FAQ (accordéon)
   ============================================================ */
.faq { max-width: 840px; margin: 0 auto; }
.faq details { background: var(--blanc); border: 1px solid var(--gris-clair); border-radius: 12px; margin-bottom: 14px; box-shadow: var(--ombre); overflow: hidden; }
.faq summary { cursor: pointer; padding: 20px 24px; font-family: var(--serif); font-weight: 600; font-size: 18px; color: var(--ink); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--vert); font-size: 26px; line-height: 1; flex: 0 0 auto; }
.faq details[open] summary::after { content: "\2013"; }
.faq details[open] summary { color: var(--vert-fonce); }
.faq__a { padding: 0 24px 22px; color: var(--gris); font-size: 15.5px; }
.faq__a a { color: var(--vert); }

/* ============================================================
   Ajustements : logo plus grand, icônes de carte, partenaires
   ============================================================ */
/* Logo header plus grand et lisible */
.nav { height: 104px; }
.brand__logo { height: 80px; }

/* Icône flat dans les cartes (pastille verte + svg) */
.card__ic { width: 54px; height: 54px; border-radius: 14px; background: var(--vert-clair); display: grid; place-items: center; color: var(--vert-fonce); margin-bottom: 18px; }
.card__ic svg { width: 27px; height: 27px; }

/* Petite icône flat en ligne (listes) */
.li-ic { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 9px; background: var(--vert-clair); color: var(--vert-fonce); flex: 0 0 auto; }
.li-ic svg { width: 18px; height: 18px; }

/* Section Partenaires */
.partners { text-align: center; }
.partners__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 36px; align-items: stretch; }
.partner {
  background: var(--blanc); border: 1px solid var(--gris-clair); border-radius: var(--rayon);
  min-height: 110px; display: grid; place-items: center; padding: 20px; box-shadow: var(--ombre);
  text-align: center;
}
.partner b { font-family: var(--serif); font-size: 17px; color: var(--vert-fonce); display: block; line-height: 1.2; }
.partner span { display: block; font-size: 12px; color: var(--gris); margin-top: 4px; }
.partners__note { font-size: 13px; color: var(--gris); margin-top: 18px; }

/* Photo d'en-tête sur les pages intérieures */
.page-photo { width: 100%; height: 320px; object-fit: cover; display: block; }
.page-photo-wrap { position: relative; line-height: 0; }
.page-photo-wrap .cap { position:absolute; bottom:10px; right:14px; background:rgba(24,52,22,.72); color:#EAF3EE; font-size:11px; padding:4px 10px; border-radius:20px; line-height:1.3; }

@media (max-width: 760px) {
  .partners__grid { grid-template-columns: 1fr 1fr; }
  .brand__logo { height: 54px; }
  .nav { height: 76px; }
  .page-photo { height: 220px; }
}
.value-list .dot svg { width: 17px; height: 17px; }

/* Carrousel : texte propre à chaque diapo */
.hero-carousel__slide { position: absolute; inset: 0; opacity: 0; transform: none; display: flex; align-items: center; transition: opacity 1.1s ease; background: none; }
.hero-carousel__slide.is-active { opacity: 1; z-index: 1; transform: none; }
.hero-carousel__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-carousel__slide .hero-carousel__scrim { position: absolute; inset: 0; }
.hero-carousel__slide .hero-carousel__content { position: relative; z-index: 2; }

/* Cotisation — présentation sobre (remplace les cartes de prix) */
.dues { max-width: 720px; margin: 0 auto; background: var(--blanc); border: 1px solid var(--gris-clair); border-radius: 18px; box-shadow: var(--ombre); display: grid; grid-template-columns: 1fr 1px 1fr; align-items: center; }
.dues__item { padding: 34px 30px; text-align: center; }
.dues__sep { background: var(--gris-clair); width: 1px; height: 92px; align-self: center; }
.dues__label { display: block; font-family: var(--serif); font-size: 18px; color: var(--ink); margin-bottom: 8px; }
.dues__price { font-family: var(--serif); font-size: 46px; font-weight: 700; color: var(--vert-fonce); line-height: 1; }
.dues__price small { font-size: 17px; font-weight: 400; color: var(--gris); }
.dues__note { display: block; font-size: 13px; color: var(--gris); margin-top: 8px; }
@media (max-width: 620px) { .dues { grid-template-columns: 1fr; } .dues__sep { width: 78%; height: 1px; margin: 0 auto; } }

/* Pied de page plus compact */
.footer-grid { gap: 30px; margin-bottom: 22px; }
.site-footer h4 { margin-bottom: 10px; }
.footer-links { gap: 7px; }
.footer-bottom { padding-top: 16px; }

/* Section Comité (conseil d'administration) */
.team-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.member__photo { width: 84px; height: 84px; }
.member { background: var(--blanc); border: 1px solid var(--gris-clair); border-radius: var(--rayon); box-shadow: var(--ombre); padding: 26px 18px; text-align: center; }
.member__photo { width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 16px; background: var(--vert-clair); display: grid; place-items: center; color: var(--vert-fonce); }
.member__photo svg { width: 44px; height: 44px; }
.member b { display: block; font-family: var(--serif); font-size: 17px; color: var(--ink); }
.member span { display: block; font-size: 13px; color: var(--gris); margin-top: 3px; }
@media (max-width: 760px) { .team-grid { grid-template-columns: 1fr 1fr; } }
.footer-bottom a { color: #EAF3EE; text-decoration: underline; text-underline-offset: 2px; }
.footer-bottom a:hover { color: #fff; }

/* Navigation du footer sur 2 colonnes (2 listes cote a cote) */
.footer-nav-cols { display: flex; gap: 26px; }
.footer-nav-cols .footer-links { gap: 7px; }
@media (max-width: 520px) { .footer-nav-cols { flex-direction: column; gap: 7px; } }

/* Liens legaux dans le bas de page */
.footer-legal { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 18px; }
.footer-legal a { color: #92B4A6; text-decoration: none; }
.footer-legal a:hover { color: #EAF3EE; text-decoration: underline; }

/* Pages legales (politique / mentions) */
.legal .section-title { font-size: 22px; margin-top: 34px; margin-bottom: 10px; }
.legal .section-title:first-of-type { margin-top: 10px; }
.legal p { color: var(--gris); line-height: 1.7; margin-bottom: 12px; }
.legal p a { color: var(--vert-fonce); }
.legal-note { background: var(--vert-clair); border-left: 3px solid var(--vert); border-radius: 8px; padding: 14px 18px; font-size: 14px; color: var(--vert-fonce) !important; margin-bottom: 8px; }
