/* =========================================================================
   SEVEN TRADING LTD · Import camions & engins · Chine → Afrique de l'Ouest
   Système de design « moderne épuré lumineux » (registre Apple / Linear).
   Fond clair, air généreux, une police (Manrope), un seul accent, coins doux.
   Vanilla, zéro dépendance. Mobile-first.
   ========================================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  --bg: #ffffff;
  --bg-soft: #f6f5f2;
  --panel: #ffffff;

  --ink: #15161b;
  --ink-2: #565b66;
  --ink-3: #878c96;

  --line: #eceae5;
  --line-2: #e0ded8;

  --accent: #B4882B;
  --accent-ink: #8A671D;
  --accent-wash: #F5EDDB;

  --navy: #16283F;
  --btn: var(--navy);
  --btn-hover: #0F1C2D;

  --shadow-sm: 0 1px 2px rgba(20, 21, 26, 0.05);
  --shadow: 0 4px 14px -6px rgba(20, 21, 26, 0.10), 0 24px 48px -28px rgba(20, 21, 26, 0.18);
  --shadow-lg: 0 40px 90px -40px rgba(20, 21, 26, 0.30);

  --font: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --fs-hero: clamp(2.35rem, 6vw, 5rem);
  --fs-h1: clamp(2.15rem, 5vw, 3.7rem);
  --fs-h2: clamp(1.85rem, 3.6vw, 2.9rem);
  --fs-h3: clamp(1.2rem, 2vw, 1.45rem);
  --fs-lead: clamp(1.1rem, 1.5vw, 1.35rem);

  --sp-1: 0.5rem; --sp-2: 1rem; --sp-3: 1.5rem; --sp-4: 2rem;
  --sp-5: 3rem; --sp-6: 4.5rem; --sp-7: 6.5rem;
  --pad-section: clamp(3.25rem, 8vw, 8.5rem);

  --maxw: 1180px;
  --maxw-lg: 1300px;
  --maxw-etroit: 720px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  --r-sm: 8px;
  --r: 14px;
  --r-lg: 24px;
  --r-pill: 999px;

  --t: 240ms cubic-bezier(0.22, 1, 0.36, 1);
  --t-slow: 700ms cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 72px;
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 24px); }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.62;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  font-weight: 400;
}
img, svg { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
a, button, summary, .btn, label, select, input { -webkit-tap-highlight-color: transparent; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; line-height: 1.06; font-weight: 800; letter-spacing: -0.025em; text-wrap: balance; }
p { margin: 0 0 1em; text-wrap: pretty; }
::selection { background: var(--ink); color: #fff; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 0.7rem 1.2rem; border-radius: 0 0 var(--r-sm) 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------- 3. Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--lg { width: 100%; max-width: var(--maxw-lg); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--etroit { width: 100%; max-width: var(--maxw-etroit); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--pad-section); }
.section--serre { padding-block: clamp(2.25rem, 6vw, 5.5rem); }
.section--soft { background: var(--bg-soft); }
.center { text-align: center; }
.hidden { display: none !important; }

/* ---------- 4. Typo utilitaires ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em;
  color: var(--accent-ink); margin: 0 0 var(--sp-3);
}
.kicker::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.kicker.center { justify-content: center; }

.h-display { font-size: var(--fs-h2); letter-spacing: -0.03em; }
.titre-section { font-size: var(--fs-h2); letter-spacing: -0.03em; }
.lead { font-size: var(--fs-lead); color: var(--ink-2); line-height: 1.5; font-weight: 400; }
.intro-section { font-size: var(--fs-lead); color: var(--ink-2); max-width: 56ch; line-height: 1.55; }
.section-head { max-width: 62ch; margin-bottom: clamp(2.5rem, 5vw, var(--sp-6)); }
.section-head.center { margin-inline: auto; }
.section-head .titre-section { margin-bottom: var(--sp-2); }

/* ---------- 5. Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-weight: 600; font-size: 1rem; letter-spacing: -0.01em;
  padding: 0.85rem 1.4rem; border-radius: var(--r-sm); border: 1px solid transparent;
  transition: transform var(--t), background var(--t), color var(--t), border-color var(--t), box-shadow var(--t);
  line-height: 1; white-space: nowrap;
}
.btn svg { width: 1.05em; height: 1.05em; transition: transform var(--t); }
.btn:hover svg:last-child { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }
.btn--primaire { background: var(--btn); color: #fff; }
.btn--primaire:hover { background: var(--btn-hover); box-shadow: var(--shadow); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { background: var(--bg-soft); border-color: var(--ink-3); }
.btn--blanc { background: #fff; color: var(--ink); }
.btn--blanc:hover { box-shadow: var(--shadow); transform: translateY(-1px); }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--accent-ink); transform: translateY(-1px); box-shadow: 0 14px 30px -14px rgba(180,136,43,0.6); }
.btn--bloc { width: 100%; }
.btn--lg { font-size: 1.08rem; padding: 1.05rem 1.7rem; }

.lien-fleche {
  display: inline-flex; align-items: center; gap: 0.45rem; font-weight: 600; color: var(--accent-ink);
  transition: gap var(--t);
}
.lien-fleche svg { width: 1em; height: 1em; transition: transform var(--t); }
.lien-fleche:hover svg { transform: translateX(4px); }
.lien-fleche--clair { color: #fff; }

/* ---------- 6. En-tête ---------- */
.entete {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), background var(--t);
}
.entete--scrolled { border-bottom-color: var(--line); background: rgba(255,255,255,0.85); }
.entete__barre { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: var(--sp-2); }
.logo { display: inline-flex; align-items: center; gap: 0.6rem; font-weight: 800; font-size: 1.25rem; letter-spacing: -0.03em; color: var(--ink); }
.logo__mark { width: 42px; height: 42px; flex: none; object-fit: contain; }
.logo b { color: var(--accent-ink); font-weight: 800; }
.logo small { display: none; }

