/* ============================================================
   GWADA DIGITAL — Feuille de style
   Landing page unique. Mobile d'abord (375px) — paliers 640px et 1024px.
   ============================================================ */

/* ===== 1. Polices ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@1,400;1,500;1,600;1,700&family=Sora:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* ===== 2. Variables ===== */
:root {
  /* Couleurs de marque — identiques au site d'origine */
  --color-forest: #2F5D3E;
  --color-forest-dark: #1E4029;
  --color-forest-light: #EAF3ED;
  --color-accent: #22C55E;
  --color-accent-dark: #16A34A;

  --color-ink: #14201A;
  --color-ink-soft: #48564C;
  --color-bg: #FFFFFF;
  --color-bg-alt: #FFFFFF;
  --color-white: #FFFFFF;
  --color-line: rgba(20, 40, 28, 0.12);

  --font-heading: 'Sora', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;

  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4.5rem;
  --space-3xl: 6.5rem;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(20, 30, 24, 0.06), 0 1px 1px rgba(20, 30, 24, 0.05);
  --shadow-md: 0 10px 30px rgba(20, 30, 24, 0.09);
  --shadow-lg: 0 24px 55px rgba(20, 30, 24, 0.16);
  --shadow-glow: 0 20px 45px rgba(34, 197, 94, 0.28);

  --container: 1180px;
  --header-height: 64px;
}

/* ===== 3. Réinitialisation ===== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  overflow-x: hidden;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
svg { flex-shrink: 0; }

h1, h2, h3, h4 {
  color: var(--color-ink);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  line-height: 1.15;
}

h1, h2 { line-height: 1.1; }

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }

/* ===== 4. Accessibilité ===== */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; top: -60px; left: var(--space-sm); z-index: 1000;
  background: var(--color-forest); color: var(--color-white);
  padding: 0.75rem 1.25rem; border-radius: var(--radius-sm);
  font-weight: 600; transition: top 0.2s ease;
}
.skip-link:focus { top: var(--space-sm); }

:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===== 5. Mise en page générale ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-sm);
}
@media (min-width: 640px) {
  .container { padding-inline: var(--space-lg); }
}

section { padding-block: var(--space-2xl); }
.section-alt { background: var(--color-bg-alt); }

.section-head { max-width: 640px; margin-bottom: var(--space-xl); }
.section-head.center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--color-forest);
  background: var(--color-forest-light);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-sm);
}

h2 { font-size: clamp(1.9rem, 4.5vw, 2.9rem); margin-bottom: var(--space-sm); }
.section-head p { color: var(--color-ink-soft); font-size: 1.05rem; }

/* ===== 6. Apparition progressive au défilement ===== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===== 7. Boutons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem; padding: 0.9rem 1.6rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading); font-weight: 700; font-size: 0.98rem;
  white-space: nowrap; transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn-primary { background: var(--color-forest); color: var(--color-white); box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--color-forest-dark); transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.btn-secondary { background: var(--color-white); color: var(--color-forest-dark); border: 2px solid var(--color-forest); }
.btn-secondary:hover { background: var(--color-forest); color: var(--color-white); transform: translateY(-3px); box-shadow: var(--shadow-md); }

.btn-lg { padding: 1.1rem 2rem; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-icon { width: 20px; height: 20px; }

/* ===== 8. En-tête minimal, fixe ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: var(--header-height);
  display: flex; align-items: center;
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(8px);
  border-top: 3px solid var(--color-ink);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--color-line); box-shadow: var(--shadow-sm); }

.site-header .container { display: flex; align-items: center; justify-content: space-between; }

.logo img { height: 30px; width: auto; }
@media (min-width: 1024px) { .logo img { height: 34px; } }

/* En-tête minimal : petit repère + nom en poids normal, pas de logo lourd */
.logo-text {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem;
  color: var(--color-ink);
}
.logo-text svg { width: 22px; height: 22px; color: var(--color-forest); }

.header-icons { display: flex; align-items: center; gap: var(--space-md); }
.header-icons a { color: var(--color-ink-soft); transition: color 0.2s ease; display: flex; }
.header-icons a:hover { color: var(--color-forest); }
.header-icons svg { width: 21px; height: 21px; }

/* ===== 9. Hero ===== */
.hero {
  padding-top: calc(var(--header-height) + var(--space-2xl));
  padding-bottom: var(--space-2xl);
  background:
    radial-gradient(circle at 85% 0%, rgba(34, 197, 94, 0.14), transparent 55%),
    radial-gradient(circle at 0% 100%, rgba(47, 93, 62, 0.10), transparent 45%),
    var(--color-bg);
}

