    :root {
      --cream: #f5f0e8;
      --ink: #1a1a2e;
      --terracotta: #c9614a;
      --sage: #6b8f71;
      --sand: #d4b896;
      --gold: #e8a84c;
      --white: #ffffff;
      --c-fouilles:    #a0856c;
      --c-van:         #6b8f71;
      --c-miasin:      #c9614a;
      --c-dialogue:    #4a7fb5;
      --c-droits:      #9b3a6e;
      --c-solidarite:  #3a8f8f;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--ink);
      height: 100vh;
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }
    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 24px;
      background: var(--white);
      border-bottom: 1px solid #eee;
      z-index: 1000;
      flex-shrink: 0;
    }

    /* ── Sélecteur de langue ── */
    .lang-switcher {
      display: flex;
      border: 1.5px solid #e2ddd2;
      border-radius: 20px;
      overflow: hidden;
    }
    .lang-btn {
      padding: 5px 15px;
      border: none;
      background: transparent;
      font-family: 'DM Sans', sans-serif;
      font-size: .76rem;
      font-weight: 600;
      letter-spacing: .5px;
      color: #aaa;
      cursor: pointer;
      transition: all .15s;
    }
    .lang-btn.active { background: var(--ink); color: #fff; }
    .lang-btn:not(.active):hover { background: #f0ebe1; color: var(--ink); }
    .filter-group {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 7px 24px;
      flex-shrink: 0;
      flex-wrap: wrap;
    }
    .filter-group.by-theme { background: rgba(26,26,46,0.97); border-bottom: 1px solid rgba(255,255,255,0.06); }
    .filter-group.by-pays  { background: rgba(20,20,40,0.95); }
    .filter-group-label {
      font-size: .63rem;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: rgba(255,255,255,0.35);
      font-weight: 500;
      white-space: nowrap;
      margin-right: 4px;
    }
    .filter-btn {
      padding: 4px 13px;
      border-radius: 20px;
      border: 1.5px solid rgba(255,255,255,0.2);
      background: transparent;
      color: rgba(255,255,255,0.65);
      font-family: 'DM Sans', sans-serif;
      font-size: .76rem;
      cursor: pointer;
      transition: all .18s;
      display: flex;
      align-items: center;
      gap: 5px;
      white-space: nowrap;
    }
    .filter-btn:hover { background: rgba(255,255,255,0.08); color: white; }
    .filter-btn.active {
      background: var(--cream);
      border-color: var(--cream);
      color: var(--ink);
      font-weight: 500;
    }
    .filter-btn.active:hover { background: var(--cream); color: var(--ink); }
    .filter-dot {
      display: inline-block;
      width: 8px; height: 8px;
      border-radius: 50%;
      flex-shrink: 0;
    }
    #focus-banner {
      display: none;
      align-items: center;
      gap: 12px;
      padding: 8px 24px;
      background: #fff8e1;
      border-bottom: 1px solid #ffe082;
      font-size: .82rem;
      color: #5a4a00;
      z-index: 999;
      flex-shrink: 0;
    }
    #focus-banner.visible { display: flex; }
    #focus-banner strong { font-weight: 600; }
    .focus-reset {
      margin-left: auto;
      padding: 4px 14px;
      border-radius: 20px;
      border: 1.5px solid #d4a000;
      background: transparent;
      color: #7a5800;
      font-family: 'DM Sans', sans-serif;
      font-size: .76rem;
      cursor: pointer;
      transition: background .15s;
    }
    .focus-reset:hover { background: #ffe082; }
    #map { flex: 1; z-index: 1; }
    .num-marker {
      width: 32px; height: 32px;
      border-radius: 50%;
      border: 2.5px solid white;
      box-shadow: 0 2px 10px rgba(0,0,0,0.35);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 700;
      cursor: pointer;
      transition: transform .18s, box-shadow .18s;
      letter-spacing: -.3px;
    }
    .num-marker:hover { transform: scale(1.18); box-shadow: 0 4px 16px rgba(0,0,0,0.45); }
    .num-marker.focused {
      border: 3px solid white;
      box-shadow: 0 0 0 3px rgba(255,255,255,0.6), 0 4px 16px rgba(0,0,0,0.45);
      font-size: 12px;
    }
    .num-marker.dimmed { opacity: 0.2; pointer-events: none; }
    #modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(26,26,46,0.6);
      backdrop-filter: blur(4px);
      z-index: 9000;
      align-items: center;
      justify-content: center;
    }
    #modal-overlay.open { display: flex; }
    .modal {
      background: var(--white);
      border-radius: 18px;
      width: min(760px, 95vw);
      max-height: 90vh;
      overflow-y: auto;
      box-shadow: 0 32px 80px rgba(0,0,0,0.35);
      animation: slideUp .28s cubic-bezier(.16,1,.3,1);
      position: relative;
    }
    @keyframes slideUp {
      from { opacity: 0; transform: translateY(36px) scale(.97); }
      to   { opacity: 1; transform: translateY(0) scale(1); }
    }
    .modal-hero {
      position: relative;
      height: 196px;
      overflow: hidden;
      border-radius: 18px 18px 0 0;
    }
    .modal-hero-bg { width: 100%; height: 100%; object-fit: cover; display: block; }
    .modal-hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(26,26,46,.88) 35%, transparent);
      display: flex;
      align-items: flex-end;
      padding: 18px 22px;
    }
    .modal-num {
      position: absolute;
      top: 16px; left: 18px;
      width: 36px; height: 36px;
      border-radius: 50%;
      border: 2.5px solid white;
      display: flex; align-items: center; justify-content: center;
      color: white;
      font-weight: 700;
      font-size: 13px;
    }
    .modal-category {
      position: absolute;
      top: 16px; left: 62px;
      padding: 4px 12px;
      border-radius: 20px;
      font-size: .68rem;
      font-weight: 600;
      letter-spacing: .8px;
      text-transform: uppercase;
      color: white;
    }
    .modal-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      color: white;
      line-height: 1.25;
    }
    .modal-location {
      font-size: .8rem;
      color: rgba(255,255,255,.7);
      margin-top: 6px;
      display: flex;
      align-items: center;
      gap: 5px;
      flex-wrap: wrap;
    }
    .location-pill {
      background: rgba(255,255,255,0.18);
      border-radius: 20px;
      padding: 2px 9px;
      font-size: .72rem;
      color: rgba(255,255,255,.92);
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .modal-close {
      position: absolute;
      top: 14px; right: 14px;
      width: 32px; height: 32px;
      border-radius: 50%;
      background: rgba(0,0,0,.3);
      border: none;
      color: white;
      font-size: 1rem;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      backdrop-filter: blur(6px);
      transition: background .15s;
      z-index: 10;
    }
    .modal-close:hover { background: rgba(0,0,0,.5); }
    .modal-body { padding: 22px 26px 26px; }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: .95rem;
      color: var(--ink);
      margin-bottom: 11px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .section-title::after { content: ''; flex: 1; height: 1px; background: #eee; }
    .project-desc { font-size: .91rem; line-height: 1.75; color: #444; margin-bottom: 26px; }
    .media-section { margin-bottom: 26px; }
    .video-container {
      position: relative;
      padding-bottom: 56.25%;
      height: 0;
      border-radius: 12px;
      overflow: hidden;
      background: #111;
    }
    .video-container iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
    .video-placeholder {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: #1a1a2e;
      color: white;
      cursor: pointer;
      border-radius: 12px;
      transition: background .18s;
    }
    .video-placeholder:hover { background: #252547; }
    .play-btn {
      width: 58px; height: 58px;
      border-radius: 50%;
      background: var(--terracotta);
      display: flex; align-items: center; justify-content: center;
    }
    .play-btn svg { width: 22px; height: 22px; fill: white; margin-left: 4px; }
    .video-caption { font-size: .8rem; color: rgba(255,255,255,.65); }
    .photos-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
    }
    .photo-thumb {
      aspect-ratio: 4/3;
      object-fit: cover;
      cursor: pointer;
      transition: opacity .18s, transform .18s;
      border-radius: 6px;
      width: 100%;
    }
    .photo-thumb:hover { opacity: .85; transform: scale(1.03); }
    .links-section { margin-bottom: 8px; }
    .links-list { display: flex; flex-direction: column; gap: 8px; }
    .link-card {
      display: flex;
      align-items: center;
      gap: 13px;
      padding: 12px 15px;
      border: 1.5px solid #eee;
      border-radius: 12px;
      text-decoration: none;
      color: var(--ink);
      transition: all .18s;
    }
    .link-card:hover { border-color: var(--terracotta); background: #fdf8f5; transform: translateX(3px); }
    .link-icon { width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .link-icon svg { width: 17px; height: 17px; }
    .link-info .link-title { font-weight: 500; font-size: .87rem; }
    .link-info .link-url   { font-size: .72rem; color: #bbb; margin-top: 2px; }
    .link-arrow { margin-left: auto; color: #ccc; }
    .modal-actions {
      display: flex;
      gap: 10px;
      margin-top: 20px;
      padding-top: 16px;
      border-top: 1px solid #eee;
    }
    .btn-primary {
      flex: 1; padding: 11px;
      background: var(--terracotta); color: white;
      border: none; border-radius: 10px;
      font-family: 'DM Sans', sans-serif; font-size: .87rem; font-weight: 500;
      cursor: pointer; transition: background .18s;
    }
    .btn-primary:hover { background: #b5513c; }
    .btn-secondary {
      padding: 11px 16px;
      background: var(--cream); color: var(--ink);
      border: none; border-radius: 10px;
      font-family: 'DM Sans', sans-serif; font-size: .87rem;
      cursor: pointer; transition: background .18s;
    }
    .btn-secondary:hover { background: #ece6d8; }
    .modal::-webkit-scrollbar { width: 5px; }
    .modal::-webkit-scrollbar-track { background: transparent; }
    .modal::-webkit-scrollbar-thumb { background: #ddd; border-radius: 3px; }
    .map-legend {
      position: absolute;
      bottom: 30px; left: 16px;
      z-index: 1000;
      background: white;
      border-radius: 12px;
      padding: 11px 15px;
      box-shadow: 0 4px 20px rgba(0,0,0,.14);
      font-size: .76rem;
      max-width: 200px;
    }
    .legend-title { font-weight: 600; font-size: .67rem; text-transform: uppercase; letter-spacing: 1px; color: #999; margin-bottom: 7px; }
    .legend-item { display: flex; align-items: center; gap: 7px; margin-bottom: 5px; color: #444; line-height: 1.3; }
    .legend-dot  { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
    .leaflet-popup-content-wrapper, .leaflet-popup-tip-container { display: none !important; }