.nav { display: flex; align-items: center; gap: var(--sp-2); }
.nav__liens { display: none; }
.nav__lien { position: relative; font-weight: 500; font-size: 0.98rem; color: var(--ink-2); padding: 0.4rem 0.2rem; transition: color var(--t); }
.nav__lien:hover { color: var(--ink); }
.nav__lien[aria-current="page"] { color: var(--ink); }
.nav__lien[aria-current="page"]::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; border-radius: 2px; background: var(--accent); }
.nav__cta { display: none; }

/* Sélecteur de langue */
.langue { display: inline-flex; align-items: center; gap: 0.15rem; font-size: 0.85rem; font-weight: 600; }
.langue a { color: var(--ink-3); padding: 0.3rem 0.45rem; border-radius: 6px; transition: color var(--t), background var(--t); }
.langue a:hover { color: var(--ink); }
.langue a[aria-current="true"] { color: var(--ink); background: var(--bg-soft); }
.langue .sep { color: var(--line-2); }

.burger { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 42px; background: transparent; border: 1px solid var(--line-2); border-radius: var(--r-sm); padding: 0 11px; }
.burger span { height: 2px; background: var(--ink); border-radius: 2px; transition: transform var(--t), opacity var(--t); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.menu-mobile { background: #fff; border-bottom: 1px solid var(--line); overflow: hidden; max-height: 0; transition: max-height 320ms var(--t); }
.menu-mobile.ouvert { max-height: 460px; }
.menu-mobile__liste { padding: var(--sp-2) 0; }
.menu-mobile a { display: block; padding: 0.85rem var(--gutter); font-size: 1.1rem; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--line); }
.menu-mobile a[aria-current="page"] { color: var(--accent-ink); }
.menu-mobile .btn { margin: var(--sp-2) var(--gutter) var(--sp-1); width: calc(100% - 2 * var(--gutter)); }

@media (min-width: 940px) {
  .nav__liens { display: flex; gap: var(--sp-4); }
  .nav__cta { display: inline-flex; }
  .burger, .menu-mobile { display: none; }
}

/* ---------- 7. Hero ---------- */
.hero { padding-top: clamp(3.5rem, 7vw, 6rem); padding-bottom: clamp(2.5rem, 5vw, 4rem); text-align: center; }
.hero__inner { max-width: 60rem; margin-inline: auto; }
.hero__title { font-size: var(--fs-hero); letter-spacing: -0.035em; line-height: 1.0; margin-bottom: var(--sp-3); }
.hero__title .accent { color: var(--accent); }
.hero__lead { font-size: var(--fs-lead); color: var(--ink-2); max-width: 46ch; margin: 0 auto var(--sp-4); line-height: 1.5; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.hero__media { margin-top: clamp(2.5rem, 5vw, 4.5rem); }
.hero__frame { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 16 / 8; background: var(--ink); }
.hero__frame img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 640px) { .hero__frame { aspect-ratio: 4 / 3; } }

/* Bandeau de chiffres sous le hero */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-4) var(--sp-2); margin-top: clamp(2.5rem, 5vw, 4rem); }
@media (min-width: 720px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; }
.stat__num { font-size: clamp(2rem, 3.5vw, 2.9rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1; font-variant-numeric: tabular-nums; }
.stat__num b { color: var(--accent); font-weight: 800; }
.stat__label { display: block; margin-top: 0.5rem; font-size: 0.9rem; color: var(--ink-3); }

/* ---------- 8. Bande de confiance ---------- */
.trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem 1.6rem; color: var(--ink-3); font-size: 0.92rem; font-weight: 500; }
.trust span { display: inline-flex; align-items: center; gap: 0.5rem; }
.trust svg { width: 1.05em; height: 1.05em; color: var(--accent); }

