/* =============================================
   DESIGN TOKENS — DA Naturelle / Associative
   ============================================= */
:root {
  --bg: #F4F1EA;
  --surface: #ffffff;
  --surface-soft: #EDF5ED;
  --surface-accent: #FAEEE8;
  --surface-blue: #E6F0E6;
  --text: #2D4A3E;
  --muted: #6B4F3A;
  --line: rgba(45, 74, 62, 0.15);
  --blue-deep: #2D4A3E;
  --blue: #3d6b5a;
  --blue-soft: #C8E0C8;
  --green: #6AAF6A;
  --green-deep: #2D4A3E;
  --green-soft: #D8EFCC;
  --gold: #C97C5D;
  --gold-soft: #FAEEE8;
  --white: #ffffff;
  --shadow: 0 20px 48px rgba(45, 74, 62, 0.13);
  --shadow-sm: 0 4px 18px rgba(45, 74, 62, 0.09);
  --radius: 10px;
  --radius-sm: 6px;
}

/* =============================================
   RESET & BASE
   ============================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: #2D4A3E;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", "Inter", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* =============================================
   LAYOUT
   ============================================= */
.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 88px 0;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1,
h2,
h3 {
  font-family: var(--colibri-heading-font, Calibri, "Segoe UI", Arial, sans-serif);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(52px, 7vw, 80px);
  line-height: 0.92;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 4.8vw, 56px);
  line-height: 1.02;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(20px, 2.5vw, 26px);
  line-height: 1.2;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: var(--gold);
}

.section-lead {
  max-width: 520px;
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 0;
  margin-top: 4px;
}

/* =============================================
   BUTTONS
   ============================================= */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(31, 82, 104, 0.14);
}

.button:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}

.button--primary {
  background: #C97C5D;
  color: var(--white);
  border-color: #C97C5D;
}

.button--primary:hover {
  background: #a85e42;
  border-color: #a85e42;
}

.button--secondary {
  background: #D8EFCC;
  color: var(--green-deep);
  border: 1px solid rgba(45, 74, 62, 0.18);
}

.button--soft {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.button--ghost {
  border-color: var(--line);
  background: var(--white);
  color: var(--blue-deep);
}

.button--ghost-light {
  border-color: rgba(255, 255, 255, 0.42);
  background: transparent;
  color: var(--white);
}

.button--submit {
  background: var(--white);
  color: var(--blue-deep);
  border-color: var(--white);
  margin-top: 4px;
}

.button--submit:hover {
  background: var(--surface-accent);
  border-color: var(--surface-accent);
}

/* =============================================
   HEADER / NAV
   ============================================= */
.nav-toggle,
.nav-toggle-button {
  display: none;
}

.site-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  margin: 0;
  padding: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
}

.brand__logo {
  width: 96px;
  height: 96px;
  flex: 0 0 auto;
  object-fit: contain;
  background: transparent;
  mix-blend-mode: multiply;
}

.site-header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex: 1 1 auto;
  min-width: 0;
}

.main-nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 8px 16px;
  flex: 1 1 auto;
  min-width: 0;
}

.main-nav a {
  padding: 8px 2px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--blue-deep);
  border-bottom-color: var(--green);
}

/* Sur fond sombre (.hero--alt) tous les liens nav sont blancs */
.hero--alt .main-nav a,
.hero--alt .nav-dropdown__trigger {
  color: rgba(255, 255, 255, 0.9);
}

.hero--alt .main-nav a:hover,
.hero--alt .main-nav a:focus-visible,
.hero--alt .nav-dropdown__trigger:hover,
.hero--alt .nav-dropdown__trigger:focus-visible {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.55);
}

.nav-dropdown.nav-no-hover .nav-dropdown__menu,
.account-menu.nav-no-hover .account-menu__panel {
  opacity: 0 !important;
  visibility: hidden !important;
  transition: none !important;
}

/* Dropdown nav */
.nav-dropdown {
  position: relative;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  left: -10px;
  right: -10px;
  height: 14px;
  display: none;
}

