@font-face { font-family: "Poppins"; font-weight: 400; font-style: normal; font-display: swap; src: url("fonts/poppins-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-weight: 600; font-style: normal; font-display: swap; src: url("fonts/poppins-latin-600-normal.woff2") format("woff2"); }

:root {
  --fond: #EEF5F0;
  --surface: #FFFFFF;
  --encre: #1B1B1A;
  --encre-2: #4A4946;
  --trait: #D9E3DC;
  --vert: #046A38;
  --vert-fonce: #03522C;
  --bleu: #302681;
  --jaune: #FFCB00;
  --rouge: #DA291C;
  --rayon: 10px;
  --mesure: 62ch;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { margin: 0; background: var(--fond); color: var(--encre); font-family: "Poppins", "Helvetica Neue", Arial, sans-serif; font-size: 17px; line-height: 1.6; }
a { color: var(--vert); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--vert-fonce); }
a:focus-visible, button:focus-visible { outline: 3px solid var(--bleu); outline-offset: 3px; border-radius: 4px; }
p { max-width: var(--mesure); margin: 0 0 1em; }
h1, h2, h3 { line-height: 1.15; margin: 0 0 .5em; font-weight: 600; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.1rem; }
ul { padding-left: 1.2em; }
img, svg { display: block; }

.cadre { width: min(100% - 40px, 980px); margin-inline: auto; }

/* En-tête */
.entete { padding: 22px 0 14px; }
.entete .cadre { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; flex-wrap: wrap; }
.logo { display: inline-grid; text-decoration: none; color: var(--encre); border: 1.5px solid var(--encre); border-radius: var(--rayon); padding: 10px 14px 9px; }
.logo .l1 { font-weight: 600; font-size: 27px; line-height: 1.1; white-space: nowrap; }
.logo .l2 { display: flex; justify-content: space-between; align-items: flex-end; font-weight: 400; font-size: 19px; line-height: 1; margin-top: 6px; }
.logo .drapeaux { display: inline-flex; gap: 5px; align-items: flex-end; margin-left: 12px; }
.logo .drapeaux svg { width: 14px; height: 14px; }
.logo .pontos { display: inline-flex; align-items: flex-end; margin-left: 3px; padding-bottom: 1px; color: var(--encre); }
.logo .pontos svg { width: 12px; height: 3.3px; }
.menu { display: flex; flex-wrap: wrap; gap: 6px 18px; font-size: 15px; padding-top: 10px; flex: 1 1 320px; }
.menu a { color: var(--encre-2); text-decoration: none; }
.menu a:hover { color: var(--vert); text-decoration: underline; }
.langues { display: flex; gap: 14px; font-size: 15px; padding-top: 10px; margin-left: auto; }
.langues a { color: var(--encre-2); }
.langues a[aria-current="page"] { color: var(--encre); font-weight: 600; text-decoration: none; }

/* Ruban des pays (défilement continu) */
.ruban { overflow: hidden; background: var(--surface); border-top: 1px solid var(--trait); border-bottom: 1px solid var(--trait); padding: 11px 0; }
.ruban-piste { display: flex; width: max-content; animation: defile 52s linear infinite; }
.ruban-piste:hover { animation-play-state: paused; }
.ruban .dup { display: contents; }
.ruban .item { display: inline-flex; align-items: center; gap: 10px; margin-right: 38px; font-size: 15px; color: var(--encre-2); white-space: nowrap; }
.ruban .item svg { width: 27px; height: 18px; border-radius: 3px; }
@keyframes defile { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .ruban-piste { animation: none; width: auto; flex-wrap: wrap; justify-content: center; gap: 8px 0; }
  .ruban .dup { display: none; }
}

/* Accueil */
.accueil { padding: 44px 0 34px; }
.accueil h1 { font-size: clamp(32px, 5.6vw, 52px); letter-spacing: -0.01em; max-width: 16ch; }
.accueil h1 .en { color: var(--vert); }
.accueil .sous { font-size: 1.15rem; color: var(--encre-2); max-width: 46ch; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.bouton { display: inline-block; padding: 14px 22px; border-radius: var(--rayon); font-weight: 600; text-decoration: none; font-size: 1rem; }
.bouton.plein { background: var(--vert); color: #fff; }
.bouton.plein:hover { background: var(--vert-fonce); color: #fff; }
.bouton.vide { background: var(--surface); color: var(--encre); border: 1px solid var(--trait); }
.bouton.vide:hover { border-color: var(--encre-2); color: var(--encre); }

/* Tarif */
.tarif { background: var(--surface); border-radius: var(--rayon); padding: 22px 26px; display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 18px; margin: 30px 0 0; }
.tarif div { border-left: 4px solid var(--jaune); padding-left: 14px; }
.tarif strong { display: block; font-size: 1.5rem; line-height: 1.2; }
.tarif span { color: var(--encre-2); font-size: .95rem; }

/* Sections */
section { padding: 34px 0; }
section + section { border-top: 1px solid var(--trait); }
.deux { display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; }
@media (max-width: 640px) { .deux { grid-template-columns: 1fr; } }

/* Pays */
.pays-liste { color: var(--encre-2); max-width: var(--mesure); }

/* Domaines */
.domaines { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 36px; }
.domaines li { padding: 10px 0; border-bottom: 1px solid var(--trait); }
@media (max-width: 640px) { .domaines { grid-template-columns: 1fr; } }

/* Étapes */
.etapes { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: etape; }
.etapes li { background: var(--surface); border-radius: var(--rayon); padding: 20px 20px 16px; counter-increment: etape; }
.etapes li::before { content: counter(etape); display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--vert); color: #fff; font-weight: 600; margin-bottom: 10px; }
.etapes h3 { margin-bottom: .3em; }
.etapes p { margin: 0; color: var(--encre-2); font-size: .98rem; }
@media (max-width: 720px) { .etapes { grid-template-columns: 1fr; } }

/* Avocats */
.avocat { background: var(--surface); border-radius: var(--rayon); padding: 20px 24px; max-width: 560px; }
.avocat + .avocat { margin-top: 12px; }
.avocat strong { font-size: 1.15rem; }
.avocat p { margin: .4em 0 0; color: var(--encre-2); }
.note { color: var(--encre-2); font-size: .95rem; margin-top: 14px; }

/* Contact */
.contact { background: var(--surface); border-radius: var(--rayon); padding: 26px 26px; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.contact strong { display: block; margin-bottom: 4px; }
.contact a.gros { font-size: 1.35rem; font-weight: 600; text-decoration: none; }
.contact p { margin: 0; }

/* Adresse et plan */
.adresse { color: var(--vert); font-weight: 600; }
.plan { width: 100%; height: 320px; border: 0; border-radius: var(--rayon); margin: 6px 0 22px; display: block; }

/* Actualité */
.actu .sub { color: var(--encre-2); }
.breves { display: grid; gap: 16px; margin-top: 18px; }
.breve { background: var(--surface); border-radius: var(--rayon); padding: 20px 24px; max-width: 760px; }
.breve .tag { color: var(--vert); font-size: .9rem; font-weight: 600; margin: 0 0 4px; }
.breve h3 { margin: 0 0 8px; }
.breve p { margin: 0 0 8px; max-width: none; }
.breve .src { font-size: .92rem; margin: 0; }

/* Association */
.asso p { color: var(--encre-2); }

/* Pied */
.pied { padding: 26px 0 40px; border-top: 1px solid var(--trait); color: var(--encre-2); font-size: .92rem; }
.pied .cadre { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.pied a { color: var(--encre-2); }
