/* ══════════════════════════════════════
   VERT HORIZON — CSS Global
   ══════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');

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

:root {
  --vert:       #2d6a4f;
  --vert-clair: #52b788;
  --vert-pale:  #b7e4c7;
  --terre:      #8b5e3c;
  --terre-pale: #d4a574;
  --beige:      #faf6f0;
  --beige2:     #f0e8d8;
  --brun:       #3d2b1f;
  --texte:      #2c2416;
  --muted:      #7a6a58;
  --border:     rgba(45,106,79,.15);
  --radius-sm:  12px;
  --radius-md:  20px;
  --radius-lg:  28px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--beige);
  color: var(--texte);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  padding-top: 72px;
}

/* ── TYPOGRAPHIE ── */
h1, h2, h3 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  line-height: 1.2;
}
p { line-height: 1.75; }

.section-label {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--vert-clair);
  font-weight: 600;
  display: block;
  margin-bottom: .8rem;
}
.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--brun);
  margin-bottom: 1.2rem;
}
.section-title em { font-style: italic; color: var(--vert); }

/* ── LAYOUT ── */
section { padding: 6rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(250,246,240,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 4px 20px rgba(45,106,79,.08); }
.nav-logo {
  display: flex; align-items: center; gap: .7rem;
  text-decoration: none;
}
.nav-logo-icon {
  width: 34px; height: 34px;
  background: var(--vert);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
}
.nav-logo-text {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--vert);
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 500;
  transition: color .2s;
  padding: .3rem 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a.active { color: var(--vert); border-bottom-color: var(--vert); }
.nav-don {
  background: var(--vert);
  color: white;
  padding: .55rem 1.3rem;
  border-radius: 100px;
  text-decoration: none;
  font-size: .85rem;
  font-weight: 600;
  transition: background .25s, transform .2s;
}
.nav-don:hover { background: #235c42; transform: translateY(-2px); }

/* ── BOUTON DON FLOTTANT ── */
.don-flottant {
  position: fixed;
  bottom: 2rem; right: 2rem;
  background: var(--vert);
  color: white;
  padding: .85rem 1.5rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  font-size: .85rem;
  display: flex; align-items: center; gap: .5rem;
  box-shadow: 0 6px 30px rgba(45,106,79,.4);
  z-index: 99;
  transition: transform .25s, box-shadow .25s;
  animation: pulse 2.5s infinite;
}
.don-flottant:hover { transform: translateY(-3px) scale(1.03); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 30px rgba(45,106,79,.4); }
  50%       { box-shadow: 0 6px 40px rgba(45,106,79,.65); }
}

/* ── BOUTONS ── */
.btn-vert {
  background: var(--vert);
  color: white;
  padding: .85rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: .5rem;
  transition: background .25s, transform .2s, box-shadow .25s;
  box-shadow: 0 4px 20px rgba(45,106,79,.25);
  border: none; cursor: pointer; font-family: inherit;
}
.btn-vert:hover { background: #235c42; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(45,106,79,.35); }

.btn-outline {
  border: 2px solid var(--border);
  color: var(--vert);
  padding: .85rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  display: inline-flex; align-items: center; gap: .5rem;
  transition: border-color .25s, background .25s;
  background: transparent; cursor: pointer; font-family: inherit;
}
.btn-outline:hover { border-color: var(--vert); background: rgba(45,106,79,.05); }

/* ── PAGE HERO INTERNE ── */
.page-hero {
  background: linear-gradient(135deg, #e8f4ec 0%, #f5f0e8 60%, #eef7f2 100%);
  padding: 5rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(82,183,136,.12), transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; max-width: 700px; }
.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--brun);
  margin-bottom: 1rem;
}
.page-hero h1 em { font-style: italic; color: var(--vert); }
.page-hero p { color: var(--muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ── CARDS ── */
.card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(45,106,79,.1); }

/* ── PLACEHOLDER IMAGE ── */
.img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .6rem; padding: 1.5rem;
  color: white; font-size: .75rem;
  font-weight: 500; text-align: center;
}
.img-placeholder .pi { font-size: 2.2rem; }

/* ── FORMULAIRE ── */
.form-group { display: flex; flex-direction: column; gap: .5rem; }
.form-group label {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--beige);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--texte);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .92rem;
  padding: .85rem 1rem;
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--vert); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── FOOTER ── */
footer {
  background: var(--brun);
  color: rgba(250,246,240,.8);
  padding: 4rem 2rem 2rem;
}
.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand .brand-name {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  color: var(--vert-pale);
  display: block; margin-bottom: .8rem;
}
.footer-brand p { font-size: .85rem; line-height: 1.7; opacity: .65; }
.footer-col h4 {
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--vert-pale);
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.footer-col ul a { color: rgba(250,246,240,.6); text-decoration: none; font-size: .85rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--vert-pale); }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(250,246,240,.1);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: .75rem; opacity: .45;
}
.footer-bottom a { color: var(--vert-pale); text-decoration: none; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.fade-in { animation: fadeUp .8s ease both; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  section { padding: 4rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   PAGES INTERNES — CSS SPECIFIQUE
   (extrait des balises <style> des pages)
   ══════════════════════════════════════ */

/* ── ACCUEIL (index.html) ── */
body.home { padding-top: 0; }

/* HERO ACCUEIL */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #e8f4ec 0%, #f5f0e8 50%, #eef7f2 100%);
}
.blob1 {
  position: absolute; top: -100px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(82,183,136,.15) 0%, transparent 70%);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  animation: blobMove 8s ease-in-out infinite alternate;
}
.blob2 {
  position: absolute; bottom: -80px; left: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(45,106,79,.1) 0%, transparent 70%);
  border-radius: 40% 60% 30% 70% / 60% 40% 50% 50%;
  animation: blobMove 10s ease-in-out infinite alternate-reverse;
}
@keyframes blobMove {
  from { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; }
  to   { border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%; }
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto;
  padding: 6rem 2rem 4rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(45,106,79,.1); color: var(--vert);
  font-size: .75rem; font-weight: 600; letter-spacing: .08em;
  padding: .4rem 1rem; border-radius: 100px; margin-bottom: 1.5rem;
}
.hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300; line-height: 1.15;
  color: var(--brun); margin-bottom: 1.2rem;
}
.hero-title em { font-style: italic; color: var(--vert); }
.hero-desc {
  color: var(--muted); font-size: 1.05rem;
  line-height: 1.75; margin-bottom: 2.5rem; max-width: 480px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual { position: relative; }
.hero-img-wrap {
  border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
  overflow: hidden; aspect-ratio: 1; max-width: 460px;
  margin: 0 auto; border: 4px solid rgba(82,183,136,.2);
}
.hero-img-placeholder {
  width: 100%; min-height: 400px;
  background: linear-gradient(135deg, #c8e6d0, #a8d5b8);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .8rem; color: var(--vert);
  font-size: .82rem; font-weight: 500; text-align: center; padding: 2rem;
}
.hero-stat-bubble {
  position: absolute; background: white;
  border-radius: 16px; padding: .9rem 1.2rem;
  box-shadow: 0 8px 30px rgba(45,106,79,.12);
  display: flex; align-items: center; gap: .8rem;
}
.hero-stat-bubble.b1 { bottom: 10%; left: -8%; }
.hero-stat-bubble.b2 { top: 15%; right: -3%; }
.bubble-num {
  font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 600; color: var(--vert); line-height: 1;
}
.bubble-label { font-size: .7rem; color: var(--muted); line-height: 1.3; }

/* CHIFFRES CLES */
#chiffres { background: var(--vert); padding: 4rem 2rem; }
.chiffres-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; text-align: center;
}
.chiffre-item {}
.chiffre-num {
  font-family: 'Fraunces', serif; font-size: 2.8rem;
  font-weight: 300; color: white; display: block; line-height: 1;
  margin-bottom: .4rem;
}
.chiffre-label { font-size: .8rem; color: rgba(255,255,255,.7); letter-spacing: .08em; }

/* MISSIONS */
#missions { background: white; }
.missions-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2rem; margin-top: 3rem;
}
.mission-card {
  background: var(--beige); border-radius: 24px;
  padding: 2.2rem; border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform .3s, box-shadow .3s;
}
.mission-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(45,106,79,.1); }
.mission-icon {
  width: 52px; height: 52px; background: rgba(45,106,79,.1);
  border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.mission-title { font-family: 'Fraunces', serif; font-size: 1.2rem; font-weight: 400; color: var(--brun); }
.mission-desc { font-size: .9rem; color: var(--muted); line-height: 1.7; }
.mission-link { color: var(--vert); font-size: .85rem; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: .3rem; margin-top: auto; }
.mission-link:hover { gap: .6rem; }

/* DON APERCU */
#don-apercu { background: var(--beige2); }
.don-apercu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.don-apercu-content p { color: var(--muted); font-size: .95rem; line-height: 1.8; margin-bottom: 1.5rem; }
.don-apercu-card {
  background: white; border-radius: 24px; padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(45,106,79,.1);
}
.progress-label { display: flex; justify-content: space-between; margin-bottom: .8rem; }
.progress-label span:first-child { font-size: .8rem; color: var(--muted); font-weight: 500; }
.progress-label span:last-child { font-size: .8rem; color: var(--vert); font-weight: 600; }
.progress-bar-wrap { background: var(--beige2); border-radius: 100px; height: 10px; overflow: hidden; margin-bottom: 1.5rem; }
.progress-bar-fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--vert), var(--vert-clair)); width: 0; transition: width 1.5s cubic-bezier(.4,0,.2,1); }
.progress-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-bottom: 2rem; text-align: center; }
.pstat-num { font-family: 'Fraunces', serif; font-size: 1.4rem; font-weight: 600; color: var(--vert); display: block; }
.pstat-label { font-size: .7rem; color: var(--muted); }

