:root {
  --header-height: 82px;
  --green-900: #075a16;
  --green-800: #08731b;
  --green-700: #108821;
  --green-100: #e8f3ec;
  --gold: #ffb800;
  --gold-dark: #e5a300;
  --ink: #152318;
  --muted: #66736a;
  --line: #dce3de;
  --soft: #f3f5f1;
  --white: #ffffff;
  --shadow: 0 12px 28px rgba(9, 38, 17, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding-top: var(--header-height);
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.45;
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.mobile-only {
  display: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(1120px, calc(100% - 48px));
  height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: auto;
  height: 68px;
}

.header-actions {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #1a281e;
  font-size: 12px;
  font-weight: 500;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a.active::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--green-800);
  content: "";
}

.site-nav .nav-action {
  padding: 8px 18px;
  background: var(--gold);
  color: #1b2107;
  font-weight: 700;
}

.site-nav .nav-action::after {
  display: none;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border: 1px solid var(--line);
  background: #f7faf8;
}

.language-switcher button {
  min-width: 34px;
  min-height: 26px;
  border: 0;
  background: transparent;
  color: var(--green-900);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.language-switcher button.active {
  background: var(--green-800);
  color: var(--white);
}

.header-language-switcher {
  display: none;
}

main section {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.nav-toggle,
.menu-open,
.menu-close {
  display: none;
}

.hero {
  position: relative;
  min-height: 670px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #061a0c url("assets/page_acceuil1.jpeg") center 45% / cover no-repeat;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.26) 100%);
  content: "";
  pointer-events: none;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-track {
  display: flex;
  width: 100%;
  height: 100%;
  transform: translateX(0);
  transition: transform 700ms ease;
  will-change: transform;
}

.hero-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slide:nth-child(1) img,
.hero-slide:last-child img {
  object-position: center 45%;
}

.hero-slide:nth-child(2) img {
  object-position: center 42%;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  color: var(--white);
}

.hero-content .eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 570px;
  margin: 0;
  font-size: 48px;
  line-height: 1.03;
  letter-spacing: 0;
}

.hero-content p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 30px;
  font-size: 15px;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 18px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.button-primary {
  background: var(--gold);
  color: #122009;
}

.button-primary:hover {
  background: var(--gold-dark);
}

.button-dark {
  background: rgba(0, 0, 0, 0.48);
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--green-800);
}

.button-outline {
  border-color: var(--white);
  color: var(--white);
}

.button-wide {
  width: 100%;
}

.section {
  padding: 64px 0;
}

.impact-counters {
  position: relative;
  z-index: 4;
  margin-top: -58px;
  padding: 0 0 22px;
}

.impact-counter-grid {
  width: min(930px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(7, 90, 22, 0.11);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 22px 42px rgba(9, 38, 17, 0.17);
  backdrop-filter: blur(12px);
}

.impact-counter {
  min-height: 118px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 6px;
  padding: 22px 18px;
  text-align: center;
}

.impact-counter + .impact-counter {
  border-left: 1px solid var(--line);
}

.impact-counter strong {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  color: var(--green-900);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.impact-counter strong span:not(.counter-number) {
  color: var(--green-800);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.counter-number {
  min-width: 2ch;
  font-variant-numeric: tabular-nums;
}

.impact-counter p {
  margin: 0;
  color: #36463b;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-inner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  text-align: justify;
}

h2 {
  margin: 0;
  color: var(--green-900);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0;
}

h3,
p {
  margin-top: 0;
}

.about {
  background: var(--white);
}

.text-justify{
  text-align: justify;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.8fr;
  gap: 14px;
  align-items: start;
}

.about p {
  max-width: 610px;
  margin: 18px 0 0;
  color: #4d5b52;
  font-size: 14px;
}

.info-card {
  min-height: 210px;
  padding: 26px;
  background: var(--white);
  border: 1px solid #e6ebe8;
  box-shadow: var(--shadow);
}

.small-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 7px;
  background: var(--green-100);
}

.small-icon svg,
.avatar svg,
.engagement-icon svg,
.resources svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.small-icon {
  color: var(--green-800);
}

.info-card h3 {
  margin: 0 0 14px;
  color: var(--green-900);
  font-size: 16px;
}

.info-card p {
  margin: 0;
  font-size: 13px;
}

.programs {
  background: var(--soft);
}

.center-heading {
  text-align: center;
}

.center-heading p {
  margin: 11px 0 36px;
  color: #66736a;
  font-size: 13px;
}

.center-heading.compact h2::after {
  display: block;
  width: 54px;
  height: 3px;
  margin: 16px auto 0;
  background: var(--gold);
  content: "";
}

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

.program-card {
  min-height: 400px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #dfe6e1;
  box-shadow: 0 10px 24px rgba(20, 40, 24, 0.06);
}

.program-card img {
  width: 100%;
  height: auto;
}

.program-card-existence img {
  width: 100%;
  height: 270px;
}

.program-card-ressources img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  object-position: center;
}

.program-card-ressources {
  display: flex;
  min-height: 400px;
}

.program-card-ressources img {
  flex: 1;
}

.program-card div {
  padding: 19px 20px 22px;
}

.program-card span,
.mobile-program-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--green-800);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.program-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

.program-card p {
  margin: 0;
  color: #56635b;
  font-size: 13px;
}

.program-photo img {
  height: auto;
  min-height: 0;
}

@media (max-width: 900px) {
  .program-card img,
  .program-photo img {
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .program-card-ressources img {
    height: 100%;
    min-height: clamp(280px, 72vw, 390px);
    object-fit: cover;
    object-position: center;
  }
}

.program-text {
  display: flex;
  align-items: center;
}

.program-text div {
  padding: 36px;
}

.team {
  background: #f7f8f6;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 50px;
  margin-top: 42px;
}

.team-member {
  min-width: 0;
  text-align: center;
}

.avatar {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  color: var(--ink);
  background: #dfe7e1;
  border: 3px solid var(--white);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(12, 36, 17, 0.18);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.team-member h3 {
  max-width: 100%;
  margin: 0 0 3px;
  color: #18251b;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.team-member p {
  margin: 0;
  color: var(--green-800);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.publications {
  background: var(--white);
}

.section-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.section-row a {
  color: var(--green-900);
  font-size: 12px;
  font-weight: 600;
}

.section-row a::after {
  content: "  →";
}

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

.publication-grid > article > h3 {
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--green-900);
  font-size: 15px;
  font-weight: 600;
}

.publication-grid > article > h3::before {
  margin-right: 8px;
  color: var(--green-800);
  content: "▧";
}

.publication-card {
  min-height: 118px;
  padding: 18px;
  background: #f6f7f5;
  border: 1px solid #e3e7e2;
}

.publication-card p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 11px;
}

.publication-card strong {
  display: block;
  margin-bottom: 13px;
  color: #27312a;
  font-size: 13px;
  line-height: 1.25;
}

.publication-card a {
  color: var(--green-800);
  font-size: 12px;
  font-weight: 700;
}

.download-link::before {
  content: "↓ ";
}

.engagement {
  position: relative;
  overflow: hidden;
  background: var(--green-700);
  color: var(--white);
}

.engagement::before {
  position: absolute;
  top: -22px;
  right: 64px;
  color: rgba(255, 255, 255, 0.14);
  content: "♡";
  font-family: Arial, sans-serif;
  font-size: 210px;
  font-weight: 700;
  line-height: 1;
}

.engagement-heading h2 {
  color: var(--white);
  font-weight: 800;
}

.engagement-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.engagement-grid article {
  min-height: 250px;
  padding: 34px 28px 26px;
  text-align: center;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.engagement-icon {
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  color: var(--white);
}

.engagement-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 2;
}

.engagement-grid h3 {
  margin: 0 0 12px;
  font-size: 19px;
}

.engagement-grid p {
  min-height: 58px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
}

.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.contact h2 {
  margin-bottom: 18px;
}

.contact p {
  color: #56635b;
  font-size: 13px;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 30px 0 28px;
  padding: 0;
  list-style: none;
}

.contact-list li {
  position: relative;
  padding-left: 34px;
  color: #4b584f;
  font-size: 13px;
}

.contact-list li::before {
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-800);
  content: "•";
  display: grid;
  place-items: center;
  font-size: 18px;
}

.contact-list strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
}

.map-placeholder {
  height: 210px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(100, 100, 100, 0.25), rgba(100, 100, 100, 0.25)),
    linear-gradient(135deg, #a8a8a8, #d1d1d1);
}

.map-placeholder span {
  position: relative;
  width: 82px;
  height: 82px;
  border: 12px solid #e7e7e7;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3);
}

.map-placeholder span::after {
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  background: #a2a2a2;
  content: "";
}

.contact-form {
  padding: 28px;
  background: var(--white);
  border: 1px solid #e3e8e4;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: #364039;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfd8d2;
  padding: 12px 13px;
  color: var(--ink);
  background: #fafbfa;
  font-size: 13px;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form button,
.newsletter button {
  width: 100%;
  min-height: 38px;
  border: 0;
  background: var(--green-800);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.site-footer {
  padding: 50px 0 24px;
  background: #e6e8e6;
}

.footer-inner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.1fr 1.2fr;
  gap: 48px;
  padding-bottom: 38px;
  border-bottom: 1px solid #cfd5d0;
}

.footer-logo,
.footer-inner h3 {
  display: block;
  margin: 0 0 20px;
  color: var(--green-900);
  font-size: 14px;
  font-weight: 800;
}

.footer-logo img {
  width: 150px;
  height: auto;
}

.footer-inner p,
.footer-inner a {
  display: block;
  margin: 0 0 10px;
  color: #59645d;
  font-size: 12px;
}

.footer-logo {
  color: var(--green-900);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--green-800);
  border: 1px solid var(--green-800);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 800;
}

.newsletter input {
  width: 100%;
  margin-bottom: 10px;
  border: 1px solid #cbd3ce;
  padding: 10px 12px;
  background: var(--white);
  font-size: 12px;
}

.newsletter button {
  background: #006b68;
}

.copyright {
  width: min(1120px, calc(100% - 48px));
  margin: 22px auto 0;
  color: #8a928c;
  font-size: 11px;
  text-align: center;
}

.partners {
  overflow: hidden;
  background: var(--white);
}

.partners .center-heading {
  margin-bottom: 34px;
}

.partners-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 8px 0 12px;
}