/* ---------- 9. Réassurance (colonnes épurées) ---------- */
.features { display: grid; gap: clamp(1.5rem, 4vw, 3rem); }
@media (min-width: 820px) { .features { grid-template-columns: repeat(3, 1fr); } }
.feature__ic { width: 46px; height: 46px; display: grid; place-items: center; border-radius: var(--r); background: var(--accent-wash); color: var(--accent-ink); margin-bottom: var(--sp-3); }
.feature__ic svg { width: 24px; height: 24px; }
.feature h3 { font-size: var(--fs-h3); margin-bottom: 0.5rem; }
.feature p { margin: 0; color: var(--ink-2); font-size: 1rem; }

/* ---------- 10. Processus (étapes épurées) ---------- */
.steps { display: grid; gap: 0; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); } }
.step { padding: var(--sp-4) 0; border-top: 1px solid var(--line); }
@media (min-width: 900px) { .step { border-top: 1px solid var(--line); } }
.step__num { font-size: 0.85rem; font-weight: 700; color: var(--accent); font-variant-numeric: tabular-nums; }
.step h3 { font-size: var(--fs-h3); margin: 0.7rem 0 0.4rem; }
.step p { margin: 0; color: var(--ink-2); font-size: 0.98rem; }

/* ---------- 11. Cartes catalogue ---------- */
.cards { display: grid; gap: clamp(1.25rem, 3vw, 2rem); }
@media (min-width: 680px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .cards { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1100px) { .card__body { padding: 1.25rem; } .card__body h3 { font-size: 1.25rem; } }
.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--line-2); }
.card__media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; background: var(--bg-soft); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.card:hover .card__media img { transform: scale(1.04); }
.card__tag { position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,0.92); backdrop-filter: blur(6px); color: var(--ink); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.01em; padding: 0.35rem 0.7rem; border-radius: var(--r-pill); }
.card__body { padding: clamp(1.3rem, 2.5vw, 1.9rem); display: flex; flex-direction: column; flex: 1; }
.card__body h3 { font-size: 1.4rem; margin-bottom: 0.4rem; }
.card__usage { color: var(--ink-2); font-size: 0.98rem; margin: 0 0 var(--sp-3); }
.card__specs { display: grid; gap: 0.55rem; padding: var(--sp-3) 0; border-top: 1px solid var(--line); margin-top: auto; }
.card__specs li { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.92rem; }
.card__specs .k { color: var(--ink-3); }
.card__specs .v { font-weight: 600; font-variant-numeric: tabular-nums; text-align: right; }
.card__prix { margin-bottom: var(--sp-3); }
.card__prix .label { display: block; font-size: 0.78rem; color: var(--ink-3); margin-bottom: 0.15rem; }
.card__prix .val { font-size: 1.25rem; font-weight: 800; letter-spacing: -0.02em; }
.card__prix .val b { color: var(--accent-ink); }
.card .btn { margin-top: auto; }