/* TEMOIGNAGES */
#temoignages { background: white; }
.temoignages-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 3rem; }
.temoignage-card {
  background: var(--beige); border-radius: 24px;
  padding: 2rem; border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 1.2rem;
}
.temoignage-quote { font-family: 'Fraunces', serif; font-size: 1rem; font-style: italic; color: var(--texte); line-height: 1.7; }
.temoignage-quote::before { content: '« '; color: var(--vert-clair); }
.temoignage-quote::after  { content: ' »'; color: var(--vert-clair); }
.temoignage-author { display: flex; align-items: center; gap: .8rem; }
.temoignage-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--vert-pale), var(--vert-clair));
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; font-weight: 700; color: var(--vert); flex-shrink: 0;
}
.temoignage-name { font-size: .88rem; font-weight: 600; color: var(--brun); }
.temoignage-role { font-size: .75rem; color: var(--muted); }

@media (max-width: 900px) {
  .hero-inner, .don-apercu-grid { grid-template-columns: 1fr; gap: 3rem; }
  .missions-grid, .temoignages-grid { grid-template-columns: 1fr; }
  .chiffres-grid { grid-template-columns: repeat(2,1fr); }
  .hero-stat-bubble { display: none; }
}

/* ── REJOINDRE (rejoindre.html) ── */
.roles-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.role-card {
  background: white; border-radius: 22px; padding: 2rem;
  border: 2px solid var(--border); cursor: pointer;
  transition: all .25s; text-align: center;
}
.role-card:hover, .role-card.selected {
  border-color: var(--vert);
  box-shadow: 0 8px 30px rgba(45,106,79,.12);
  transform: translateY(-3px);
}
.role-card.selected { background: rgba(45,106,79,.04); }
.role-icon { font-size: 2.2rem; margin-bottom: 1rem; display: block; }
.role-title { font-family: 'Fraunces', serif; font-size: 1.1rem; color: var(--brun); margin-bottom: .5rem; }
.role-desc { font-size: .82rem; color: var(--muted); line-height: 1.6; }
.role-badge {
  display: inline-block; margin-top: .8rem;
  background: rgba(45,106,79,.1); color: var(--vert);
  font-size: .68rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: .25rem .7rem; border-radius: 100px;
}

