
    /* Fil d'Ariane */
.breadcrumbs {
  background: rgba(254,250,244,0.95);
  backdrop-filter: blur(12px);
  padding: 1rem 5%;
  font-size: 0.95rem;
  color: var(--ink-soft);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  position: sticky;
  top: 0;
  z-index: 99;
  text-align: left;
  font-weight: 400;
}

.breadcrumbs a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumbs a:hover {
  color: var(--earth-deep);
}

.breadcrumbs span.separator {
  margin: 0 0.8rem;
  color: var(--ink-soft);
  opacity: 0.6;
}

.breadcrumbs .current {
  color: var(--ink);
  font-weight: 500;
}

@media (max-width: 768px) {
  .breadcrumbs {
    padding: 0.8rem 4%;
    font-size: 0.9rem;
  }
}

  :root {
    --sand: #E8D5B7;
    --sand-light: #F5EDD8;
    --earth: #C4956A;
    --earth-deep: #8B5E3C;
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --sahara: #F0E6D3;
    --ink: #1A1209;
    --ink-soft: #3D2E1A;
    --green-niger: #009A44;
    --white: #FFFFFF;
    --pattern-color: rgba(201,168,76,0.08);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    background: var(--white);
    color: var(--ink);
    overflow-x: hidden;
  }

  /* TUAREG GEOMETRIC PATTERN SVG */
  .tuareg-bg {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.06'%3E%3Cpath d='M30 0 L60 30 L30 60 L0 30 Z'/%3E%3Cpath d='M30 10 L50 30 L30 50 L10 30 Z' stroke='%23C9A84C' stroke-opacity='0.05' stroke-width='1' fill='none'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.5rem 3rem;
    background: #FFFFFF;
    border-bottom: 1px solid rgba(201,168,76,0.15);
    animation: slideDown 0.8s ease forwards;
  }

  @keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }

  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--ink);
    text-decoration: none;
  }

  .nav-logo span {
    color: var(--gold);
    font-style: italic;
  }

  .nav-links {
    display: flex; gap: 2.5rem; list-style: none;
  }

  .nav-links a {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-soft);
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
  }

  .nav-links a::after {
    content: '';
    position: absolute; bottom: -3px; left: 0; right: 0; height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s;
  }

  .nav-links a:hover { color: var(--gold); }
  .nav-links a:hover::after { transform: scaleX(1); }

  .nav-cta {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--ink);
    padding: 0.6rem 1.4rem;
    text-decoration: none;
    transition: background 0.3s;
  }

  .nav-cta:hover { background: var(--earth-deep); }

  .account-menu { position: relative; margin-left: 1rem; }
  .account-btn {
    width: 38px; height: 38px; border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.3);
    background: #FFFFFF; display: grid; place-items: center;
    cursor: pointer; padding: 0;
  }
  .account-btn svg { width: 20px; height: 20px; stroke: var(--ink); }
  .account-dropdown {
    position: absolute; right: 0; top: 46px; min-width: 180px;
    background: #FFFFFF; border: 1px solid rgba(201,168,76,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); border-radius: 12px;
    padding: 0.5rem; opacity: 0; pointer-events: none; transform: translateY(-6px);
    transition: 0.2s ease;
  }
  .account-dropdown a {
    display: block; padding: 0.6rem 0.7rem; border-radius: 8px;
    color: var(--ink-soft); text-decoration: none; font-size: 0.85rem;
  }
  .account-dropdown a:hover { background: var(--sand-light); color: var(--earth-deep); }
  .account-menu.open .account-dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); }

  /* MOBILE MENU TOGGLE */
  .menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 101;
  }
  .bar {
    width: 25px;
    height: 2px;
    background-color: var(--ink);
    transition: 0.3s;
  }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 4rem 4rem 5rem;
    position: relative;
    z-index: 2;
  }

  .hero-tag {
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    display: flex; align-items: center; gap: 1rem;
    animation: fadeUp 1s 0.3s ease both;
  }

  .hero-tag::before {
    content: '';
    width: 40px; height: 1px;
    background: var(--gold);
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--ink);
    margin-bottom: 0.3rem;
    animation: fadeUp 1s 0.5s ease both;
  }

  .hero-title em {
    font-style: italic;
    color: var(--earth);
  }

  .hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 300;
    font-style: italic;
    color: var(--earth-deep);
    margin-bottom: 2.5rem;
    animation: fadeUp 1s 0.6s ease both;
  }

  .hero-desc {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--ink-soft);
    max-width: 380px;
    margin-bottom: 3rem;
    animation: fadeUp 1s 0.7s ease both;
  }

  .hero-actions {
    display: flex; gap: 1.2rem; align-items: center;
    animation: fadeUp 1s 0.85s ease both;
  }

  .btn-primary {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--earth-deep);
    padding: 1rem 2.2rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }

  .btn-primary, .btn-secondary, .btn-outline, button {
    outline: none;
    text-decoration: none;
  }

  .btn-primary:focus, .btn-secondary:focus, .btn-outline:focus, button:focus {
    outline: none;
    box-shadow: none;
  }

  .btn-primary::before {
    content: '';
    position: absolute; top: 0; left: -100%; bottom: 0; width: 100%;
    background: var(--gold);
    transition: left 0.4s;
    z-index: 0;
  }

  .btn-primary:hover::before { left: 0; }
  .btn-primary span { position: relative; z-index: 1; }

  .btn-secondary {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    display: flex; align-items: center; gap: 0.6rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, color 0.3s;
    padding-bottom: 2px;
  }

  .btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

  .hero-regions {
    margin-top: 4rem;
    display: flex; gap: 1rem; flex-wrap: wrap;
    animation: fadeUp 1s 1s ease both;
  }

  .region-tag {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35rem 0.8rem;
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--earth-deep);
    background: rgba(201,168,76,0.06);
    transition: all 0.3s;
  }

  .region-tag:hover {
    background: var(--earth-deep);
    color: var(--white);
  }

  .hero-right {
    position: relative;
    overflow: hidden;
  }

  .hero-image-area {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #D4B896 0%, #C4956A 40%, #8B5E3C 100%);
    display: flex; align-items: center; justify-content: center;
  }

  .hero-portrait-frame {
    position: relative;
    width: 65%;
    aspect-ratio: 3/4;
    animation: fadeIn 1.5s 0.4s ease both;
  }

  .portrait-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, rgba(255,255,255,0.2) 0%, transparent 60%);
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }

  .portrait-icon {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem;
  }

  .portrait-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.1em;
    font-style: italic;
    text-align: center;
    padding: 0 1rem;
  }

  .portrait-frame-deco {
    position: absolute;
    top: -15px; left: -15px; right: 15px; bottom: 15px;
    border: 1px solid rgba(201,168,76,0.6);
    pointer-events: none;
  }

  .hero-overlay-pattern {
    position: absolute; inset: 0;
    opacity: 0.3;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='0.15'%3E%3Cpath d='M20 0 L40 20 L20 40 L0 20Z'/%3E%3C/g%3E%3C/svg%3E");
  }

  .scroll-indicator {
    position: absolute;
    bottom: 2.5rem; left: 5rem;
    display: flex; align-items: center; gap: 0.8rem;
    font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--earth-deep);
    z-index: 2;
    animation: fadeUp 1.2s 1.2s ease both;
  }

  .scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, transparent, var(--gold));
    animation: scrollPulse 2s ease-in-out infinite;
  }

  @keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.4; }
  }

  /* SECTION STATS */
  .stats-band {
    background: var(--ink);
    padding: 3rem 5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    overflow: hidden;
  }

  .stats-band::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M40 0 L80 40 L40 80 L0 40Z'/%3E%3C/g%3E%3C/svg%3E");
  }

  .stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 1rem;
    border-left: 1px solid rgba(201,168,76,0.2);
  }

  .stat-item:first-child { border-left: none; }

  .stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 0.4rem;
  }

  .stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
  }

  /* TOUR SECTION */
  .tour-section {
    padding: 8rem 5rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: start;
  }

  .section-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: 0.8rem;
  }

  .section-eyebrow::before {
    content: '';
    width: 30px; height: 1px;
    background: var(--gold);
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 1.8rem;
  }

  .section-title em { font-style: italic; color: var(--earth); }

  .section-body {
    font-size: 0.95rem;
    line-height: 2;
    color: var(--ink-soft);
    margin-bottom: 2rem;
  }

  /* MAP PREVIEW */
  .map-preview {
    position: relative;
    background: var(--sahara);
    border: 1px solid rgba(201,168,76,0.2);
    overflow: hidden;
    aspect-ratio: 4/3;
  }

  .map-svg-container {
    width: 100%;
    height: 100%;
    padding: 2rem;
    position: relative;
  }

  /* Niger outline SVG map */
  .niger-map {
    width: 100%;
    height: 100%;
    position: relative;
  }

  .map-inner {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }

  .route-line {
    stroke-dasharray: 8 4;
    animation: dashMove 20s linear infinite;
  }

  @keyframes dashMove {
    to { stroke-dashoffset: -200; }
  }

  .city-dot {
    cursor: pointer;
    transition: r 0.3s;
  }

  .city-dot:hover { r: 9; }

  .map-legend {
    position: absolute;
    bottom: 1.5rem; right: 1.5rem;
    background: var(--white);
    border: 1px solid rgba(201,168,76,0.3);
    padding: 1rem 1.2rem;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .legend-item {
    display: flex; align-items: center; gap: 0.6rem;
    margin-bottom: 0.4rem;
    color: var(--ink-soft);
  }

  .legend-dot { width: 8px; height: 8px; border-radius: 50%; }

  .map-label {
    position: absolute;
    top: 1rem; left: 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    font-style: italic;
    color: var(--earth-deep);
    letter-spacing: 0.05em;
  }

  /* ETAPES */
  .etapes-section {
    padding: 6rem 5rem;
    background: var(--sahara);
    position: relative;
  }

  .etapes-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A84C' fill-opacity='0.06'%3E%3Cpath d='M30 0 L60 30 L30 60 L0 30 Z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
  }

  .etapes-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
  }

  .etapes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
  }

  .etape-card {
    background: var(--white);
    border: 1px solid rgba(201,168,76,0.15);
    padding: 0;
    overflow: hidden;
    transition: transform 0.4s, box-shadow 0.4s;
    cursor: pointer;
  }

  .etape-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(139,94,60,0.12);
  }

  .etape-img {
    height: 220px;
    overflow: hidden;
  }

  .etape-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem;
    position: relative;
    overflow: hidden;
  }

  .etape-img-placeholder::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(26,18,9,0.5));
  }

  .etape-body { padding: 1.2rem 1.4rem 1.5rem; }

  .etape-num {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.4rem;
  }

  .etape-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 0.5rem;
  }

  .etape-desc {
    font-size: 0.8rem;
    line-height: 1.7;
    color: var(--ink-soft);
    margin-bottom: 1rem;
  }

  .etape-status {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.25rem 0.7rem;
  }

  .status-done {
    background: rgba(0,154,68,0.1);
    color: var(--green-niger);
    border: 1px solid rgba(0,154,68,0.25);
  }

  .status-active {
    background: rgba(201,168,76,0.15);
    color: var(--earth-deep);
    border: 1px solid rgba(201,168,76,0.4);
    animation: pulse 2s ease-in-out infinite;
  }

  .status-upcoming {
    background: rgba(26,18,9,0.05);
    color: rgba(26,18,9,0.4);
    border: 1px solid rgba(26,18,9,0.1);
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
  }

  .status-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: currentColor;
  }

  /* ENGAGEMENT SECTION */
  .engagement-section {
    padding: 8rem 5rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  .engagement-pillars {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .pillar-link {
    text-decoration: none;
    color: inherit;
    display: block;
  }

  .pillar-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(201,168,76,0.15);
    align-items: start;
    cursor: pointer;
    transition: padding-left 0.4s;
  }

  .pillar-item:first-child { border-top: 1px solid rgba(201,168,76,0.15); }

  .pillar-item:hover { padding-left: 0.5rem; }

  .pillar-icon {
    width: 48px; height: 48px;
    border: 1px solid rgba(201,168,76,0.4);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    background: rgba(201,168,76,0.05);
    transition: background 0.3s;
  }

  .pillar-icon svg {
    width: 24px; height: 24px;
    stroke: var(--earth-deep);
  }

  .pillar-item:hover .pillar-icon { background: rgba(201,168,76,0.15); }

  .pillar-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0.4rem;
    color: var(--ink);
  }

  .pillar-desc {
    font-size: 0.83rem;
    line-height: 1.8;
    color: var(--ink-soft);
  }

  .engagement-visual {
    position: relative;
  }

  .engagement-quote-block {
    background: var(--ink);
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
  }

  .engagement-quote-block::before {
    content: '"';
    font-family: 'Cormorant Garamond', serif;
    font-size: 12rem;
    color: rgba(201,168,76,0.1);
    position: absolute;
    top: -2rem; left: 1rem;
    line-height: 1;
    pointer-events: none;
  }

  .quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.6;
    color: var(--sand-light);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
  }

  .quote-author {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    position: relative;
    z-index: 1;
  }

  .engagement-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    margin-top: 1px;
    background: rgba(201,168,76,0.15);
  }

  .eng-stat {
    background: var(--sahara);
    padding: 1.8rem;
    text-align: center;
  }

  .eng-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: var(--earth-deep);
    margin-bottom: 0.3rem;
  }

  .eng-stat-label {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-soft);
  }

  /* BLOG PREVIEW */
  .blog-section {
    padding: 8rem 5rem;
    background: var(--white);
  }

  .blog-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 4rem;
  }

  .blog-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 1.5rem;
  }

  .blog-card {
    overflow: hidden;
    cursor: pointer;
    group: true;
  }

  .blog-img {
    aspect-ratio: 16/9;
    overflow: hidden;
    margin-bottom: 1.2rem;
  }

  .blog-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
    transition: transform 0.6s;
    position: relative;
  }

  .blog-card:hover .blog-img-placeholder { transform: scale(1.05); }

  .blog-tag {
    font-size: 0.63rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.6rem;
  }

  .blog-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--ink);
    margin-bottom: 0.6rem;
    transition: color 0.3s;
  }

  .blog-card:hover .blog-title { color: var(--earth); }

  .blog-excerpt {
    font-size: 0.82rem;
    line-height: 1.8;
    color: var(--ink-soft);
    margin-bottom: 1rem;
  }

  .blog-meta {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    color: rgba(26,18,9,0.35);
    text-transform: uppercase;
    display: flex; align-items: center; gap: 0.8rem;
  }

  .blog-card.featured .blog-title { font-size: 1.8rem; }

  /* GALLERY */
  .gallery-section {
    padding: 6rem 5rem;
    background: var(--ink);
    overflow: hidden;
  }

  .gallery-header {
    text-align: center;
    margin-bottom: 4rem;
  }

  .gallery-header .section-eyebrow { justify-content: center; }
  .gallery-header .section-eyebrow::before { display: none; }

  .gallery-header .section-title {
    color: var(--sand-light);
  }

  .gallery-masonry {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 120px;
    gap: 1rem;
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 2rem;
  }

  .gallery-item {
    overflow: hidden;
    cursor: pointer;
    position: relative;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    grid-row: span 2;
  }

  .gallery-item::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(26,18,9,0);
    transition: background 0.4s;
    display: flex; align-items: center; justify-content: center;
  }

  .gallery-item:hover::after { background: rgba(26,18,9,0.4); }

  .gallery-item:nth-child(1) { grid-column: span 7; grid-row: span 4; }
  .gallery-item:nth-child(2) { grid-column: span 5; grid-row: span 2; }
  .gallery-item:nth-child(3) { grid-column: span 5; grid-row: span 2; }
  .gallery-item:nth-child(4) { grid-column: span 6; grid-row: span 2; }
  .gallery-item:nth-child(5) { grid-column: span 6; grid-row: span 2; }

  .gallery-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem;
    transition: transform 0.6s;
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* GALLERY SLIDER */
  .gallery-slider .gallery-masonry {
    display: flex;
    gap: 1.2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 2rem 0.4rem;
    max-width: 1200px;
  }
  .gallery-slider .gallery-masonry::-webkit-scrollbar { display: none; }
  .gallery-slider .gallery-item {
    flex: 0 0 28%;
    min-width: 280px;
    aspect-ratio: 4/3;
    height: auto;
    grid-column: auto;
    grid-row: auto;
    scroll-snap-align: center;
  }
  .gallery-slider .gallery-item img { height: 100%; }

  .lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
  }
  .lightbox.open { display: flex; }
  .lightbox-img {
    max-width: 92vw;
    max-height: 82vh;
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  }
  .lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
  }
  .lightbox-prev { left: 24px; }
  .lightbox-next { right: 24px; }
  .lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
  }

  /* FOOTER */
  footer {
    background: var(--ink);
    color: var(--gold-light);
    border-top: 1px solid rgba(201,168,76,0.15);
    padding: 5rem 5% 2rem;
    font-size: 0.95rem;
  }

  .footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
  }

  .footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 1rem;
  }

  .footer-brand em { font-style: italic; color: var(--gold-light); }

  .footer-tagline {
    font-size: 0.82rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1.5rem;
    max-width: 300px;
  }

  .footer-social {
    display: flex; gap: 1rem; margin-top: 1.5rem;
  }

  .social-link {
    width: 40px; height: 40px;
    border: 1px solid rgba(201,168,76,0.3);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: all 0.3s;
    border-radius: 50%;
  }

  .social-link svg {
    width: 18px; height: 18px;
    fill: currentColor;
  }

  .social-link:hover {
    background: var(--gold);
    color: var(--ink);
    border-color: var(--gold);
  }

  .footer-col-title {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.2rem;
    font-weight: 500;
  }

  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }

  .footer-links a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-links a:hover { color: var(--gold); opacity: 1; }

  .footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(201,168,76,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
  }

  .footer-flag {
    display: flex; gap: 4px;
    align-items: center;
  }

  .flag-stripe {
    width: 18px; height: 10px;
    border-radius: 1px;
  }

  /* KEYFRAMES */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* DECORATIVE DIVIDER */
  .ornament {
    text-align: center;
    padding: 2rem;
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 0.5em;
    opacity: 0.4;
  }

  /* MOBILE */
  @media (max-width: 900px) {
    nav { 
      padding: 0.8rem 1rem; 
      position: relative;
      height: auto;
      min-height: auto;
    }
    
    .nav-logo {
      font-size: 0.85rem;
    }
    
    .account-btn {
      width: 32px;
      height: 32px;
    }
    
    .account-btn svg {
      width: 16px;
      height: 16px;
    }
    
    /* Mobile Menu Overlay */
    nav::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.5);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease-in-out;
      z-index: 50;
    }
    
    nav.menu-open::before {
      opacity: 1;
      pointer-events: auto;
    }
    
    /* Mobile Menu Logic */
    .menu-toggle { display: flex; }
    .nav-links {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      left: auto;
      background: #FFFFFF;
      width: 75%;
      max-width: 300px;
      flex-direction: column;
      padding: 6rem 2rem;
      gap: 2rem;
      box-shadow: -5px 0 20px rgba(0,0,0,0.1);
      transform: translateX(100%);
      transition: transform 0.3s ease-in-out;
      display: flex;
      z-index: 101;
      overflow-y: auto;
      height: 100vh;
    }
    .nav-links.active { transform: translateX(0); }
    .nav-cta { display: none; }

    /* Hero Mobile */
    .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 60px; }
    .hero-left { padding: 3rem 1.5rem; order: 2; }
    .hero-right { height: 50vh; min-height: 300px; order: 1; }
    .hero-title { font-size: 3rem; }
    .hero-regions { gap: 0.5rem; }
    .region-tag { font-size: 0.6rem; padding: 0.3rem 0.6rem; }

    /* Stats Mobile */
    .stats-band { grid-template-columns: 1fr 1fr; padding: 3rem 1.5rem; gap: 2rem 1rem; }
    .stat-item { border: none; padding: 0; }
    .stat-number { font-size: 2.5rem; }

    /* Tour & Map */
    .tour-section { grid-template-columns: 1fr; padding: 4rem 1.5rem; gap: 3rem; }
    .map-preview { aspect-ratio: 1/1; }

    /* Etapes Mobile */
    .etapes-section { padding: 4rem 1.5rem; }
    /* Transformation en Slider horizontal */
    .etapes-grid {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 1rem;
      padding-bottom: 1rem;
      scrollbar-width: none; /* Firefox */
    }
    .etapes-grid::-webkit-scrollbar { display: none; } /* Chrome/Safari */
    
    .etape-card { min-width: 85%; scroll-snap-align: center; }
    
    /* Engagements Mobile */
    .engagement-section { grid-template-columns: 1fr; padding: 4rem 1.5rem; gap: 3rem; }
    .engagement-quote-block::before { font-size: 8rem; top: -1rem; }
    .quote-text { font-size: 1.2rem; }
    .engagement-stats { grid-template-columns: 1fr 1fr; }

    /* Blog Mobile */
    .blog-section { padding: 4rem 1.5rem; }
    .blog-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .blog-grid {
      display: flex !important;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 1.2rem;
      padding-bottom: 0.8rem;
      scrollbar-width: none;
    }
    .blog-grid::-webkit-scrollbar { display: none; }
    .blog-card {
      min-width: 82% !important;
      scroll-snap-align: center;
      background: #fff;
      padding: 1.2rem;
      border-radius: 18px;
      box-shadow: 0 10px 24px rgba(0,0,0,0.08);
    }
    .blog-img { border-radius: 14px; overflow: hidden; }
    .blog-title { font-size: 1.5rem; }
    .blog-excerpt { font-size: 0.9rem; }

    /* Gallery Mobile */
    .gallery-section { padding: 4rem 1.5rem; }
    .gallery-masonry {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-auto-rows: 140px;
      gap: 0.9rem;
      padding: 0;
    }
    .gallery-item {
      width: 100% !important;
      height: auto !important;
      aspect-ratio: 4/3;
      grid-column: auto !important;
      grid-row: auto !important;
    }
    .gallery-item img { height: 100% !important; }
    .gallery-slider .gallery-masonry {
      display: flex !important;
      padding: 0;
      grid-template-columns: none;
    }
    .gallery-slider .gallery-item {
      min-width: 80% !important;
      aspect-ratio: 4/3;
    }

    /* Footer Tablet */
    footer { padding: 4rem 4% 2rem; }
    .footer-container { grid-template-columns: 1.5fr 1fr 1fr; gap: 2rem; }
    .footer-brand { font-size: 1.5rem; }
    .footer-tagline { max-width: 100%; margin-bottom: 1rem; }

    /* Footer Mobile */
    .footer-container { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .footer-social { justify-content: center; }
    .footer-links { align-items: center; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

    .scroll-indicator { display: none; }
  }

  @media (max-width: 768px) {
    /* Footer Mobile Petit */
    footer { padding: 3rem 3% 1.5rem; }
    .footer-container { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
    .footer-brand { font-size: 1.3rem; }
    .footer-social { justify-content: center; }
    .footer-links { align-items: center; justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  }

  @media (max-width: 520px) {
    .gallery-masonry { grid-template-columns: 1fr; grid-auto-rows: 180px; }
    .gallery-slider .gallery-item { min-width: 90% !important; }
  }

  @media (max-width: 1024px) {
    .blog-grid {
      display: flex !important;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 1.2rem;
      padding-bottom: 0.8rem;
      scrollbar-width: none;
    }
    .blog-grid::-webkit-scrollbar { display: none; }
    .blog-card {
      min-width: 82% !important;
      scroll-snap-align: center;
    }
  }

  /* TABLETTE UNIQUEMENT */
  @media (min-width: 768px) and (max-width: 1024px) {
    nav {
      padding: 1rem 1.6rem;
    }

    .hero {
      grid-template-columns: 1fr;
      min-height: auto;
      padding-top: 72px;
    }

    .hero-left {
      order: 2;
      padding: 3.2rem 2.2rem 3rem;
    }

    .hero-right {
      order: 1;
      min-height: 56vh;
      height: 56vh;
    }

    .hero-title {
      font-size: clamp(3.2rem, 6vw, 4.4rem);
    }

    .hero-desc {
      max-width: 100%;
    }

    .stats-band {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      padding: 3rem 2rem;
    }

    .stat-item {
      border: none;
    }

    .tour-section,
    .engagement-section {
      grid-template-columns: 1fr;
      gap: 2.4rem;
      padding: 5rem 2rem;
    }

    .etapes-section,
    .blog-section,
    .gallery-section {
      padding: 5rem 2rem;
    }

    .etapes-grid {
      display: grid !important;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.2rem;
      overflow: visible;
      scroll-snap-type: none;
      padding-bottom: 0;
    }

    .etape-card {
      min-width: 0;
    }

    .blog-grid {
      display: grid !important;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.3rem;
      overflow: visible;
      scroll-snap-type: none;
      padding-bottom: 0;
    }

    .blog-card {
      min-width: 0 !important;
      padding: 0;
      border-radius: 0;
      box-shadow: none;
    }

    .gallery-masonry {
      display: grid !important;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      grid-auto-rows: 180px;
      gap: 1rem;
      padding: 0;
    }

    .gallery-item,
    .gallery-slider .gallery-item {
      min-width: 0 !important;
      width: 100% !important;
      aspect-ratio: 4 / 3;
      grid-column: auto !important;
      grid-row: auto !important;
    }

    .footer-container {
      grid-template-columns: 1.2fr 1fr;
      gap: 2rem;
    }
  }


