    /* ===== RESET & VARIABLES ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    :root {
      --primary:       #7A1515;
      --primary-mid:   #9B2020;
      --gold:          #C4862B;
      --gold-light:    #D4A655;
      --gold-pale:     #EDD59A;
      --cream:         #FAF7F2;
      --cream-dark:    #F0E9DC;
      --dark:          #1C0E06;
      --dark-mid:      #3D2412;
      --text:          #2E1A0E;
      --text-muted:    #7A6050;
      --font-serif:    'Playfair Display', Georgia, serif;
      --font-sans:     'Lato', system-ui, sans-serif;
      --shadow:        0 4px 24px rgba(28,14,6,.12);
      --shadow-lg:     0 12px 48px rgba(28,14,6,.20);
      --radius:        16px;
    }

    body {
      font-family: var(--font-sans);
      color: var(--text);
      background: var(--cream);
      line-height: 1.7;
    }

    /* ===== TYPOGRAPHY ===== */
    h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.2; }
    h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); font-weight: 700; }
    h2 { font-size: clamp(1.8rem, 4vw, 3rem);   font-weight: 600; }
    h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); font-weight: 600; }
    p  { margin-bottom: 1rem; }

    .label {
      display: block;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: .6rem;
    }

    .ornament {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin: 1.5rem 0;
      color: var(--gold);
      font-size: .7rem;
      opacity: .5;
    }
    .ornament::before,
    .ornament::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--gold);
    }

    /* ===== LAYOUT ===== */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
    section    { padding: 6rem 0; }

    .section-header { text-align: center; margin-bottom: 4rem; }
    .section-header h2 { margin-bottom: 1rem; }
    .section-header .lead {
      font-family: var(--font-serif);
      font-style: italic;
      font-size: 1.05rem;
      color: var(--text-muted);
      max-width: 580px;
      margin: 0 auto;
    }

    /* ===== BUTTONS ===== */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      padding: .9rem 2rem;
      border-radius: 5px;
      font-family: var(--font-sans);
      font-size: .875rem;
      font-weight: 700;
      letter-spacing: .05em;
      text-decoration: none;
      cursor: pointer;
      border: none;
      transition: all .3s;
    }
    .btn-gold    { background: var(--gold);  color: var(--dark); }
    .btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(196,134,43,.4); }
    .btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.45); }
    .btn-outline:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }

    /* ===== ANIMATIONS ===== */
    .fade-in { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
    .fade-in.visible { opacity: 1; transform: none; }

    /* =============================================
       NAVIGATION
    ============================================= */
    #nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 999;
      padding: 1.1rem 0;
      transition: background .4s, padding .4s, box-shadow .4s;
    }
    #nav.scrolled {
      background: rgba(28,14,6,.96);
      backdrop-filter: blur(14px);
      padding: .75rem 0;
      box-shadow: 0 2px 24px rgba(0,0,0,.35);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav-logo {
      font-family: var(--font-serif);
      font-size: 1.35rem;
      font-weight: 700;
      color: #fff;
      text-decoration: none;
      line-height: 1.15;
      display: flex;
      align-items: center;
      gap: 0;
    }
    .nav-logo-img {
      height: 3.6rem;
      width: auto;
      display: block;
      flex-shrink: 0;
    }
    .nav-logo-right {
      display: flex;
      align-items: center;
    }
    .nav-logo-divider {
      display: block;
      width: 1.5px;
      align-self: stretch;
      background: rgba(255,255,255,0.7);
      margin: 0 .75rem;
      flex-shrink: 0;
    }
    .nav-logo-text {
      display: flex;
      flex-direction: column;
    }
    .nav-logo small {
      display: block;
      font-family: var(--font-sans);
      font-size: .72rem;
      font-weight: 300;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--gold-light);
    }
    .nav-links {
      display: flex;
      list-style: none;
      gap: .1rem;
    }
    .nav-links a {
      color: rgba(255,255,255,.8);
      text-decoration: none;
      font-size: .78rem;
      font-weight: 400;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: .5rem .8rem;
      border-radius: 4px;
      position: relative;
      transition: color .3s;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: .25rem;
      left: .8rem; right: .8rem;
      height: 1px;
      background: var(--gold);
      transform: scaleX(0);
      transition: transform .3s;
    }
    .nav-links a:hover,
    .nav-links a.active { color: var(--gold-light); }
    .nav-links a:hover::after,
    .nav-links a.active::after { transform: scaleX(1); }

    /* Mobile burger */
    .nav-burger {
      display: none;
      background: none;
      border: 1.5px solid rgba(255,255,255,.3);
      border-radius: 5px;
      padding: .4rem .55rem;
      cursor: pointer;
      flex-direction: column;
      gap: 5px;
    }
    .nav-burger span {
      display: block;
      width: 20px; height: 2px;
      background: #fff;
      transition: all .3s;
    }

    /* =============================================
       HERO
    ============================================= */
    #accueil {
      min-height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      padding: 0 0 10vh;
      overflow: hidden;
      background: var(--dark);
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(155deg,
          rgba(15,7,3,.45)    0%,
          rgba(28,12,4,.35)  40%,
          rgba(20,10,4,.25)  70%,
          rgba(10,5,2,.35)  100%
        ),
        url('../assets/accueil_background.webp');
      background-size: cover;
      background-position: center;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      padding: 9rem 0 5rem;
      max-width: 1050px;
    }
    #accueil > .container { margin-left: 0; padding-left: 10rem; }
    .hero-content .label { color: var(--gold-light); font-size: .85rem; }

    .hero-title { font-family: var(--font-serif); color: #fff; margin-bottom: 1.5rem; text-shadow: 0 2px 24px rgba(0,0,0,.35); font-weight: 600; }
    .hero-title em { color: var(--gold-light); font-style: italic; }

    .hero-sub {
      font-family: var(--font-serif);
      font-style: italic;
      font-size: clamp(1rem, 1.8vw, 1.2rem);
      color: rgba(255,255,255,.8);
      max-width: 560px;
      margin-bottom: .75rem;
    }
    .hero-title-mobile { display: none; }

    /* Carousel mobile : masqué par défaut, visible seulement sur mobile */
    .gallery-mobile-only { display: none; }

    /* =============================================
       CONCEPT
    ============================================= */
    #concept { background: var(--cream); }

    .concept-grid {
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 5rem;
      align-items: start;
    }
    /* Jour type card */
    .jour-card {
      background: var(--dark);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      position: sticky;
      top: 6rem;
    }
    .jour-card-head {
      background: linear-gradient(135deg, var(--primary), var(--dark-mid));
      padding: 1.5rem 2rem;
      border-bottom: 2px solid var(--gold);
    }
    .jour-card-head .label { color: var(--gold-light); margin-bottom: .2rem; }
    .jour-card-head h3 { color: #fff; font-size: 1.25rem; }
    .jour-card-body { padding: 1.75rem 2rem; }

    .jour-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: .8rem 0;
      border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .jour-item:last-child { border-bottom: none; }
    .jour-ico {
      width: 34px; height: 34px;
      background: rgba(196,134,43,.12);
      border: 1px solid rgba(196,134,43,.25);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: .9rem;
      flex-shrink: 0;
    }
    .jour-item p { color: rgba(255,255,255,.75); font-size: .88rem; line-height: 1.5; margin: 0; padding-top: .4rem; }

    /* Pillars */
    .pillars {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      margin-top: 5rem;
    }
    .pillar {
      background: #fff;
      border-radius: var(--radius);
      padding: 2rem 1.5rem;
      text-align: center;
      border-top: 3px solid var(--gold);
      box-shadow: var(--shadow);
      transition: transform .3s;
    }
    .pillar:hover { transform: translateY(-5px); }
    .pillar-ico { font-size: 2rem; margin-bottom: .75rem; }
    .pillar h4 { font-size: .95rem; color: var(--dark); margin-bottom: .5rem; }
    .pillar p  { font-size: .82rem; color: var(--text-muted); line-height: 1.55; margin: 0; }

    /* =============================================
       RAIDS — CARTE INTERACTIVE
    ============================================= */
    #raids { background: var(--dark); }
    #raids .section-header h2 { color: #fff; }
    #raids .label { color: var(--gold-light); }
    #raids .section-header .lead { color: rgba(255,255,255,.5); }

    /* Layout : carte + panneau */
    .raids-map-wrap {
      display: grid;
      grid-template-columns: 1fr 360px;
      gap: 3.5rem;
      align-items: center;
    }

    /* Conteneur SVG */
    .map-svg-container {
      width: 100%;
      max-width: 500px;
      margin: 0 auto;
      filter: drop-shadow(0 12px 40px rgba(0,0,0,.55));
    }
    .map-svg-container svg { width: 100%; height: auto; display: block; }

    /* Régions SVG */
    .map-region {
      cursor: pointer;
      transition: opacity .35s;
      outline: none;
    }
    .map-region:focus-visible {
      outline: 2px solid rgba(255,255,255,.6);
      outline-offset: 4px;
    }
    .map-region path {
      stroke: rgba(255,255,255,.18);
      stroke-width: 1.5;
      stroke-linejoin: round;
      transition: fill .35s, stroke .35s, stroke-width .35s;
    }

    /* Couleurs de base : rouge pétant */
    .mr-nord  path,
    .mr-ouest path,
    .mr-sud   path,
    .mr-est   path { fill: rgba(180,30,30,.75); }

    /* Couleur accent unique au hover : rouge à faible opacité */
    .map-region.hovered path { fill: rgba(180,30,30,.18); }

    /* Quand un survol est actif : les autres restent intactes */
    .raids-map-wrap.has-hover .map-region:not(.hovered) {
      opacity: 1;
    }

    /* Région survolée */
    .map-region.hovered path {
      stroke: rgba(255,255,255,.55);
      stroke-width: 2.5;
    }

    /* Contour extérieur décoratif */
    .map-boundary {
      fill: none;
      stroke: rgba(255,255,255,.12);
      stroke-width: 1.5;
      stroke-linejoin: round;
      pointer-events: none;
    }

    /* Étiquettes de région dans le SVG */
    .map-lbl {
      font-family: 'Lato', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      fill: rgba(255,255,255,.55);
      pointer-events: none;
      text-anchor: middle;
      dominant-baseline: middle;
      transition: opacity .35s;
    }
    .raids-map-wrap.has-hover .map-lbl { opacity: 0; }

    /* ---- PANNEAU D'INFORMATION ---- */
    .map-panel {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.09);
      border-radius: var(--radius);
      overflow: hidden;
      display: grid;
    }

    /* État par défaut (aucun survol) */
    .panel-default {
      grid-area: 1 / 1;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 1.5rem;
      padding: 2.5rem;
      text-align: center;
      transition: opacity .35s;
      pointer-events: none;
    }
    .raids-map-wrap.has-hover .panel-default { opacity: 0; }

    .panel-compass {
      width: 60px; height: 60px;
      border: 1px solid rgba(196,134,43,.22);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: rgba(196,134,43,.35);
      font-size: 1.5rem;
    }
    .panel-default p {
      color: rgba(255,255,255,.28);
      font-family: var(--font-serif);
      font-style: italic;
      font-size: .95rem;
      line-height: 1.75;
      margin: 0;
      max-width: 240px;
    }

    /* Panneaux régionaux (4, un par région) */
    .panel-hover {
      grid-area: 1 / 1;
      display: flex; flex-direction: column;
      opacity: 0;
      pointer-events: none;
      transition: opacity .35s;
    }
    .panel-hover.active {
      opacity: 1;
      pointer-events: auto;
    }

    /* Photo / illustration en haut du panneau */
    .panel-photo {
      height: 188px;
      flex-shrink: 0;
      position: relative;
      overflow: hidden;
    }
    .panel-photo-bg {
      position: absolute; inset: 0;
    }
    /* Photos par région */
    .ph-nord  .panel-photo-bg { background: url('../assets/routes/route-nord.webp')  center/cover no-repeat; }
    .ph-ouest .panel-photo-bg { background: url('../assets/routes/route-ouest.webp') center/cover no-repeat; }
    .ph-sud   .panel-photo-bg { background: url('../assets/routes/route-sud.webp')   center/cover no-repeat; }
    .ph-est   .panel-photo-bg { background: url('../assets/routes/route-est.webp')   center/cover no-repeat; }

    /* Voile sombre sur la photo pour améliorer le contraste du texte */
    .panel-photo-bg::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(160deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.55) 100%);
    }

    .panel-photo-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(transparent 35%, rgba(0,0,0,.68) 100%);
      display: flex; flex-direction: column;
      justify-content: flex-end;
      padding: .9rem 1.25rem;
    }

    .ph-dir {
      font-size: .58rem; font-weight: 700; letter-spacing: .2em;
      text-transform: uppercase; margin-bottom: .2rem; display: block;
    }
    .ph-nord  .ph-dir { color: #81c784; }
    .ph-ouest .ph-dir { color: #64b5f6; }
    .ph-sud   .ph-dir { color: #ff8a65; }
    .ph-est   .ph-dir { color: #ffd54f; }

    .ph-title {
      font-family: var(--font-serif);
      font-size: 1.2rem; font-weight: 600;
      color: #fff; line-height: 1.2;
    }

    /* Contenu info du panneau */
    .panel-info {
      padding: 1.15rem 1.4rem 1.4rem;
    }
    .panel-places {
      font-size: .7rem; color: rgba(255,255,255,.32);
      font-style: italic; margin-bottom: .55rem;
    }
    .panel-sig {
      font-family: var(--font-serif); font-style: italic;
      font-size: .88rem; color: rgba(255,255,255,.55);
      line-height: 1.55; margin-bottom: 1rem;
      padding-bottom: .9rem;
      border-bottom: 1px solid rgba(255,255,255,.07);
    }
    .panel-row { margin-bottom: .9rem; }
    .panel-row-label {
      font-size: .58rem; font-weight: 700; letter-spacing: .15em;
      text-transform: uppercase; color: var(--gold-light);
      margin-bottom: .35rem;
    }
    .panel-row-val {
      font-size: .82rem; color: rgba(255,255,255,.48); line-height: 1.55;
    }
    .panel-specs-list { list-style: none; margin-top: .3rem; }
    .panel-specs-list li {
      font-size: .8rem; color: rgba(255,255,255,.45);
      padding: .25rem 0 .25rem .9rem;
      position: relative; line-height: 1.35;
    }
    .panel-specs-list li::before {
      content: '◆';
      position: absolute; left: 0; top: .38rem;
      color: var(--gold); font-size: .28rem;
    }
    .panel-saison-badge {
      display: inline-block;
      font-size: .68rem; color: rgba(255,255,255,.32);
      background: rgba(255,255,255,.05);
      padding: .2rem .75rem; border-radius: 20px;
    }

    /* ---- FALLBACK MOBILE ---- */
    .raids-mobile-list { display: none; }

    @media (max-width: 960px) {
      .raids-map-wrap      { display: none; }
      .raids-mobile-list   { display: flex; flex-direction: column; gap: 1rem; }
    }
    .rml-item {
      display: flex; gap: 1rem; align-items: flex-start;
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 12px;
      padding: 1.25rem 1.4rem;
    }
    .rml-dot {
      width: 10px; height: 10px; border-radius: 50%;
      flex-shrink: 0; margin-top: .4rem;
    }
    .rml-item strong { color: #fff; font-size: .92rem; display: block; margin-bottom: .2rem; }
    .rml-item p { font-size: .8rem; color: rgba(255,255,255,.4); font-style: italic; margin: 0; }

    /* =============================================
       GALLERY STRIP
    ============================================= */
    .gallery-strip-wrap {
      margin-top: 5rem;
      overflow: hidden;
      position: relative;
    }
    .gallery-track {
      display: flex;
      gap: 1rem;
      width: max-content;
      animation: gallery-left 90s linear infinite;
      will-change: transform;
    }
    .gallery-track img {
      width: 400px;
      height: 270px;
      object-fit: cover;
      border-radius: 12px;
      display: block;
      flex-shrink: 0;
    }

    @keyframes gallery-left {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* =============================================
       TARIFS
    ============================================= */
    #tarifs { background: var(--cream-dark); }

    .tarifs-wrap { max-width: 1160px; margin: 0 auto; }

    .tarifs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      align-items: stretch;
      margin-bottom: 2rem;
    }

    .tarif-card {
      background: #fff;
      border-radius: 20px;
      padding: 2.5rem 2rem;
      box-shadow: var(--shadow-lg);
      position: relative;
      display: flex;
      flex-direction: column;
    }
    .tarif-card--featured {
      background: var(--dark);
      color: #fff;
      transform: translateY(-12px);
      box-shadow: 0 20px 60px rgba(28,14,6,.35);
    }
    .tarif-card--featured::before {
      content: '';
      position: absolute; inset: 0;
      border-radius: 20px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='70' height='70'%3E%3Cpolygon points='35,2 68,18 68,52 35,68 2,52 2,18' fill='none' stroke='rgba(196,134,43,0.06)' stroke-width='1'/%3E%3C/svg%3E");
      background-size: 70px 70px;
    }
    .tarif-card > * { position: relative; }

    .tarif-popular {
      display: inline-block;
      background: var(--gold);
      color: var(--dark);
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: .35rem 1rem;
      border-radius: 4px;
      margin-bottom: 1.25rem;
    }

    .tarif-card .label { margin-bottom: .3rem; font-size: 1rem; letter-spacing: .12em; }
    .tarif-card--featured .label { color: var(--gold-light); }
    .tarif-card--custom .label { color: var(--text-muted); }

    .tarif-name {
      font-family: var(--font-serif);
      font-size: 1.4rem;
      font-weight: 600;
      margin-bottom: .75rem;
      color: var(--dark);
    }
    .tarif-card--featured .tarif-name { color: #fff; }

    .tarif-amount {
      font-family: var(--font-serif);
      font-size: clamp(2.4rem, 5vw, 3.2rem);
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
      margin-bottom: .2rem;
    }
    .tarif-per {
      font-size: .85rem;
      color: var(--text-muted);
      margin-bottom: 1rem;
    }
    .tarif-card--featured .tarif-per { color: rgba(255,255,255,.5); }

    .tarif-badge {
      display: inline-block;
      background: var(--cream-dark);
      border: 1px solid rgba(196,134,43,.2);
      padding: .4rem 1rem;
      border-radius: 4px;
      font-size: .78rem;
      color: var(--text-muted);
      font-style: italic;
      margin-bottom: 1.75rem;
    }
    .tarif-card--featured .tarif-badge {
      background: rgba(196,134,43,.14);
      border-color: rgba(196,134,43,.3);
      color: var(--gold-pale);
    }

    .tarif-divider {
      height: 1px;
      background: var(--cream-dark);
      margin-bottom: 1.5rem;
    }
    .tarif-card--featured .tarif-divider { background: rgba(255,255,255,.1); }

    .tarif-section-title {
      font-family: var(--font-sans);
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      margin-bottom: .75rem;
      display: flex; align-items: center; gap: .5rem;
    }
    .tarif-section-title--yes { color: #2e7d32; }
    .tarif-section-title--no  { color: #c62828; }
    .tarif-card--featured .tarif-section-title--no { color: #ef9a9a; }

    .tarif-list { list-style: none; margin-bottom: 1.25rem; }
    .tarif-list li {
      font-size: .84rem;
      color: var(--text-muted);
      padding: .45rem 0;
      border-bottom: 1px solid var(--cream-dark);
      display: flex; align-items: flex-start; gap: .6rem; line-height: 1.4;
    }
    .tarif-list li:last-child { border-bottom: none; }
    .tarif-card--featured .tarif-list li {
      color: rgba(255,255,255,.7);
      border-bottom-color: rgba(255,255,255,.08);
    }
    .ic { flex-shrink: 0; margin-top: .05rem; font-style: normal; }
    .tarif-list--yes .ic { color: #4caf50; }
    .tarif-list--no  .ic { color: #ef5350; }

    .tarif-toggle {
      width: 100%;
      background: none;
      border: 1px solid rgba(196,134,43,.3);
      border-radius: 6px;
      padding: .6rem 1rem;
      font-family: var(--font-sans);
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--gold);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .5rem;
      margin-bottom: 1rem;
      transition: background .2s, color .2s;
    }
    .tarif-card--featured .tarif-toggle {
      border-color: rgba(196,134,43,.4);
      color: var(--gold-light);
    }
    .tarif-toggle:hover { background: rgba(196,134,43,.1); }
    .tarif-toggle .toggle-arrow { transition: transform .3s; display: inline-block; }
    .tarif-toggle.open .toggle-arrow { transform: rotate(180deg); }

    .tarif-details { display: none; }
    .tarif-details.open { display: block; }

    .tarif-custom-body {
      font-family: var(--font-serif);
      font-style: italic;
      font-size: .95rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }

    .tarif-cta {
      margin-top: auto;
      display: block;
      text-align: center;
      padding: .85rem 1.5rem;
      border-radius: 6px;
      font-size: .82rem;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      text-decoration: none;
      transition: all .3s;
    }
    .tarif-cta--outline {
      border: 1.5px solid rgba(196,134,43,.4);
      color: var(--gold);
    }
    .tarif-cta--outline:hover { background: var(--gold); color: var(--dark); }
    .tarif-cta--gold {
      background: var(--gold);
      color: var(--dark);
    }
    .tarif-cta--gold:hover { background: var(--gold-light); transform: translateY(-2px); }
    .tarif-cta--dark {
      border: 1.5px solid rgba(196,134,43,.3);
      color: var(--gold-light);
    }
    .tarif-cta--dark:hover { background: rgba(196,134,43,.15); }

    .partenaire-note {
      background: linear-gradient(135deg, var(--primary), var(--dark-mid));
      color: #fff;
      padding: 1.75rem 2rem;
      border-radius: var(--radius);
      text-align: center;
      margin-bottom: 1.5rem;
    }
    .partenaire-note p {
      font-family: var(--font-serif);
      font-style: italic;
      font-size: 1.05rem;
      color: rgba(255,255,255,.9);
      margin: 0;
    }
    .partenaire-note strong { color: var(--gold-light); }

    .budget-note {
      text-align: center;
      padding: 1.5rem;
      background: rgba(196,134,43,.08);
      border: 1px solid rgba(196,134,43,.2);
      border-radius: var(--radius);
    }
    .budget-note p { margin: 0; font-size: .92rem; color: var(--text-muted); }
    .budget-note strong { color: var(--dark); font-size: 1.05rem; }

    /* =============================================
       À PROPOS
    ============================================= */
    #apropos { background: var(--cream); }

    .apropos-grid {
      display: grid;
      grid-template-columns: 380px 1fr;
      gap: 5rem;
      align-items: start;
      margin-bottom: 5rem;
    }

    /* Photo placeholder */
    .photo-wrap {
      position: sticky;
      top: 6rem;
    }
    .apropos-text h2 { color: var(--dark); margin-bottom: 1.75rem; }
    .apropos-text p  { color: var(--text-muted); font-size: 1rem; line-height: 1.9; }
    .apropos-text blockquote {
      border-left: 3px solid var(--gold);
      padding: 1.25rem 1.75rem;
      margin: 2rem 0;
      font-family: var(--font-serif);
      font-style: italic;
      font-size: 1.1rem;
      color: var(--primary);
      background: rgba(122,21,21,.04);
      border-radius: 0 8px 8px 0;
    }

    /* Éco-responsabilité */
    .eco-section {
      background: var(--dark);
      border-radius: 20px;
      padding: 2.25rem 2.5rem;
      position: relative;
      overflow: hidden;
    }
    .eco-section::before {
      content: '';
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='70' height='70'%3E%3Cpolygon points='35,2 68,18 68,52 35,68 2,52 2,18' fill='none' stroke='rgba(76,175,80,0.05)' stroke-width='1'/%3E%3C/svg%3E");
      background-size: 70px 70px;
    }
    .eco-section > * { position: relative; }
    .eco-section .label { color: #66bb6a; }
    .eco-section h3 {
      font-family: var(--font-serif);
      font-size: clamp(1rem, 2vw, 1.3rem);
      color: #fff;
      margin-bottom: .75rem;
    }
    .eco-intro {
      font-size: .85rem;
      color: rgba(255,255,255,.6);
      line-height: 1.7;
      margin-bottom: 1rem;
    }
    .eco-list {
      list-style: none;
      padding: 0;
      margin: 0 0 1.25rem;
    }
    .eco-list li {
      display: flex;
      align-items: center;
      gap: .75rem;
      padding: .55rem 0;
      border-bottom: 1px solid rgba(255,255,255,.07);
      font-size: .84rem;
    }
    .eco-list li:last-child { border-bottom: none; }
    .eco-list-icon { font-size: 1rem; flex-shrink: 0; width: 1.4rem; text-align: center; }
    .eco-list-title { font-weight: 700; color: #fff; flex-shrink: 0; min-width: 9rem; }
    .eco-list-desc { color: rgba(255,255,255,.55); flex: 1; }
    .eco-badge {
      display: inline-block;
      padding: .2rem .55rem;
      border-radius: 4px;
      font-size: .6rem;
      font-weight: 700;
      letter-spacing: .07em;
      text-transform: uppercase;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .eco-badge--obligatoire { background: rgba(76,175,80,.18); color: #a5d6a7; border: 1px solid rgba(76,175,80,.3); }
    .eco-badge--engage      { background: rgba(196,134,43,.2);  color: var(--gold-light); border: 1px solid rgba(196,134,43,.3); }
    .eco-badge--propose     { background: rgba(100,181,246,.15); color: #90caf9; border: 1px solid rgba(100,181,246,.25); }
    .eco-gourde {
      background: rgba(196,134,43,.1);
      border: 1px solid rgba(196,134,43,.22);
      border-radius: var(--radius);
      padding: .85rem 1.25rem;
      display: flex;
      align-items: center;
      gap: .75rem;
      font-size: .83rem;
    }
    .eco-gourde-icon { font-size: 1.4rem; flex-shrink: 0; }
    .eco-gourde p { color: rgba(255,255,255,.65); line-height: 1.55; margin: 0; }
    .eco-gourde strong { color: var(--gold-light); }
    @media (max-width: 600px) {
      .eco-list li {
        flex-wrap: wrap;
        align-items: center;
        gap: .4rem .75rem;
      }
      .eco-list-title {
        flex: 1;
        min-width: 0;
      }
      .eco-list-desc {
        flex: 0 0 100%;
        order: 1;
        padding-left: 2.15rem;
        font-size: .78rem;
        margin-top: -.15rem;
      }
    }

    /* =============================================
       CONTACT
    ============================================= */
    #contact { background: var(--dark); }
    #contact .section-header h2 { color: #fff; }
    #contact .label { color: var(--gold-light); }
    #contact .section-header .lead { color: rgba(255,255,255,.5); }

    .contact-layout {
      display: grid;
      grid-template-columns: 1fr 370px;
      gap: 4rem;
    }

    .contact-form {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 20px;
      padding: 2.5rem;
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-group { margin-bottom: 1.25rem; }
    .form-group label {
      display: block;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255,255,255,.45);
      margin-bottom: .5rem;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 8px;
      padding: .875rem 1rem;
      color: #fff;
      font-family: var(--font-sans);
      font-size: .9rem;
      outline: none;
      transition: border-color .3s, background .3s;
      -webkit-appearance: none;
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: rgba(255,255,255,.22); }
    .form-group select option { background: var(--dark-mid); color: #fff; }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--gold);
      background: rgba(196,134,43,.06);
    }
    .form-group textarea { height: 130px; resize: vertical; }

    .btn-submit {
      width: 100%;
      padding: 1rem;
      background: var(--gold);
      color: var(--dark);
      border: none;
      border-radius: 8px;
      font-family: var(--font-sans);
      font-size: .875rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all .3s;
      margin-top: .25rem;
    }
    .btn-submit:hover:not(:disabled) { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(196,134,43,.35); }
    .btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
    .form-success {
      display: none;
      margin-top: 1rem;
      padding: 1rem 1.25rem;
      background: rgba(196,134,43,.12);
      border: 1px solid var(--gold);
      border-radius: 8px;
      color: var(--gold-light);
      font-size: .9rem;
      text-align: center;
    }
    .form-success.visible { display: block; }

    /* Aside */
    .contact-aside { display: flex; flex-direction: column; gap: 1.5rem; }

    .echange-card,
    .infos-card {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 20px;
      padding: 2rem;
    }
    .infos-card { background: rgba(196,134,43,.05); border-color: rgba(196,134,43,.15); }

    .echange-card h3 { color: #fff; font-size: 1.2rem; margin-bottom: .4rem; }
    .echange-card > p { color: rgba(255,255,255,.45); font-size: .83rem; margin-bottom: 1.5rem; }

    .clink {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem 1.25rem;
      border-radius: 10px;
      text-decoration: none;
      transition: all .3s;
      margin-bottom: .75rem;
    }
    .clink:last-child { margin-bottom: 0; }
    .clink--email {
      background: rgba(196,134,43,.1);
      border: 1px solid rgba(196,134,43,.22);
      color: var(--gold-light);
    }
    .clink--email:hover { background: rgba(196,134,43,.18); transform: translateX(4px); }
    .clink--wa {
      background: rgba(37,211,102,.08);
      border: 1px solid rgba(37,211,102,.22);
      color: #4cd964;
    }
    .clink--wa:hover { background: rgba(37,211,102,.14); transform: translateX(4px); }

    .clink-ico { font-size: 1.2rem; width: 36px; text-align: center; flex-shrink: 0; }
    .clink-lbl {
      font-size: .68rem; font-weight: 700; letter-spacing: .1em;
      text-transform: uppercase; opacity: .65; display: block;
    }
    .clink-val { font-size: .88rem; font-weight: 600; }

    .infos-card h4 {
      font-family: var(--font-sans);
      font-size: .7rem; font-weight: 700; letter-spacing: .18em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem;
    }
    .info-row { display: flex; gap: .75rem; margin-bottom: .9rem; }
    .info-row:last-child { margin-bottom: 0; }
    .info-dot { color: var(--gold); font-size: .42rem; margin-top: .55rem; flex-shrink: 0; }
    .info-row p { font-size: .82rem; color: rgba(255,255,255,.5); margin: 0; line-height: 1.5; }
    .info-row strong { color: rgba(255,255,255,.75); }

    /* =============================================
       FOOTER
    ============================================= */
    footer {
      background: #0d0704;
      padding: 3.5rem 0 2rem;
      border-top: 1px solid rgba(196,134,43,.12);
    }
    .footer-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.25rem;
      text-align: center;
    }
    .footer-logo { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: #fff; }
    .footer-logo span { color: var(--gold); }
    .footer-tag { font-family: var(--font-serif); font-style: italic; font-size: .88rem; color: rgba(255,255,255,.35); }
    .footer-links { display: flex; flex-wrap: wrap; gap: 1.75rem; list-style: none; justify-content: center; }
    .footer-links a { color: rgba(255,255,255,.35); text-decoration: none; font-size: .75rem; letter-spacing: .06em; transition: color .3s; }
    .footer-links a:hover { color: var(--gold-light); }
    .footer-copy { font-size: .72rem; color: rgba(255,255,255,.18); }

    /* =============================================
       RESPONSIVE
    ============================================= */
    @media (max-width: 1024px) {
      #accueil { padding: 0; }
      #accueil > .container { margin-left: auto; padding-left: 1.5rem; }
      .concept-grid   { grid-template-columns: 1fr; }
      .jour-card      { position: static; }
      .apropos-grid   { grid-template-columns: 1fr; }
      .photo-wrap     { position: static; }
      .photo-box      { max-width: 360px; margin: 0 auto; }
      .pillars        { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      section { padding: 4rem 0; }
      .nav-burger { display: flex; }
      .nav-links  {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: rgba(28,14,6,.98);
        backdrop-filter: blur(12px);
        padding: 1rem;
      }
      .nav-links.open { display: flex; }
      .nav-links a { padding: .75rem 1rem; font-size: .82rem; }
      #nav { background: rgba(28,14,6,.96); }

      .tarifs-grid    { grid-template-columns: 1fr; }
      .tarif-card--featured { transform: none; }
      .contact-layout { grid-template-columns: 1fr; }
      .form-row       { grid-template-columns: 1fr; }
      .hero-ctas      { flex-direction: column; max-width: 280px; }

      /* Hero mobile : image dédiée */
      .hero-bg {
        background-image:
          linear-gradient(155deg,
            rgba(15,7,3,.45)    0%,
            rgba(28,12,4,.35)  40%,
            rgba(20,10,4,.25)  70%,
            rgba(10,5,2,.35)  100%
          ),
          url('../assets/accueil_background.webp');
      }

      /* Hero mobile : titre plus petit, 1-2 lignes max */
      .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.6rem);
      }

      /* Hero mobile : masquer les éléments superflus */
      .hero-ctas,
      .hero-title-desktop { display: none; }

      .hero-title-mobile { display: block; }

      /* Carousel : afficher la version mobile, masquer l'original dans #raids */
      .gallery-mobile-only { display: block; }
      #raids .gallery-strip-wrap { display: none; }

      /* Pillars : layout horizontal compact */
      .pillars {
        grid-template-columns: 1fr;
        gap: .75rem;
        margin-top: 2.5rem;
      }
      .pillar {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: .85rem 1.1rem;
        text-align: left;
        border-top: none;
        border-left: 3px solid var(--gold);
      }
      .pillar-ico { display: none; }
      .pillar h4 { margin-bottom: .2rem; font-size: .875rem; }
      .pillar p  { font-size: .875rem; margin: 0; }

      /* Espacement harmonisé autour du carousel mobile */
      #concept { padding-bottom: 1.5rem; }
      .gallery-mobile-only { margin-bottom: 2rem; }
    }

    @media (max-width: 480px) {
      .pillars { grid-template-columns: 1fr; }
    }