/* ---------- 12. Timeline détaillée (Comment ça marche) ---------- */
.timeline { max-width: 780px; margin-inline: auto; display: grid; gap: 0; }
.tl-item { display: grid; grid-template-columns: auto 1fr; gap: var(--sp-3); padding: var(--sp-4) 0; border-top: 1px solid var(--line); }
.tl-item:first-child { border-top: 0; }
.tl-num { width: 52px; height: 52px; border-radius: var(--r); background: var(--navy); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 1.2rem; font-variant-numeric: tabular-nums; }
.tl-item--accent .tl-num { background: var(--accent); }
.tl-body h3 { font-size: var(--fs-h3); margin-bottom: 0.35rem; }
.tl-body p { margin: 0 0 0.6rem; color: var(--ink-2); font-size: 1rem; }
.tl-delai { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.82rem; font-weight: 600; color: var(--accent-ink); background: var(--accent-wash); padding: 0.3rem 0.7rem; border-radius: var(--r-pill); font-variant-numeric: tabular-nums; }

/* ---------- 13. Bande CTA ---------- */
.cta {
  position: relative; overflow: hidden; border-radius: var(--r-lg);
  background: linear-gradient(150deg, #1B3252 0%, var(--navy) 100%); color: #fff; padding: clamp(2.5rem, 6vw, 5rem);
  text-align: center;
}
.cta::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 130% at 50% -20%, rgba(198,162,75,0.38), transparent 55%); pointer-events: none; }
.cta > * { position: relative; }
.cta h2 { font-size: var(--fs-h2); margin-bottom: var(--sp-2); }
.cta p { max-width: 50ch; margin: 0 auto var(--sp-4); color: rgba(255,255,255,0.72); font-size: var(--fs-lead); }
.cta__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