.partners-marquee::before,
.partners-marquee::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 80px;
  content: "";
  pointer-events: none;
}

.partners-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), rgba(255, 255, 255, 0));
}

.partners-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--white), rgba(255, 255, 255, 0));
}

.partners-track {
  width: max-content;
  display: flex;
  align-items: center;
  animation: partnersMarquee 28s linear infinite;
}

.partners-marquee:hover .partners-track {
  animation-play-state: paused;
}

.partners-group {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
}

.partner-logo {
  --partner-logo-pad-x: 18px;
  --partner-logo-pad-y: 14px;
  width: 190px;
  height: 130px;
  flex: 0 0 190px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(9, 38, 17, 0.07);
}

.partner-logo img {
  width: calc(100% - var(--partner-logo-pad-x) - var(--partner-logo-pad-x));
  height: calc(100% - var(--partner-logo-pad-y) - var(--partner-logo-pad-y));
  object-fit: contain;
  object-position: center;
}

@keyframes partnersMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 74px;
  }

  body {
    background: #f3f4f2;
  }

  main,
  .site-header,
  .site-footer,
  .hero,
  .programs,
  .engagement,
  .resources {
    width: 100%;
    max-width: 100%;
  }

  .mobile-only {
    display: none !important;
  }

  .site-header {
    position: fixed;
    min-height: var(--header-height);
    background: var(--white);
  }

  .header-inner {
    width: 100%;
    height: var(--header-height);
    padding: 0 18px;
  }

  .brand img {
    width: auto;
    height: 60px;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: auto;
  }

  .header-language-switcher {
    display: inline-flex;
    width: auto;
    margin-top: 0;
    padding: 2px;
  }

  .header-language-switcher button {
    flex: 0 0 auto;
    min-width: 32px;
    min-height: 26px;
  }

  .menu-open {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    cursor: pointer;
  }

  .menu-open span,
  .menu-open span::before,
  .menu-open span::after {
    width: 18px;
    height: 2px;
    display: block;
    background: var(--green-900);
    content: "";
  }

  .menu-open span {
    position: relative;
  }

  .menu-open span::before,
  .menu-open span::after {
    position: absolute;
    left: 0;
  }

  .menu-open span::before {
    top: -6px;
  }

  .menu-open span::after {
    top: 6px;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: 50;
    width: min(280px, 78vw);
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 76px 24px 24px;
    background: var(--white);
    box-shadow: -22px 0 36px rgba(0, 0, 0, 0.1);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: clip-path 0.25s ease, opacity 0.2s ease, visibility 0.25s ease;
  }

  .nav-toggle:checked ~ .site-nav {
    clip-path: inset(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .menu-close {
    position: absolute;
    top: 18px;
    right: 22px;
    display: block;
    color: #111;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
  }

  .site-nav a {
    padding: 13px 0;
    color: #121a14;
    font-size: 14px;
  }

  .site-nav a.active::after {
    left: 0;
    right: auto;
    bottom: 8px;
    width: 42px;
  }

  .site-nav .nav-action {
    margin-top: auto;
    padding: 12px 14px;
    text-align: center;
  }

  .nav-language-switcher {
    display: none;
  }

  .hero {
    min-height: 500px;
    align-items: center;
    padding: 34px 18px;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.26) 100%);
  }

  .hero-content {
    width: 100%;
  }

  .hero-content h1 {
    max-width: 12ch;
    font-size: 33px;
    line-height: 1.05;
  }

  .hero-content p:not(.eyebrow) {
    max-width: 42ch;
    margin: 16px 0 24px;
    font-size: 13px;
  }

  .hero-actions {
    width: min(100%, 310px);
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .mobile-hero-card {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 18px 17px 16px;
    background: var(--green-800);
    border-left: 5px solid var(--gold);
    color: var(--white);
  }

  .mobile-hero-card h1 {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.1;
  }

  .mobile-hero-card p {
    max-width: 42ch;
    margin: 0 0 16px;
    font-size: 11px;
    line-height: 1.45;
  }

  .button {
    min-height: 37px;
    font-size: 11px;
  }

  .section {
    padding: 46px 0;
  }

  .impact-counters {
    margin-top: 0;
    padding: 18px 10px 28px;
    background: #f3f4f2;
  }

  .impact-counter-grid {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    box-shadow: 0 10px 24px rgba(28, 42, 32, 0.08);
  }

  .impact-counter {
    min-height: 96px;
    padding: 16px 10px;
  }

  .impact-counter:nth-child(2) {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .impact-counter:nth-child(1) {
    grid-column: 1;
    grid-row: 2;
  }

  .impact-counter:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }

  .impact-counter + .impact-counter {
    border-top: 0;
    border-left: 0;
  }

  .impact-counter:nth-child(1),
  .impact-counter:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .impact-counter:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .impact-counter strong {
    font-size: 28px;
    gap: 6px;
  }

  .impact-counter p {
    font-size: 11px;
    line-height: 1.2;
  }

  .partners .center-heading {
    margin-bottom: 24px;
  }

  .partners-marquee::before,
  .partners-marquee::after {
    width: 34px;
  }

  .partners-track {
    animation-duration: 22s;
  }

  .partners-group {
    gap: 16px;
    padding-right: 16px;
  }

  .partner-logo {
    --partner-logo-pad-x: 12px;
    --partner-logo-pad-y: 10px;
    width: 148px;
    height: 98px;
    flex-basis: 148px;
  }

  .mobile-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 18px 10px 28px;
    background: #f1f2f1;
  }

  .mobile-stats div {
    min-height: 50px;
    display: grid;
    place-items: center;
    background: var(--white);
    box-shadow: 0 8px 20px rgba(28, 42, 32, 0.08);
  }

  .mobile-stats strong {
    color: var(--green-800);
    font-size: 17px;
    line-height: 1;
  }

  .mobile-stats span {
    color: #56615a;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .about-grid,
  .contact-grid,
  .publication-grid,
  .engagement-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    gap: 18px;
  }

  .about p {
    max-width: none;
    font-size: 13px;
  }

  .info-card {
    min-height: auto;
    padding: 22px;
  }

  .programs {
    padding: 46px 0;
    background: #f3f4f2;
  }

  .section-inner {
    width: calc(100% - 20px);
  }

  h2 {
    font-size: 24px;
  }

  .center-heading p {
    margin-bottom: 26px;
  }

  .program-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .program-card {
    min-height: auto;
  }

  .program-card img,
  .program-photo img {
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .program-card-ressources img {
    height: 100%;
    min-height: clamp(280px, 72vw, 390px);
    object-fit: cover;
    object-position: center;
  }

  .program-card div,
  .program-text div {
    padding: 20px;
  }

  .program-card h3 {
    font-size: 18px;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 32px;
  }

  .publication-grid {
    gap: 18px;
  }

  .section-row {
    align-items: flex-start;
    gap: 12px;
  }

  .engagement {
    padding: 46px 0;
    background: var(--green-700);
  }

  .engagement::before {
    display: block;
    top: 0;
    right: 6px;
    font-size: 120px;
  }

  .engagement-heading {
    display: block;
  }

  .engagement-grid {
    gap: 14px;
    margin-top: 26px;
  }

  .engagement-grid article {
    min-height: auto;
    padding: 28px 22px 24px;
  }

  .engagement-grid p {
    min-height: 0;
  }

  .contact-grid {
    gap: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .mobile-programs {
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
  }

  .mobile-programs h2 {
    margin: 0 0 18px;
    padding-left: 11px;
    border-left: 3px solid var(--green-800);
    color: #0c170f;
    font-size: 21px;
    font-weight: 500;
  }

  .mobile-program-card {
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
    margin-bottom: 25px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 10px 24px rgba(23, 37, 27, 0.09);
  }

  .mobile-program-card img {
    width: 100%;
    height: auto;
  }

  .mobile-program-card div {
    padding: 17px 18px 20px;
  }

  .mobile-program-card span {
    margin-bottom: 8px;
    font-size: 8px;
  }

  .mobile-program-card h3 {
    margin: 0 0 10px;
    color: #172018;
    font-size: 18px;
    font-weight: 500;
  }

  .mobile-program-card p {
    max-width: 46ch;
    margin: 0 0 17px;
    color: #59655d;
    font-size: 11px;
    overflow-wrap: break-word;
  }

  .mobile-program-card a {
    color: var(--green-800);
    font-size: 11px;
    font-weight: 600;
  }

  .mobile-program-card a::after {
    content: "  →";
  }

  .engagement {
    padding: 46px 0;
    background: var(--green-700);
  }

  .engagement::before {
    display: block;
  }

  .engagement-heading {
    display: block;
  }

  .mobile-cta {
    padding: 34px 10px 28px;
    text-align: center;
  }

  .mobile-cta h2 {
    margin: 0 0 14px;
    color: var(--white);
    font-size: 22px;
    font-weight: 800;
  }

  .mobile-cta p {
    margin: 0 0 21px;
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
  }

  .mobile-cta .button + .button {
    margin-top: 10px;
  }

  .resources {
    padding: 28px 10px 30px;
    background: var(--white);
  }

  .resources h2 {
    margin: 0 0 10px;
    color: #111b14;
    font-size: 21px;
    font-weight: 500;
  }

  .resources p {
    margin: 0 0 22px;
    color: #66716a;
    font-size: 11px;
  }

  .resources a {
    min-height: 53px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 17px;
    border: 1px solid #e1e6e2;
    color: #263129;
    font-size: 11px;
  }

  .resources a + a {
    margin-top: 13px;
  }

  .resources svg {
    width: 14px;
    height: 14px;
    color: var(--green-800);
  }

  .site-footer {
    padding: 34px 10px 30px;
    background: #dfe1df;
  }

  .footer-inner {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 22px;
    padding-bottom: 26px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-logo img {
    width: 138px;
  }

  .footer-inner h3 {
    margin-bottom: 14px;
    color: #172219;
    font-size: 10px;
    text-transform: uppercase;
  }

  .footer-inner p,
  .footer-inner a {
    font-size: 11px;
  }

  .footer-logo img {
    width: 138px;
  }

  .newsletter {
    display: block;
  }

  .social-links a {
    width: 28px;
    height: 28px;
  }

  .copyright {
    width: 100%;
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-track {
    transition: none;
    transform: translateX(0);
  }

  .partners-track {
    animation: none;
  }
}

@media (max-width: 430px) {
  .site-nav {
    width: min(280px, 78vw);
  }

  .program-card img,
  .program-photo img,
  .mobile-program-card img {
    height: auto;
    max-height: none;
  }

  .program-card-ressources img {
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    object-position: center;
  }
}
