/*-----------------------------------*\
  #style.css
\*-----------------------------------*/

  @font-face {
      font-family:'poppins';
      src: url(../fonts/poppins.ttf);
  }
  body{font-family: 'poppins';}

/**
 * copyright 2026 @diedou-cabrel
 */

    :root {
      --green: #151E49;
      --green-mid: #2A3A8C;
      --green-light: #4A5DC4;
      --gold: #c9921a;
      --gold-light: #e8b84b;
      --cream: #fdf8ef;
      --dark: #0d1214;
      --text: #1a1f2e;
      --text-light: #5a6070;
      --white: #ffffff;
      --red: #a62a2a;
    }

    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Outfit', sans-serif;
      background: var(--cream);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ─── ALERT BAR ─── */
    .alert-bar {
      background: var(--gold);
      color: var(--dark);
      text-align: center;
      padding: 10px 20px;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
    }

    .alert-bar span.dot {
      width: 8px;
      height: 8px;
      background: var(--dark);
      border-radius: 50%;
      display: inline-block;
      animation: pulse 1.5s infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: 0.3
      }
    }

    /* ─── NAV ─── */
    nav {
      background: var(--green);
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
      /* needed for mobile dropdown positioning */
      isolation: isolate;
    }

    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 24px;
      height: 70px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }

    .logo-icon {
      width: 46px;
      height: 46px;
      background: var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      font-weight: 900;
      font-size: 1.1rem;
      color: var(--dark);
      flex-shrink: 0;
    }

    .logo-text {
      color: var(--white);
    }

    .logo-text strong {
      display: block;
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      letter-spacing: 0.05em;
    }

    .logo-text small {
      font-size: 0.7rem;
      opacity: 0.75;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      gap: 4px;
      align-items: center;
    }

    .nav-links a {
      color: rgba(255, 255, 255, 0.85);
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 500;
      padding: 8px 14px;
      border-radius: 6px;
      transition: all 0.2s;
      letter-spacing: 0.03em;
    }

    .nav-links a:hover {
      background: rgba(255, 255, 255, 0.12);
      color: var(--white);
    }

    .nav-links .btn-nav {
      background: var(--gold);
      color: var(--dark);
      padding: 8px 18px;
      border-radius: 20px;
      font-weight: 600;
    }

    .nav-links .btn-nav:hover {
      background: var(--gold-light);
    }

    /* ─── HERO ─── */
    .hero {
      background: linear-gradient(135deg, var(--dark) 0%, var(--green) 50%, #151E49 100%);
      min-height: 90vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    .hero-content {
      padding: 80px 60px 80px 80px;
      position: relative;
      z-index: 2;
      animation: fadeInLeft 1s ease forwards;
    }

    @keyframes fadeInLeft {
      from {
        opacity: 0;
        transform: translateX(-40px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .hero-tag {
      display: inline-block;
      background: rgba(201, 146, 26, 0.2);
      border: 1px solid var(--gold);
      color: var(--gold-light);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 20px;
      margin-bottom: 24px;
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.4rem, 4vw, 3.6rem);
      font-weight: 900;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 20px;
    }

    .hero h1 em {
      color: var(--gold-light);
      font-style: italic;
    }

    .hero p {
      color: rgba(255, 255, 255, 0.75);
      font-size: 1.05rem;
      line-height: 1.8;
      margin-bottom: 36px;
      max-width: 500px;
    }

    .hero-slogan {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: 1.1rem;
      color: var(--gold-light);
      border-left: 3px solid var(--gold);
      padding-left: 16px;
      margin-bottom: 36px;
    }

    .hero-btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--gold);
      color: var(--dark);
      padding: 14px 28px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 0.04em;
      transition: all 0.3s;
      border: none;
      cursor: pointer;
      display: inline-block;
    }

    .btn-primary:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(201, 146, 26, 0.4);
    }

    .btn-outline {
      background: transparent;
      color: var(--white);
      padding: 14px 28px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.9rem;
      border: 2px solid rgba(255, 255, 255, 0.35);
      transition: all 0.3s;
      display: inline-block;
    }

    .btn-outline:hover {
      border-color: var(--white);
      background: rgba(255, 255, 255, 0.08);
    }

    .hero-visual {
      padding: 80px 80px 80px 40px;
      position: relative;
      z-index: 2;
      animation: fadeInRight 1s ease 0.3s forwards;
      opacity: 0;
    }

    @keyframes fadeInRight {
      from {
        opacity: 0;
        transform: translateX(40px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .hero-card {
      background: rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 20px;
      padding: 36px;
    }

    .hero-card h3 {
      font-family: 'Playfair Display', serif;
      color: var(--gold-light);
      font-size: 1.1rem;
      margin-bottom: 24px;
      letter-spacing: 0.05em;
    }

    .stat-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .stat-item {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 12px;
      padding: 20px;
      text-align: center;
      border: 1px solid rgba(255, 255, 255, 0.08);
      transition: all 0.3s;
    }

    .stat-item:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-3px);
    }

    .stat-item .num {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 900;
      color: var(--gold-light);
      display: block;
    }

    .stat-item .label {
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.6);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-top: 4px;
    }

    /* ─── SECTIONS ─── */
    section {
      padding: 90px 0;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
    }

    .section-tag {
      display: inline-block;
      background: rgba(21, 30, 73, 0.12);
      color: var(--green-mid);
      font-size: 0.73rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 20px;
      margin-bottom: 14px;
      border: 1px solid rgba(21, 30, 73, 0.2);
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 900;
      color: var(--dark);
      line-height: 1.2;
      margin-bottom: 16px;
    }

    .section-title em {
      color: var(--green-mid);
      font-style: italic;
    }

    .section-desc {
      color: var(--text-light);
      font-size: 1.05rem;
      line-height: 1.8;
      max-width: 580px;
    }

    .divider {
      width: 60px;
      height: 4px;
      background: var(--gold);
      border-radius: 2px;
      margin: 20px 0 40px;
    }

    /* ─── QUI SOMMES NOUS ─── */
    .about-bg {
      background: var(--white);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 70px;
      align-items: center;
    }

    .values-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-top: 32px;
    }

    .value-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 20px;
      background: var(--cream);
      border-radius: 12px;
      border-left: 4px solid var(--green-light);
      transition: all 0.3s;
    }

    .value-item:hover {
      transform: translateX(6px);
      border-color: var(--gold);
    }

    .value-icon {
      width: 42px;
      height: 42px;
      background: var(--green);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .value-item h4 {
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 4px;
    }

    .value-item p {
      font-size: 0.88rem;
      color: var(--text-light);
      line-height: 1.6;
    }

    .about-visual {
      background: linear-gradient(145deg, var(--green) 0%, var(--dark) 100%);
      border-radius: 24px;
      padding: 48px;
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .about-visual::after {
      content: '';
      position: absolute;
      bottom: -20px;
      right: -10px;
      font-size: 8rem;
      opacity: 0.08;
    }

    .about-visual h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      margin-bottom: 20px;
      color: var(--gold-light);
    }

    .mission-item {
      margin-bottom: 24px;
    }

    .mission-item h4 {
      color: var(--gold-light);
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      margin-bottom: 8px;
    }

    .mission-item p {
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.92rem;
      line-height: 1.7;
    }

    /* ─── ACTIONS ─── */
    .actions-bg {
      background: var(--cream);
    }

    .actions-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 50px;
    }

    .action-card {
      background: var(--white);
      border-radius: 16px;
      padding: 32px 28px;
      border: 1px solid rgba(21, 30, 73, 0.1);
      transition: all 0.35s;
      position: relative;
      overflow: hidden;
    }

    .action-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--green), var(--gold));
      transform: scaleX(0);
      transition: transform 0.35s;
      transform-origin: left;
    }

    .action-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 50px rgba(21, 30, 73, 0.15);
    }

    .action-card:hover::before {
      transform: scaleX(1);
    }

    .action-emoji {
      font-size: 2.2rem;
      margin-bottom: 16px;
      display: block;
    }

    .action-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 10px;
      line-height: 1.4;
    }

    .action-card p {
      font-size: 0.87rem;
      color: var(--text-light);
      line-height: 1.7;
    }

    /* ─── VILLAGE ─── */
    .village-bg {
      background: var(--green);
      color: var(--white);
    }

    .village-bg .section-tag {
      background: rgba(255, 255, 255, 0.12);
      color: var(--gold-light);
      border-color: rgba(201, 146, 26, 0.4);
    }

    .village-bg .section-title {
      color: var(--white);
    }

    .village-bg .section-desc {
      color: rgba(255, 255, 255, 0.75);
    }

    .village-bg .divider {
      background: var(--gold);
    }

    .village-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 60px;
      align-items: start;
    }

    .village-info {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .info-badge {
      display: flex;
      align-items: center;
      gap: 14px;
      background: rgba(255, 255, 255, 0.08);
      padding: 16px 20px;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .info-badge .icon {
      font-size: 1.4rem;
      width: 36px;
      text-align: center;
    }

    .info-badge strong {
      display: block;
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--gold-light);
      margin-bottom: 2px;
    }

    .info-badge span {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.85);
    }

    .history-box {
      background: rgba(255, 255, 255, 0.07);
      border-radius: 16px;
      padding: 36px;
      border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .history-box h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      color: var(--gold-light);
      margin-bottom: 18px;
    }

    .history-box p {
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.85;
      font-size: 0.95rem;
      margin-bottom: 14px;
    }

    /* ─── GOUVERNANCE ─── */
    .gov-bg {
      background: var(--white);
    }

    .gov-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 50px;
    }

    .gov-card {
      background: var(--cream);
      border-radius: 16px;
      padding: 32px;
      text-align: center;
      transition: all 0.3s;
      border: 2px solid transparent;
    }

    .gov-card:hover {
      border-color: var(--green-light);
      transform: translateY(-5px);
    }

    .gov-icon {
      width: 70px;
      height: 70px;
      background: var(--green);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      margin: 0 auto 20px;
    }

    .gov-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      color: var(--dark);
      margin-bottom: 12px;
    }

    .gov-card p {
      font-size: 0.88rem;
      color: var(--text-light);
      line-height: 1.7;
    }

    /* ─── ACTUALITES ─── */
    .news-bg {
      background: var(--cream);
    }

    .news-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: 24px;
      margin-top: 50px;
    }

    .news-card {
      background: var(--white);
      border-radius: 16px;
      overflow: hidden;
      transition: all 0.3s;
      border: 1px solid rgba(0, 0, 0, 0.06);
    }

    .news-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    }

    .news-img {
      height: 180px;
      background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3rem;
    }

    .news-card:first-child .news-img {
      height: 220px;
    }

    .news-body {
      padding: 24px;
    }

    .news-cat {
      font-size: 0.73rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--green-mid);
      margin-bottom: 10px;
    }

    .news-body h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem;
      color: var(--dark);
      margin-bottom: 10px;
      line-height: 1.4;
    }

    .news-body p {
      font-size: 0.85rem;
      color: var(--text-light);
      line-height: 1.65;
    }

    .news-date {
      font-size: 0.78rem;
      color: rgba(0, 0, 0, 0.3);
      margin-top: 14px;
    }

    /* ─── CONTACT ─── */
    .contact-bg {
      background: linear-gradient(160deg, var(--dark) 0%, #0f1318 100%);
      color: var(--white);
    }

    .contact-bg .section-tag {
      background: rgba(201, 146, 26, 0.15);
      color: var(--gold-light);
      border-color: rgba(201, 146, 26, 0.4);
    }

    .contact-bg .section-title {
      color: var(--white);
    }

    .contact-bg .divider {
      background: var(--gold);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 60px;
      align-items: start;
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 20px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .contact-item .ico {
      font-size: 1.5rem;
      width: 36px;
      text-align: center;
      flex-shrink: 0;
    }

    .contact-item strong {
      display: block;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--gold-light);
      margin-bottom: 4px;
    }

    .contact-item span {
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.92rem;
    }

    .contact-form {
      background: rgba(255, 255, 255, 0.06);
      border-radius: 20px;
      padding: 40px;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .contact-form h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      color: var(--gold-light);
      margin-bottom: 24px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 16px;
    }

    .form-group label {
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.65);
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 8px;
      padding: 12px 16px;
      color: var(--white);
      font-family: 'Outfit', sans-serif;
      font-size: 0.9rem;
      transition: border-color 0.3s;
      width: 100%;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--gold);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 110px;
    }

    .form-group select option {
      background: var(--dark);
    }

    /* ─── GALERIE ─── */
    .galerie-bg {
      background: var(--dark);
      color: var(--white);
      overflow: hidden;
    }

    .galerie-bg .section-tag {
      background: rgba(201, 146, 26, 0.15);
      color: var(--gold-light);
      border-color: rgba(201, 146, 26, 0.3);
    }

    .galerie-bg .section-title {
      color: var(--white);
    }

    .galerie-bg .divider {
      background: var(--gold);
    }

    /* Filtres */
    .gal-filters {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin: 36px 0 32px;
    }

    .gal-btn {
      padding: 8px 22px;
      border-radius: 24px;
      border: 2px solid rgba(255, 255, 255, 0.15);
      background: transparent;
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.83rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.25s;
      letter-spacing: 0.04em;
    }

    .gal-btn:hover {
      border-color: var(--gold);
      color: var(--gold-light);
    }

    .gal-btn.active {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--dark);
    }

    /* Grille masonry */
    .gal-grid {
      columns: 3;
      column-gap: 14px;
      margin-bottom: 50px;
    }

    .gal-item {
      break-inside: avoid;
      margin-bottom: 14px;
      border-radius: 12px;
      overflow: hidden;
      cursor: pointer;
      position: relative;
      display: block;
      transition: transform 0.3s, opacity 0.35s;
    }

    .gal-item.hidden {
      opacity: 0;
      transform: scale(0.9);
      pointer-events: none;
      height: 0;
      margin: 0;
      overflow: hidden;
    }

    .gal-item:hover .gal-overlay {
      opacity: 1;
    }

    .gal-item:hover .gal-thumb {
      transform: scale(1.06);
    }

    .gal-thumb {
      width: 100%;
      display: block;
      transition: transform 0.4s ease;
      min-height: 120px;
      object-fit: cover;
    }

    /* Faux thumb coloré (pas d'images réelles) */
    .gal-thumb-fake {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 10px;
      transition: transform 0.4s ease;
      font-size: 2.8rem;
    }

    .gal-thumb-fake span {
      font-size: 0.78rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      opacity: 0.85;
    }

    .gal-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.75) 100%);
      opacity: 0;
      transition: opacity 0.3s;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 18px;
    }

    .gal-overlay-title {
      color: var(--white);
      font-size: 0.85rem;
      font-weight: 600;
      line-height: 1.4;
    }

    .gal-overlay-cat {
      font-size: 0.7rem;
      color: var(--gold-light);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 4px;
    }

    .gal-zoom-icon {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 34px;
      height: 34px;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(6px);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      color: white;
      opacity: 0;
      transition: opacity 0.3s;
    }

    .gal-item:hover .gal-zoom-icon {
      opacity: 1;
    }

    /* Slider plein écran */
    .gal-slider {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.95);
      z-index: 9999;
      display: none;
      align-items: center;
      justify-content: center;
      flex-direction: column;
    }

    .gal-slider.open {
      display: flex;
    }

    .gal-slider-inner {
      position: relative;
      width: 100%;
      max-width: 900px;
      padding: 0 70px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .gal-slide {
      display: none;
      flex-direction: column;
      align-items: center;
      animation: fadeSlide 0.35s ease;
    }

    @keyframes fadeSlide {
      from {
        opacity: 0;
        transform: scale(0.97);
      }

      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    .gal-slide.active {
      display: flex;
    }

    .gal-slide-visual {
      width: 100%;
      max-width: 700px;
      border-radius: 16px;
      overflow: hidden;
      border: 2px solid rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 14px;
      font-size: 5rem;
      min-height: 380px;
    }

    .gal-slide-cat {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-top: 20px;
    }

    .gal-slide-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      color: var(--white);
      margin-top: 6px;
      text-align: center;
      max-width: 620px;
      line-height: 1.4;
    }

    .gal-slide-desc {
      font-size: 0.88rem;
      color: rgba(255, 255, 255, 0.6);
      margin-top: 8px;
      text-align: center;
      max-width: 560px;
      line-height: 1.65;
    }

    .gal-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 50px;
      height: 50px;
      background: rgba(255, 255, 255, 0.08);
      border: 2px solid rgba(255, 255, 255, 0.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      color: var(--white);
      cursor: pointer;
      transition: all 0.25s;
      z-index: 2;
      user-select: none;
    }

    .gal-arrow:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--dark);
    }

    .gal-arrow.prev {
      left: 0;
    }

    .gal-arrow.next {
      right: 0;
    }

    .gal-close {
      position: fixed;
      top: 22px;
      right: 26px;
      width: 44px;
      height: 44px;
      background: rgba(255, 255, 255, 0.08);
      border: 2px solid rgba(255, 255, 255, 0.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      color: var(--white);
      cursor: pointer;
      z-index: 10000;
      transition: all 0.2s;
    }

    .gal-close:hover {
      background: var(--red);
      border-color: var(--red);
    }

    .gal-dots {
      display: flex;
      gap: 8px;
      margin-top: 28px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .gal-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.25);
      cursor: pointer;
      transition: all 0.25s;
      border: none;
    }

    .gal-dot.active {
      background: var(--gold);
      transform: scale(1.3);
    }

    .gal-counter {
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.4);
      margin-top: 12px;
      letter-spacing: 0.1em;
    }

    .gal-thumb-wrap {
      display: flex;
      gap: 10px;
      margin-top: 20px;
      overflow-x: auto;
      padding: 4px 2px;
      max-width: 700px;
      scrollbar-width: none;
    }

    .gal-thumb-wrap::-webkit-scrollbar {
      display: none;
    }

    .gal-mini {
      flex-shrink: 0;
      width: 60px;
      height: 60px;
      border-radius: 8px;
      overflow: hidden;
      cursor: pointer;
      border: 2px solid transparent;
      transition: all 0.2s;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      opacity: 0.5;
    }

    .gal-mini.active,
    .gal-mini:hover {
      border-color: var(--gold);
      opacity: 1;
    }

    @media (max-width: 768px) {
      .gal-grid {
        columns: 2;
      }

      .gal-slider-inner {
        padding: 0 50px;
      }

      .gal-slide-visual {
        min-height: 260px;
        font-size: 3.5rem;
      }
    }

    @media (max-width: 480px) {
      .gal-grid {
        columns: 1;
      }
    }

    /* ─── DÉFIS ─── */
    .defis-bg {
      background: var(--cream);
    }

    .defis-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      margin-top: 50px;
    }

    .defi-card {
      border-radius: 16px;
      padding: 32px;
      border: 2px solid transparent;
      transition: all 0.3s;
    }

    .defi-card.challenge {
      background: #fff7f0;
      border-color: rgba(166, 42, 42, 0.15);
    }

    .defi-card.success {
      background: #fdf8ef;
      border-color: rgba(21, 30, 73, 0.15);
    }

    .defi-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    }

    .defi-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .defi-card.challenge h3 {
      color: var(--red);
    }

    .defi-card.success h3 {
      color: var(--green);
    }

    .defi-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .defi-list li {
      font-size: 0.9rem;
      color: var(--text);
      line-height: 1.65;
      padding-left: 20px;
      position: relative;
    }

    .defi-list li::before {
      content: '→';
      position: absolute;
      left: 0;
    }

    .defi-card.challenge .defi-list li::before {
      color: var(--red);
    }

    .defi-card.success .defi-list li::before {
      color: var(--green);
    }

    /* ─── CARRIÈRE ─── */
    .career-bg {
      background: var(--white);
    }

    .career-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-top: 50px;
    }

    .career-card {
      background: var(--cream);
      border-radius: 16px;
      padding: 32px;
      border-left: 5px solid var(--green-light);
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }

    .career-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(21, 30, 73, 0.12);
      border-left-color: var(--gold);
    }

    .career-badge {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 12px;
      margin-bottom: 14px;
    }

    .career-badge.emploi {
      background: rgba(21, 30, 73, 0.12);
      color: var(--green);
    }

    .career-badge.benevolat {
      background: rgba(201, 146, 26, 0.15);
      color: var(--gold);
    }

    .career-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem;
      color: var(--dark);
      margin-bottom: 10px;
    }

    .career-card p {
      font-size: 0.87rem;
      color: var(--text-light);
      line-height: 1.7;
      margin-bottom: 16px;
    }

    .career-card .btn-primary {
      font-size: 0.82rem;
      padding: 10px 20px;
    }

    .career-intro {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
      margin-bottom: 50px;
    }

    .career-intro p {
      font-size: 1rem;
      color: var(--text-light);
      line-height: 1.8;
    }

    /* ─── FAQ ─── */
    .faq-bg {
      background: var(--cream);
    }

    .faq-list {
      max-width: 820px;
      margin: 50px auto 0;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .faq-item {
      background: var(--white);
      border-radius: 14px;
      border: 1px solid rgba(0, 0, 0, 0.07);
      overflow: hidden;
    }

    .faq-q {
      padding: 22px 28px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      font-size: 0.97rem;
      color: var(--dark);
      transition: all 0.2s;
    }

    .faq-q:hover {
      color: var(--green);
    }

    .faq-q .arrow {
      font-size: 1.1rem;
      transition: transform 0.3s;
      color: var(--green-mid);
    }

    .faq-q.open .arrow {
      transform: rotate(180deg);
    }

    .faq-a {
      display: none;
      padding: 0 28px 22px;
      font-size: 0.9rem;
      color: var(--text-light);
      line-height: 1.75;
      border-top: 1px solid rgba(0, 0, 0, 0.06);
      padding-top: 16px;
    }

    .faq-a.visible {
      display: block;
    }

    .faq-contact-cta {
      text-align: center;
      margin-top: 40px;
      padding: 36px;
      background: var(--white);
      border-radius: 16px;
      border: 1px solid rgba(21, 30, 73, 0.1);
    }

    .faq-contact-cta p {
      color: var(--text-light);
      margin-bottom: 16px;
    }

    /* ─── ANNUAIRE ─── */
    .annuaire-bg {
      background: var(--white);
    }

    .annuaire-tabs {
      display: flex;
      gap: 12px;
      margin: 40px 0 30px;
      flex-wrap: wrap;
    }

    .ann-tab {
      padding: 10px 24px;
      border-radius: 24px;
      border: 2px solid transparent;
      font-weight: 600;
      font-size: 0.87rem;
      cursor: pointer;
      transition: all 0.25s;
    }

    .ann-tab.active,
    .ann-tab:hover {
      background: var(--green);
      color: var(--white);
      border-color: var(--green);
    }

    .ann-tab:not(.active) {
      background: var(--cream);
      color: var(--text);
      border-color: rgba(0, 0, 0, 0.08);
    }

    .ann-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .ann-card {
      background: var(--cream);
      border-radius: 14px;
      padding: 24px;
      border: 1px solid rgba(21, 30, 73, 0.1);
      transition: all 0.3s;
    }

    .ann-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 30px rgba(21, 30, 73, 0.1);
      border-color: var(--green-light);
    }

    .ann-card-head {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
    }

    .ann-avatar {
      width: 46px;
      height: 46px;
      background: var(--green);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      flex-shrink: 0;
      color: var(--white);
    }

    .ann-card h4 {
      font-family: 'Playfair Display', serif;
      font-size: 0.97rem;
      color: var(--dark);
      margin-bottom: 2px;
    }

    .ann-card .ann-role {
      font-size: 0.78rem;
      color: var(--green-mid);
      font-weight: 600;
    }

    .ann-card p {
      font-size: 0.85rem;
      color: var(--text-light);
      line-height: 1.6;
    }

    .ann-tag {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 10px;
      margin-top: 10px;
      background: rgba(201, 146, 26, 0.15);
      color: var(--gold);
    }

    .ann-panel {
      display: none;
    }

    .ann-panel.active {
      display: block;
    }

    /* ─── MOTS DES CHEFS & PRÉSIDENT ─── */
    .mots-bg {
      background: linear-gradient(160deg, var(--dark) 0%, #0f1318 100%);
      padding: 90px 0;
    }

    .mots-bg .section-tag {
      background: rgba(201, 146, 26, 0.15);
      color: var(--gold-light);
      border-color: rgba(201, 146, 26, 0.4);
    }

    .mots-bg .section-title {
      color: var(--white);
    }

    .mots-bg .divider {
      background: var(--gold);
    }

    .mots-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      margin-top: 50px;
    }

    .mot-card {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 40px;
      position: relative;
      overflow: hidden;
      transition: all 0.3s;
    }

    .mot-card:hover {
      background: rgba(255, 255, 255, 0.08);
      transform: translateY(-4px);
    }

    .mot-card::before {
      content: '\201C';
      position: absolute;
      top: -10px;
      left: 24px;
      font-family: 'Playfair Display', serif;
      font-size: 9rem;
      color: var(--gold);
      opacity: 0.12;
      line-height: 1;
    }

    .mot-avatar {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--green), var(--gold));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      margin-bottom: 20px;
      border: 3px solid rgba(201, 146, 26, 0.4);
    }

    .mot-card blockquote {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: 1.05rem;
      color: rgba(255, 255, 255, 0.88);
      line-height: 1.8;
      margin-bottom: 24px;
      position: relative;
      z-index: 1;
    }

    .mot-author strong {
      display: block;
      color: var(--gold-light);
      font-size: 0.92rem;
      font-weight: 700;
    }

    .mot-author span {
      color: rgba(255, 255, 255, 0.5);
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    .mot-divider {
      width: 40px;
      height: 3px;
      background: var(--gold);
      border-radius: 2px;
      margin: 16px 0;
    }

    /* ─── À PROPOS + TIMELINE ÉQUIPE ─── */
    .apropos-bg {
      background: var(--white);
    }

    .apropos-intro {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 60px;
      align-items: start;
      margin-bottom: 80px;
    }

    .apropos-text p {
      color: var(--text-light);
      line-height: 1.85;
      font-size: 0.97rem;
      margin-bottom: 16px;
    }

    .apropos-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--cream);
      border: 1px solid rgba(21, 30, 73, 0.15);
      border-radius: 10px;
      padding: 10px 18px;
      font-size: 0.85rem;
      color: var(--text);
      margin: 6px 6px 0 0;
    }

    .apropos-badge strong {
      color: var(--green);
    }

    .apropos-stat-box {
      background: linear-gradient(145deg, var(--green), var(--dark));
      border-radius: 20px;
      padding: 40px;
      color: var(--white);
      display: flex;
      flex-direction: column;
      gap: 22px;
    }

    .apropos-stat-box h3 {
      font-family: 'Playfair Display', serif;
      color: var(--gold-light);
      font-size: 1.2rem;
      margin-bottom: 4px;
    }

    .astat {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 14px;
      background: rgba(255, 255, 255, 0.06);
      border-radius: 12px;
    }

    .astat-num {
      font-family: 'Playfair Display', serif;
      font-size: 1.9rem;
      font-weight: 900;
      color: var(--gold-light);
      min-width: 64px;
      text-align: center;
    }

    .astat-label {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.75);
      line-height: 1.4;
    }

    /* Timeline équipe */
    .timeline-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: 900;
      color: var(--dark);
      margin-bottom: 8px;
    }

    .timeline-title em {
      color: var(--green-mid);
      font-style: italic;
    }

    .timeline {
      position: relative;
      margin-top: 50px;
    }

    .timeline::before {
      content: '';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      top: 0;
      bottom: 0;
      width: 3px;
      background: linear-gradient(to bottom, var(--green-light), var(--gold));
      border-radius: 2px;
    }

    .tl-item {
      display: grid;
      grid-template-columns: 1fr 80px 1fr;
      margin-bottom: 48px;
      align-items: start;
    }

    .tl-card-left {
      grid-column: 1;
      text-align: right;
      padding-right: 40px;
    }

    .tl-card-right {
      grid-column: 3;
      text-align: left;
      padding-left: 40px;
    }

    .tl-empty {
      grid-column: 1;
    }

    .tl-dot-col {
      grid-column: 2;
      display: flex;
      justify-content: center;
      padding-top: 16px;
    }

    .tl-dot {
      width: 52px;
      height: 52px;
      background: var(--green);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      border: 4px solid var(--white);
      box-shadow: 0 0 0 3px var(--green-light);
      position: relative;
      z-index: 1;
      flex-shrink: 0;
    }

    .tl-card {
      background: var(--cream);
      border-radius: 16px;
      padding: 24px 28px;
      border: 1px solid rgba(21, 30, 73, 0.1);
      transition: all 0.3s;
      display: inline-block;
      width: 100%;
    }

    .tl-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 30px rgba(21, 30, 73, 0.12);
      border-color: var(--green-light);
    }

    .tl-role {
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--green-mid);
      margin-bottom: 6px;
    }

    .tl-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      color: var(--dark);
      font-weight: 700;
      margin-bottom: 8px;
    }

    .tl-desc {
      font-size: 0.87rem;
      color: var(--text-light);
      line-height: 1.65;
      margin-bottom: 12px;
    }

    .tl-contact {
      font-size: 0.8rem;
      color: var(--green-mid);
      font-weight: 600;
    }

    @media (max-width: 768px) {
      .timeline::before {
        left: 26px;
        transform: none;
      }

      .tl-item {
        grid-template-columns: 52px 1fr !important;
      }

      .tl-card-left,
      .tl-card-right {
        grid-column: 2 !important;
        text-align: left !important;
        padding: 20px !important;
      }

      .tl-dot-col {
        grid-column: 1 !important;
        grid-row: 1;
      }

      .tl-empty {
        display: none !important;
      }

      .apropos-intro,
      .mots-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ─── SERVICES ─── */
    .services-bg {
      background: var(--cream);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 50px;
    }

    .service-card {
      background: var(--white);
      border-radius: 18px;
      padding: 36px 28px;
      border: 2px solid transparent;
      transition: all 0.35s;
      position: relative;
      overflow: hidden;
    }

    .service-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--green), var(--gold));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s;
    }

    .service-card:hover {
      border-color: rgba(21, 30, 73, 0.15);
      transform: translateY(-8px);
      box-shadow: 0 20px 50px rgba(21, 30, 73, 0.12);
    }

    .service-card:hover::after {
      transform: scaleX(1);
    }

    .service-icon {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, var(--green), var(--green-light));
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      margin-bottom: 20px;
      box-shadow: 0 8px 20px rgba(21, 30, 73, 0.2);
    }

    .service-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem;
      color: var(--dark);
      margin-bottom: 10px;
      line-height: 1.35;
    }

    .service-card p {
      font-size: 0.87rem;
      color: var(--text-light);
      line-height: 1.7;
    }

    .service-tag {
      display: inline-block;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 10px;
      margin-top: 14px;
      background: rgba(21, 30, 73, 0.08);
      color: var(--green-mid);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    /* ─── CALENDRIER ─── */
    .cal-bg {
      background: var(--white);
    }

    .cal-layout {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 36px;
      margin-top: 50px;
      align-items: start;
    }

    .cal-wrapper {
      background: var(--cream);
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid rgba(21, 30, 73, 0.1);
    }

    .cal-header {
      background: var(--green);
      padding: 20px 26px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: var(--white);
    }

    .cal-header h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      color: var(--white);
    }

    .cal-nav {
      display: flex;
      gap: 8px;
      align-items: center;
    }

    .cal-nav button {
      width: 32px;
      height: 32px;
      background: rgba(255, 255, 255, 0.12);
      border: none;
      border-radius: 8px;
      color: var(--white);
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.2s;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .cal-nav button:hover {
      background: var(--gold);
      color: var(--dark);
    }

    .cal-month-label {
      font-weight: 700;
      font-size: 0.95rem;
      min-width: 150px;
      text-align: center;
    }

    .cal-grid-wrap {
      padding: 20px 22px 24px;
    }

    .cal-days-header {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      margin-bottom: 6px;
    }

    .cal-day-name {
      text-align: center;
      font-size: 0.68rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--text-light);
      padding: 5px 0;
    }

    .cal-cells {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 3px;
    }

    .cal-cell {
      aspect-ratio: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      font-size: 0.84rem;
      cursor: default;
      position: relative;
      transition: all 0.2s;
      color: var(--text);
    }

    .cal-cell.empty {
      opacity: 0;
      pointer-events: none;
    }

    .cal-cell.today {
      background: var(--green);
      color: var(--white);
      font-weight: 700;
    }

    .cal-cell.has-event {
      background: rgba(201, 146, 26, 0.15);
      color: var(--dark);
      cursor: pointer;
      font-weight: 600;
    }

    .cal-cell.has-event:hover {
      background: var(--gold);
      color: var(--dark);
      transform: scale(1.1);
      z-index: 1;
    }

    .cal-cell.has-event::after {
      content: '•';
      position: absolute;
      bottom: 2px;
      font-size: 0.55rem;
      color: var(--gold);
    }

    .cal-cell.today.has-event::after {
      color: rgba(255, 255, 255, 0.7);
    }

    .cal-cell.other-month {
      opacity: 0.28;
    }

    .cal-events-list {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .cal-events-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      color: var(--dark);
      margin-bottom: 6px;
    }

    .cal-event-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 18px 20px;
      background: var(--cream);
      border-radius: 14px;
      border-left: 4px solid var(--green-light);
      transition: all 0.2s;
      cursor: pointer;
    }

    .cal-event-item:hover {
      border-left-color: var(--gold);
      transform: translateX(4px);
      background: var(--white);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    }

    .cal-event-date {
      min-width: 48px;
      text-align: center;
      flex-shrink: 0;
    }

    .cal-event-date .eday {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 900;
      color: var(--green);
      line-height: 1;
    }

    .cal-event-date .emon {
      font-size: 0.65rem;
      text-transform: uppercase;
      color: var(--text-light);
      letter-spacing: 0.1em;
    }

    .cal-event-body h4 {
      font-weight: 700;
      color: var(--dark);
      font-size: 0.92rem;
      margin-bottom: 3px;
    }

    .cal-event-body p {
      font-size: 0.8rem;
      color: var(--text-light);
    }

    .cal-event-badge {
      display: inline-block;
      font-size: 0.68rem;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 10px;
      margin-top: 6px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .cal-event-badge.congres {
      background: rgba(21, 30, 73, 0.1);
      color: var(--green);
    }

    .cal-event-badge.sante {
      background: rgba(30, 107, 138, 0.1);
      color: #1e6b8a;
    }

    .cal-event-badge.education {
      background: rgba(201, 146, 26, 0.15);
      color: var(--gold);
    }

    .cal-event-badge.communaute {
      background: rgba(74, 26, 92, 0.1);
      color: #7d3aa0;
    }

    @media (max-width: 900px) {
      .cal-layout {
        grid-template-columns: 1fr;
      }

      .services-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 600px) {
      .services-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ─── GOOGLE MAPS ─── */
    .map-section {
      margin-top: 50px;
    }

    .map-section h3 {
      font-family: 'Playfair Display', serif;
      color: var(--gold-light);
      font-size: 1.2rem;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .map-frame {
      border-radius: 18px;
      overflow: hidden;
      border: 2px solid rgba(255, 255, 255, 0.1);
      height: 340px;
    }

    .map-frame iframe {
      width: 100%;
      height: 100%;
      border: none;
      display: block;
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--dark);
      color: rgba(255, 255, 255, 0.65);
      padding: 60px 0 30px;
    }

    .footer-grid {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 50px;
    }

    .footer-brand .logo-text strong {
      color: var(--white);
    }

    .footer-brand .logo-text small {
      color: rgba(255, 255, 255, 0.4);
    }

    .footer-brand p {
      margin-top: 16px;
      font-size: 0.88rem;
      line-height: 1.7;
    }

    .social-links {
      display: flex;
      gap: 10px;
      margin-top: 20px;
    }

    .social-link {
      width: 38px;
      height: 38px;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      text-decoration: none;
      transition: all 0.3s;
    }

    .social-link:hover {
      background: var(--gold);
      transform: translateY(-3px);
    }

    .footer-col h4 {
      color: var(--white);
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 18px;
    }

    .footer-col a {
      display: block;
      color: rgba(255, 255, 255, 0.55);
      text-decoration: none;
      font-size: 0.87rem;
      margin-bottom: 10px;
      transition: color 0.2s;
    }

    .footer-col a:hover {
      color: var(--gold-light);
    }

    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      padding: 24px 32px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 0.82rem;
    }

    .footer-bottom span {
      color: var(--gold-light);
    }

    /* ─── SCROLL ANIMATIONS ─── */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 900px) {
      .hero {
        grid-template-columns: 1fr;
      }

      .hero-visual {
        display: none;
      }

      .hero-content {
        padding: 60px 32px;
      }

      .about-grid,
      .village-grid,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .actions-grid,
      .gov-grid {
        grid-template-columns: 1fr 1fr;
      }

      .news-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .nav-links {
        display: none;
      }
    }

    @media (max-width: 600px) {

      .actions-grid,
      .gov-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .form-row {
        grid-template-columns: 1fr;
      }
    }

    /* ══════════════════════════════════════════
     SYSTÈME DE THÈMES — Light / Dark / Green
  ══════════════════════════════════════════ */

    /* LIGHT MODE (défaut) */
    :root,
    [data-theme="light"] {
      --green: #151E49;
      --green-mid: #2A3A8C;
      --green-light: #4A5DC4;
      --gold: #c9921a;
      --gold-light: #e8b84b;
      --cream: #fdf8ef;
      --dark: #0d1214;
      --text: #1a1f2e;
      --text-light: #5a6070;
      --white: #ffffff;
      --red: #a62a2a;
      --bg-body: #fdf8ef;
      --bg-card: #ffffff;
      --bg-section-alt: #f4f5fb;
      --border: rgba(21, 30, 73, 0.1);
      --nav-bg: #151E49;
      --shadow: rgba(21, 30, 73, 0.1);
    }

    /* DARK MODE */
    [data-theme="dark"] {
      --green: #4A5DC4;
      --green-mid: #6B7FD4;
      --green-light: #8A9EE4;
      --gold: #e8b84b;
      --gold-light: #f5d070;
      --cream: #1a1d2e;
      --dark: #0d0f1a;
      --text: #e8eaf6;
      --text-light: #9099c4;
      --white: #ffffff;
      --red: #e05050;
      --bg-body: #0d0f1a;
      --bg-card: #151827;
      --bg-section-alt: #11141f;
      --border: rgba(74, 93, 196, 0.2);
      --nav-bg: #080a14;
      --shadow: rgba(0, 0, 0, 0.4);
    }

    /* GREEN MODE */
    [data-theme="green"] {
      --green: #1a5c3a;
      --green-mid: #2d7a52;
      --green-light: #4da06e;
      --gold: #c9921a;
      --gold-light: #e8b84b;
      --cream: #f0faf4;
      --dark: #0d1f16;
      --text: #1a2e1f;
      --text-light: #4a6a55;
      --white: #ffffff;
      --red: #a62a2a;
      --bg-body: #f0faf4;
      --bg-card: #ffffff;
      --bg-section-alt: #e6f5ed;
      --border: rgba(29, 92, 58, 0.1);
      --nav-bg: #1a5c3a;
      --shadow: rgba(29, 92, 58, 0.12);
    }

    /* Application des variables sur les éléments */
    body {
      background: var(--bg-body);
      color: var(--text);
      transition: background 0.35s, color 0.35s;
    }

    nav {
      background: var(--nav-bg) !important;
    }

    .about-bg,
    .apropos-bg,
    .career-bg,
    .annuaire-bg,
    .cal-bg {
      background: var(--bg-card) !important;
    }

    .actions-bg,
    .defis-bg,
    .services-bg,
    .faq-bg,
    .gov-bg {
      background: var(--bg-section-alt) !important;
    }

    .section-title {
      color: var(--text) !important;
    }

    .section-desc {
      color: var(--text-light) !important;
    }

    /* Cards en dark mode */
    [data-theme="dark"] .action-card,
    [data-theme="dark"] .service-card,
    [data-theme="dark"] .gov-card,
    [data-theme="dark"] .news-card,
    [data-theme="dark"] .tl-card,
    [data-theme="dark"] .faq-item,
    [data-theme="dark"] .ann-card,
    [data-theme="dark"] .career-card,
    [data-theme="dark"] .defi-card,
    [data-theme="dark"] .cal-event-item {
      background: var(--bg-card) !important;
      border-color: var(--border) !important;
      color: var(--text);
    }

    [data-theme="dark"] .action-card h3,
    [data-theme="dark"] .service-card h3,
    [data-theme="dark"] .gov-card h3,
    [data-theme="dark"] .news-body h3,
    [data-theme="dark"] .tl-name,
    [data-theme="dark"] .faq-q,
    [data-theme="dark"] .ann-card h4,
    [data-theme="dark"] .cal-event-body h4,
    [data-theme="dark"] .section-title,
    [data-theme="dark"] .timeline-title {
      color: var(--text) !important;
    }

    [data-theme="dark"] .action-card p,
    [data-theme="dark"] .service-card p,
    [data-theme="dark"] .gov-card p,
    [data-theme="dark"] .news-body p,
    [data-theme="dark"] .tl-desc,
    [data-theme="dark"] .faq-a,
    [data-theme="dark"] .ann-card p,
    [data-theme="dark"] .cal-event-body p,
    [data-theme="dark"] .section-desc,
    [data-theme="dark"] .apropos-text p {
      color: var(--text-light) !important;
    }

    [data-theme="dark"] .news-bg,
    [data-theme="dark"] .cal-wrapper {
      background: var(--bg-card) !important;
    }

    [data-theme="dark"] .cal-grid-wrap {
      background: var(--bg-section-alt) !important;
    }

    [data-theme="dark"] .cal-cell {
      color: var(--text);
    }

    [data-theme="dark"] .apropos-badge {
      background: var(--bg-section-alt) !important;
      color: var(--text) !important;
      border-color: var(--border) !important;
    }

    [data-theme="dark"] .faq-contact-cta {
      background: var(--bg-card) !important;
      border-color: var(--border) !important;
    }

    [data-theme="dark"] .faq-contact-cta p {
      color: var(--text-light) !important;
    }

    [data-theme="dark"] .ann-tab:not(.active) {
      background: var(--bg-section-alt) !important;
      color: var(--text) !important;
      border-color: var(--border) !important;
    }

    [data-theme="dark"] .value-item {
      background: var(--bg-section-alt) !important;
    }

    [data-theme="dark"] .value-item h4 {
      color: var(--text) !important;
    }

    [data-theme="dark"] .cal-events-title {
      color: var(--text) !important;
    }

    [data-theme="dark"] .footer-col a {
      color: rgba(232, 234, 246, 0.5) !important;
    }

    /* ── TOGGLE BUTTON ── */
    .theme-toggle {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-left: 8px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 30px;
      padding: 5px 6px;
    }

    .theme-btn {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.95rem;
      transition: all 0.25s;
      background: transparent;
      color: rgba(255, 255, 255, 0.6);
      position: relative;
    }

    .theme-btn:hover {
      background: rgba(255, 255, 255, 0.15);
      color: white;
    }

    .theme-btn.active {
      background: var(--gold);
      color: #0d1214;
      box-shadow: 0 2px 8px rgba(201, 146, 26, 0.5);
    }

    .theme-btn .t-tooltip {
      position: absolute;
      bottom: calc(100% + 8px);
      left: 50%;
      transform: translateX(-50%);
      background: rgba(0, 0, 0, 0.75);
      color: white;
      font-size: 0.68rem;
      padding: 4px 8px;
      border-radius: 6px;
      white-space: nowrap;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.2s;
    }

    .theme-btn:hover .t-tooltip {
      opacity: 1;
    }

    @media (max-width: 900px) {
      .theme-toggle {
        display: none;
      }
    }

    /* ─── LANGUAGE SELECTOR ─── */
    .lang-selector {
      display: flex;
      align-items: center;
      gap: 4px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 20px;
      padding: 3px;
      margin-left: 8px;
    }

    .lang-btn {
      background: transparent;
      border: none;
      color: rgba(255, 255, 255, 0.65);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      padding: 5px 10px;
      border-radius: 16px;
      cursor: pointer;
      transition: all 0.2s;
      font-family: 'Outfit', sans-serif;
    }

    .lang-btn:hover {
      color: var(--white);
      background: rgba(255, 255, 255, 0.1);
    }

    .lang-btn.active {
      background: var(--gold);
      color: var(--dark);
      box-shadow: 0 2px 8px rgba(201, 146, 26, 0.4);
    }

    @media (max-width: 768px) {
      .lang-selector {
        display: none;
      }
    }

    /* ─── HAMBURGER MOBILE ─── */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 42px;
      height: 42px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 10px;
      cursor: pointer;
      transition: background 0.2s;
      flex-shrink: 0;
    }

    .hamburger:hover {
      background: rgba(255, 255, 255, 0.16);
    }

    .hamburger span {
      display: block;
      width: 20px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: all 0.3s ease;
      transform-origin: center;
    }

    .hamburger.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }

    .hamburger.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    @media (max-width: 900px) {
      .hamburger {
        display: flex;
      }

      .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--green);
        flex-direction: column;
        align-items: stretch;
        padding: 16px 20px 24px;
        gap: 4px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 999;
        animation: slideDown 0.25s ease forwards;
      }

      .nav-links.open {
        display: flex;
      }

      @keyframes slideDown {
        from {
          opacity: 0;
          transform: translateY(-10px);
        }

        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .nav-links a {
        font-size: 0.95rem;
        padding: 11px 16px;
        border-radius: 8px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      }

      .nav-links a:last-of-type {
        border-bottom: none;
      }

      .lang-selector {
        display: flex !important;
        justify-content: flex-start;
        margin: 10px 0 0 0;
        padding: 12px 0 0 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }

      .theme-toggle {
        display: flex !important;
        justify-content: flex-start;
        padding: 10px 0 0 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0;
      }
    }
  
    /* ============================================================
       RESPONSIVE MOBILE — Espace Carrière, Annuaire, Défis
       ============================================================ */

    /* --- ESPACE CARRIÈRE --- */
    .career-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }
    .career-card {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .career-card .btn-primary {
      align-self: flex-start;
      width: auto;
    }
    .career-intro {
      max-width: 720px;
      margin-bottom: 36px;
    }

    @media (max-width: 768px) {
      .career-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }
      .career-card {
        padding: 20px 16px;
      }
      .career-card h3 {
        font-size: 1rem;
      }
      .career-card .btn-primary {
        width: 100%;
        text-align: center;
      }
      .career-intro p {
        font-size: 0.95rem;
      }
    }

    /* --- ANNUAIRE POOH MBOUM --- */
    .annuaire-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 28px;
    }
    .ann-tab {
      white-space: nowrap;
    }
    .ann-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
    }
    .ann-card {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .ann-card-head {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    @media (max-width: 768px) {
      .annuaire-tabs {
        flex-direction: column;
        gap: 8px;
      }
      .ann-tab {
        width: 100%;
        justify-content: center;
        text-align: center;
      }
      .ann-grid {
        grid-template-columns: 1fr;
        gap: 14px;
      }
      .ann-card {
        padding: 16px 14px;
      }
      .ann-card h4 {
        font-size: 0.95rem;
      }
      .ann-card-head {
        gap: 10px;
      }
    }

    /* --- DÉFIS & CONDITIONS DE RÉUSSITE (services-bg) --- */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 24px;
    }
    .service-card {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    @media (max-width: 768px) {
      .services-grid {
        grid-template-columns: 1fr;
        gap: 14px;
      }
      .service-card {
        padding: 18px 14px;
      }
      .service-card h3 {
        font-size: 1rem;
      }
      .service-card p {
        font-size: 0.9rem;
      }
      .service-icon {
        width: 48px;
        height: 48px;
      }
      /* Calendrier layout */
      .cal-layout {
        display: flex;
        flex-direction: column;
        gap: 28px;
      }
      /* Career intro text */
      .career-bg .container > div:first-child {
        text-align: center;
      }
      /* Annuaire section tag + title */
      .annuaire-bg .container > div:first-child {
        text-align: center;
      }
    }

    /* --- DÉFIS & CONDITIONS DE RÉUSSITE (defis-bg) --- */
    .defis-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 28px;
    }
    .defi-card {
      padding: 28px 24px;
      border-radius: 12px;
    }
    .defi-list {
      padding-left: 18px;
      margin-top: 14px;
    }
    .defi-list li {
      margin-bottom: 8px;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .defis-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }
      .defi-card {
        padding: 20px 16px;
      }
      .defi-card h3 {
        font-size: 1rem;
        flex-wrap: wrap;
        gap: 6px !important;
      }
      .defi-card h3 svg {
        width: 28px !important;
        height: 28px !important;
        flex-shrink: 0;
      }
      .defi-list {
        padding-left: 14px;
        margin-top: 10px;
      }
      .defi-list li {
        font-size: 0.9rem;
        margin-bottom: 6px;
      }
    }

    @media (max-width: 480px) {
      .career-card { padding: 16px 12px; }
      .ann-card { padding: 14px 12px; }
      .service-card { padding: 14px 12px; }
      .defi-card { padding: 16px 12px; }
      .career-badge, .ann-tag, .service-tag {
        font-size: 0.72rem;
        padding: 3px 10px;
      }
    }