.hero .container { max-width: 920px; text-align: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--color-white); border: 1px solid var(--color-line);
  padding: 0.5rem 1rem; border-radius: var(--radius-pill);
  font-size: 0.85rem; font-weight: 600; color: var(--color-forest-dark);
  box-shadow: var(--shadow-sm); margin-bottom: var(--space-md);
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
}

.hero h1 { font-size: clamp(2.1rem, 5.4vw, 3.3rem); margin-bottom: var(--space-md); }

/* Soulignement tracé à la main sous la phrase clé, comme la référence */
.hero-highlight {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  padding-bottom: 0.12em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='12' viewBox='0 0 28 12'%3E%3Cpath d='M0 7 Q7 1 14 7 T28 7' stroke='%2322C55E' stroke-width='2.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: 0 100%;
  background-size: 28px 12px;
}

.hero-lede {
  font-size: 1.1rem; color: var(--color-ink-soft);
  max-width: 52ch; margin-inline: auto; margin-bottom: var(--space-lg);
}

.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-sm); }
.hero-note { margin-top: var(--space-sm); font-size: 0.88rem; color: var(--color-ink-soft); }

/* ===== 10. Preuve : chiffres en ligne, dans le hero, sans bandeau coloré ===== */
.hero-stats {
  display: flex; flex-wrap: wrap; justify-content: center;
  align-items: baseline; gap: var(--space-xs) var(--space-lg);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-line);
}
.hero-stats > div {
  display: inline-flex; align-items: baseline; gap: 0.4rem;
  position: relative;
}
.hero-stats > div + div::before {
  content: "·";
  position: absolute; left: calc(-1 * var(--space-lg) / 2);
  transform: translateX(-50%);
  color: var(--color-line);
  display: none;
}
@media (min-width: 640px) {
  .hero-stats > div + div::before { display: block; }
}
.hero-stats strong {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 1.6rem; color: var(--color-ink);
}
.hero-stats span { font-size: 0.9rem; color: var(--color-ink-soft); }

/* ===== 11. Portfolio ===== */
.filters { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: var(--space-lg); }
.filter-btn {
  padding: 0.55rem 1.1rem; border-radius: var(--radius-pill);
  background: var(--color-white); border: 1px solid var(--color-line);
  font-weight: 600; font-size: 0.9rem; color: var(--color-ink-soft);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.filter-btn:hover { border-color: var(--color-forest); color: var(--color-forest-dark); }
.filter-btn.is-active { background: var(--color-accent); border-color: var(--color-accent); color: var(--color-forest-dark); }

.project-grid { display: grid; gap: var(--space-lg); grid-template-columns: 1fr; }
@media (min-width: 640px) { .project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .project-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.project-empty {
  display: none; text-align: center; padding: var(--space-2xl) var(--space-sm);
  color: var(--color-ink-soft); border: 2px dashed var(--color-line); border-radius: var(--radius-lg);
}
.project-empty.is-visible { display: block; }

/* Carte projet = cadre de navigateur */
.project-card {
  background: var(--color-white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.project-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg), var(--shadow-glow); }

.project-card__frame { display: block; color: inherit; }
.project-card__topbar {
  display: flex; align-items: center; gap: 0.4rem; padding: 0.7rem 0.9rem;
  background: var(--color-bg-alt); border-bottom: 1px solid var(--color-line);
}
.project-card__topbar .dot { width: 9px; height: 9px; border-radius: 50%; }
.dot--red { background: #F04747; } .dot--yellow { background: #F5B93E; } .dot--green { background: #34C368; }

.project-card__url {
  margin-left: 0.6rem; font-size: 0.78rem; color: var(--color-ink-soft);
  background: var(--color-white); border: 1px solid var(--color-line);
  border-radius: var(--radius-pill); padding: 0.15rem 0.7rem;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; flex: 1;
}

.project-card__media { position: relative; overflow: hidden; aspect-ratio: 4 / 3; background: var(--color-bg-alt); }
.project-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.5s ease; }
.project-card:hover .project-card__media img { transform: scale(1.06); }

.project-card__overlay {
  position: absolute; left: var(--space-sm); right: var(--space-sm); bottom: -60px;
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  background: var(--color-forest); color: var(--color-white); font-weight: 700; font-size: 0.9rem;
  padding: 0.65rem 1rem; border-radius: var(--radius-pill); box-shadow: var(--shadow-md);
  transition: bottom 0.35s ease;
}
.project-card:hover .project-card__overlay, .project-card:focus-within .project-card__overlay { bottom: var(--space-sm); }

.project-card__body { padding: var(--space-md); display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.project-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.project-card__meta h3 { font-size: 1.15rem; }

.tag {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  background: var(--color-forest-light); color: var(--color-forest-dark);
  padding: 0.3rem 0.65rem; border-radius: var(--radius-pill); white-space: nowrap;
}

.project-card__body p { color: var(--color-ink-soft); font-size: 0.95rem; flex: 1; }
.project-link { font-weight: 700; color: var(--color-forest-dark); font-size: 0.92rem; display: inline-flex; align-items: center; gap: 0.3rem; margin-top: 0.3rem; }
.project-link:hover { text-decoration: underline; }

/* Carte "site à venir" — placeholder en attendant les vraies réalisations */
.project-card--soon {
  align-items: center; justify-content: center;
  border: 2px dashed var(--color-line); box-shadow: none; background: var(--color-bg-alt);
  min-height: 320px; text-align: center; padding: var(--space-xl) var(--space-md);
}
.project-card--soon .soon-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--color-white); border: 1px solid var(--color-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-forest); margin-bottom: var(--space-sm);
}
.project-card--soon h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.project-card--soon p { color: var(--color-ink-soft); font-size: 0.92rem; }

/* ===== 12. Services (2 blocs) ===== */
.services-grid { display: grid; gap: var(--space-lg); }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.service-card {
  background: var(--color-white); border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg); box-shadow: var(--shadow-md);
  border-top: 4px solid var(--color-accent);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.service-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: var(--color-forest-light); color: var(--color-forest-dark);
  display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-md);
}
.service-icon svg { width: 28px; height: 28px; }