.adhesion-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: start; }
.adhesion-info p { color: var(--muted); font-size: .95rem; line-height: 1.8; margin-bottom: 1.2rem; }
.adhesion-steps { display: flex; flex-direction: column; gap: 1.2rem; margin: 2rem 0; }
.step { display: flex; gap: 1rem; align-items: flex-start; }
.step-num {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--vert); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; font-weight: 700; flex-shrink: 0;
}
.step-content strong { display: block; font-size: .9rem; color: var(--brun); margin-bottom: .2rem; }
.step-content span { font-size: .82rem; color: var(--muted); }

.adhesion-form {
  background: white; border-radius: 28px; padding: 2.5rem;
  box-shadow: 0 8px 50px rgba(45,106,79,.1);
}
.form-title { font-family: 'Fraunces', serif; font-size: 1.4rem; color: var(--brun); margin-bottom: .4rem; }
.form-subtitle { font-size: .85rem; color: var(--muted); margin-bottom: 2rem; }
.form-fields { display: flex; flex-direction: column; gap: 1rem; }

.disponibilites { display: grid; grid-template-columns: repeat(3,1fr); gap: .6rem; }
.dispo-btn {
  border: 2px solid var(--border); background: none; border-radius: 10px;
  padding: .6rem .4rem; font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .75rem; font-weight: 600; color: var(--muted);
  cursor: pointer; transition: all .2s; text-align: center;
}
.dispo-btn:hover, .dispo-btn.selected { background: var(--vert); color: white; border-color: var(--vert); }