/* ---------- 14. Formulaire ---------- */
.devis-grille { display: grid; gap: clamp(2rem, 4vw, 3.5rem); }
@media (min-width: 960px) { .devis-grille { grid-template-columns: 1.5fr 1fr; align-items: start; } }
.form-carte { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.5rem, 4vw, 2.75rem); box-shadow: var(--shadow-sm); }
.form-carte__tete { margin-bottom: var(--sp-4); }
.form-carte__tete h2 { font-size: 1.7rem; }
.form-carte__tete p { margin: 0.35rem 0 0; color: var(--ink-3); font-size: 0.95rem; }
.champ { margin-bottom: var(--sp-3); }
.champ label { display: block; font-weight: 600; font-size: 0.95rem; margin-bottom: 0.45rem; }
.champ label .req { color: var(--accent); }
.champ .aide { font-weight: 400; color: var(--ink-3); font-size: 0.85rem; }
.champ input, .champ select, .champ textarea {
  width: 100%; font-family: var(--font); font-size: 1rem; color: var(--ink);
  background: #fff; border: 1px solid var(--line-2); border-radius: var(--r-sm);
  padding: 0.8rem 0.9rem; transition: border-color var(--t), box-shadow var(--t);
}
.champ input::placeholder, .champ textarea::placeholder { color: var(--ink-3); }
.champ input:focus, .champ select:focus, .champ textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-wash); }
.champ textarea { resize: vertical; min-height: 120px; }
.champ--erreur input, .champ--erreur select, .champ--erreur textarea { border-color: #d64545; box-shadow: 0 0 0 4px rgba(214,69,69,0.1); }
.msg-erreur { display: none; font-size: 0.82rem; color: #c0392b; margin-top: 0.35rem; }
.champ--erreur .msg-erreur { display: block; }
.duo { display: grid; gap: var(--sp-3); }
@media (min-width: 560px) { .duo { grid-template-columns: 1fr 1fr; } }
.form-note { font-size: 0.85rem; color: var(--ink-3); line-height: 1.55; margin-top: var(--sp-2); }
.confirmation { text-align: center; padding: clamp(1.5rem, 4vw, 2.5rem) 0; }
.confirmation__ic { width: 72px; height: 72px; margin: 0 auto var(--sp-3); display: grid; place-items: center; background: #e7f6ec; color: #1e8a4c; border-radius: 50%; }
.confirmation__ic svg { width: 38px; height: 38px; }
.confirmation h2 { font-size: 1.9rem; margin-bottom: var(--sp-2); }
.ref-devis { display: inline-block; font-weight: 700; font-variant-numeric: tabular-nums; background: var(--bg-soft); border: 1px solid var(--line); padding: 0.5rem 0.9rem; border-radius: var(--r-sm); margin: var(--sp-1) 0 var(--sp-2); letter-spacing: 0.02em; }
.aside-devis { display: grid; gap: var(--sp-3); align-content: start; }
.encart { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.4rem, 3vw, 1.9rem); }
.encart--sombre { background: linear-gradient(150deg, #1B3252 0%, var(--navy) 100%); color: #fff; border-color: var(--navy); }
.encart--sombre p { color: rgba(255,255,255,0.72); }
.encart h3 { font-size: 1.25rem; margin-bottom: var(--sp-2); }
.encart p { margin: 0; color: var(--ink-2); font-size: 0.96rem; }
.liste-check { display: grid; gap: 0.7rem; }
.liste-check li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.98rem; }
.liste-check svg { flex: none; width: 20px; height: 20px; margin-top: 1px; color: var(--accent); }
.encart--sombre .liste-check li { color: rgba(255,255,255,0.9); }

/* ---------- 15. À propos ---------- */
.split { display: grid; gap: clamp(2rem, 5vw, 4rem); }
@media (min-width: 880px) { .split { grid-template-columns: 1fr 1fr; align-items: center; } }
.split__media img { width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow); aspect-ratio: 4 / 3; object-fit: cover; }
.prose h3 { font-size: var(--fs-h3); margin: var(--sp-4) 0 0.5rem; }
.prose p { color: var(--ink-2); }
.prose strong { color: var(--ink); font-weight: 700; }
.piliers { display: grid; gap: clamp(1.25rem, 3vw, 2rem); }
@media (min-width: 760px) { .piliers { grid-template-columns: repeat(3, 1fr); } }
.pilier { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.4rem, 3vw, 2rem); }
.pilier__ic { width: 46px; height: 46px; display: grid; place-items: center; border-radius: var(--r); background: var(--bg-soft); color: var(--ink); margin-bottom: var(--sp-2); }
.pilier__ic svg { width: 24px; height: 24px; }
.pilier h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.pilier p { margin: 0; color: var(--ink-2); font-size: 0.96rem; }
.fondateurs { display: grid; gap: clamp(1.25rem, 3vw, 2rem); }
@media (min-width: 680px) { .fondateurs { grid-template-columns: 1fr 1fr; } }
.fondateur { display: flex; gap: var(--sp-3); align-items: center; background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--sp-3); }
.fondateur__photo { flex: none; width: 76px; height: 76px; border-radius: var(--r); background: var(--bg-soft); display: grid; place-items: center; color: var(--ink-3); font-weight: 800; font-size: 1.4rem; border: 1px solid var(--line); }
.fondateur h3 { font-size: 1.2rem; }
.fondateur .role { color: var(--accent-ink); font-weight: 600; font-size: 0.88rem; }
.fondateur p { margin: 0.4rem 0 0; font-size: 0.92rem; color: var(--ink-2); }