.nav-dropdown:hover::before {
  display: block;
}

.nav-dropdown__trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-dropdown__chevron {
  transition: transform 0.2s;
  flex-shrink: 0;
}

.nav-dropdown:hover .nav-dropdown__chevron,
.nav-dropdown:focus-within .nav-dropdown__chevron {
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 210px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  padding: 6px 0;
  list-style: none;
  margin: 0;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.12s ease 0.08s, visibility 0.12s ease 0.08s;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.15s ease, visibility 0.15s ease;
}

.nav-dropdown__menu li a {
  display: block;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border-bottom: none;
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown__menu li a:hover {
  background: var(--surface-soft);
  color: var(--blue-deep);
  border-bottom: none;
}

/* Search button */
.nav-search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--blue-deep);
  transition: transform 0.18s ease, color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.nav-search-btn i {
  font-size: 24px;
  line-height: 1;
}

.nav-search-btn svg {
  width: 28px;
  height: 28px;
}

.nav-search-btn:hover {
  color: var(--blue-deep);
  background: var(--blue-soft);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(31, 82, 104, 0.14);
}

.nav-search-btn:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}

.header-actions,
.hero__actions,
.section-actions,
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.account-menu {
  position: relative;
}

.account-menu::before {
  content: '';
  position: absolute;
  top: 100%;
  left: -8px;
  right: -8px;
  height: 12px;
  display: none;
}

.account-menu:hover::before {
  display: block;
}

.account-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--blue-deep);
  transition: transform 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.account-link--logged-in::after {
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 10px;
  height: 10px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: #6AAF6A;
  content: "";
}

.account-link i {
  font-size: 32px;
  line-height: 1;
}

.account-link:hover,
.account-link:focus-visible {
  transform: translateY(-2px);
  background: var(--surface-blue);
  box-shadow: 0 6px 20px rgba(31, 82, 104, 0.14);
}

.account-link:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}

.account-menu__panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 170px;
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease 0.2s, transform 0.18s ease 0.2s, visibility 0.18s ease 0.2s;
}

.account-menu__panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.account-menu__panel a:hover,
.account-menu__panel a:focus-visible {
  background: var(--surface-blue);
}

.account-menu:hover .account-menu__panel,
.account-menu:focus-within .account-menu__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.account-menu__panel a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.account-menu__panel a i {
  font-size: 16px;
  flex-shrink: 0;
  opacity: 0.7;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  overflow: hidden;
  padding: 24px 0 0;
  background:
    radial-gradient(circle at 82% 28%, rgba(155, 203, 155, 0.45), transparent 22%),
    linear-gradient(180deg, #F4F1EA 0%, #EDF5ED 60%, #D8EFCC 100%);
}

.hero--alt {
  background: #17384a;
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 520px);
  gap: 48px;
  align-items: center;
  min-height: 680px;
  padding: 42px 0 64px;
}

.hero__copy {
  max-width: 560px;
}

.hero__lead {
  max-width: 460px;
  margin-bottom: 28px;
  font-size: 19px;
  color: var(--muted);
  line-height: 1.65;
}

.hero__lead span {
  display: block;
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.6;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-top: 28px;
}

.hero__meta span {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--line);
}

.hero__visual {
  position: relative;
  min-height: 540px;
}

.hero__image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.hero__aura {
  position: absolute;
  border-radius: 50%;
  background: rgba(243, 226, 179, 0.65);
  filter: blur(60px);
  z-index: 0;
}

.hero__aura--one {
  top: 60px;
  right: 10px;
  width: 280px;
  height: 360px;
  transform: rotate(26deg);
}

.hero__aura--two {
  top: 160px;
  left: 20px;
  width: 260px;
  height: 220px;
  transform: rotate(-28deg);
}

.hero__leaf {
  position: absolute;
  z-index: 1;
  width: 24px;
  height: 13px;
  border-radius: 100% 0;
  background: #96aa76;
  opacity: 0.6;
}

.hero__leaf--one {
  top: 98px;
  left: 74px;
  transform: rotate(18deg);
}