.form-confirm {
  display: none; background: rgba(45,106,79,.08);
  border-radius: 14px; padding: 1.5rem; text-align: center; margin-top: 1rem;
}
.form-confirm h3 { font-family: 'Fraunces', serif; color: var(--vert); font-size: 1.2rem; margin-bottom: .5rem; }
.form-confirm p { font-size: .85rem; color: var(--muted); }

@media (max-width: 900px) {
  .roles-grid { grid-template-columns: 1fr; }
  .adhesion-layout { grid-template-columns: 1fr; gap: 3rem; }
  .disponibilites { grid-template-columns: repeat(2,1fr); }
}

/* ── CONTACT (contact.html) ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
.contact-info p { color: var(--muted); font-size: .95rem; line-height: 1.8; margin-bottom: 2rem; }
.contact-cards { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.contact-card {
  display: flex; align-items: center; gap: 1.2rem;
  background: white; border-radius: 16px; padding: 1.2rem 1.5rem;
  border: 1px solid var(--border); text-decoration: none;
  transition: border-color .2s, transform .2s;
}
.contact-card:hover { border-color: var(--vert-clair); transform: translateX(4px); }
.contact-card-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(45,106,79,.1);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0;
}
.contact-card-content strong { display: block; font-size: .88rem; color: var(--brun); margin-bottom: .2rem; }
.contact-card-content span { font-size: .8rem; color: var(--muted); }

.map-frame { border-radius: 20px; overflow: hidden; height: 280px; border: 1px solid var(--border); margin-top: 1.5rem; }
.map-frame iframe { width:100%; height:100%; border:none; filter: saturate(0.8) brightness(1.05); }

.contact-form-wrap {
  background: white; border-radius: 28px; padding: 2.5rem;
  box-shadow: 0 8px 50px rgba(45,106,79,.08);
}
.contact-form-title { font-family: 'Fraunces', serif; font-size: 1.4rem; color: var(--brun); margin-bottom: .4rem; }
.contact-form-subtitle { font-size: .85rem; color: var(--muted); margin-bottom: 2rem; }
.contact-form-fields { display: flex; flex-direction: column; gap: 1rem; }
.sujet-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: .6rem; margin-bottom: .5rem; }
.sujet-btn {
  border: 2px solid var(--border); background: none; border-radius: 10px;
  padding: .65rem .5rem; text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: .78rem; font-weight: 600;
  color: var(--muted); cursor: pointer; transition: all .2s;
}
.sujet-btn:hover, .sujet-btn.selected { background: var(--vert); color: white; border-color: var(--vert); }
.contact-confirm {
  display: none; background: rgba(45,106,79,.08);
  border-radius: 14px; padding: 1.5rem; text-align: center; margin-top: 1rem;
}
.contact-confirm h3 { font-family: 'Fraunces', serif; color: var(--vert); font-size: 1.2rem; margin-bottom: .5rem; }
.contact-confirm p { font-size: .85rem; color: var(--muted); }

/* FAQ */
#faq { background: var(--beige2); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 3rem; }
.faq-item {
  background: white; border-radius: 16px; border: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.3rem 1.5rem; cursor: pointer; gap: 1rem;
  font-size: .9rem; font-weight: 600; color: var(--brun);
  transition: background .2s;
}
.faq-question:hover { background: var(--beige); }
.faq-arrow { color: var(--vert); font-size: 1.1rem; transition: transform .2s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 1.5rem 1.3rem; font-size: .85rem; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .faq-grid { grid-template-columns: 1fr; }
  .sujet-grid { grid-template-columns: 1fr 1fr; }
}

