/* ==========================================================================
   La Ferme des Clautres — feuille de style principale
   Direction : design nature/jardin, palette verte, cartes arrondies,
   hero photographique, navigation pilule.
   ========================================================================== */

:root {
  /* Palette verte nature */
  --c-green:        #2e8b3a;
  --c-green-dark:   #1e6a28;
  --c-green-deep:   #14481b;
  --c-green-soft:   #e9f5ea;
  --c-green-bg:     #f5faf5;
  --c-leaf:         #4caf50;

  /* Neutres */
  --c-ink:          #1a2620;
  --c-ink-soft:     #46564d;
  --c-muted:        #7a8a80;
  --c-line:         #e4ede5;
  --c-cream:        #fbfbf8;
  --c-white:        #ffffff;
  --c-dark-bg:      #0f2014;

  /* Accent discret */
  --c-gold:         #c89b2a;

  /* Effets */
  --shadow-soft:    0 14px 36px rgba(20, 72, 27, 0.08);
  --shadow-hover:   0 20px 48px rgba(20, 72, 27, 0.14);
  --shadow-card:    0 10px 30px rgba(20, 72, 27, 0.06);
  --radius-sm:      10px;
  --radius:         16px;
  --radius-lg:      24px;
  --radius-xl:      32px;
  --radius-pill:    999px;

  /* Mise en page */
  --container:      1180px;
  --container-narrow: 820px;

  /* Typographie — titres sans-serif gras (ref: exemple jardin) */
  --font-heading: "DM Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-sans:    "DM Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Reset / base
   ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--c-ink-soft);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-green); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--c-green-dark); }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--c-ink);
  line-height: 1.15;
  margin: 0 0 .6em;
  font-weight: 800;
  letter-spacing: -0.8px;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.4rem; font-weight: 700; }
h4 { font-size: 1.15rem; font-weight: 700; }
p  { margin: 0 0 1.1em; }
ul, ol { padding-left: 1.2em; margin: 0 0 1.1em; }
li  { margin-bottom: .35em; }
blockquote {
  margin: 1.8em 0;
  padding: 1.1em 1.6em;
  border-left: 4px solid var(--c-green);
  background: var(--c-green-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--c-ink);
}

/* Layout
   ------------------------------------------------------------ */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.container--narrow { max-width: var(--container-narrow); }
.section { padding: 100px 0; position: relative; }
.section--tight { padding: 60px 0; }
.section--soft { background: var(--c-green-bg); }
.section--dark {
  background-color: var(--c-dark-bg);
  background-image: linear-gradient(rgba(15, 32, 20, 0.85), rgba(15, 32, 20, 0.88)),
                    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='800' height='600'><rect fill='%231e6a28' width='800' height='600'/><circle fill='%23143318' cx='160' cy='120' r='90'/><circle fill='%23143318' cx='640' cy='380' r='140'/></svg>");
  background-size: cover; background-position: center;
  color: var(--c-cream);
}
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: #c9d5cc; }

.grid { display: grid; gap: 28px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.section__eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 600;
  color: var(--c-green);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 14px;
  position: relative;
  padding-left: 28px;
}
.section__eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 18px; height: 2px;
  background: var(--c-green);
  transform: translateY(-50%);
}
.section__title { max-width: 680px; margin-bottom: 18px; }
.section__intro { max-width: 640px; color: var(--c-ink-soft); font-size: 1.05rem; margin-bottom: 40px; }
.section__head--center { text-align: center; margin: 0 auto 56px; }
.section__head--center .section__eyebrow { padding-left: 0; }
.section__head--center .section__eyebrow::before { display: none; }
.section__head--center .section__title,
.section__head--center .section__intro { margin-left: auto; margin-right: auto; }

/* Boutons
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: .96rem;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: var(--font-sans);
}
.btn--primary { background: var(--c-green); color: #fff; }
.btn--primary:hover { background: var(--c-green-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn--outline:hover { background: #fff; color: var(--c-green-dark); }
.btn--outline-dark { background: transparent; color: var(--c-green); border-color: var(--c-green); }
.btn--outline-dark:hover { background: var(--c-green); color: #fff; }
.btn--small { padding: 11px 22px; font-size: .88rem; }

/* Header / navigation
   ------------------------------------------------------------ */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
}
.site-header--solid {
  position: sticky;
  background: #fff;
  border-bottom: 1px solid var(--c-line);
  padding: 14px 0;
  box-shadow: 0 2px 14px rgba(20,72,27,0.04);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  background: #fff;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-card);
}
.site-header--solid .brand { box-shadow: none; padding: 4px 0; background: transparent; }
.brand__mark {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--c-green-soft);
  display: grid; place-items: center;
  color: var(--c-green);
  flex-shrink: 0;
}
.brand__mark svg { width: 22px; height: 22px; }
.brand__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--c-ink);
  line-height: 1.1;
}