.hero__leaf--two {
  top: 146px;
  right: 34px;
  transform: rotate(-28deg);
}

.hero__leaf--three {
  right: 54px;
  bottom: 120px;
  transform: rotate(42deg);
}

.hero__wave {
  height: 120px;
  margin-top: -20px;
  background: #F4F1EA;
  clip-path: ellipse(80% 100% at 50% 0%);
}

/* =============================================
   STATS STRIP
   ============================================= */
/* =============================================
   MANIFESTE STRIP
   ============================================= */
.manifeste {
  background: linear-gradient(135deg, #2D4A3E 0%, #3d6b5a 100%);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Feuilles décoratives SVG */
.manifeste__leaf {
  position: absolute;
  pointer-events: none;
  opacity: 0.22;
}

.manifeste__leaf--1 {
  width: 80px;
  top: -10px;
  left: 5%;
  transform: rotate(-30deg);
}

.manifeste__leaf--2 {
  width: 55px;
  bottom: -8px;
  left: 10%;
  transform: rotate(15deg) scaleX(-1);
}

.manifeste__leaf--3 {
  width: 50px;
  top: 10%;
  right: 6%;
  transform: rotate(40deg);
}

.manifeste__phrase {
  font-family: var(--colibri-heading-font, Calibri, "Segoe UI", Arial, sans-serif);
  font-size: clamp(17px, 2vw, 24px);
  font-style: italic;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
  margin: 0 auto 36px;
  max-width: 700px;
  text-align: center;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

/* Supprimer le border-radius que Divi applique sur le wrapper du module */
.et_pb_module.colibri_manifest,
.et_pb_module.colibri_manifest .et_pb_module_inner {
  border-radius: 0 !important;
}

.manifeste__guillemet {
  font-size: 1.4em;
  color: #F2D16B;
  font-style: normal;
  line-height: 0;
  vertical-align: -0.2em;
  margin: 0 2px;
}

.manifeste__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.manifeste__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.manifeste__tag:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.manifeste__tag i {
  font-size: 16px;
  color: #6AAF6A;
  flex-shrink: 0;
}

.manifeste__tag--gold i {
  color: #F2D16B;
}

@media (max-width: 640px) {
  .manifeste__tags {
    flex-direction: column;
    align-items: center;
  }
}

/* Dropdown nav polish */
@media (min-width: 901px) {
  .nav-dropdown__menu {
    min-width: 250px;
    padding: 8px;
    border: 1px solid rgba(45, 74, 62, 0.16);
    border-top: 3px solid #6AAF6A;
    border-radius: 6px;
    background: #FAF7F3;
    box-shadow: 0 12px 28px rgba(45, 74, 62, 0.16);
    transform: translate(-50%, 4px);
    transition: opacity 0.15s ease 0.08s, visibility 0.15s ease 0.08s, transform 0.15s ease 0.08s;
  }

  .nav-dropdown:hover .nav-dropdown__menu,
  .nav-dropdown:focus-within .nav-dropdown__menu {
    transform: translate(-50%, 0);
    transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s ease;
  }

  .nav-dropdown__menu li a {
    position: relative;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 10px;
    padding: 9px 8px;
    border-radius: 4px;
    color: #2D4A3E;
    font-size: 14px;
    font-weight: 700;
  }

  .nav-dropdown__menu li:first-child a {
    background: #EEF7EA;
  }

  .nav-dropdown__menu li a i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 4px;
    background: #E6F0E6;
    color: #2D4A3E;
    font-size: 18px;
  }

  .nav-dropdown__menu li a::after {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #FAEEE8;
    color: #C97C5D;
    content: "\203A";
    font-size: 21px;
    line-height: 1;
    transform: none;
    transition: transform 0.15s ease;
  }

  .nav-dropdown__menu li a:hover,
  .nav-dropdown__menu li a:focus-visible {
    background: #E6F0E6;
    color: #2D4A3E;
  }

  .nav-dropdown__menu li a:hover::after,
  .nav-dropdown__menu li a:focus-visible::after {
    transform: translateX(3px);
  }

  .account-menu__panel {
    min-width: 250px;
    gap: 0;
    padding: 8px;
    border: 1px solid rgba(45, 74, 62, 0.16);
    border-top: 3px solid #6AAF6A;
    border-radius: 6px;
    background: #FAF7F3;
    box-shadow: 0 12px 28px rgba(45, 74, 62, 0.16);
  }

  .account-menu__panel a {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 10px;
    padding: 9px 8px;
    border-radius: 4px;
    color: #2D4A3E;
    font-size: 14px;
    font-weight: 700;
  }

  .account-menu__panel a:first-child {
    background: #EEF7EA;
  }

  .account-menu__panel a i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 4px;
    background: #E6F0E6;
    color: #2D4A3E;
    font-size: 18px;
    opacity: 1;
  }

  .account-menu__panel a::after {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #FAEEE8;
    color: #C97C5D;
    content: "\203A";
    font-size: 21px;
    line-height: 1;
    transition: transform 0.15s ease;
  }

  .account-menu__panel a:hover,
  .account-menu__panel a:focus-visible {
    background: #E6F0E6;
    color: #2D4A3E;
  }

  .account-menu__panel a:hover::after,
  .account-menu__panel a:focus-visible::after {
    transform: translateX(3px);
  }
}

/* =============================================
   SECTION HEADINGS
   ============================================= */
.section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading--center .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.section-actions {
  justify-content: center;
  margin-top: 44px;
}

/* =============================================
   ABOUT
   ============================================= */
.about {
  position: relative;
  isolation: isolate;
  margin-top: -2px;
  background:
    radial-gradient(circle at 8% 80%, rgba(106, 175, 106, 0.18), transparent 24%),
    linear-gradient(180deg, #F4F1EA 0%, #EDF5ED 100%);
}

.about > * {
  position: relative;
  z-index: 1;
}

.about-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow);
}