/* ── DON (don.html) ── */
.don-layout {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 5rem; align-items: start; max-width: 1100px; margin: 0 auto;
}

.don-info h2 { margin-bottom: 1.2rem; }
.don-info p { color: var(--muted); font-size: .95rem; line-height: 1.8; margin-bottom: 1.5rem; }

.impact-cards { display: flex; flex-direction: column; gap: 1rem; margin: 2rem 0; }
.impact-card {
  display: flex; align-items: center; gap: 1.2rem;
  background: white; border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem; border: 1px solid var(--border);
  transition: border-color .2s;
}
.impact-card:hover { border-color: var(--vert-clair); }
.impact-montant {
  font-family: 'Fraunces', serif; font-size: 1.6rem;
  font-weight: 600; color: var(--vert);
  min-width: 60px; text-align: center;
}
.impact-texte strong { display: block; font-size: .9rem; color: var(--brun); margin-bottom: .2rem; }
.impact-texte span { font-size: .8rem; color: var(--muted); }

.don-garanties { display: flex; flex-direction: column; gap: .8rem; margin-top: 2rem; }
.garantie { display: flex; align-items: center; gap: .8rem; font-size: .85rem; color: var(--muted); }
.garantie-icon { color: var(--vert); font-size: 1rem; flex-shrink: 0; }

.don-form-card {
  background: white; border-radius: 28px; padding: 2.5rem;
  box-shadow: 0 8px 50px rgba(45,106,79,.12);
  position: sticky; top: 100px;
}
.don-form-title {
  font-family: 'Fraunces', serif; font-size: 1.4rem;
  font-weight: 400; color: var(--brun); margin-bottom: .4rem;
}
.don-form-subtitle { font-size: .85rem; color: var(--muted); margin-bottom: 2rem; }

.don-type-tabs {
  display: flex; background: var(--beige2); border-radius: 100px;
  padding: 4px; margin-bottom: 1.8rem;
}
.don-type-tab {
  flex: 1; text-align: center; padding: .6rem;
  border-radius: 100px; border: none; background: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .82rem; font-weight: 600; color: var(--muted);
  cursor: pointer; transition: all .2s;
}
.don-type-tab.active { background: white; color: var(--vert); box-shadow: 0 2px 8px rgba(0,0,0,.08); }

.montants-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: .7rem; margin-bottom: 1.5rem; }
.montant-btn {
  border: 2px solid var(--border); background: none; border-radius: 14px;
  padding: .9rem .5rem; text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif; cursor: pointer; transition: all .2s;
}
.montant-btn:hover, .montant-btn.selected { background: var(--vert); border-color: var(--vert); color: white; }
.montant-btn .m-prix { font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 600; display: block; color: var(--vert); }
.montant-btn .m-label { font-size: .65rem; color: var(--muted); line-height: 1.2; }
.montant-btn.selected .m-prix,
.montant-btn.selected .m-label,
.montant-btn:hover .m-prix,
.montant-btn:hover .m-label { color: white; }

.don-custom-input {
  display: flex; align-items: center; gap: .8rem;
  background: var(--beige); border: 2px solid var(--border);
  border-radius: 14px; padding: .85rem 1.1rem;
  margin-bottom: 1.5rem; transition: border-color .2s;
}
.don-custom-input:focus-within { border-color: var(--vert); }
.don-custom-input span { font-size: .85rem; color: var(--muted); }
.don-custom-input input { flex: 1; background: none; border: none; outline: none; font-family: 'Plus Jakarta Sans', sans-serif; font-size: .95rem; color: var(--texte); }

.don-form-fields { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }

.btn-don-submit {
  width: 100%; background: var(--vert); color: white; border: none;
  border-radius: 100px; padding: 1.1rem; font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .95rem; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  transition: background .25s, transform .2s, box-shadow .25s;
  box-shadow: 0 4px 20px rgba(45,106,79,.3);
}
.btn-don-submit:hover { background: #235c42; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(45,106,79,.4); }

.don-secure { font-size: .72rem; color: var(--muted); text-align: center; margin-top: .8rem; }
.don-confirm {
  display: none; background: rgba(45,106,79,.08); border-radius: 14px;
  padding: 1.5rem; text-align: center; margin-top: 1.2rem;
}
.don-confirm h3 { font-family: 'Fraunces', serif; color: var(--vert); font-size: 1.2rem; margin-bottom: .5rem; }
.don-confirm p { font-size: .85rem; color: var(--muted); }

.progress-section { background: var(--beige2); padding: 4rem 2rem; }
.progress-wrap { max-width: 700px; margin: 0 auto; text-align: center; }
.progress-wrap h2 { font-family: 'Fraunces', serif; font-size: 1.8rem; color: var(--brun); margin-bottom: .8rem; }
.progress-wrap p { color: var(--muted); font-size: .9rem; margin-bottom: 2rem; }
.big-progress-bar {
  background: white; border-radius: 100px; height: 18px;
  overflow: hidden; border: 1px solid var(--border); margin-bottom: 1rem;
}
.big-progress-fill {
  height: 100%; border-radius: 100px;
  background: linear-gradient(90deg, var(--vert), var(--vert-clair));
  width: 0; transition: width 1.5s cubic-bezier(.4,0,.2,1);
}
.progress-nums { display: flex; justify-content: space-between; font-size: .82rem; color: var(--muted); }
.progress-nums strong { color: var(--vert); }

@media (max-width: 900px) {
  .don-layout { grid-template-columns: 1fr; gap: 3rem; }
  .don-form-card { position: static; }
}

/* ── ACTIONS (actions.html) ── */
.filters {
  display: flex; gap: .8rem; flex-wrap: wrap;
  justify-content: center; margin: 2.5rem 0;
}
.filter-btn {
  border: 2px solid var(--border); background: none;
  border-radius: 100px; padding: .55rem 1.3rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .82rem; font-weight: 600; color: var(--muted);
  cursor: pointer; transition: all .2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--vert); color: white; border-color: var(--vert);
}
.actions-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2rem; margin-top: 1rem;
}
.action-card {
  background: white; border-radius: 20px;
  border: 1px solid var(--border); overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.action-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(45,106,79,.12); }
.action-img { height: 210px; overflow: hidden; position: relative; flex-shrink: 0; }
.action-img img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .4s; }
.action-card:hover .action-img img { transform: scale(1.05); }
.action-cat-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: white; border-radius: 100px;
  padding: .3rem .8rem; font-size: .68rem;
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}
.action-body { padding: 1.5rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.action-title { font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 400; color: var(--brun); line-height: 1.3; }
.action-desc { font-size: .85rem; color: var(--muted); line-height: 1.65; flex: 1; }
.action-meta { display: flex; justify-content: space-between; align-items: center; padding-top: .8rem; border-top: 1px solid var(--border); margin-top: auto; }
.action-date { font-size: .75rem; color: var(--muted); }
.action-lire { color: var(--vert); font-weight: 600; font-size: .82rem; text-decoration: none; display: flex; align-items: center; gap: .3rem; transition: gap .2s; }
.action-lire:hover { gap: .6rem; }

/* Couleurs par catégorie */
.cat-reforestation { color: var(--vert); }
.cat-education { color: #d97706; }
.cat-transition { color: #7c3aed; }

/* Article featured */
.action-card.featured {
  grid-column: span 2;
}
.action-card.featured .action-img { height: 280px; }
.action-card.featured .action-title { font-size: 1.35rem; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: .5rem; margin-top: 4rem; }
.page-btn {
  width: 40px; height: 40px; border-radius: 10px;
  border: 2px solid var(--border); background: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .85rem; font-weight: 600; color: var(--muted);
  cursor: pointer; transition: all .2s; display: flex; align-items: center; justify-content: center;
}
.page-btn.active, .page-btn:hover { background: var(--vert); color: white; border-color: var(--vert); }

@media (max-width: 900px) {
  .actions-grid { grid-template-columns: 1fr; }
  .action-card.featured { grid-column: span 1; }
}

/* ── PETITES INTERACTIONS GLOBALES ── */
.btn-vert.is-pressed,
.nav-don.is-pressed,
.don-flottant.is-pressed {
  transform: translateY(1px) scale(.97);
  box-shadow: 0 2px 10px rgba(45,106,79,.25);
}