.service-card h3 { font-size: 1.4rem; margin-bottom: var(--space-xs); }
.service-card > p { color: var(--color-ink-soft); margin-bottom: var(--space-md); }

.service-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.service-list li {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: var(--color-forest-light); color: var(--color-forest-dark);
  font-weight: 600; font-size: 0.85rem; padding: 0.4rem 0.8rem; border-radius: var(--radius-pill);
}
.service-list svg { width: 15px; height: 15px; color: var(--color-accent-dark); }

/* ===== 13. Étapes — parcours vertical en zigzag, ligne pointillée + cartes illustrées ===== */
.timeline { position: relative; display: flex; flex-direction: column; gap: var(--space-2xl); }

@media (min-width: 1024px) {
  .timeline::before {
    content: "";
    position: absolute; left: 50%; top: 0; bottom: 0;
    border-left: 2px dashed var(--color-accent);
    opacity: 0.55;
    transform: translateX(-50%);
  }
}

.timeline-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-lg);
  align-items: center;
}

/* Sur mobile, le texte reste toujours au-dessus de la carte, même pour
   les étapes "inversées" (le zigzag ne s'applique qu'à partir de 1024px) */
.timeline-row.is-reversed .timeline-text { order: 1; }
.timeline-row.is-reversed .timeline-card { order: 2; }

@media (min-width: 1024px) {
  .timeline-row { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: var(--space-2xl); }
  .timeline-row.is-reversed .timeline-text { order: 2; }
  .timeline-row.is-reversed .timeline-card { order: 1; }

  .timeline-row::after {
    content: "";
    position: absolute; left: 50%; top: 50%;
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--color-accent);
    border: 3px solid var(--color-bg-alt);
    box-shadow: 0 0 0 2px var(--color-accent);
    transform: translate(-50%, -50%);
    z-index: 2;
  }
}

.timeline-text .eyebrow { margin-bottom: var(--space-xs); }
.timeline-text h3 {
  font-size: clamp(1.4rem, 2.6vw, 1.8rem); margin-bottom: var(--space-sm);
}
.timeline-text p { color: var(--color-ink-soft); }