.nav-wrap {
  background: #fff;
  border-radius: var(--radius-pill);
  padding: 8px 14px 8px 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-card);
}
.site-header--solid .nav-wrap { box-shadow: none; padding: 0; background: transparent; gap: 28px; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-size: .94rem;
  color: var(--c-ink);
  font-weight: 500;
  padding: 8px 2px;
  position: relative;
}
.nav a.active,
.nav a:hover { color: var(--c-green); }
.nav a.active::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--c-green);
  border-radius: 2px;
}

.nav-toggle {
  display: none;
  background: #fff; border: none;
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  padding: 14px;
  box-shadow: var(--shadow-card);
}
.site-header--solid .nav-toggle { box-shadow: none; background: var(--c-green-soft); }
.nav-toggle span {
  display: block;
  height: 2px; background: var(--c-ink);
  margin: 4px 0;
  transition: transform .25s ease, opacity .25s ease;
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-wrap { display: none; background: transparent; box-shadow: none; padding: 0; }
  .nav {
    position: absolute;
    top: calc(100% + 12px); left: 24px; right: 24px;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 14px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: transform .25s ease, opacity .25s ease, visibility .25s ease;
  }
  .nav--open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--c-line); width: 100%; }
  .nav a:last-child { border-bottom: none; }
}

/* Hero photographique
   ------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 680px;
  padding: 160px 0 220px;
  color: #fff;
  background-color: #2b4a2e;
  background-image: linear-gradient(rgba(15, 32, 20, 0.55), rgba(15, 32, 20, 0.55)),
                    url("../img/hero.jpg");
  background-size: cover;
  background-position: center;
  text-align: center;
  overflow: hidden;
}
.hero__inner { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 24px;
  opacity: .95;
}
.hero__eyebrow svg { width: 22px; height: 22px; color: #9edca4; }
.hero__title {
  color: #fff;
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  margin-bottom: 22px;
  line-height: 1.1;
  font-weight: 700;
}
.hero__lead {
  max-width: 640px;
  margin: 0 auto 38px;
  font-size: 1.12rem;
  color: #e5ece6;
  line-height: 1.7;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* Vague sous le hero */
.hero__wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%; height: 90px;
  pointer-events: none;
}
.hero__wave svg { width: 100%; height: 100%; display: block; }

/* Header simple (pages internes sans photo)
   ------------------------------------------------------------ */
.page-header {
  background: var(--c-green-bg);
  padding: 150px 0 80px;
  position: relative;
  border-bottom: 1px solid var(--c-line);
}
.page-header__inner { max-width: 820px; }
.page-header__title { margin-bottom: 18px; }
.page-header__lead { font-size: 1.1rem; color: var(--c-ink-soft); }
.breadcrumb {
  font-size: .88rem;
  color: var(--c-muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--c-green); }
.breadcrumb span { margin: 0 .5em; color: var(--c-line); }

/* Bloc "about" / deux colonnes avec photos arrondies
   ------------------------------------------------------------ */
.split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.split--reverse { grid-template-columns: 1.15fr 1fr; }
.split--reverse .split__media { order: 2; }
@media (max-width: 900px) {
  .split, .split--reverse { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse .split__media { order: 0; }
}

.media-stack {
  position: relative;
  min-height: 460px;
}
.media-stack__img {
  position: absolute;
  border-radius: 220px 220px 24px 24px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  background: var(--c-green-soft);
}
.media-stack__img--1 {
  width: 48%; height: 78%;
  left: 0; top: 0;
}
.media-stack__img--2 {
  width: 48%; height: 72%;
  right: 0; bottom: 0;
}
.media-stack__img img { width: 100%; height: 100%; object-fit: cover; }
.media-stack__badge {
  position: absolute;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: #fff;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: grid; place-items: center;
  box-shadow: var(--shadow-hover);
  padding: 16px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: .82rem;
  color: var(--c-green-dark);
  line-height: 1.2;
  z-index: 3;
}
@media (max-width: 900px) { .media-stack { min-height: 380px; } }

/* Listes à coches vertes */
.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 30px;
}
.check-list--single { grid-template-columns: 1fr; }
.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--c-ink);
  font-weight: 500;
  font-size: .98rem;
  margin-bottom: 0;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--c-green-soft);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 7px; top: 8px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--c-green);
  border-bottom: 2px solid var(--c-green);
  transform: rotate(-45deg);
}
@media (max-width: 640px) { .check-list { grid-template-columns: 1fr; } }

/* Cartes de service
   ------------------------------------------------------------ */
