/* APAS — styles de base */
:root {
  --green: #0e7a3e;
  --green-2: #2ca66a;
  --green-100: #e6f4ec;
  --dark: #133a2a;
  --text: #1e293b;
  --bg: #ffffff;
  --card: #ffffff;
  --muted: #64748b;
  --radius: 16px;
  --shadow: 0 10px 25px rgba(0,0,0,0.08);
}

* { box-sizing: border-box; }
html:focus-within { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }

.container { width: min(1100px, 92%); margin: 0 auto; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #eef2f4;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--dark); }
.logo { width: 56px; height: 56px; object-fit: cover; border-radius: 14px; box-shadow: var(--shadow); }
.logo.small { width: 42px; height: 42px; box-shadow: none; }
.brand-name { font-weight: 800; font-size: 1.3rem; letter-spacing: 0.2px; }
.brand-tagline { font-size: 0.85rem; color: var(--muted); display: block; margin-top: -2px; }

/* Nav */
.nav-toggle {
  display: none;
  background: var(--green);
  color: white;
  border: 0; padding: 10px 12px; border-radius: 10px;
}
.nav-menu { list-style: none; display: flex; gap: 14px; padding: 0; margin: 0; }
.nav-menu a {
  text-decoration: none; color: var(--dark);
  padding: 10px 12px; border-radius: 12px;
}
.nav-menu a:hover { background: var(--green-100); }

/* Hero */
.hero {
  background:
    radial-gradient(60% 60% at 10% 10%, rgba(44,166,106,0.15), transparent 60%),
    radial-gradient(60% 60% at 90% 10%, rgba(14,122,62,0.12), transparent 60%),
    linear-gradient(0deg, #ffffff, #ffffff);
  padding: 56px 0 20px;
}
.hero-inner { display: grid; gap: 32px; align-items: center; grid-template-columns: 1.2fr 1fr; }
.hero-text .strap { font-size: 1.1rem; color: var(--dark); }
.hero-cta { display: flex; gap: 12px; margin-top: 16px; }
.hero-media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.quote {
  font-size: 1.6rem; font-weight: 700; color: var(--dark);
  border-left: 6px solid var(--green); padding-left: 16px;
}
.hero-quotes {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 22px 0 0;
}
.hero-quotes blockquote { margin: 0; background: var(--green-100); padding: 14px 16px; border-radius: 12px; }

/* Sections */
.section { padding: 60px 0; }
.section.alt { background: #f8fafc; }
.section h2 { font-size: 2rem; margin: 0 0 16px; color: var(--dark); }

.grid-2 { display: grid; gap: 24px; grid-template-columns: 1fr 1fr; }
.grid-3 { display: grid; gap: 24px; grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--card);
  border: 1px solid #edf1f4;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}
.media-card img { border-radius: 12px; }
.notice { background: #f1fff6; border-color: #d9fbe4; }

.icon-badge {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; font-weight: 800;
  background: var(--green); color: white; margin-bottom: 12px;
}

/* Buttons */
.btn {
  display: inline-block; text-decoration: none; cursor: pointer;
  padding: 10px 16px; border-radius: 12px; font-weight: 700; border: 2px solid transparent;
}
.btn-primary { background: var(--green); color: white; }
.btn-primary:hover { filter: brightness(0.95); }
.btn-ghost { background: transparent; color: var(--green); border-color: var(--green); }
.btn-ghost:hover { background: var(--green-100); }

/* Lists & forms */
ul { padding-left: 18px; }
.contact .contact-list { list-style: none; padding: 0; margin: 0 0 10px; }
.contact .contact-list li { margin: 8px 0; }
.form label { display: grid; gap: 6px; margin-bottom: 10px; }
.form input, .form textarea {
  width: 100%; padding: 10px 12px; border-radius: 10px;
  border: 1px solid #d3dde6; outline: none;
}
.form input:focus, .form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(44,166,106,0.15); }

/* Footer */
.site-footer { background: var(--dark); color: #e5f4ea; }
.footer-inner {
  display: grid; align-items: center;
  grid-template-columns: 1fr auto 1fr; gap: 14px;
  padding: 20px 0;
}
.site-footer a { color: #cdeede; text-decoration: none; margin-right: 12px; }
.copy { text-align: right; color: #bde6d4; }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .copy { text-align: center; }
  .nav-toggle { display: inline-block; }
  .nav-menu { display: none; position: absolute; right: 4%; top: 64px; background: #ffffff; padding: 10px; border-radius: 12px; box-shadow: var(--shadow); }
  .nav-menu.show { display: grid; }
}

/* --- AJOUTS MINIMAUX --- */
.list-clean{list-style:none;margin:0;padding:0}
.list-clean li{margin:.35rem 0;break-inside:avoid}
.cols-2{columns:2;column-gap:2rem}
@media (max-width:800px){.cols-2{columns:1}}