.about-panel__media img {
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.about-panel__content {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.about-panel__content h3 {
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.1;
  color: var(--blue-deep);
  margin-bottom: 0;
}

.about-panel__content p {
  color: var(--muted);
  margin: 0;
}

.about-tabs {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-tabs__nav {
  display: flex;
  gap: 4px;
}

.about-tabs__btn {
  padding: 5px 14px;
  border-radius: 20px;
  border: 1.5px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.about-tabs__btn.is-active {
  background: var(--green-soft);
  border-color: var(--green);
  color: var(--green-deep);
}

.about-tabs__panels {
  position: relative;
}

.about-tabs__panel {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 18px 20px 18px 52px;
  background: var(--green-soft);
  border-radius: var(--radius-sm);
  position: relative;
}

.about-tabs__panel::before {
  content: '\201C';
  font-family: var(--colibri-heading-font, Calibri, "Segoe UI", Arial, sans-serif);
  font-size: 72px;
  line-height: 1;
  color: var(--green);
  opacity: 0.45;
  position: absolute;
  top: 6px;
  left: 14px;
}

.about-tabs__panel.is-active {
  display: flex;
}

.about-tabs__panel p {
  font-family: var(--colibri-heading-font, Calibri, "Segoe UI", Arial, sans-serif);
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.65;
  margin: 0;
  color: var(--green-deep);
}

.about-panel__content > .button {
  width: 100%;
  min-height: 56px;
  border: 1px solid var(--green-deep);
  border-radius: 8px;
  background: var(--green-deep);
  color: #fff;
  font-weight: 700;
  text-align: center;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.about-panel__content > .button:hover,
.about-panel__content > .button:focus-visible {
  border-color: var(--green);
  background: var(--green);
  transform: translateY(-1px);
}

/* =============================================
   3 PILIERS
   ============================================= */
.piliers {
  background: linear-gradient(160deg, #2D4A3E 0%, #3d6b5a 55%, #4a7a45 100%);
  position: relative;
  z-index: 2;
  overflow: visible;
  padding-bottom: 120px;
}

.piliers .section-heading h2,
.piliers .section-heading .eyebrow--dark {
  color: #ffffff;
}

.piliers .section-heading .eyebrow--dark {
  color: #F2D16B;
}

.piliers::after {
  content: '';
  position: absolute;
  bottom: -72px;
  left: 0;
  right: 0;
  z-index: 3;
  height: 150px;
  background: #FAEEE8;
  clip-path: ellipse(75% 100% at 50% 100%);
  pointer-events: none;
}

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

.pilier-card {
  padding: 36px 28px 40px;
  border-radius: var(--radius);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.pilier-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.piliers-grid .pilier-card:nth-child(1),
.piliers-grid .pilier-card:nth-child(2),
.piliers-grid .pilier-card:nth-child(3) {
  border-color: transparent;
}

.piliers-grid .pilier-card:nth-child(1) {
  background-image: linear-gradient(to bottom, rgba(45, 74, 62, 0.18) 0%, rgba(45, 74, 62, 0.72) 100%), var(--pilier-img, url('https://images.unsplash.com/photo-1448375240586-882707db888b?auto=format&fit=crop&w=900&q=80'));
  background-size: cover;
  background-position: center;
  border-top: 4px solid #6AAF6A;
}

.piliers-grid .pilier-card:nth-child(2) {
  background-image: linear-gradient(to bottom, rgba(107, 79, 58, 0.18) 0%, rgba(107, 79, 58, 0.72) 100%), var(--pilier-img, url('../images/formation.png'));
  background-size: cover;
  background-position: center;
  border-top: 4px solid #F2D16B;
}

.piliers-grid .pilier-card:nth-child(3) {
  background-image: linear-gradient(to bottom, rgba(201, 124, 93, 0.18) 0%, rgba(201, 124, 93, 0.72) 100%), var(--pilier-img, url('../images/inclusion.png'));
  background-size: cover;
  background-position: center;
  border-top: 4px solid #C97C5D;
}

.piliers-grid .pilier-card:nth-child(1) h3,
.piliers-grid .pilier-card:nth-child(2) h3,
.piliers-grid .pilier-card:nth-child(3) h3 {
  color: var(--white);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.piliers-grid .pilier-card:nth-child(1) p,
.piliers-grid .pilier-card:nth-child(2) p,
.piliers-grid .pilier-card:nth-child(3) p {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.piliers-grid .pilier-card:nth-child(1) .pilier-card__icon,
.piliers-grid .pilier-card:nth-child(2) .pilier-card__icon,
.piliers-grid .pilier-card:nth-child(3) .pilier-card__icon {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  backdrop-filter: blur(4px);
}

.pilier-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
}

.pilier-card__icon--eco {
  background: var(--green-soft);
  color: var(--green-deep);
}

.pilier-card__icon--edu {
  background: var(--gold-soft);
  color: var(--gold);
}

.pilier-card__icon--inc {
  background: var(--blue-soft);
  color: var(--blue);
}

.pilier-card__icon svg {
  width: 30px;
  height: 30px;
}

.pilier-card h3 {
  font-size: 28px;
  color: var(--blue-deep);
  margin-bottom: 12px;
}

.pilier-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

/* =============================================
   AXE SECTIONS — Écologie / Inclusion
   ============================================= */
.axe--eco {
  position: relative;
  z-index: 1;
  isolation: isolate;
  padding-top: 48px;
}

.axe--eco > * {
  position: relative;
  z-index: 1;
}

.axe__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: stretch;
}

.axe__layout--reverse .axe__content {
  order: 2;
}

.axe__layout--reverse .axe__media {
  order: 1;
}

.axe__content .eyebrow {
  color: var(--green);
}

.axe__content h2 {
  font-size: clamp(32px, 3.8vw, 50px);
  line-height: 1.05;
  color: var(--blue-deep);
  margin-bottom: 18px;
}

.axe__content p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.axe__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.axe__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.axe__list li::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex: 0 0 auto;
}

.axe__media {
  position: relative;
  display: flex;
  flex-direction: column;
}

.axe__media img {
  flex: 1;
  border: 1px solid rgba(106, 175, 106, 0.34);
  border-radius: var(--radius);
  box-shadow: 0 22px 60px rgba(45, 74, 62, 0.16), 0 0 0 1px rgba(201, 124, 93, 0.16);
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}

.axe__media-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
  max-width: calc(100% - 40px);
}

.axe__media-badge span:first-child {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-deep);
}

.axe__media-badge span:last-child {
  font-size: 12px;
  color: var(--muted);
}

/* Section backgrounds */
.axe--eco {
  background: linear-gradient(180deg, #FAEEE8 0%, #FAEEE8 22%, #F4F1EA 100%);
}

.axe--inc {
  background: linear-gradient(180deg, #EDF5ED 0%, #D8EFCC 100%);
}


/* =============================================
   SERVICES BOLD
   ============================================= */
.services-bold {
  position: relative;
  background: linear-gradient(135deg, #2D4A3E 0%, #4a7a60 100%);
  overflow: hidden;
  user-select: none;
}

.services-bold__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-bold__slide {
  flex: 0 0 100%;
  min-width: 0;
}

.services-bold__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 48px 72px;
  gap: 28px;
}

.services-bold__title {
  font-family: var(--colibri-heading-font, Calibri, "Segoe UI", Arial, sans-serif);
  font-size: clamp(42px, 7vw, 96px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--white);
  text-transform: uppercase;
  margin: 0;
}


.services-bold__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
  text-align: left;
  max-width: 760px;
  width: 100%;
}

/* Slide avec une seule colonne (ex. « Ou chez nous ») : on centre le bloc */
.services-bold__col:only-child {
  grid-column: 1 / -1;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.services-bold__col-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F2D16B;
  margin: 0 0 8px;
}

.services-bold__col p:not(.services-bold__col-label) {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin: 0;
}

.services-bold__cta {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 2px;
  transition: border-color 0.2s, opacity 0.2s;
}

.services-bold__cta:hover {
  border-color: var(--white);
  opacity: 0.85;
}

.services-bold__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.services-bold__arrow:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.services-bold__arrow--prev {
  left: 24px;
}

.services-bold__arrow--next {
  right: 24px;
}

.services-bold__pagination {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.services-bold__pip {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.services-bold__pip.is-active {
  background: var(--white);
  transform: scale(1.25);
}

@media (max-width: 640px) {
  .services-bold {
    overflow: hidden;
  }

  .services-bold__inner {
    padding: 70px 46px 60px;
  }

  .services-bold__title {
    font-size: clamp(42px, 13vw, 58px);
    line-height: 1.04;
  }

  .services-bold__cols {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }

  .services-bold__arrow {
    top: 50%;
    width: 42px;
    height: 42px;
    transform: translateY(-50%);
    z-index: 12;
    pointer-events: auto;
  }

  .services-bold__arrow--prev {
    left: 12px;
  }

  .services-bold__arrow--next {
    right: 12px;
  }
}

/* =============================================
   GALLERY
   ============================================= */
.gallery {
  background: linear-gradient(180deg, #FAEEE8 0%, #F4F1EA 60%, #EDF5ED 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  border-radius: var(--radius);
  border: none;
  outline: none;
  background: #D8EFCC;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.gallery-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.gallery-card__media {
  --gallery-compare-position: 50%;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 1 / 1;
  background: #e9ece8;
}

.gallery-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease, transform 0.45s ease, filter 0.35s ease;
}

.gallery-card__image--before {
  opacity: 1;
  filter: grayscale(0.28) saturate(0.7) brightness(0.88) sepia(0.08);
  transform: scale(1.02);
}

.gallery-card__image--after {
  clip-path: inset(0 0 0 var(--gallery-compare-position));
  transform: scale(1);
}

.gallery-card__state {
  position: absolute;
  top: 12px;
  z-index: 4;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(45, 74, 62, 0.9);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.gallery-card__state--before { left: 12px; }
.gallery-card__state--after { right: 12px; }

.gallery-card__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--gallery-compare-position);
  z-index: 5;
  width: 3px;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(45, 74, 62, 0.15);
  transform: translateX(-50%);
  pointer-events: none;
}

.gallery-card__divider::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: #2D4A3E;
  box-shadow: var(--shadow-sm);
  content: "";
  transform: translate(-50%, -50%);
}

.gallery-card__divider i {
  position: absolute;
  top: 50%;
  z-index: 1;
  color: #ffffff;
  font-size: 17px;
  transform: translateY(-50%);
}

.gallery-card__divider i:first-child { right: 5px; }
.gallery-card__divider i:last-child { left: 5px; }

.gallery-card__range {
  position: absolute;
  inset: 0;
  z-index: 6;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: ew-resize;
  opacity: 0;
}

.gallery-card__label {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: calc(100% - 24px);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  box-shadow: var(--shadow-sm);
}

.gallery-card__label--after {
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.gallery-card__label--before {
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.gallery-card.is-after .gallery-card__label--before {
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
}

.gallery-card.is-after .gallery-card__label--after {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.gallery-card__body {
  display: grid;
  gap: 4px;
  padding: 14px 14px 16px;
}

.gallery-card__body h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1;
  color: var(--blue-deep);
}

.gallery-card__subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.gallery-card__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  margin-top: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(45, 74, 62, 0.28);
  border-radius: 4px;
  background: #ffffff;
  color: var(--blue-deep);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.gallery-card__toggle:hover,
.gallery-card__toggle:focus-visible {
  border-color: var(--green);
  background: var(--gold-soft);
}

/* =============================================
   PARTNERS
   ============================================= */
.partners {
  background:
    radial-gradient(circle at 10% 20%, rgba(201, 124, 93, 0.08), transparent 18%),
    radial-gradient(circle at 88% 76%, rgba(106, 175, 106, 0.14), transparent 18%),
    linear-gradient(180deg, #F4F1EA 0%, #EDF5ED 100%);
  padding: 72px 0;
}

.partners-showcase {
  display: block;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 16px;
}

.partner-logo,
.partner-logo--wide,
.partner-logo--tall,
.partner-logo--featured {
  flex: 0 0 calc(25% - 16px);
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  margin: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  transition: transform 0.25s ease;
}

.partner-logo:hover {
  transform: translateY(-4px);
}

.partner-logo img {
  width: 100%;
  max-width: 160px;
  max-height: 68px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.55);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.partner-logo:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.06);
}

/* Supprime le fond blanc du logo Bonsaï Vital */
.partner-logo img[alt="Bonsaï Vital"] {
  mix-blend-mode: multiply;
  max-width: 180px;
  max-height: 80px;
}

/* --- Divi native et_pb_image dans les colonnes partenaires --- */
/* Le module et_pb_image enveloppe l'img dans un span : on le rend flex */
.partner-logo.et_pb_image {
  flex: none;
  width: 100%;
  box-shadow: none !important;
}
.partner-logo .et_pb_image_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
  background: linear-gradient(135deg, #2D4A3E 0%, #3d6b5a 50%, #6B4F3A 100%);
  color: var(--white);
}

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

.contact h2 {
  max-width: 15ch;
  color: var(--white);
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.05;
}

.contact .eyebrow {
  color: rgba(255, 255, 255, 0.65);
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.contact__details li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.contact__details li svg {
  flex: 0 0 auto;
  margin-top: 2px;
  opacity: 0.65;
}

.contact__details strong {
  color: var(--white);
}

.contact__details a {
  color: rgba(255, 255, 255, 0.82);
}

.contact__details a:hover {
  color: var(--white);
  text-decoration: underline;
}

/* Form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  line-height: 1.5;
  transition: border-color 0.15s, background 0.15s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.form-group select option {
  background: var(--blue-deep);
  color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

/* =============================================
   RESET DIVI / WORDPRESS WRAPPERS
   ============================================= */
#page-container,
#et-main-area,
#et-boc {
  padding: 0 !important;
  margin: 0 !important;
}

html {
  margin: 0 !important;
  padding: 0 !important;
  background: #17384a !important;
}

body {
  margin: 0 !important;
  padding: 0 !important;
}

#et-top-navigation,
#main-header,
.et_pb_section:empty {
  display: none !important;
}


/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: #1e3328;
  color: rgba(255, 255, 255, 0.65);
  padding-top: 60px;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 16px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 6px;
}

.footer-address {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.42);
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: color 0.15s;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-bottom {
  padding: 22px 0;
}

.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom__inner span,
.footer-bottom__inner a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom__inner a:hover {
  color: rgba(255, 255, 255, 0.65);
}

/* =============================================
   RESPONSIVE — 1100px
   ============================================= */
@media (max-width: 1100px) {
  .hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
    gap: 36px;
  }

  .partner-logo,
  .partner-logo--wide,
  .partner-logo--tall,
  .partner-logo--featured {
    flex: 0 0 calc(33.33% - 16px);
  }


  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =============================================
   RESPONSIVE — 960px
   ============================================= */
@media (max-width: 960px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 20px;
  }

  .partner-logo,
  .partner-logo--wide,
  .partner-logo--tall,
  .partner-logo--featured {
    flex: 0 0 calc(33.33% - 16px);
  }

  .piliers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .piliers-grid .pilier-card:last-child {
    grid-column: 1 / -1;
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }

  .axe__layout,
  .axe__layout--reverse {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* On mobile, media always comes first visually */
  .axe__layout .axe__media,
  .axe__layout--reverse .axe__media {
    order: -1;
  }

  .axe__layout .axe__content,
  .axe__layout--reverse .axe__content {
    order: 0;
  }

  .axe__media img {
    height: 340px;
    min-height: unset;
  }

  .contact__layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }

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

/* =============================================
   RESPONSIVE — 900px (nav mobile)
   ============================================= */
@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
    padding: 0;
    gap: 18px;
  }

  .brand__logo {
    width: 76px;
    height: 76px;
  }

  .nav-toggle-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 8px;
    background: var(--surface-blue);
    color: var(--blue-deep);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
  }

  .site-header__nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
  }

  .nav-toggle:checked~.site-header__nav {
    display: flex;
  }

  .main-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .main-nav a {
    display: block;
    width: 100%;
    padding: 10px 4px;
    border-bottom: 1px solid var(--line);
    border-bottom-width: 1px;
  }

  .main-nav a:last-child {
    border-bottom-color: transparent;
  }

  .header-actions {
    width: 100%;
  }

  .account-link {
    width: 52px;
    height: 52px;
  }

  .account-menu__panel {
    right: auto;
    left: 0;
  }

  .header-actions .button {
    flex: 1;
    text-align: center;
    justify-content: center;
  }

  .hero__layout,
  .about-panel {
    grid-template-columns: 1fr;
  }

  .hero__layout {
    min-height: auto;
    padding: 36px 0 60px;
  }

  .hero__copy {
    max-width: 100%;
  }

  .hero__visual {
    min-height: 360px;
  }

  .hero__image {
    height: 360px;
  }

  .hero__wave {
    height: 88px;
  }

  .about-panel__media img {
    height: 280px;
    min-height: unset;
  }

  .about-panel__content {
    padding: 36px 28px;
  }

}

/* =============================================
   RESPONSIVE — 640px
   ============================================= */
@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 60px 0;
  }

  .stats-item__value {
    font-size: 42px;
  }

  .piliers-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .piliers-grid .pilier-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card__media {
    aspect-ratio: 1 / 0.82;
  }

  .partner-logo,
  .partner-logo--wide,
  .partner-logo--tall,
  .partner-logo--featured {
    flex: 0 0 calc(50% - 16px);
    min-height: 90px;
  }

  .partner-logo img,
  .partner-logo--featured img {
    max-width: 130px;
    max-height: 54px;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .button,
  .header-actions .button,
  .contact__form .button--submit {
    width: 100%;
  }

  /* Mobile : centrage propre du texte des boutons du hero (home uniquement) */
  body.colibri-home .hero__actions .button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-left: 22px;
    padding-right: 22px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }
}