.timeline-card {
  position: relative; background: var(--color-white);
  border-radius: var(--radius-lg); padding: var(--space-lg);
  min-height: 220px; display: flex; flex-direction: column; justify-content: center;
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.timeline-card__label {
  position: absolute; top: var(--space-md); left: var(--space-md);
  font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem; color: var(--color-ink);
}
.timeline-card svg { width: 100%; height: auto; color: var(--color-forest); margin-top: 1.6rem; }
.timeline-card svg text { font-family: var(--font-heading); text-transform: uppercase; }

/* ===== 16. Garantie ===== */
.guarantee-panel {
  max-width: 780px; margin-inline: auto;
  background: linear-gradient(135deg, var(--color-forest) 0%, var(--color-forest-dark) 100%);
  border-radius: var(--radius-lg); padding: var(--space-2xl) var(--space-lg);
  color: var(--color-white); text-align: center; position: relative; overflow: hidden;
}
.guarantee-panel::before {
  content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%;
  background: rgba(34, 197, 94, 0.22); top: -100px; right: -80px; filter: blur(10px);
}
.guarantee-panel .guarantee-icon {
  width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center; margin-inline: auto; margin-bottom: var(--space-md);
  position: relative;
}
.guarantee-panel h2 { color: var(--color-white); position: relative; }
.guarantee-panel p { color: rgba(255,255,255,0.85); max-width: 55ch; margin-inline: auto; position: relative; }

/* ===== 17. FAQ (accordéon JS) ===== */
.faq-list { display: flex; flex-direction: column; gap: var(--space-sm); max-width: 780px; margin-inline: auto; }
.faq-item { background: var(--color-white); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); overflow: hidden; }

.faq-question {
  width: 100%; padding: var(--space-md); font-weight: 700; font-family: var(--font-heading);
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-sm); text-align: left;
}

.icon-plus { width: 22px; height: 22px; flex-shrink: 0; position: relative; }
.icon-plus::before, .icon-plus::after {
  content: ""; position: absolute; background: var(--color-forest); border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease;
}
.icon-plus::before { width: 100%; height: 2px; top: 50%; left: 0; transform: translateY(-50%); }
.icon-plus::after { height: 100%; width: 2px; left: 50%; top: 0; transform: translateX(-50%); }
.faq-item[data-open="true"] .icon-plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p { padding: 0 var(--space-md) var(--space-md); color: var(--color-ink-soft); }


/* ===== 19. Contact ===== */
.contact-grid { display: grid; gap: var(--space-lg); }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); } }

.contact-cards { display: flex; flex-direction: column; gap: var(--space-sm); }
.contact-card {
  display: flex; align-items: center; gap: var(--space-sm);
  background: var(--color-white); padding: var(--space-md); border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-card .service-icon { margin: 0; flex-shrink: 0; width: 48px; height: 48px; }
.contact-card .service-icon svg { width: 22px; height: 22px; }
.contact-card strong { display: block; font-family: var(--font-heading); }
.contact-card span { color: var(--color-ink-soft); font-size: 0.92rem; }

.contact-form { background: var(--color-white); padding: var(--space-lg); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); display: grid; gap: var(--space-md); }
.form-row { display: grid; gap: var(--space-md); }
@media (min-width: 640px) { .form-row.two-col { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }

.field label { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 0.4rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.8rem 1rem; border: 1.5px solid var(--color-line);
  border-radius: var(--radius-sm); background: var(--color-bg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--color-forest); box-shadow: 0 0 0 4px rgba(47, 93, 62, 0.12); outline: none;
}
.field textarea { resize: vertical; min-height: 110px; }

.form-status { font-weight: 600; padding: var(--space-sm); border-radius: var(--radius-sm); display: none; }
.form-status.is-success { display: block; background: var(--color-forest-light); color: var(--color-forest-dark); }
.form-status.is-error { display: block; background: #FDEDED; color: #B42318; }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ===== 20. Pied de page ===== */
.site-footer { background: var(--color-bg-alt); border-top: 1px solid var(--color-line); padding-block: var(--space-xl); }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--space-md); }
.footer-inner img { height: 22px; width: auto; }
.footer-links { display: flex; flex-wrap: wrap; gap: var(--space-md); font-size: 0.9rem; }
.footer-links a { color: var(--color-ink-soft); }
.footer-links a:hover { color: var(--color-forest-dark); }
.footer-copy { font-size: 0.85rem; color: var(--color-ink-soft); width: 100%; margin-top: var(--space-sm); }

/* ===== 21. CTA répétés ===== */
.cta-band { text-align: center; padding-block: var(--space-xl); }
.cta-band p { color: var(--color-ink-soft); margin-bottom: var(--space-md); max-width: 50ch; margin-inline: auto; }

/* ===== 23. Utilitaires ===== */
.text-center { text-align: center; }