/* ---------- 16. Contact ---------- */
.contact-grille { display: grid; gap: clamp(2rem, 4vw, 3rem); }
@media (min-width: 880px) { .contact-grille { grid-template-columns: 1fr 1fr; align-items: start; } }
.coord { display: grid; gap: var(--sp-2); }
.coord__item { display: flex; gap: var(--sp-3); align-items: flex-start; padding: var(--sp-3) 0; border-top: 1px solid var(--line); }
.coord__item:first-child { border-top: 0; padding-top: 0; }
.coord__ic { flex: none; width: 44px; height: 44px; display: grid; place-items: center; background: var(--bg-soft); border-radius: var(--r); color: var(--ink); }
.coord__ic svg { width: 22px; height: 22px; }
.coord__item h3 { font-size: 1.05rem; margin-bottom: 0.15rem; }
.coord__item p, .coord__item a { margin: 0; font-size: 0.96rem; color: var(--ink-2); }
.coord__item a:hover { color: var(--accent-ink); }
.carte-embed { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--bg-soft); min-height: 340px; box-shadow: var(--shadow-sm); }
.carte-embed iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* ---------- 16b. Zone de couverture ---------- */
.couverture { display: grid; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
@media (min-width: 880px) { .couverture { grid-template-columns: 1.05fr 1fr; } }
.couverture__carte { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1rem, 3vw, 2rem); box-shadow: var(--shadow-sm); }
.couverture__carte img { width: 100%; height: auto; display: block; }
.pays { display: grid; gap: 0; }
.pays li { display: grid; grid-template-columns: auto 1fr; gap: 0.4rem 0.9rem; align-items: baseline; padding: var(--sp-3) 0; border-top: 1px solid var(--line); }
.pays li:first-child { border-top: 0; padding-top: 0; }
.pays .nom { font-weight: 700; font-size: 1.15rem; display: inline-flex; align-items: center; gap: 0.55rem; }
.pays .nom::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); flex: none; }
.pays .route { color: var(--ink-2); font-size: 0.98rem; grid-column: 2; }
@media (max-width: 560px) { .pays li { grid-template-columns: 1fr; } .pays .route { grid-column: 1; padding-left: 1.45rem; } }

/* ---------- 17. FAQ ---------- */
.faq { display: grid; gap: 0; max-width: 780px; margin-inline: auto; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: var(--sp-3) 0; font-size: 1.15rem; font-weight: 700; letter-spacing: -0.01em; display: flex; justify-content: space-between; gap: var(--sp-2); align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-size: 1.5rem; font-weight: 400; transition: transform var(--t); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq__corps { padding: 0 0 var(--sp-3); color: var(--ink-2); max-width: 66ch; }
.faq .faq__corps p:last-child { margin-bottom: 0; }

/* ---------- 18. Pied de page ---------- */
.pied { background: var(--bg-soft); border-top: 1px solid var(--line); padding-block: clamp(3rem, 6vw, 5rem) var(--sp-4); font-size: 0.95rem; color: var(--ink-2); }
.pied__haut { display: grid; gap: var(--sp-4); padding-bottom: var(--sp-5); }
@media (min-width: 780px) { .pied__haut { grid-template-columns: 1.6fr 1fr 1fr; gap: var(--sp-5); } }
.pied h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-3); margin-bottom: var(--sp-2); font-weight: 700; }
.pied a { color: var(--ink-2); transition: color var(--t); }
.pied a:hover { color: var(--accent-ink); }
.pied__liens { display: grid; gap: 0.55rem; }
.pied .logo { margin-bottom: var(--sp-2); }
.pied__desc { max-width: 40ch; color: var(--ink-2); }
.pied__bas { display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-4); justify-content: space-between; padding-top: var(--sp-4); border-top: 1px solid var(--line); font-size: 0.85rem; color: var(--ink-3); }
.placeholder-note { display: inline-block; margin-top: var(--sp-2); background: var(--accent-wash); color: var(--accent-ink); border-radius: var(--r-sm); padding: 0.4rem 0.7rem; font-size: 0.82rem; font-weight: 500; }