.feature-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 34px 28px 28px;
  box-shadow: var(--shadow-card);
  border-bottom: 4px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--c-green);
}
.feature-card__icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--c-green-soft);
  display: grid; place-items: center;
  margin-bottom: 22px;
  color: var(--c-green);
}
.feature-card__icon svg { width: 32px; height: 32px; }
.feature-card h3 { margin-bottom: 12px; font-size: 1.25rem; }
.feature-card p { color: var(--c-ink-soft); font-size: .96rem; margin-bottom: 20px; flex-grow: 1; }
.feature-card__more {
  font-weight: 600;
  font-size: .9rem;
  color: var(--c-green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: .8px;
}
.feature-card__more::after { content: "→"; transition: transform .2s ease; }
.feature-card:hover .feature-card__more::after { transform: translateX(4px); }

/* Chiffres-clés (section foncée) */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat {
  padding: 26px 18px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
}
.stat__num {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: #9edca4;
  line-height: 1;
  margin-bottom: 8px;
}
.stat__label { color: #c9d5cc; font-size: .92rem; }

/* Article / contenu long
   ------------------------------------------------------------ */
.article-body { padding: 70px 0 90px; }
.article-body h2 {
  margin-top: 2em;
  padding-top: .2em;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
}
.article-body h3 {
  margin-top: 1.6em;
  color: var(--c-green-dark);
  font-size: 1.3rem;
}
.article-body p { font-size: 1.06rem; }
.article-body ul li, .article-body ol li { margin-bottom: .5em; }
.article-body a { color: var(--c-green); border-bottom: 1px dotted var(--c-green); }
.article-body a:hover { border-bottom-style: solid; }

/* TOC */
.toc {
  background: var(--c-green-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 26px 32px;
  margin: 38px 0;
}
.toc__title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--c-green-dark);
  margin: 0 0 14px;
}
.toc ol { margin: 0; padding-left: 1.3em; }
.toc li { margin-bottom: 8px; }
.toc a { border-bottom: none; }

/* Infobox */
.info-box {
  background: var(--c-green-soft);
  border-left: 4px solid var(--c-green);
  padding: 24px 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 34px 0;
}
.info-box__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-green-deep);
  margin: 0 0 10px;
}
.info-box p:last-child { margin-bottom: 0; }

/* Tableau léger */
.table-wrap { overflow-x: auto; margin: 28px 0; border-radius: var(--radius); }
table.data {
  width: 100%;
  border-collapse: collapse;
  font-size: .96rem;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
}
table.data th, table.data td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--c-line);
}
table.data th {
  background: var(--c-green-bg);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--c-green-deep);
}
table.data tr:last-child td { border-bottom: none; }

/* FAQ */
.faq details {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 20px 28px;
  margin-bottom: 14px;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.faq details[open] { box-shadow: var(--shadow-card); border-color: var(--c-green); }
.faq summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--c-ink);
  list-style: none;
  position: relative;
  padding-right: 34px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  color: var(--c-green);
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 400;
  transition: transform .25s ease;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { margin-top: 14px; color: var(--c-ink-soft); }

/* Cartes liste articles/sommaire */
.post-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease;
  border: 1px solid var(--c-line);
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.post-card__tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--c-green-soft);
  color: var(--c-green-dark);
  border-radius: var(--radius-pill);
  font-size: .76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 14px;
}
.post-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.post-card p { color: var(--c-ink-soft); font-size: .95rem; margin-bottom: 0; }

/* Image cards (dossiers)
   ------------------------------------------------------------ */
.img-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--c-line);
  transition: transform .25s ease, box-shadow .25s ease;
  text-decoration: none;
  color: inherit;
}
.img-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.img-card__visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.img-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.img-card:hover .img-card__visual img {
  transform: scale(1.05);
}
.img-card__body {
  padding: 24px 26px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.img-card__tag {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 12px;
  background: var(--c-green-soft);
  color: var(--c-green-dark);
  border-radius: var(--radius-pill);
  font-size: .74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 12px;
}
.img-card h3 {
  font-size: 1.18rem;
  margin-bottom: 8px;
  color: var(--c-ink);
}
.img-card p {
  color: var(--c-ink-soft);
  font-size: .93rem;
  margin-bottom: 0;
  flex: 1;
}

/* Footer
   ------------------------------------------------------------ */
.site-footer {
  background: var(--c-dark-bg);
  color: #b9c8be;
  padding: 80px 0 30px;
  margin-top: 0;
}
.site-footer a { color: #cfe0d3; }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer__brand-mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(158, 220, 164, 0.15);
  display: grid; place-items: center;
  color: #9edca4;
}
.footer__brand-mark svg { width: 22px; height: 22px; }
.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: #fff;
  font-weight: 700;
}
.footer__about p { color: #9aab9f; font-size: .95rem; max-width: 340px; margin-bottom: 18px; }
.footer__title {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1.05rem;
  margin: 0 0 20px;
  font-weight: 700;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 12px; }
.footer-grid a { font-size: .93rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: .85rem;
  color: #7a8a80;
}

/* CTA final */
.cta-band {
  background: var(--c-green);
  color: #fff;
  padding: 70px 0;
  text-align: center;
}
.cta-band h2 { color: #fff; max-width: 640px; margin: 0 auto 14px; }
.cta-band p { max-width: 560px; margin: 0 auto 28px; color: #e3f0e4; }
.cta-band .btn--primary { background: #fff; color: var(--c-green-dark); }
.cta-band .btn--primary:hover { background: var(--c-green-soft); }

/* Divers */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
hr.divider { border: none; height: 1px; background: var(--c-line); margin: 60px 0; }

/* Feuille d'accessibilité */
:focus-visible { outline: 3px solid var(--c-leaf); outline-offset: 3px; border-radius: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
