    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --off-white: #FFFFFF;
      --sage: #E8651A;
      --sage-dark: #C4541A;
      --sage-light: #FEF3EC;
      --sage-mid: #EE8040;
      --text-dark: #111111;
      --text-mid: #4A4A4A;
      --text-light: #7A7A7A;
      --gold: #E8651A;
      --white: #FFFFFF;
      --border: #E5E5E5;
      --shadow: 0 4px 24px rgba(0,0,0,0.08);
      --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
    }

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

    body {
      font-family: 'Inter', sans-serif;
      background: var(--off-white);
      color: var(--text-dark);
      line-height: 1.7;
      font-size: 16px;
      overflow-x: hidden;
      width: 100%;
      max-width: 100vw;
    }

    h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1.25; }
    h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
    h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
    h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    .container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
    .section-tag {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--sage);
      background: var(--sage-light);
      padding: 5px 14px;
      border-radius: 20px;
      margin-bottom: 18px;
    }
    .section-intro { max-width: 640px; }
    .section-intro p { color: var(--text-mid); font-size: 1.05rem; margin-top: 14px; }

    /* ── SECTION VIDÉOS ── */
    #videos {
      background: #F8F6F3;
      padding: 80px 0 60px;
      position: relative;
    }
    #videos::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 60% 0%, rgba(232,101,26,0.06) 0%, transparent 60%);
      pointer-events: none;
    }
    #videos .container { max-width: 100%; padding: 0 48px; position: relative; }
    .videos-header { margin-bottom: 40px; text-align: center; }
    .videos-header .section-tag {
      display: inline-block;
      background: rgba(232,101,26,0.15);
      color: var(--sage);
      border: 1px solid rgba(232,101,26,0.3);
    }
    .videos-header h2 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 2.2rem; color: #111111; margin-top: 12px;
      letter-spacing: -0.01em;
    }
    .videos-layout { display: grid; grid-template-columns: 320px minmax(0, 780px); gap: 20px; align-items: start; justify-content: center; }
    .video-embed-wrap {
      position: relative; padding-top: 56.25%;
      background: #000; border-radius: 8px; overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,0.2), 0 0 0 1px rgba(0,0,0,0.06);
    }
    .video-player-frame {
      position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0;
      transition: opacity 0.4s ease;
      opacity: 0; z-index: 1;
    }
    .video-player-frame.active-frame { opacity: 1; z-index: 2; }
    /* Fallback id-based : si YT.Player recrée l'iframe sans classe, elle reste positionnée */
    #player-a { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
    /* Contrôle volume */
    #vol-ctrl {
      position: absolute; bottom: 14px; right: 14px; z-index: 10;
      display: none; align-items: center; gap: 10px;
      background: rgba(0,0,0,0.72); color: #fff; border: 1px solid rgba(255,255,255,0.2);
      padding: 8px 14px; border-radius: 50px;
      backdrop-filter: blur(8px);
      transition: opacity 0.3s;
      animation: unmute-pulse 2s ease-in-out infinite;
    }
    #vol-ctrl.active { display: flex; }
    #vol-ctrl.sounding { animation: none; }
    #vol-icon-btn {
      background: none; border: none; cursor: pointer; padding: 0; display: flex; align-items: center;
    }
    #vol-icon-btn svg { width: 18px; height: 18px; fill: #fff; transition: fill 0.2s; }
    #vol-icon-btn:hover svg { fill: var(--sage); }
    #vol-slider {
      -webkit-appearance: none; appearance: none;
      width: 80px; height: 4px; border-radius: 4px;
      background: rgba(255,255,255,0.3); outline: none; cursor: pointer;
    }
    #vol-slider::-webkit-slider-thumb {
      -webkit-appearance: none; appearance: none;
      width: 14px; height: 14px; border-radius: 50%;
      background: var(--sage); cursor: pointer;
    }
    #vol-slider::-moz-range-thumb {
      width: 14px; height: 14px; border-radius: 50%;
      background: var(--sage); cursor: pointer; border: none;
    }
    @keyframes unmute-pulse {
      0%,100% { box-shadow: 0 0 0 0 rgba(232,101,26,0.5); }
      50%      { box-shadow: 0 0 0 6px rgba(232,101,26,0); }
    }
    .video-now-playing { margin-top: 14px; padding: 0 2px; }
    .video-now-playing h3 { color: #111111; font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; line-height: 1.4; }
    .video-now-playing span { font-size: 0.75rem; color: rgba(0,0,0,0.4); }
    .video-playlist {
      background: #ffffff;
      border-radius: 8px; overflow: hidden; overflow-y: auto;
      border: 1px solid rgba(0,0,0,0.08);
      box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    }
    .video-playlist::-webkit-scrollbar { width: 4px; }
    .video-playlist::-webkit-scrollbar-track { background: transparent; }
    .video-playlist::-webkit-scrollbar-thumb { background: rgba(232,101,26,0.4); border-radius: 2px; }
    .playlist-item.playlist-hidden { display: none; }
    .playlist-toggle-btn {
      display: flex; align-items: center; justify-content: center; gap: 6px;
      width: 100%; padding: 11px 18px; background: none; border: none;
      border-top: 1px solid rgba(0,0,0,0.06);
      font-size: 0.75rem; font-weight: 600; color: var(--sage); cursor: pointer;
      transition: background 0.2s;
    }
    .playlist-toggle-btn:hover { background: rgba(232,101,26,0.06); }
    .playlist-toggle-btn svg { width: 14px; height: 14px; fill: var(--sage); transition: transform 0.25s; }
    .playlist-toggle-btn.open svg { transform: rotate(180deg); }
    .playlist-header {
      padding: 13px 16px;
      border-bottom: 1px solid rgba(0,0,0,0.07);
      font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em;
      text-transform: uppercase; color: rgba(0,0,0,0.35);
    }
    .playlist-item {
      display: flex; gap: 12px; padding: 10px 16px; cursor: pointer;
      border-bottom: 1px solid rgba(0,0,0,0.05);
      transition: background 0.2s;
      position: relative;
      overflow: hidden;
    }
    .playlist-item::before {
      content: '';
      position: absolute; inset: 0; pointer-events: none;
      background: radial-gradient(circle 280px at var(--mx, -999px) var(--my, -999px), rgba(232,101,26,0.28) 0%, transparent 70%);
      transition: opacity 0.2s;
    }
    .playlist-item:hover { background: rgba(0,0,0,0.02); }
    .playlist-item.active {
      background: rgba(232,101,26,0.08);
      border-left: 3px solid var(--sage);
    }
    .playlist-thumb {
      width: 96px; height: 56px; border-radius: 4px;
      object-fit: cover; flex-shrink: 0;
      background: #E5E2DD;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    .playlist-item.active .playlist-thumb { box-shadow: 0 0 0 2px var(--sage); }
    .playlist-meta { flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center; }
    .playlist-meta strong {
      display: block; font-size: 0.80rem; color: #111111;
      line-height: 1.35; margin-bottom: 5px;
      display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    }
    .playlist-item.active .playlist-meta strong { color: #111111; }
    .playlist-meta span { font-size: 0.70rem; color: rgba(0,0,0,0.4); }
    @media (max-width: 768px) {
      #videos .container { padding: 0 20px; }
      .videos-layout { grid-template-columns: 1fr; }
      .video-playlist { max-height: 320px; }
    }

    /* ── RADIO PLAYER ── */
    #radio-player {
      position: fixed; bottom: 24px; right: 24px; z-index: 999;
      background: #111; border-radius: 14px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.45);
      width: 300px; overflow: hidden;
      transition: transform 0.3s ease, opacity 0.3s ease;
      border: 1px solid rgba(232,101,26,0.25);
    }
    #radio-player.collapsed { width: auto; height: auto; background: transparent; border-radius: 0; box-shadow: none; border: none; overflow: visible; cursor: pointer; }
    #radio-player.collapsed .radio-body { display: none; }
    #radio-player.collapsed .radio-collapsed-wrap { display: flex; }
    .radio-collapsed-wrap { display: none; align-items: center; gap: 10px; cursor: pointer; }
    #radio-player.collapsed .radio-collapsed-wrap { display: flex; }
    .radio-collapsed-btn {
      width: 56px; height: 56px;
      display: flex; align-items: center; justify-content: center;
      background: var(--sage); border-radius: 50%;
      box-shadow: 0 4px 16px rgba(232,101,26,0.4);
      transition: transform 0.2s, box-shadow 0.2s;
      flex-shrink: 0;
    }
    .radio-collapsed-wrap:hover .radio-collapsed-btn { transform: scale(1.05); box-shadow: 0 6px 20px rgba(232,101,26,0.5); }
    .radio-collapsed-btn svg { width: 24px; height: 24px; fill: white; }
    .radio-collapsed-label { font-size: 0.82rem; font-weight: 700; color: #111; white-space: nowrap; letter-spacing: 0.02em; text-shadow: none; background: white; padding: 5px 12px; border-radius: 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.12); }
    .radio-header {
      display: flex; align-items: center; gap: 10px;
      padding: 12px 14px 10px;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .radio-logo { width: 36px; height: 36px; object-fit: contain; border-radius: 6px; background: white; padding: 3px; }
    .radio-header-info { flex: 1; min-width: 0; }
    .radio-name { font-size: 0.82rem; font-weight: 700; color: #fff; letter-spacing: 0.02em; }
    .radio-live-badge {
      display: inline-flex; align-items: center; gap: 5px;
      font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em;
      color: var(--sage); text-transform: uppercase; margin-top: 1px;
    }
    .radio-live-dot {
      width: 6px; height: 6px; border-radius: 50%; background: var(--sage);
      animation: live-blink 1.4s ease-in-out infinite;
    }
    @keyframes live-blink { 0%,100%{opacity:1} 50%{opacity:0.2} }
    .radio-minimize {
      background: none; border: none; cursor: pointer; padding: 4px;
      color: rgba(255,255,255,0.4); font-size: 1.1rem; line-height: 1;
      transition: color 0.2s;
    }
    .radio-minimize:hover { color: #fff; }
    .radio-body { padding: 12px 14px 14px; }
    .radio-track {
      font-size: 0.78rem; color: rgba(255,255,255,0.55);
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
      margin-bottom: 12px; min-height: 1.1em;
    }
    .radio-track strong { color: rgba(255,255,255,0.85); }
    .radio-controls { display: flex; align-items: center; gap: 12px; }
    .radio-play-btn {
      width: 42px; height: 42px; border-radius: 50%;
      background: var(--sage); border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; transition: background 0.2s, transform 0.1s;
    }
    .radio-play-btn:hover { background: var(--sage-dark); transform: scale(1.05); }
    .radio-play-btn svg { width: 18px; height: 18px; fill: white; }
    .radio-volume { display: flex; align-items: center; gap: 8px; flex: 1; }
    .radio-vol-icon { width: 16px; height: 16px; fill: rgba(255,255,255,0.4); flex-shrink: 0; }
    .radio-volume input[type=range] {
      flex: 1; height: 3px; -webkit-appearance: none; appearance: none;
      background: rgba(255,255,255,0.15); border-radius: 2px; outline: none; cursor: pointer;
    }
    .radio-volume input[type=range]::-webkit-slider-thumb {
      -webkit-appearance: none; width: 12px; height: 12px;
      border-radius: 50%; background: var(--sage); cursor: pointer;
    }

    /* ── PARTICULES ── */
    #particles-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }

    /* ── VAGUES ── */
    .wave-divider { position: relative; line-height: 0; overflow: hidden; z-index: 2; }
    .wave-divider svg { display: block; width: 100%; }

    /* ── COMPTEURS ── */
    .hero-stat strong { display: inline-block; }

    /* ── ENGRENAGES ── */
    .gear-wrap { position: absolute; pointer-events: none; z-index: 1; }
    .gear-glow-pulse { animation: gear-glow-pulse 5s ease-in-out infinite; }
    .gear-spin-cw  { animation: gear-spin-cw-varied  22s linear infinite; will-change: transform; }
    .gear-spin-ccw { animation: gear-spin-ccw-varied 15s linear infinite; will-change: transform; }
    .gear-spin-cw-sm { animation: gear-spin-cw-varied 30s linear infinite; will-change: transform; }
    @keyframes gear-glow-pulse {
      0%,100% { opacity: .30 }
      50%      { opacity: .75 }
    }
    @keyframes gear-spin-cw-varied {
      0%   { transform: rotate(0deg)   }
      8%   { transform: rotate(12deg)  }
      22%  { transform: rotate(130deg) }
      34%  { transform: rotate(155deg) }
      52%  { transform: rotate(275deg) }
      62%  { transform: rotate(292deg) }
      80%  { transform: rotate(348deg) }
      100% { transform: rotate(360deg) }
    }
    @keyframes gear-spin-ccw-varied {
      0%   { transform: rotate(0deg)    }
      12%  { transform: rotate(-95deg)  }
      22%  { transform: rotate(-112deg) }
      42%  { transform: rotate(-240deg) }
      54%  { transform: rotate(-258deg) }
      72%  { transform: rotate(-335deg) }
      84%  { transform: rotate(-345deg) }
      100% { transform: rotate(-360deg) }
    }

    /* FADE IN ON SCROLL */
    .fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .fade-up.visible { opacity: 1; transform: translateY(0); }

    /* ── GLOW EFFECTS ── */
    .btn-primary {
      transition: background 0.25s, transform 0.2s, box-shadow 0.25s !important;
    }
    .btn-primary:hover {
      box-shadow: 0 0 18px rgba(232,101,26,0.6), 0 0 40px rgba(232,101,26,0.3), 0 8px 28px rgba(232,101,26,0.4) !important;
    }
    .btn-outline:hover {
      box-shadow: 0 0 16px rgba(255,255,255,0.25), 0 0 36px rgba(255,255,255,0.1);
    }
    .nav-links a { transition: color 0.2s, background 0.2s, text-shadow 0.2s !important; }
    .nav-links a:hover {
      text-shadow: 0 0 12px rgba(255,255,255,0.6), 0 0 28px rgba(255,255,255,0.3) !important;
    }
    .nav-cta:hover {
      box-shadow: 0 0 16px rgba(232,101,26,0.7), 0 0 36px rgba(232,101,26,0.3) !important;
    }
    .foi-card { transition: transform 0.25s, box-shadow 0.25s !important; }
    .foi-card:hover {
      box-shadow: 0 0 0 1px rgba(232,101,26,0.3), 0 0 28px rgba(232,101,26,0.15), 0 12px 40px rgba(0,0,0,0.1) !important;
    }
    .dept-card { transition: transform 0.25s, box-shadow 0.25s !important; }
    .dept-card:hover {
      box-shadow: 0 0 0 1px rgba(232,101,26,0.25), 0 0 24px rgba(232,101,26,0.12), 0 8px 32px rgba(0,0,0,0.08) !important;
    }
    .church-card { transition: box-shadow 0.25s, transform 0.2s !important; }
    .church-card:hover {
      box-shadow: 0 0 0 1px rgba(232,101,26,0.2), 0 0 20px rgba(232,101,26,0.1), 0 4px 20px rgba(0,0,0,0.07) !important;
    }
    .actu-card { transition: box-shadow 0.25s, transform 0.25s !important; }
    .actu-card:hover {
      box-shadow: 0 0 0 1px rgba(232,101,26,0.2), 0 0 28px rgba(232,101,26,0.12), 0 12px 40px rgba(0,0,0,0.1) !important;
    }
    .dept-link { transition: color 0.2s, text-shadow 0.2s !important; }
    .dept-link:hover {
      text-shadow: 0 0 10px rgba(232,101,26,0.6), 0 0 22px rgba(232,101,26,0.3) !important;
    }
    .actu-read { transition: color 0.2s, text-shadow 0.2s !important; }
    .actu-read:hover {
      text-shadow: 0 0 10px rgba(232,101,26,0.6), 0 0 22px rgba(232,101,26,0.3) !important;
    }
    .social-btn { transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important; }
    .social-btn:hover {
      box-shadow: 0 0 14px rgba(232,101,26,0.5), 0 0 30px rgba(232,101,26,0.2) !important;
    }
    .form-submit { transition: background 0.25s, transform 0.2s, box-shadow 0.25s !important; }
    .form-submit:hover {
      box-shadow: 0 0 18px rgba(232,101,26,0.55), 0 0 40px rgba(232,101,26,0.25) !important;
    }
    .footer-col ul li a { transition: color 0.2s, text-shadow 0.2s !important; }
    .footer-col ul li a:hover {
      color: var(--sage-mid) !important;
      text-shadow: 0 0 10px rgba(232,101,26,0.5), 0 0 22px rgba(232,101,26,0.2) !important;
    }
    /* Church view toggle buttons */
    .church-view-btn {
      display: inline-flex; align-items: center; gap: 7px;
      padding: 10px 22px; border-radius: 100px;
      border: 2px solid var(--border); background: white;
      font-size: 0.88rem; font-weight: 700; cursor: pointer;
      font-family: inherit; color: var(--text-mid);
      transition: all 0.2s;
    }
    .church-view-btn.active {
      background: var(--sage); border-color: var(--sage); color: white;
    }
    .church-view-btn:not(.active):hover { border-color: var(--sage); color: var(--sage); }

    /* Leaflet popup custom style */
    .church-popup { min-width: 200px; }
    .church-popup h4 { font-size: 0.95rem; font-weight: 800; color: #111; margin-bottom: 4px; }
    .church-popup p { font-size: 0.8rem; color: #555; line-height: 1.5; margin-bottom: 6px; }
    .church-popup .popup-time { font-size: 0.75rem; font-weight: 700; color: var(--sage); background: var(--sage-light); padding: 3px 8px; border-radius: 6px; display: inline-block; margin-bottom: 8px; }
    .church-popup .popup-fb { display: inline-flex; align-items: center; gap: 5px; font-size: 0.75rem; font-weight: 700; color: #1877f2; text-decoration: none; }

    .tab-btn { transition: all 0.2s !important; }
    .tab-btn:hover:not(.active) {
      box-shadow: 0 0 12px rgba(232,101,26,0.25) !important;
    }
    .tab-btn.active {
      box-shadow: 0 0 16px rgba(232,101,26,0.4) !important;
    }

    /* ── SPOTLIGHT EFFECT (toutes les cartes) ── */
    .foi-card, .dept-card, .church-card, .actu-card {
      position: relative;
    }
    .foi-card::after, .dept-card::after, .church-card::after, .actu-card::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: radial-gradient(circle 320px at var(--mx, -999px) var(--my, -999px), rgba(232,101,26,0.25) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.3s;
      pointer-events: none;
      z-index: 2;
    }
    .foi-card:hover::after, .dept-card:hover::after, .church-card:hover::after, .actu-card:hover::after {
      opacity: 1;
    }

    /* ── NAVBAR ── */
    #navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: 0 24px;
      background: #111111;
      box-shadow: 0 1px 0 rgba(255,255,255,0.06);
      transition: box-shadow 0.35s;
    }
    #navbar.scrolled {
      box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    }
    .nav-inner {
      max-width: 1400px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      height: 72px; gap: 8px;
    }
    .nav-logo {
      display: flex; align-items: stretch; gap: 0;
      text-decoration: none;
      align-self: stretch;
      border-radius: 4px;
      overflow: hidden;
    }
    .nav-logo-icon {
      width: 52px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      overflow: hidden;
    }
    .nav-logo-icon img {
      width: 52px; height: 100%;
      object-fit: cover;
    }
    .nav-logo-text {
      background: #3D3D3D;
      display: flex; flex-direction: column; justify-content: center;
      padding: 0 14px;
      line-height: 1.25;
      white-space: nowrap;
    }
    .nav-logo-text strong {
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: 0.82rem;
      color: #FFFFFF;
      letter-spacing: 0.01em;
    }
    .nav-logo-text span { font-size: 0.82rem; font-weight: 600; color: #FFFFFF; letter-spacing: 0.01em; }
    .nav-logo-region { font-size: 0.65rem !important; font-weight: 400 !important; color: rgba(255,255,255,0.65) !important; letter-spacing: 0.06em !important; text-transform: uppercase; }
    .nav-links { display: flex; align-items: center; gap: 0; flex: 1; justify-content: center; }
    .nav-links a {
      font-size: 0.82rem; font-weight: 500;
      color: rgba(255,255,255,0.75);
      padding: 7px 11px; border-radius: 8px;
      transition: color 0.2s, background 0.2s;
      white-space: nowrap;
    }
    .nav-links a:hover { color: #FFFFFF; background: rgba(255,255,255,0.08); }
    .nav-cta {
      background: var(--sage) !important;
      color: white !important;
      padding: 8px 18px !important;
      border-radius: 8px !important;
    }
    .nav-cta:hover { background: var(--sage-dark) !important; }
    .nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
    .nav-burger span { display: block; width: 24px; height: 2px; background: #FFFFFF; border-radius: 2px; transition: 0.3s; }

    /* ── LANGUAGE SWITCHER ── */
    .lang-switcher { display: flex; align-items: center; gap: 6px; margin-right: 8px; }
    .lang-btn {
      background: transparent; border: 2px solid transparent;
      width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
      font-size: 1.75rem; line-height: 1; padding: 0;
      display: flex; align-items: center; justify-content: center;
      transition: transform 0.2s, border-color 0.2s, opacity 0.2s;
      opacity: 0.5;
    }
    .lang-btn:hover { opacity: 0.85; transform: scale(1.12); }
    .lang-btn.active {
      opacity: 1; border-color: var(--sage);
      transform: scale(1.1);
      box-shadow: 0 0 0 3px rgba(232,101,26,0.25);
    }
    .mobile-menu {
      display: none;
      position: fixed; top: 72px; left: 0; right: 0;
      background: #111111;
      border-top: 1px solid rgba(255,255,255,0.08);
      box-shadow: 0 8px 24px rgba(0,0,0,0.3);
      padding: 16px 24px 24px;
      flex-direction: column; gap: 4px;
      z-index: 99;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a { padding: 11px 14px; border-radius: 8px; font-size: 0.95rem; color: rgba(255,255,255,0.75); font-weight: 500; }
    .mobile-menu a:hover { background: rgba(255,255,255,0.08); color: #FFFFFF; }

    /* ── HERO ── */
    #hero {
      display: flex; flex-direction: column;
      margin-top: 72px;
    }
    .hero-banner {
      width: 100%;
      line-height: 0;
    }
    .hero-banner img {
      width: 100%;
      height: auto;
      display: block;
    }
    .hero-bg {
      width: 100%;
      background: #F8F6F3;
      position: relative;
      overflow: visible;
    }
    .hero-bg::after { display: none; }
    .hero-pattern {
      position: absolute; inset: 0; pointer-events: none;
      background-image: radial-gradient(circle at 20% 80%, rgba(232,101,26,0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(232,101,26,0.06) 0%, transparent 50%);
    }
    .hero-content {
      position: relative; z-index: 2;
      padding: 40px 24px 40px;
      max-width: 1260px; margin: 0 auto; width: 100%;
      display: grid;
      grid-template-columns: 48% 50%;
      gap: 2%;
      align-items: center;
    }
    .hero-text { display: flex; flex-direction: column; min-width: 0; }
    .hero-image-wrap {
      display: flex; align-items: center; justify-content: center;
      position: relative;
      min-width: 0;
    }
    .hero-bible {
      width: 100%;
      max-width: 680px;
      height: auto;
      border-radius: 18px;
      box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 40px rgba(232,101,26,0.15);
      transform: rotate(3deg);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      display: block;
    }
    .hero-bible:hover {
      transform: rotate(3deg) scale(1.03);
      box-shadow: 0 30px 70px rgba(0,0,0,0.6), 0 0 60px rgba(232,101,26,0.3);
    }
    .hero-image-wrap::before {
      content: '';
      position: absolute;
      width: 420px; height: 420px;
      background: radial-gradient(circle, rgba(232,101,26,0.18) 0%, transparent 70%);
      border-radius: 50%;
      z-index: 0;
      pointer-events: none;
    }
    .hero-bible { position: relative; z-index: 1; }
    /* Glow sur textes hero */
    .hero-text h1 { transition: text-shadow 0.3s; cursor: default; }
    .hero-text h1:hover { text-shadow: 0 0 20px rgba(255,255,255,0.35), 0 0 50px rgba(232,101,26,0.2); }
    .hero-text h1 em { transition: text-shadow 0.3s; }
    .hero-text h1:hover em { text-shadow: 0 0 18px rgba(232,101,26,0.7), 0 0 40px rgba(232,101,26,0.3); }
    .hero-text p { transition: text-shadow 0.3s; cursor: default; }
    .hero-text p:hover { text-shadow: 0 0 14px rgba(255,255,255,0.25); }
    .hero-badge { transition: box-shadow 0.3s, background 0.3s; }
    .hero-badge:hover { background: rgba(255,255,255,0.2); box-shadow: 0 0 16px rgba(255,255,255,0.2); }
    .hero-stat { cursor: default; transition: text-shadow 0.3s; }
    .hero-stat:hover strong { text-shadow: 0 0 16px rgba(232,101,26,0.8), 0 0 36px rgba(232,101,26,0.3); }
    .hero-stat:hover span { text-shadow: 0 0 10px rgba(255,255,255,0.4); }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(0,0,0,0.06);
      border: 1px solid rgba(0,0,0,0.12);
      backdrop-filter: blur(10px);
      padding: 7px 16px; border-radius: 30px;
      font-size: 0.78rem; font-weight: 500;
      color: rgba(0,0,0,0.7); letter-spacing: 0.06em;
      text-transform: uppercase; margin-bottom: 28px;
    }
    .hero-badge::before { content: ''; width: 7px; height: 7px; background: var(--gold); border-radius: 50%; }
    .hero-content h1 { color: #111111; max-width: 760px; margin-bottom: 22px; }
    .hero-content h1 em { font-style: italic; color: var(--gold); }
    .hero-content p {
      color: var(--text-mid); font-size: 1.15rem;
      max-width: 540px; margin-bottom: 40px; line-height: 1.75;
    }
    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--sage); color: white;
      padding: 14px 28px; border-radius: 10px;
      font-size: 0.95rem; font-weight: 600;
      transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
      box-shadow: 0 4px 20px rgba(232,101,26,0.3);
    }
    .btn-primary:hover { background: var(--sage-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,101,26,0.4); }
    .btn-outline {
      display: inline-flex; align-items: center; gap: 8px;
      background: transparent; color: #111111;
      border: 1.5px solid rgba(0,0,0,0.25);
      padding: 14px 28px; border-radius: 10px;
      font-size: 0.95rem; font-weight: 500;
      transition: background 0.25s, border-color 0.25s;
    }
    .btn-outline:hover { background: rgba(0,0,0,0.05); border-color: rgba(0,0,0,0.5); }
    .hero-stats {
      display: flex; gap: 40px; margin-top: 64px;
      padding-top: 40px; border-top: 1px solid rgba(0,0,0,0.1);
      flex-wrap: wrap;
    }
    .hero-stat strong { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.2rem; color: #111111; }
    .hero-stat span { font-size: 0.82rem; color: rgba(0,0,0,0.5); letter-spacing: 0.04em; text-transform: uppercase; }
    .hero-scroll {
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      color: rgba(0,0,0,0.4); font-size: 0.72rem; letter-spacing: 0.1em;
      text-transform: uppercase; cursor: pointer;
      padding-bottom: 36px; background: #F8F6F3;
    }
    .hero-scroll-dot {
      width: 24px; height: 38px;
      border: 1.5px solid rgba(0,0,0,0.2);
      border-radius: 12px;
      position: relative;
    }
    .hero-scroll-dot::after {
      content: ''; position: absolute;
      top: 6px; left: 50%; transform: translateX(-50%);
      width: 4px; height: 8px; background: #111111; border-radius: 2px;
      animation: scrollDot 2s infinite;
    }
    @keyframes scrollDot { 0%,100% { opacity: 1; top: 6px; } 50% { opacity: 0; top: 18px; } }

    /* ── À PROPOS ── */
    #apropos { padding: 100px 0; background: var(--white); }
    .apropos-grid { display: flex; flex-direction: column; align-items: center; max-width: 720px; margin: 0 auto; }
    .apropos-image {
      position: relative;
      border-radius: 20px; overflow: hidden;
      background: #f0f0f0;
      box-shadow: var(--shadow-lg);
    }
    .apropos-image img { width: 100%; height: auto; display: block; }
    .apropos-image a img {
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
    .apropos-image a:hover img {
      transform: scale(1.03);
      box-shadow: 0 0 30px rgba(232,101,26,0.4);
    }
    .apropos-image a::after {
      content: '📖 Voir le livret';
      position: absolute; bottom: 70px; left: 50%; transform: translateX(-50%);
      background: var(--sage); color: white;
      padding: 10px 22px; border-radius: 25px;
      font-family: 'Inter', sans-serif; font-size: 0.82rem; font-weight: 600;
      white-space: nowrap;
      opacity: 0; transition: opacity 0.3s ease;
      pointer-events: none;
    }
    .apropos-image a:hover::after { opacity: 1; }
    .apropos-image-badge {
      position: absolute; bottom: 24px; left: 24px; right: 24px;
      background: rgba(28,43,34,0.88); backdrop-filter: blur(12px);
      border-radius: 14px; padding: 18px 20px;
      display: flex; align-items: center; gap: 14px;
    }
    .apropos-image-badge svg { width: 28px; height: 28px; flex-shrink: 0; }
    .apropos-image-badge p { color: rgba(255,255,255,0.9); font-size: 0.85rem; }
    .apropos-image-badge strong { color: white; }
    .apropos-content { text-align: center; }
    .apropos-content h2 { margin-bottom: 20px; }
    .apropos-content p { color: var(--text-mid); margin-bottom: 18px; font-size: 1.02rem; }
    .apropos-values { display: flex; flex-direction: row; gap: 24px; margin-top: 32px; align-items: flex-start; justify-content: center; }
    .apropos-value { text-align: left; flex: 1; }
    .apropos-value {
      display: flex; align-items: flex-start; gap: 14px;
      padding: 16px 18px; background: #f2f2f2;
      border-radius: 12px; border-left: 3px solid var(--sage);
    }
    .apropos-value-icon { font-size: 1.4rem; margin-top: 2px; flex-shrink: 0; }
    .apropos-value h4 { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.92rem; margin-bottom: 3px; }
    .apropos-value p { font-size: 0.86rem; color: var(--text-mid); margin: 0; }

    /* ── NOTRE FOI ── */
    #foi { padding: 100px 0; background: #F7F7F7; }
    .foi-header { text-align: center; margin-bottom: 60px; }
    .foi-header .section-intro { margin: 0 auto; text-align: center; }
    .foi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .foi-card {
      background: var(--white); border-radius: 18px;
      padding: 36px 30px; border: 1px solid var(--border);
      transition: transform 0.25s, box-shadow 0.25s;
    }
    .foi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
    .foi-card-num {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 3rem; color: var(--sage-light);
      line-height: 1; margin-bottom: 14px;
      -webkit-text-stroke: 1.5px var(--sage-mid);
    }
    .foi-card h3 { font-size: 1.12rem; margin-bottom: 12px; }
    .foi-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; }
    .foi-footer { text-align: center; margin-top: 52px; }
    .foi-footer p { color: var(--text-mid); font-size: 0.95rem; margin-bottom: 20px; }
    .foi-link-btn {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--sage); color: white;
      padding: 14px 32px; border-radius: 50px;
      font-size: 0.95rem; font-weight: 600; text-decoration: none;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .foi-link-btn:hover {
      background: var(--sage-dark); transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(232,101,26,0.35);
    }

    /* ── RESSOURCES SPIRITUELLES ── */
    #ressources { padding: 100px 0; background: var(--white); }
    .ressources-header { text-align: center; margin-bottom: 60px; }
    .ressources-header .section-intro { margin: 0 auto; text-align: center; }
    .ressources-header .section-intro h2 { text-align: center; }
    .ressources-header .section-intro p { text-align: center; }
    .ressources-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .ressource-card {
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--white);
      transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
      display: flex; flex-direction: column;
      position: relative;
    }
    .ressource-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle 280px at var(--mx, -999px) var(--my, -999px), rgba(232,101,26,0.25) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.35s;
      pointer-events: none;
      z-index: 2;
      border-radius: 20px;
    }
    .ressource-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.10); border-color: rgba(232,101,26,0.3); }
    .ressource-card:hover::after { opacity: 1; }
    .ressource-card-icon {
      width: 100%; height: 180px; overflow: hidden;
    }
    .ressource-card-icon img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.4s ease;
    }
    .ressource-card:hover .ressource-card-icon img { transform: scale(1.05); }
    .ressource-card-body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
    .ressource-card-tag {
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--sage);
      margin-bottom: 10px;
    }
    .ressource-card-body h3 { font-size: 1.1rem; margin-bottom: 10px; }
    .ressource-card-body p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; flex: 1; margin-bottom: 24px; }
    .ressource-card-link {
      display: inline-flex; align-items: center; gap: 6px;
      color: var(--sage); font-size: 0.88rem; font-weight: 600;
      text-decoration: none;
      transition: gap 0.2s, text-shadow 0.2s;
    }
    .ressource-card-link:hover { gap: 10px; text-shadow: 0 0 12px rgba(232,101,26,0.4); }
    @media (max-width: 900px) { .ressources-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 600px) { .ressources-grid { grid-template-columns: 1fr; } }

    /* ── RADIO PLAYER ── */
    .radio-player { margin-top: auto; }
    .radio-play-btn {
      display: flex; align-items: center; gap: 12px;
      background: none; border: none; cursor: pointer; padding: 0;
      color: var(--sage); font-family: 'Inter', sans-serif;
      font-size: 0.88rem; font-weight: 600;
      transition: gap 0.2s, text-shadow 0.2s;
    }
    .radio-play-btn:hover { gap: 16px; text-shadow: 0 0 12px rgba(232,101,26,0.4); }
    .radio-play-btn .play-circle {
      width: 40px; height: 40px; border-radius: 50%;
      background: var(--sage); color: white;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      transition: background 0.25s, box-shadow 0.25s, transform 0.25s;
    }
    .radio-play-btn:hover .play-circle {
      background: var(--sage-dark);
      box-shadow: 0 0 16px rgba(232,101,26,0.5);
      transform: scale(1.08);
    }
    .radio-play-btn.playing .play-circle { background: var(--sage-dark); }
    .radio-iframe-wrap {
      margin-top: 16px; border-radius: 12px; overflow: hidden;
      height: 0; transition: height 0.35s ease;
    }
    .radio-iframe-wrap.open { height: 120px; }
    .radio-iframe-wrap iframe { width: 100%; height: 120px; border: none; }
    .ressources-social {
      display: flex; align-items: center; justify-content: center;
      gap: 20px; margin-top: 56px;
    }
    .ressources-social-label {
      font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em;
      text-transform: uppercase; color: var(--text-mid);
      margin-right: 8px;
    }
    .ressources-social-icon {
      display: flex; align-items: center; justify-content: center;
      width: 52px; height: 52px; border-radius: 50%;
      border: 1.5px solid var(--border);
      color: var(--text-dark); text-decoration: none;
      transition: background 0.28s ease, color 0.28s ease, border-color 0.28s ease,
                  box-shadow 0.28s ease, transform 0.28s ease, filter 0.28s ease;
    }
    .ressources-social-icon:hover {
      transform: scale(1.18);
      filter: brightness(1.08);
    }
    .ressources-social-icon.fb:hover {
      background: #1877F2; border-color: #1877F2; color: white;
      box-shadow:
        0 0 0 5px rgba(24,119,242,0.15),
        0 0 22px 8px rgba(24,119,242,0.45),
        inset 0 0 12px rgba(255,255,255,0.25);
    }
    .ressources-social-icon.yt:hover {
      background: #FF0000; border-color: #FF0000; color: white;
      box-shadow:
        0 0 0 5px rgba(255,0,0,0.15),
        0 0 22px 8px rgba(255,0,0,0.45),
        inset 0 0 12px rgba(255,255,255,0.25);
    }
    .ressources-social-icon.ig:hover {
      background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
      border-color: #d6249f; color: white;
      box-shadow:
        0 0 0 5px rgba(214,36,159,0.15),
        0 0 22px 8px rgba(214,36,159,0.45),
        inset 0 0 12px rgba(255,255,255,0.25);
    }

    /* ── STRUCTURE ── */
    #structure { padding: 100px 0; background: linear-gradient(160deg, #fdf6f0 0%, #f5e6d6 40%, #eedcc8 100%); }
    .structure-header { text-align: center; margin-bottom: 60px; }
    .structure-header .section-tag { background: rgba(232,101,26,0.2); color: var(--sage-mid); }
    .structure-header h2 { color: #2d1a0e; }
    .structure-header p { color: rgba(0,0,0,0.55); margin-top: 14px; max-width: 560px; margin-left: auto; margin-right: auto; }
    .structure-tree {
      display: flex; flex-direction: column; align-items: center; gap: 0;
    }
    .structure-level { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .structure-connector {
      width: 2px; height: 36px; background: var(--sage);
      margin: 0 auto; opacity: 0.4;
    }
    .structure-node {
      background: rgba(255,255,255,0.75);
      border: 1px solid rgba(0,0,0,0.10);
      border-radius: 14px; padding: 18px 24px;
      text-align: center; min-width: 170px;
      cursor: default;
      transition: background 0.25s, border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    }
    .structure-node:hover {
      background: rgba(232,101,26,0.18);
      border-color: rgba(232,101,26,0.5);
      box-shadow: 0 0 18px rgba(232,101,26,0.35), 0 0 40px rgba(232,101,26,0.15);
      transform: translateY(-3px);
    }
    .structure-node:hover strong { text-shadow: none; }
    .structure-node.primary {
      background: var(--sage); border-color: var(--sage);
      box-shadow: 0 0 16px rgba(232,101,26,0.4);
    }
    .structure-node.primary:hover {
      background: var(--sage-dark);
      border-color: var(--sage-dark);
      box-shadow: 0 0 24px rgba(232,101,26,0.7), 0 0 50px rgba(232,101,26,0.3);
      transform: translateY(-3px);
    }
    .structure-node.primary strong { color: #fff; }
    .structure-node.primary span { color: rgba(255,255,255,0.85); }
    .structure-node strong { display: block; color: #2d1a0e; font-size: 0.88rem; font-weight: 600; margin-bottom: 4px; transition: text-shadow 0.25s; }
    .structure-node span { font-size: 0.75rem; color: rgba(0,0,0,0.45); }

    /* ── COMMUNAUTÉS ── */
    #communautes { padding: 100px 0; background: var(--white); }
    .communautes-header { margin-bottom: 48px; }
    .tabs {
      display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px;
    }
    .tab-btn {
      padding: 9px 20px; border-radius: 8px; border: 1.5px solid var(--border);
      background: transparent; cursor: pointer; font-family: 'Inter', sans-serif;
      font-size: 0.86rem; font-weight: 500; color: var(--text-mid);
      transition: all 0.2s;
    }
    .tab-btn.active { background: var(--sage); border-color: var(--sage); color: white; }
    .tab-btn:hover:not(.active) { border-color: var(--sage); color: var(--sage-dark); }
    .tab-panel { display: none; }
    .tab-panel.active { display: block; }
    .churches-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; }
    .church-card {
      background: var(--off-white); border-radius: 14px;
      padding: 22px; border: 1px solid var(--border);
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .church-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
    .church-dot {
      width: 10px; height: 10px; background: var(--sage);
      border-radius: 50%; margin-bottom: 14px;
    }
    .church-card h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; margin-bottom: 6px; }
    .church-card p { font-size: 0.82rem; color: var(--text-light); line-height: 1.5; }
    .church-card .church-time {
      margin-top: 12px; font-size: 0.78rem; font-weight: 600;
      color: var(--sage-dark); background: var(--sage-light);
      padding: 4px 10px; border-radius: 6px; display: inline-block;
    }
    .church-fb-btn {
      display: inline-flex; align-items: center; gap: 5px;
      margin-top: 10px; margin-left: 6px;
      font-size: 0.78rem; font-weight: 600;
      color: #1877f2; background: #e7f0fd;
      padding: 4px 10px; border-radius: 6px;
      text-decoration: none; border: 1px solid rgba(24,119,242,0.2);
      transition: background 0.2s, color 0.2s;
    }
    .church-fb-btn:hover { background: #1877f2; color: #fff; }

    /* ── DÉPARTEMENTS ── */
    /* ── DÉPARTEMENTS CAROUSEL ── */
    #departements { padding: 100px 0; background: linear-gradient(160deg, #fff8f4 0%, #ffeee3 50%, #fff4ec 100%); overflow: hidden; }
    #departements .section-tag { background: rgba(232,101,26,0.2); color: var(--sage-mid); }
    #departements h2 { color: #1a1a2e; }
    #departements > .container > .fade-up p { color: rgba(0,0,0,0.6); }
    .dept-carousel-wrap { position: relative; margin-top: 48px; }
    .dept-carousel {
      display: flex; gap: 20px;
      overflow-x: auto; scroll-behavior: smooth;
      padding-bottom: 8px;
      scrollbar-width: none;
    }
    .dept-carousel::-webkit-scrollbar { display: none; }

    .dept-card-wrap {
      flex: 0 0 calc((100% - 5 * 20px) / 6);
      display: flex; flex-direction: column; gap: 8px;
    }
    .dept-card-wrap:hover .dept-card {
      box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.1);
      transform: translateY(-4px);
    }

    /* ── Dept page button ── */
    .dept-page-btn {
      display: flex; align-items: center; justify-content: center; gap: 7px;
      padding: 10px 20px;
      background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 50%, #2563eb 100%);
      color: rgba(255,255,255,0.92);
      border-radius: 100px;
      font-size: 0.72rem; font-weight: 800;
      text-decoration: none;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      white-space: nowrap;
      border: 1.5px solid rgba(96,165,250,0.35);
      box-shadow: 0 2px 12px rgba(29,78,216,0.25);
      overflow: hidden;
      position: relative;
      transition: color 0.22s, transform 0.22s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s;
    }
    .dept-page-btn::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(110deg, #E8651A 0%, #c4541a 100%);
      transform: translateX(-108%);
      transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
      border-radius: 100px;
    }
    .dept-page-btn:hover {
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(232,101,26,0.4), 0 2px 8px rgba(0,0,0,0.15);
    }
    .dept-page-btn:hover::after { transform: translateX(0); }

    /* "Voir la fiche" button inside overlay */
    .dept-fiche-btn {
      display: inline-flex; align-items: center; gap: 6px;
      cursor: pointer;
      font-size: 0.72rem; font-weight: 800;
      letter-spacing: 0.08em; text-transform: uppercase;
      color: #fff;
      padding: 8px 16px;
      border-radius: 100px;
      background: rgba(255,255,255,0.12);
      border: 1.5px solid rgba(255,255,255,0.35);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      box-shadow: 0 2px 8px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.1);
      transition: background 0.2s, border-color 0.2s, transform 0.18s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s;
    }
    .dept-fiche-btn:hover {
      background: rgba(255,255,255,0.22);
      border-color: rgba(255,255,255,0.7);
      transform: translateY(-1px);
      box-shadow: 0 4px 16px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.2);
    }
    .dept-card {
      flex: none; width: 100%;
      height: 280px;
      border-radius: 16px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      background: #1E1E1E;
      border: 1px solid rgba(255,255,255,0.07);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .dept-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
    .dept-card-front {
      position: absolute; inset: 0;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 16px; padding: 24px;
      transition: opacity 0.35s;
    }
    .dept-icon {
      width: 72px; height: 72px; border-radius: 50%;
      background: rgba(232,101,26,0.15);
      border: 2px solid rgba(232,101,26,0.3);
      display: flex; align-items: center; justify-content: center;
      font-size: 2rem;
      transition: background 0.35s, border-color 0.35s;
    }
    .dept-card:hover .dept-icon {
      background: rgba(232,101,26,0.3);
      border-color: var(--sage);
    }
    .dept-card h4 {
      font-family: 'Inter', sans-serif; font-weight: 600;
      font-size: 0.88rem; color: #ffffff;
      text-align: center; line-height: 1.4;
    }
    .dept-card-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(160deg, var(--sage) 0%, #C4541A 100%);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      padding: 24px; gap: 12px;
      transform: translateY(100%);
      transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
      pointer-events: none; /* laisse les clics passer au parent pour la navigation */
    }
    .dept-card:hover .dept-card-overlay { transform: translateY(0); }
    .dept-card-overlay .dept-fiche-btn,
    .dept-card-overlay a { pointer-events: auto; } /* boutons restent cliquables */
    .dept-card-overlay .dept-icon-sm { font-size: 1.8rem; }
    .dept-card-overlay h4 {
      font-family: 'Inter', sans-serif; font-weight: 700;
      font-size: 0.9rem; color: #fff; text-align: center;
    }
    .dept-card-overlay p {
      font-size: 0.78rem; color: rgba(255,255,255,0.88);
      text-align: center; line-height: 1.55;
    }
    .dept-carousel-btn {
      position: absolute; top: 50%; transform: translateY(-50%);
      width: 44px; height: 44px; border-radius: 50%;
      background: rgba(232,101,26,0.9); border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      color: white; font-size: 1.1rem;
      transition: background 0.2s, transform 0.2s;
      z-index: 10;
    }
    .dept-carousel-btn:hover { background: var(--sage-dark); transform: translateY(-50%) scale(1.1); }
    .dept-carousel-btn.prev { left: -22px; }
    .dept-carousel-btn.next { right: -22px; }
    /* Carte avec photo portrait */
    .dept-card-photo { background: #000; }
    .dept-photo-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 5%; opacity: 1; transition: opacity 0.3s, transform 0.4s; }
    .dept-card-photo:hover .dept-photo-bg { opacity: 0.15; }

    /* ── Photo depth harmonisation — reference: Albert POROI scale 1.2 ── */
    .dept-photo-bg[src*="Paul%20HUUI"]       { transform: scale(1.5);  transform-origin: center 10%; object-position: center 10%; }
    .dept-photo-bg[src*="Pasteur%20Wilfrid"] { transform: scale(1.3);  transform-origin: center 5%;  object-position: center 5%;  }
    .dept-photo-bg[src*="Ambroise"]          { transform: scale(1.15); transform-origin: center 5%;  object-position: center 5%;  }
    .dept-photo-bg[src*="Matha%20Williams"]  { transform: scale(0.82); transform-origin: center 0%;  object-position: center 0%;  }
    .dept-photo-bg[src*="Albert%20POROI"]    { transform: scale(1.2);  transform-origin: center 5%;  object-position: center 5%;  }
    .dept-photo-bg[src*="Linda%20MOU"]       { transform: scale(0.72); transform-origin: center 0%;  object-position: center 0%;  }
    .dept-photo-bg[src*="Pasteur%20Manate"]  { transform: scale(1.2);  transform-origin: center 8%;  object-position: center 8%;  }
    .dept-photo-bg[src*="jenny-toa"]         { transform: scale(0.82); transform-origin: center 0%;  object-position: center 0%;  }
    .dept-photo-bg[src*="Manolita%20LY"]     { transform: scale(0.8);  transform-origin: center 0%;  object-position: center 0%;  }
    .dept-photo-bg[src*="leonard-leng"]      { transform: scale(1.45); transform-origin: center 5%;  object-position: center 5%;  }
    .dept-photo-bg[src*="Yann%20ATGER"]      { transform: scale(1.2);  transform-origin: center 5%;  object-position: center 5%;  }
    .dept-photo-bg[src*="Ronald%20ATGER"]    { transform: scale(1.45); transform-origin: center 10%; object-position: center 10%; }
    .dept-card-front-photo { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; padding: 20px 16px; background: linear-gradient(to top, rgba(0,0,0,0.70) 25%, transparent 55%); }
    .dept-card-front-photo h4 { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.88rem; color: #ffffff; text-align: center; line-height: 1.4; text-shadow: 0 1px 4px rgba(0,0,0,0.6); }
    .dept-link { display: none; }

    /* ── ACTUALITÉS ── */
    /* ══ ÉVÉNEMENTS ══ */
    #evenements { padding: 100px 0; background: #F8F6F3; overflow: hidden; }
    .evt-carousel-wrap { position: relative; margin: 0 28px; }
    .evt-track-wrap {
      overflow-x: auto; overflow-y: visible;
      scrollbar-width: none; scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
    }
    .evt-track-wrap::-webkit-scrollbar { display: none; }
    .evt-track { display: flex; gap: 28px; padding: 12px 0 20px; }
    .evt-nav { display: none; }
    .evt-nav-btn {
      position: absolute; top: 45%; transform: translateY(-50%);
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--sage); border: 2px solid #fff; color: #fff;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; font-size: 1.1rem;
      transition: background 0.2s, transform 0.2s;
      box-shadow: 0 2px 10px rgba(232,101,26,0.3);
      z-index: 10;
    }
    .evt-nav-btn:hover { background: var(--sage-dark); transform: translateY(-50%) scale(1.1); }
    .evt-nav-btn:disabled { opacity: 0.35; cursor: not-allowed; transform: translateY(-50%); }
    #evtPrev { left: -22px; }
    #evtNext { right: -22px; }
    .evt-card { flex-shrink: 0; width: 360px; background: #fff; border-radius: 20px; overflow: hidden; border: 1px solid rgba(0,0,0,0.08); transition: transform 0.3s, box-shadow 0.3s; cursor: pointer; position: relative; }
    .evt-card::after { content: ""; position: absolute; inset: 0; border-radius: 20px; background: radial-gradient(circle 280px at var(--mx, -999px) var(--my, -999px), rgba(232,101,26,0.18) 0%, transparent 70%); pointer-events: none; z-index: 1; }
    .evt-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.12); }
    .evt-card-img { width: 100%; height: 220px; object-fit: cover; display: block; }
    .evt-card-img-placeholder { width: 100%; height: 220px; background: linear-gradient(160deg, #fff7ed 0%, #ffedd5 100%); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
    .evt-card-body { padding: 24px; }
    .evt-card-tag { font-size: 0.72rem; font-weight: 700; color: var(--sage); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; display: block; }
    .evt-card-title { font-size: 1.15rem; font-weight: 800; color: #111; margin-bottom: 10px; line-height: 1.3; }
    .evt-card-desc { font-size: 0.88rem; color: rgba(0,0,0,0.55); line-height: 1.7; margin-bottom: 6px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; transition: all 0.3s; }
    .evt-card-desc.expanded { display: block; -webkit-line-clamp: unset; }
    .evt-read-more { display: inline-block; font-size: 0.78rem; font-weight: 700; color: var(--sage); background: none; border: none; cursor: pointer; padding: 0; margin-bottom: 14px; font-family: inherit; }
    .evt-read-more:hover { text-decoration: underline; }
    .evt-card-footer { display: flex; align-items: center; justify-content: space-between; }
    .evt-card-date { font-size: 0.8rem; color: rgba(0,0,0,0.35); }
    .evt-btn { background: var(--sage); color: #fff; border: none; padding: 10px 20px; border-radius: 50px; font-size: 0.82rem; font-weight: 700; cursor: pointer; font-family: inherit; transition: background 0.2s, transform 0.2s; white-space: nowrap; flex-shrink: 0; }
    .evt-btn:hover { background: var(--sage-dark); transform: scale(1.05); }

    /* ── Dept badge on event cards ── */
    .evt-dept-badge {
      display: inline-block;
      font-size: 0.67rem; font-weight: 700;
      padding: 3px 10px; border-radius: 20px;
      margin-bottom: 6px; letter-spacing: 0.04em;
    }

    /* ── Dept filter dropdown ── */
    .evt-dept-filter { position: relative; display: inline-block; }
    .evt-dept-toggle {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 10px 20px; border-radius: 100px;
      background: #fff; border: 2px solid rgba(0,0,0,0.12);
      font-size: 0.88rem; font-weight: 700; cursor: pointer;
      font-family: inherit; color: #222;
      box-shadow: 0 2px 12px rgba(0,0,0,0.08);
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .evt-dept-toggle:hover, .evt-dept-toggle.open {
      border-color: var(--sage);
      box-shadow: 0 2px 16px rgba(232,101,26,0.2);
    }
    .evt-dept-toggle.open svg { transform: rotate(180deg); }
    .evt-dept-menu {
      display: none;
      position: absolute; top: calc(100% + 8px); left: 50%;
      transform: translateX(-50%);
      background: #fff; border: 1px solid rgba(0,0,0,0.1);
      border-radius: 16px;
      box-shadow: 0 12px 40px rgba(0,0,0,0.14);
      min-width: 240px; max-height: 380px;
      overflow-y: auto; z-index: 500; padding: 8px;
    }
    .evt-dept-menu.open { display: block; }
    .evt-dept-menu button {
      display: flex; align-items: center; gap: 8px;
      width: 100%; text-align: left;
      padding: 9px 14px; border: none; background: transparent;
      font-size: 0.85rem; font-weight: 600; cursor: pointer;
      border-radius: 10px; font-family: inherit; color: #333;
      transition: background 0.15s;
    }
    .evt-dept-menu button:hover { background: #f0ebe4; }
    .evt-dept-menu button.active { background: var(--sage-light); color: var(--sage); }
    .evt-dept-divider { height: 1px; background: rgba(0,0,0,0.08); margin: 6px 8px; }

    /* ── No results message ── */
    .evt-no-results {
      display: none; text-align: center;
      padding: 48px 24px; color: rgba(0,0,0,0.4);
      font-size: 1rem; font-weight: 600;
    }
    /* Modal landing page */
    .evt-modal { display: none; position: fixed; inset: 0; z-index: 9998; background: rgba(0,0,0,0.85); overflow-y: auto; }
    .evt-modal.open { display: block; }
    .evt-modal-inner { min-height: 100vh; background: #fff; max-width: 900px; margin: 40px auto; border-radius: 24px; overflow: hidden; box-shadow: 0 40px 120px rgba(0,0,0,0.5); }
    .evt-modal-hero { position: relative; height: 420px; overflow: hidden; }
    .evt-modal-hero img { width: 100%; height: 100%; object-fit: cover; }
    .evt-modal-hero-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #E8651A 0%, #C4541A 100%); display: flex; align-items: center; justify-content: center; font-size: 5rem; }
    .evt-modal-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%); }
    .evt-modal-hero-content { position: absolute; bottom: 32px; left: 40px; right: 40px; }
    .evt-modal-hero-tag { font-size: 0.75rem; font-weight: 700; color: var(--sage); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; display: block; }
    .evt-modal-hero-title { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; color: #fff; line-height: 1.2; }
    .evt-modal-close { position: absolute; top: 20px; right: 20px; background: rgba(0,0,0,0.5); border: none; color: #fff; width: 40px; height: 40px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 1; transition: background 0.2s; }
    .evt-modal-close:hover { background: rgba(0,0,0,0.8); }
    .evt-modal-body { padding: 40px; }
    .evt-modal-meta { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 32px; padding-bottom: 28px; border-bottom: 1px solid #eee; }
    .evt-modal-meta-item { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: #555; }
    .evt-modal-meta-item strong { color: #111; }
    .evt-modal-content h3 { font-size: 1.2rem; font-weight: 700; color: #111; margin: 28px 0 12px; }
    .evt-modal-content p { font-size: 0.95rem; color: #444; line-height: 1.8; margin-bottom: 16px; }
    .evt-modal-cta { text-align: center; margin-top: 40px; padding-top: 32px; border-top: 1px solid #eee; }
    .evt-modal-cta-btn { display: inline-block; background: var(--sage); color: #fff; padding: 16px 40px; border-radius: 50px; font-size: 1rem; font-weight: 700; text-decoration: none; border: none; cursor: pointer; font-family: inherit; transition: background 0.2s, transform 0.2s; }
    .evt-modal-cta-btn:hover { background: var(--sage-dark); transform: translateY(-2px); }
    @media (max-width: 768px) { .evt-card { width: 300px; } .evt-modal-inner { margin: 0; border-radius: 0; } .evt-modal-hero { height: 280px; } .evt-modal-body { padding: 24px; } .evt-modal-hero-content { left: 24px; right: 24px; bottom: 24px; } }

    /* ── ACTUALITÉS ── */
    /* ── ACTUALITÉS — style journal ── */
    #actualites { padding: 80px 0; background: #fff; }
    .news-header { margin-bottom: 40px; }
    .news-header .section-tag { display: none; }
    .news-header h2 {
      font-size: 2rem; font-weight: 900; text-transform: uppercase;
      color: var(--sage); letter-spacing: 0.03em; margin: 0;
      font-family: inherit;
    }
    .news-grid { display: flex; flex-direction: column; min-height: auto; }
    .news-card {
      display: flex; flex-direction: row; align-items: flex-start;
      gap: 0; padding: 28px 0; border-bottom: 1px solid rgba(0,0,0,0.09);
      cursor: pointer; background: transparent; border-radius: 0;
      box-shadow: none; border-top: none; border-left: none; border-right: none;
      transition: background 0.2s, border-radius 0.2s, padding 0.2s;
      text-decoration: none;
    }
    .news-card:first-child { border-top: 1px solid rgba(0,0,0,0.09); }
    .news-card:hover {
      background: #f3f4f6;
      border-radius: 12px;
      padding: 28px 20px;
    }
    .news-card-img-wrap {
      width: 260px; min-width: 260px; height: 180px;
      overflow: hidden; border-radius: 8px; flex-shrink: 0;
    }
    .news-card-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
    .news-card:hover .news-card-img { transform: scale(1.04); }
    .news-card-placeholder {
      width: 260px; min-width: 260px; height: 180px; border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 2.5rem; flex-shrink: 0;
    }
    .news-card-body {
      padding: 4px 0 4px 28px; display: flex; flex-direction: column; flex: 1;
    }
    .news-card-title {
      font-size: 1.05rem; font-weight: 800; color: var(--sage);
      line-height: 1.4; margin: 0 0 6px; order: 1;
      text-transform: uppercase;
    }
    .news-card-date {
      font-size: 0.72rem; color: rgba(0,0,0,0.38);
      margin-bottom: 10px; order: 2;
    }
    .news-card-excerpt {
      font-size: 0.87rem; color: #444; line-height: 1.7;
      display: -webkit-box; -webkit-line-clamp: 3;
      -webkit-box-orient: vertical; overflow: hidden;
      order: 3; flex: 1;
    }
    .news-card-tags {
      display: flex; flex-wrap: wrap; gap: 6px;
      margin-top: 14px; order: 4;
    }
    .news-card-tag {
      font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em;
      text-transform: uppercase; color: #666;
      border: 1px solid rgba(0,0,0,0.22);
      padding: 3px 10px; border-radius: 20px; background: transparent;
    }
    .news-card-cat { display: none; }
    .news-card-link { display: none; }
    /* Skeleton */
    .news-card-skeleton {
      height: 180px; background: #e9e7e3; border-radius: 8px;
      animation: skeleton-pulse 1.5s ease-in-out infinite;
      margin: 14px 0;
    }
    @keyframes skeleton-pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }
    /* Pagination */
    .news-pagination { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 40px; }
    .news-nav-btn {
      width: 44px; height: 44px; border-radius: 50%; border: 2px solid #fff;
      background: var(--sage); color: #fff; font-size: 1.1rem;
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      transition: background 0.2s, transform 0.15s;
    }
    .news-nav-btn:hover:not(:disabled) {
      background: var(--sage-dark);
      transform: scale(1.08);
    }
    .news-nav-btn:disabled { opacity: 0.35; cursor: default; }
    .news-page-info { font-size: 0.85rem; font-weight: 600; color: rgba(0,0,0,0.4); min-width: 52px; text-align: center; }
    @media (max-width: 700px) {
      .news-card { flex-direction: column; }
      .news-card-img-wrap, .news-card-placeholder { width: 100%; min-width: 0; height: 200px; border-radius: 8px; }
      .news-card-body { padding: 14px 0 0; }
    }

    /* ── MISSIONS / ADRA ── */
    #missions {
      padding: 100px 0;
      background: linear-gradient(160deg, #0A0A0A 0%, #1E1E1E 100%);
      position: relative; overflow: hidden;
    }
    #missions::before {
      content: ''; position: absolute; inset: 0;
      background: url('https://images.unsplash.com/photo-1530789253388-582c481c54b0?w=1400&q=80') center/cover no-repeat;
      opacity: 0.08;
    }
    .missions-inner { position: relative; z-index: 2; }
    .missions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; margin-top: 60px; }
    .missions-content h2 { color: white; margin-bottom: 20px; }
    .missions-content p { color: rgba(255,255,255,0.72); font-size: 1rem; margin-bottom: 16px; }
    .missions-content .btn-primary { margin-top: 16px; }
    .missions-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .mission-stat {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(0,0,0,0.10);
      border-radius: 16px; padding: 28px 24px;
      backdrop-filter: blur(10px);
    }
    .mission-stat strong {
      display: block; font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 2.4rem; color: var(--gold); margin-bottom: 6px;
    }
    .mission-stat span { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

    /* ── PROGRAMME SABBAT ── */
    #programme { padding: 100px 0; background: #F7F7F7; }
    .programme-header { text-align: center; margin-bottom: 60px; }
    .programme-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .programme-card {
      background: var(--white); border-radius: 18px;
      padding: 36px 30px; border: 1px solid var(--border);
      position: relative; overflow: hidden;
    }
    .programme-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0;
      height: 4px; background: var(--sage);
    }
    .programme-time {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.9rem; color: var(--sage); margin-bottom: 8px;
    }
    .programme-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
    .programme-card p { font-size: 0.88rem; color: var(--text-mid); }
    .programme-day { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); margin-bottom: 16px; }

    /* ── CONTACT ── */
    #contact { padding: 100px 0; background: var(--white); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; margin-top: 60px; }
    .contact-info h3 { font-size: 1.3rem; margin-bottom: 24px; }
    .contact-items { display: flex; flex-direction: column; gap: 20px; }
    .contact-item { display: flex; gap: 16px; align-items: flex-start; }
    .contact-item-icon {
      width: 42px; height: 42px; flex-shrink: 0;
      background: var(--sage-light); border-radius: 10px;
      display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
    }
    .contact-item strong { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 3px; }
    .contact-item p { font-size: 0.88rem; color: var(--text-mid); }
    .contact-socials { display: flex; gap: 12px; margin-top: 32px; }
    .social-btn {
      width: 42px; height: 42px; border-radius: 10px;
      background: var(--sage-light); border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; transition: background 0.2s, transform 0.2s;
    }
    .social-btn:hover { background: var(--sage); transform: translateY(-2px); }
    .contact-form { display: flex; flex-direction: column; gap: 18px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { display: flex; flex-direction: column; gap: 7px; }
    .form-group label { font-size: 0.84rem; font-weight: 600; color: var(--text-dark); }
    .form-group input, .form-group select, .form-group textarea {
      padding: 12px 16px; border-radius: 10px;
      border: 1.5px solid var(--border); background: var(--off-white);
      font-family: 'Inter', sans-serif; font-size: 0.9rem; color: var(--text-dark);
      transition: border-color 0.2s, box-shadow 0.2s;
      outline: none;
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
      border-color: var(--sage); box-shadow: 0 0 0 3px rgba(107,143,113,0.12);
    }
    .form-group textarea { resize: vertical; min-height: 130px; }
    .form-submit {
      background: var(--sage); color: white; border: none;
      padding: 14px 32px; border-radius: 10px; font-family: 'Inter', sans-serif;
      font-size: 0.95rem; font-weight: 600; cursor: pointer;
      transition: background 0.25s, transform 0.2s;
      align-self: flex-start;
    }
    .form-submit:hover { background: var(--sage-dark); transform: translateY(-2px); }

    /* ── FOOTER ── */
    footer {
      background: var(--text-dark);
      padding: 72px 0 0;
    }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; }
    .footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.88rem; margin-top: 16px; max-width: 280px; line-height: 1.7; }
    .footer-col h5 {
      font-family: 'Inter', sans-serif; font-weight: 600;
      font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
      color: rgba(255,255,255,0.4); margin-bottom: 18px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
    .footer-col ul li a:hover { color: var(--sage-mid); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 22px 0;
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 12px;
    }
    .footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
    .footer-bottom a { color: rgba(255,255,255,0.5); font-size: 0.8rem; }
    .footer-bottom a:hover { color: var(--sage-mid); }
    .footer-logo-row { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
    .footer-logo-icon {
      width: 36px; height: 36px; background: var(--sage);
      border-radius: 9px; display: flex; align-items: center; justify-content: center;
    }
    .footer-logo-icon svg { width: 20px; height: 20px; fill: white; }
    .footer-logo-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; color: white; }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .foi-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-burger { display: flex; }
      .lang-btn { width: 36px; height: 36px; font-size: 1.45rem; }
      .apropos-grid, .missions-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
      .apropos-image { aspect-ratio: 16/9; }
      .foi-grid { grid-template-columns: 1fr; }
      .actu-card { flex-direction: column; }
      .actu-img { width: 100%; min-width: unset; height: 220px; }
      .actu-body { padding: 20px; border-left: none; border-top: 3px solid transparent; }
      .actu-card:hover .actu-body { border-top-color: var(--sage); border-left-color: transparent; }
      .programme-cards { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .structure-level { gap: 10px; }
      .structure-node { min-width: 130px; }
      .hero-stats { gap: 24px; }
      .hero-content { grid-template-columns: 1fr; gap: 40px; }
      .hero-bible { max-width: 340px; margin: 0 auto; }
    }

    
    /* ══ NOS PUBLICATIONS — carrousel manuel ══ */
    .pub-carousel-wrap { position: relative; }
    .pub-track-wrap { overflow: hidden; margin: 0 -20px; }

    /* ── Version Livre 3D ── */
    .pub-card--book a { display: flex; flex-direction: row; align-items: center; gap: 40px; padding: 36px 32px; }
    .pub-book-wrap { flex-shrink: 0; perspective: 1000px; }
    .pub-book-3d {
      position: relative;
      width: 210px; height: 290px;
      transform: rotateY(-18deg);
      transform-style: preserve-3d;
      transition: transform 0.4s ease;
    }
    .pub-card--book:hover .pub-book-3d { transform: rotateY(-6deg); }
    .pub-book-cover {
      width: 210px; height: 290px;
      object-fit: cover;
      border-radius: 0 4px 4px 0;
      box-shadow: 14px 14px 40px rgba(0,0,0,0.30), 2px 2px 0 rgba(0,0,0,0.08);
      display: block;
    }
    .pub-book-spine {
      position: absolute;
      left: -22px; top: 0;
      width: 22px; height: 100%;
      background: linear-gradient(to right, #2d1a0e, #5c3318, #3d2210);
      border-radius: 3px 0 0 3px;
      transform-origin: right center;
      transform: rotateY(-45deg);
      box-shadow: -4px 4px 16px rgba(0,0,0,0.3);
    }
    .pub-card--book .pub-card-body { flex: 1; padding: 0; }
    .pub-card--book .pub-card-body h4 { font-size: 1.1rem; margin-bottom: 12px; }
    .pub-card--book .pub-card-body p  { font-size: 0.9rem; margin-bottom: 20px; }
    .pub-card--book .pub-card-btn {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--sage); color: #fff;
      padding: 10px 20px; border-radius: 8px;
      font-size: 0.85rem; font-weight: 700;
      transition: background 0.2s, transform 0.15s;
    }
    .pub-card--book:hover .pub-card-btn { background: var(--sage-dark); transform: translateX(3px); }
    @media (max-width: 600px) {
      .pub-card--book a { flex-direction: column; align-items: center; text-align: center; }
    }

    .pub-track {
      display: flex; gap: 28px; padding: 12px 40px 20px;
      transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
      will-change: transform;
    }
    .pub-card {
      flex-shrink: 0; width: 300px;
      background: #fff; border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(0,0,0,0.07);
      border: 1px solid rgba(0,0,0,0.06);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .pub-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.13); }
    .pub-card a { text-decoration: none; color: inherit; display: block; }
    .pub-card-img { width: 100%; height: 200px; overflow: hidden; background: #f5f5f5; }
    .pub-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
    .pub-card:hover .pub-card-img img { transform: scale(1.05); }
    .pub-card-body { padding: 20px; }
    .pub-card-tag {
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--sage);
      background: rgba(232,101,26,0.1); padding: 3px 10px;
      border-radius: 50px; display: inline-block; margin-bottom: 10px;
    }
    .pub-card-body h4 { font-size: 0.95rem; font-weight: 700; color: #1a1a2e; margin-bottom: 8px; line-height: 1.4; }
    .pub-card-body p  { font-size: 0.82rem; color: #666; line-height: 1.6; margin-bottom: 14px; }
    .pub-card-btn { font-size: 0.8rem; font-weight: 700; color: var(--sage); }

    /* ══════════════════════════════════════════
       RESPONSIVE MOBILE — optimisation complète
       ══════════════════════════════════════════ */

    /* ── Tablette (≤ 900px) ── */
    @media (max-width: 900px) {
      .dept-card-wrap { flex: 0 0 calc((100% - 3 * 20px) / 3.5); }
      .missions-grid { grid-template-columns: 1fr; gap: 48px; }
      .missions-stats { grid-template-columns: 1fr 1fr; }
      .structure-level { gap: 8px; }
    }

    /* ── Smartphone large (≤ 768px) ── */
    @media (max-width: 768px) {

      /* Sections : padding réduit */
      section, #hero, #apropos, #departements, #videos, #actualites,
      #ressources, #publications, #missions, #contact, #communautes,
      #structure, #foi, #onevoice27 {
        padding-top: 64px !important;
        padding-bottom: 64px !important;
      }

      /* Container */
      .container { padding: 0 16px; }

      /* Navbar */
      .nav-inner { padding: 0 16px; }
      .nav-logo-region { display: none; }

      /* Hero */
      #hero { min-height: auto; padding-top: 80px !important; padding-bottom: 60px !important; }
      .hero-content { grid-template-columns: 1fr; gap: 32px; }
      .hero-text h1 { font-size: clamp(1.9rem, 8vw, 2.6rem); }
      .hero-text p { font-size: 0.95rem; }
      .hero-actions { flex-direction: column; gap: 12px; }
      .hero-actions .btn-primary, .hero-actions .btn-secondary { width: 100%; text-align: center; justify-content: center; }
      .hero-stats { flex-wrap: wrap; gap: 18px; justify-content: flex-start; }
      .hero-stat { min-width: 110px; }
      .hero-bible { max-width: 100%; }
      .hero-image-wrap { display: none; }

      /* À propos */
      .apropos-values {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
      }
      .apropos-value { flex: unset !important; }
      .apropos-grid { grid-template-columns: 1fr; gap: 32px; }

      /* Départements */
      #departements { padding-left: 0; padding-right: 0; }
      #departements .container { padding: 0 16px; }
      .dept-carousel-wrap { margin: 28px -16px 0; }
      .dept-carousel { padding: 0 16px 12px; gap: 14px; scroll-snap-type: x mandatory; }
      .dept-card-wrap {
        flex: 0 0 72vw !important;
        scroll-snap-align: start;
        --card-h: 360px;
      }
      .dept-card {
        height: 360px;
      }
      .dept-carousel-btn { display: none; }
      /* Photos toujours visibles sur mobile */
      .dept-photo-bg { opacity: 1 !important; transform: none !important; }
      .dept-card-overlay { transform: translateY(100%) !important; opacity: 0 !important; pointer-events: none; }
      .dept-card-front { opacity: 1 !important; }

      /* Vidéos */
      #videos .container { padding: 0 16px; }
      .videos-layout { grid-template-columns: 1fr; }
      .video-playlist { max-height: 280px; }

      /* Actualités */
      .news-card { flex-direction: column; }
      .news-card-img-wrap, .news-card-placeholder { width: 100% !important; min-width: 0 !important; height: 200px; }
      .news-card-body { padding: 14px 0 0; }

      /* Missions */
      .missions-grid { grid-template-columns: 1fr; gap: 40px; }
      .missions-stats { grid-template-columns: 1fr 1fr; gap: 14px; }
      .mission-stat { padding: 20px 16px; }
      .mission-stat strong { font-size: 1.9rem; }

      /* Structure */
      .structure-level { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; justify-content: flex-start; }
      .structure-node { min-width: 120px; max-width: 140px; flex-shrink: 0; font-size: 0.78rem; padding: 10px 10px; }

      /* Publications — livre 3D */
      .pub-card--book a { flex-direction: column; align-items: center; text-align: center; gap: 24px; padding: 24px 20px; }
      .pub-book-3d { width: 160px; height: 220px; }
      .pub-book-cover { width: 160px; height: 220px; }
      .pub-book-spine { left: -16px; width: 16px; }

      /* Contact */
      .contact-grid { grid-template-columns: 1fr; gap: 32px; }
      .form-row { grid-template-columns: 1fr; }

      /* Footer */
      .footer-grid { grid-template-columns: 1fr; gap: 28px; }

      /* Foi & croyances */
      .foi-grid { grid-template-columns: 1fr; }

      /* Programme */
      .programme-cards { grid-template-columns: 1fr; }

      /* Modales : plein écran mobile */
      .evt-modal-inner { margin: 0; border-radius: 0; max-width: 100vw; width: 100%; max-height: 100dvh; overflow-y: auto; }
      .evt-modal-hero { height: 220px !important; }
      .evt-modal-body { padding: 18px 16px; }
      .evt-modal-meta { flex-direction: column; gap: 8px; }
      .evt-modal-cta { flex-direction: column; gap: 10px; align-items: stretch; }
      .evt-modal-cta-btn { text-align: center; justify-content: center; }
      .evt-modal-close { top: 10px; right: 10px; }

      /* Art share */
      .art-share { flex-wrap: wrap; gap: 10px; }

      /* Section tags centrés sur mobile */
      .section-intro { max-width: 100%; }
    }

    /* ── Smartphone compact (≤ 480px) ── */
    @media (max-width: 480px) {
      section, #hero, #apropos, #departements, #videos, #actualites,
      #ressources, #publications, #missions, #contact, #communautes,
      #structure, #foi, #onevoice27 {
        padding-top: 48px !important;
        padding-bottom: 48px !important;
      }

      /* Hero : super compact */
      .hero-stats { gap: 12px; }
      .hero-stat strong { font-size: 1.5rem; }
      .hero-badge { font-size: 0.75rem; }

      /* À propos : 1 colonne sur très petit écran */
      .apropos-values { grid-template-columns: 1fr !important; }

      /* Dept card : encore plus large */
      .dept-card { flex: 0 0 84vw !important; height: 340px; }

      /* Modales */
      .evt-modal-hero { height: 180px !important; }
      .evt-modal-hero h2 { font-size: 1.3rem !important; }

      /* Missions stats : 1 colonne */
      .missions-stats { grid-template-columns: 1fr; }

      /* Structure : plus compact */
      .structure-node { min-width: 100px; font-size: 0.72rem; padding: 8px; }

      /* Nav logo texte simplifié */
      .nav-logo-text span:not(.nav-logo-region) { display: none; }

      /* Radio player mobile */
      #radio-player:not(.collapsed) { width: calc(100vw - 32px); right: 16px; bottom: 16px; }

      /* Ressources grid */
      .ressources-grid { grid-template-columns: 1fr !important; }

      /* Section h2 aligné gauche sur mobile */
      #departements h2[style], #actualites h2 { font-size: 1.4rem !important; }
    }

    /* ── Touch : désactiver les effets hover parasites sans masquer les photos ── */
    @media (hover: none) {
      .dept-card:hover { transform: none; box-shadow: none; }
      .dept-card-overlay { transform: translateY(100%); }
      .dept-card:hover .dept-card-overlay { transform: translateY(100%); }
      .dept-card-front { opacity: 1 !important; }
      .dept-card-photo:hover .dept-photo-bg { opacity: 0.45; transform: none; }
    }