/* ---------- 19. WhatsApp flottant ---------- */
.wa-float { position: fixed; right: 18px; bottom: 18px; z-index: 90; display: inline-flex; align-items: center; gap: 0.5rem; background: #25d366; color: #05331b; font-weight: 700; padding: 0.8rem 1.1rem; border-radius: var(--r-pill); box-shadow: var(--shadow-lg); transition: transform var(--t), background var(--t); }
.wa-float:hover { transform: translateY(-3px); background: #1fbf5b; }
.wa-float svg { width: 22px; height: 22px; }
.wa-float__txt { display: none; }
@media (min-width: 560px) { .wa-float__txt { display: inline; } }

/* ---------- 20. En-tête de page interne ---------- */
.page-tete { padding-block: clamp(3rem, 7vw, 5.5rem) clamp(2rem, 4vw, 3rem); text-align: center; }
.page-tete__inner { max-width: 58ch; margin-inline: auto; }
.ariane { font-size: 0.85rem; color: var(--ink-3); margin-bottom: var(--sp-3); display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; }
.ariane a:hover { color: var(--accent-ink); }
.ariane span { color: var(--ink); font-weight: 500; }
.page-tete h1 { font-size: var(--fs-h1); letter-spacing: -0.035em; }
.page-tete p { color: var(--ink-2); font-size: var(--fs-lead); margin-top: var(--sp-2); }

/* En-tête de page avec photo de fond */
.page-tete--photo { position: relative; color: #fff; overflow: hidden; padding-block: clamp(4rem, 9vw, 7rem) clamp(3rem, 6vw, 5rem); }
.page-tete__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.page-tete--photo::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(15,18,22,0.52) 0%, rgba(15,18,22,0.72) 100%); }
.page-tete--photo .page-tete__inner, .page-tete--photo > .wrap { position: relative; z-index: 2; }
.page-tete--photo h1 { color: #fff; }
.page-tete--photo p { color: rgba(255,255,255,0.88); }
.page-tete--photo .ariane { color: rgba(255,255,255,0.72); }
.page-tete--photo .ariane span { color: #fff; }
.page-tete--photo .ariane a:hover { color: #fff; }

/* Galerie d'opérations */
.galerie { display: grid; gap: clamp(0.75rem, 1.6vw, 1.25rem); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px) { .galerie { grid-template-columns: repeat(4, 1fr); } }
.galerie figure { margin: 0; border-radius: var(--r); overflow: hidden; aspect-ratio: 4 / 5; background: var(--bg-soft); }
.galerie img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.galerie figure:hover img { transform: scale(1.05); }

/* ---------- 20b. Optimisations mobile ---------- */
@media (max-width: 560px) {
  /* Kicker centré : sans le point quand le texte passe sur deux lignes */
  .kicker.center::before { display: none; }
  /* Boutons pleine largeur, empilés, pour de meilleures cibles tactiles */
  .hero__cta, .cta__actions { flex-direction: column; align-items: stretch; }
  .hero__cta .btn, .cta__actions .btn { width: 100%; }
  .btn { padding-block: 0.95rem; }
  .btn--lg { padding-block: 1.05rem; }
}

/* ---------- 21. Animations d'entrée ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--t), transform 0.7s var(--t); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
