    /* ─── RESET & BASE ─────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:   #fef9f2;
      --dark:   #f7eedc;
      --mid:    #edddc0;
      --gold:   #dea46e;
      --gold2:  #f0bc88;
      --teal:   #1cb78d;
      --coral:  #ff7c60;
      --blue:   #65aebf;
      --pink:   #e9a5b9;
      --white:  #1a1208;
      --muted:  #7a6855;
      --radius: 20px;
      --font:   'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font);
      background: var(--navy);
      color: var(--white);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* ─── SCROLL ANIMATIONS ────────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(60px);
      transition: opacity 0.9s cubic-bezier(.2,.8,.3,1), transform 0.9s cubic-bezier(.2,.8,.3,1);
    }
    .reveal.visible { opacity: 1; transform: none; }
    .reveal-left  { opacity: 0; transform: translateX(-60px); transition: opacity 0.9s cubic-bezier(.2,.8,.3,1), transform 0.9s cubic-bezier(.2,.8,.3,1); }
    .reveal-right { opacity: 0; transform: translateX(60px);  transition: opacity 0.9s cubic-bezier(.2,.8,.3,1), transform 0.9s cubic-bezier(.2,.8,.3,1); }
    .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }
    .reveal-scale { opacity: 0; transform: scale(0.88); transition: opacity 0.9s cubic-bezier(.2,.8,.3,1), transform 0.9s cubic-bezier(.2,.8,.3,1); }
    .reveal-scale.visible { opacity: 1; transform: scale(1); }

    .delay-1 { transition-delay: 0.1s; }
    .delay-2 { transition-delay: 0.2s; }
    .delay-3 { transition-delay: 0.3s; }
    .delay-4 { transition-delay: 0.4s; }
    .delay-5 { transition-delay: 0.55s; }

    /* ─── NAV ──────────────────────────────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 5%;
      height: 58px;
      background: rgba(254, 249, 242, 0.88);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(222, 164, 110, 0.25);
      transition: background 0.4s;
    }
    .nav-logo {
      font-size: 14px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
    }
    .nav-links { display: flex; gap: 32px; list-style: none; }
    .nav-links a {
      font-size: 13px;
      color: var(--muted);
      text-decoration: none;
      letter-spacing: 0.05em;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--white); }
    .nav-cta {
      font-size: 13px;
      padding: 8px 20px;
      background: var(--gold);
      color: var(--navy);
      border-radius: 100px;
      text-decoration: none;
      font-weight: 600;
      letter-spacing: 0.04em;
      transition: background 0.2s, transform 0.2s;
    }
    .nav-cta:hover { background: var(--gold2); transform: scale(1.04); }
    .nav-site {
      font-size: 13px;
      color: var(--muted);
      text-decoration: none;
      letter-spacing: 0.04em;
      padding: 7px 16px;
      border: 1px solid rgba(0,0,0,0.12);
      border-radius: 100px;
      transition: color 0.2s, border-color 0.2s;
      white-space: nowrap;
    }
    .nav-site:hover { color: var(--white); border-color: rgba(0,0,0,0.3); }

    /* ─── HERO ─────────────────────────────────────────────────── */
    #hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      z-index: 0;
      overflow: hidden;
      padding: 100px 5% 80px;
      background: var(--navy);
    }
    .hero-glow {
      position: absolute;
      width: 900px; height: 900px;
      border-radius: 50%;
      background: radial-gradient(ellipse, rgba(222,164,110,0.18) 0%, transparent 70%);
      top: -200px; left: 50%;
      transform: translateX(-50%);
      pointer-events: none;
      z-index: -1;
    }
    .hero-glow-gold {
      position: absolute;
      width: 600px; height: 400px;
      border-radius: 50%;
      background: radial-gradient(ellipse, rgba(255,124,96,0.12) 0%, transparent 70%);
      bottom: 80px; left: 50%;
      transform: translateX(-50%);
      pointer-events: none;
      z-index: -1;
    }
    .hero-label {
      display: inline-block;
      font-size: 12px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      border: 1px solid rgba(222,164,110,0.4);
      padding: 6px 18px;
      border-radius: 100px;
      margin-bottom: 32px;
      opacity: 0;
      animation: fadeUp 1s 0.3s forwards;
      position: relative;
      z-index: 1;
    }
    .hero-title {
      position: relative; z-index: 1;
      font-size: clamp(42px, 8vw, 96px);
      font-weight: 700;
      line-height: 1.05;
      letter-spacing: -0.03em;
      margin-bottom: 12px;
      opacity: 0;
      animation: fadeUp 1s 0.5s forwards;
    }
    .hero-title span { color: var(--gold); }
    .hero-subtitle {
      position: relative; z-index: 1;
      font-size: clamp(16px, 2.5vw, 22px);
      color: var(--muted);
      font-weight: 400;
      letter-spacing: 0.01em;
      max-width: 560px;
      margin: 0 auto 48px;
      opacity: 0;
      animation: fadeUp 1s 0.7s forwards;
    }
    .hero-ctas {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp 1s 0.9s forwards;
      position: relative;
      z-index: 1;
    }
    .btn-primary {
      padding: 16px 36px;
      background: var(--gold);
      color: #1a1208;
      border-radius: 100px;
      font-size: 15px;
      font-weight: 700;
      text-decoration: none;
      letter-spacing: 0.04em;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 8px 32px rgba(222,164,110,0.25);
    }
    .btn-primary:hover { background: var(--coral); transform: translateY(-2px); box-shadow: 0 14px 40px rgba(255,124,96,0.35); }
    .btn-ghost {
      padding: 16px 36px;
      border: 1px solid rgba(0,0,0,0.18);
      color: var(--white);
      border-radius: 100px;
      font-size: 15px;
      font-weight: 500;
      text-decoration: none;
      letter-spacing: 0.04em;
      transition: border-color 0.2s, background 0.2s, transform 0.2s;
      backdrop-filter: blur(10px);
    }
    .btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
    .btn-outline-gold {
      display: inline-block;
      padding: 14px 40px;
      border: 1.5px solid rgba(222,164,110,0.5);
      color: var(--gold);
      background: transparent;
      border-radius: 100px;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.03em;
      cursor: pointer;
      font-family: var(--font);
      transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
    }
    .btn-outline-gold:hover { background: var(--gold); color: #1a1208; border-color: var(--gold); transform: translateY(-2px); }
    .hero-scroll {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      opacity: 0;
      animation: fadeUp 1s 1.3s forwards;
    }
    .hero-scroll span { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
    .scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, var(--gold), transparent);
      animation: scrollPulse 2s ease-in-out infinite;
    }

    /* ─── HERO VISUAL (background layer) ───────────────────────── */
    .hero-visual {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
      opacity: 0;
      animation: fadeUp 1.2s 1.1s forwards;
      z-index: 2;
    }
    #hero.has-visual .hero-visual { pointer-events: none; }
    .hero-pass-img {
      position: absolute;
      bottom: 0;
      left: 80%;
      transform: translateX(-50%);
      width: min(520px, 45vw);
      max-height: 42vh;
      object-fit: contain;
      object-position: bottom center;
      mask-image: linear-gradient(to top, rgba(0,0,0,0.85) 35%, transparent 100%);
      -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.85) 35%, transparent 100%);
      display: none;
    }
    .hero-pass-img.loaded { display: block; }
    .hero-visual-placeholder {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: min(600px, 80vw);
      height: 35vh;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1.5px dashed rgba(222,164,110,0.25);
      border-bottom: none;
      border-radius: 20px 20px 0 0;
      background: rgba(222,164,110,0.03);
      cursor: pointer;
      transition: border-color 0.3s, background 0.3s;
      pointer-events: all;
    }
    .hero-visual-placeholder:hover {
      border-color: rgba(222,164,110,0.55);
      background: rgba(222,164,110,0.07);
    }
    .hero-visual-placeholder span {
      font-size: 12px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(222,164,110,0.45);
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes scrollPulse {
      0%, 100% { opacity: 0.3; } 50% { opacity: 1; }
    }

    /* ─── SECTIONS COMMON ──────────────────────────────────────── */
    section { padding: 120px 5%; }
    .section-label {
      font-size: 11px;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      display: block;
    }
    .section-title {
      font-size: clamp(28px, 4.5vw, 56px);
      font-weight: 700;
      letter-spacing: -0.025em;
      line-height: 1.1;
      margin-bottom: 24px;
    }
    .section-body {
      font-size: clamp(16px, 1.8vw, 20px);
      color: var(--muted);
      line-height: 1.7;
      max-width: 680px;
    }
    .centered { text-align: center; }
    .centered .section-body { margin: 0 auto; }

    /* ─── NUMBERS / STATS ──────────────────────────────────────── */
    #stats {
      background: var(--dark);
      padding: 80px 5%;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2px;
      background: rgba(0,0,0,0.05);
      border-radius: var(--radius);
      overflow: hidden;
      max-width: 1000px;
      margin: 0 auto;
    }
    .stat-item {
      background: var(--dark);
      padding: 52px 36px;
      text-align: center;
      transition: background 0.3s;
    }
    .stat-item:hover { background: var(--mid); }
    .stat-number {
      font-size: clamp(48px, 6vw, 80px);
      font-weight: 800;
      letter-spacing: -0.04em;
      line-height: 1;
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .stat-item:nth-child(2) .stat-number { background: linear-gradient(135deg, var(--teal), #4dd9b0); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
    .stat-item:nth-child(3) .stat-number { background: linear-gradient(135deg, var(--coral), #ffaa96); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
    .stat-item:nth-child(4) .stat-number { background: linear-gradient(135deg, var(--blue), #9accd9); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
    .stat-label {
      font-size: 14px;
      color: var(--muted);
      margin-top: 10px;
      letter-spacing: 0.05em;
    }

    /* ─── INTRO ────────────────────────────────────────────────── */
    #intro {
      max-width: 1200px;
      margin: 0 auto;
    }
    #intro .split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    #intro .left .section-title { font-size: clamp(28px, 3.5vw, 48px); }
    #intro .right p {
      font-size: 17px;
      color: var(--muted);
      line-height: 1.75;
      margin-bottom: 20px;
    }
    #intro .right p:last-child { margin-bottom: 0; }

    /* ─── ITINERARY CAROUSEL ───────────────────────────────────── */
    #itinerary { background: var(--dark); }
    .iti-wrap { max-width: 1000px; margin: 0 auto; }
    .iti-carousel { position: relative; margin-top: 60px; }
    .iti-overflow { overflow: hidden; border-radius: 24px; }
    .iti-track {
      display: flex;
      transition: transform 0.55s cubic-bezier(.4,0,.2,1);
    }
    .iti-slide { min-width: 100%; }
    .iti-card {
      display: grid;
      grid-template-columns: 1fr 2fr;
      min-height: 500px;
      background: linear-gradient(135deg, var(--mid), #f0e0c0);
      border: 1px solid rgba(222,164,110,0.2);
      border-radius: 24px;
      overflow: hidden;
    }

    /* Left visual panel */
    .iti-visual {
      position: relative;
      overflow: hidden;
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      padding-bottom: 28px;
    }
    .iti-visual::after {
      content: '';
      position: absolute;
      inset: 0;
      opacity: 0.18;
    }
    .iti-visual-hint {
      position: relative;
      z-index: 1;
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(0,0,0,0.35);
      text-align: center;
      padding: 6px 14px;
      border: 1px dashed rgba(0,0,0,0.2);
      border-radius: 100px;
    }

    /* Right content */
    .iti-content {
      padding: 44px 48px 0;
      display: flex;
      flex-direction: column;
      position: relative;
    }
    .iti-pass-name {
      font-size: 13px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      font-weight: 700;
      margin-bottom: 4px;
    }
    .iti-pass-sub {
      font-size: 14px;
      color: var(--muted);
      margin-bottom: 28px;
    }
    .iti-lines { flex: 1; margin-bottom: 16px; }
    .iti-line {
      display: flex;
      align-items: baseline;
      padding: 7px 0;
      border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    .iti-ln { font-size: 14px; color: var(--white); }
    .iti-ld {
      flex: 1;
      border-bottom: 1px dotted rgba(0,0,0,0.18);
      margin: 0 10px 3px;
    }
    .iti-lp { font-size: 14px; color: var(--muted); white-space: nowrap; }

    .iti-total-block {
      border-top: 1.5px solid rgba(0,0,0,0.1);
      padding-top: 14px;
      margin-bottom: 24px;
    }
    .iti-total-row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      font-size: 14px;
      color: var(--muted);
      padding: 3px 0;
    }
    .iti-total-row.iti-individual span:last-child { text-decoration: line-through; }
    .iti-total-row.iti-pass {
      font-size: 15px;
      font-weight: 600;
      color: var(--white);
      margin-top: 6px;
    }
    .iti-big-price {
      font-size: 30px;
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1;
    }

    /* Bottom card illustration zone */
    .iti-card-zone {
      height: 190px;
      flex-shrink: 0;
      margin-top: auto;
    }
    .iti-card-zone img {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      max-height: 400px;
      width: auto;
      object-fit: contain;
      opacity: 0.95;
      display: block;
      z-index: 2;
      filter: drop-shadow(0 -6px 20px rgba(0,0,0,0.10));
    }
    .iti-card-placeholder {
      height: 60px;
      width: 200px;
      border: 1px dashed rgba(0,0,0,0.18);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      color: var(--muted);
      letter-spacing: 0.08em;
    }

    /* Carousel nav buttons */
    .iti-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--navy);
      border: 1px solid rgba(0,0,0,0.12);
      font-size: 16px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      transition: background 0.2s, border-color 0.2s, color 0.2s;
      z-index: 5;
      box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    }
    .iti-btn:hover { background: var(--gold); color: #1a1208; border-color: var(--gold); }
    .iti-prev { left: -22px; }
    .iti-next { right: -22px; }
    .iti-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 24px;
    }
    .iti-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(0,0,0,0.18);
      border: none;
      cursor: pointer;
      padding: 0;
      transition: background 0.2s, transform 0.2s;
    }
    .iti-dot.active { background: var(--gold); transform: scale(1.4); }

    /* Per-pass color variants */
    .iti-duo .iti-pass-name { color: var(--teal); }
    .iti-duo .iti-big-price { color: var(--teal); }
    .iti-duo .iti-visual { background-color: rgba(28,183,141,0.12); }
    .iti-duo .iti-visual::after { background: linear-gradient(160deg, var(--teal), transparent); }

    .iti-solo .iti-pass-name { color: var(--coral); }
    .iti-solo .iti-big-price { color: var(--coral); }
    .iti-solo .iti-visual { background-color: rgba(255,124,96,0.12); }
    .iti-solo .iti-visual::after { background: linear-gradient(160deg, var(--coral), transparent); }

    .iti-tribu .iti-pass-name { color: var(--blue); }
    .iti-tribu .iti-big-price { color: var(--blue); }
    .iti-tribu .iti-visual { background-color: rgba(101,174,191,0.12); }
    .iti-tribu .iti-visual::after { background: linear-gradient(160deg, var(--blue), transparent); }

    /* ─── ACTIVITIES ───────────────────────────────────────────── */
    #activities { max-width: 1360px; margin: 0 auto; }
    .activities-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr) 1.1fr;
      gap: 20px;
      margin-top: 60px;
      align-items: start;
    }
    .activity-card {
      background: var(--dark);
      border: 1px solid rgba(0,0,0,0.07);
      border-radius: 20px;
      padding: 32px 28px;
      transition: border-color 0.3s, transform 0.3s;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    /* Carte "Visites de Vannes" — featured */
    .activity-card.activity-agenda {
      background: rgba(255,124,96,0.07);
      border-color: rgba(255,124,96,0.18);
      box-shadow: 0 0 0 1px rgba(255,124,96,0.1), 0 8px 32px rgba(255,124,96,0.08);
    }
    .activity-card.activity-agenda:hover { border-color: rgba(255,124,96,0.45); box-shadow: 0 0 0 1px rgba(255,124,96,0.25), 0 16px 48px rgba(255,124,96,0.14); }
    .activity-card.activity-agenda .activity-category { color: var(--coral); }
    .activity-card.activity-agenda .activity-list li::before { color: var(--coral); }
    /* Tag "Activité incluse" */
    .activity-tag {
      display: inline-block;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      background: var(--coral);
      color: #fff;
      padding: 3px 10px;
      border-radius: 100px;
      margin-bottom: 14px;
      align-self: flex-start;
    }
    /* Bouton "Voir toutes les activités thématiques" */
    .activity-agenda-btn {
      display: block;
      margin-top: 24px;
      padding: 12px 18px;
      border-radius: 100px;
      text-align: center;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      background: var(--coral);
      color: #fff;
      border: none;
      cursor: pointer;
      font-family: var(--font);
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 4px 16px rgba(255,124,96,0.3);
    }
    .activity-agenda-btn:hover { background: #ff6040; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,124,96,0.4); }
    .activity-card::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 20px;
      opacity: 0;
      pointer-events: none;
      background: linear-gradient(135deg, rgba(222,164,110,0.07), transparent);
      transition: opacity 0.3s;
    }
    .activity-card:hover { border-color: rgba(222,164,110,0.35); transform: translateY(-4px); }
    .activity-card:hover::after { opacity: 1; }
    .activity-header {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 22px;
    }
    .activity-icon {
      font-size: 32px;
      flex-shrink: 0;
      filter: grayscale(0.2);
    }
    .activity-category {
      font-size: 17px;
      font-weight: 700;
      letter-spacing: -0.01em;
      color: var(--gold);
      line-height: 1.3;
    }
    .activity-card:nth-child(2) .activity-category { color: var(--teal); }
    .activity-card:nth-child(2) .activity-list li::before { color: var(--teal); }
    .activity-card:nth-child(2):hover { border-color: rgba(28,183,141,0.35); }
    .activity-card:nth-child(3) .activity-category { color: var(--coral); }
    .activity-card:nth-child(3) .activity-list li::before { color: var(--coral); }
    .activity-card:nth-child(3):hover { border-color: rgba(255,124,96,0.35); }
    .activity-card:nth-child(4) .activity-category { color: var(--blue); }
    .activity-card:nth-child(4) .activity-list li::before { color: var(--blue); }
    .activity-card:nth-child(4):hover { border-color: rgba(101,174,191,0.35); }
    .activity-title {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 18px;
      letter-spacing: -0.02em;
    }
    .activity-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .activity-list li {
      font-size: 14px;
      color: var(--muted);
      padding-left: 16px;
      position: relative;
    }
    .activity-list li::before {
      content: '—';
      position: absolute;
      left: 0;
      color: var(--gold);
      font-size: 12px;
    }

    /* ─── BENEFITS ─────────────────────────────────────────────── */
    #benefits {
      background: var(--dark);
    }
    .benefits-inner { max-width: 1100px; margin: 0 auto; }
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      margin-top: 60px;
      background: rgba(0,0,0,0.05);
      border-radius: var(--radius);
      overflow: hidden;
    }
    .benefit-item {
      background: var(--dark);
      padding: 48px 36px;
      text-align: center;
      transition: background 0.3s;
    }
    .benefit-item:hover { background: var(--mid); }
    .benefit-icon { font-size: 40px; display: block; margin-bottom: 20px; }
    .benefit-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
    .benefit-text { font-size: 14px; color: var(--muted); line-height: 1.6; }

    /* ─── PRICING ──────────────────────────────────────────────── */
    #pricing { max-width: 1200px; margin: 0 auto; }
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 60px;
      align-items: start;
    }
    .pricing-card {
      background: var(--dark);
      border: 1px solid rgba(0,0,0,0.08);
      border-radius: 24px;
      padding: 44px 32px;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    }
    .pricing-card:hover { transform: translateY(-6px); border-color: rgba(222,164,110,0.4); box-shadow: 0 24px 60px rgba(0,0,0,0.4); }
    .pricing-card.featured {
      box-shadow: 0 0 0 2px var(--teal), 0 0 40px rgba(28,183,141,0.12);
    }
    .featured-badge {
      display: block;
      text-align: center;
      font-size: 11px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      background: var(--gold);
      color: #fff;
      padding: 4px 12px;
      border-radius: 100px;
      font-weight: 700;
      margin-bottom: 20px;
    }
    .pricing-name {
      font-size: 13px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
    }
    .pricing-who {
      font-size: 15px;
      color: var(--muted);
      margin-bottom: 28px;
      line-height: 1.5;
    }
    .pricing-amount {
      font-size: 56px;
      font-weight: 800;
      letter-spacing: -0.04em;
      line-height: 1;
      margin-bottom: 4px;
    }
    .pricing-currency {
      font-size: 24px;
      font-weight: 400;
      vertical-align: bottom;
      margin-bottom: 8px;
      display: inline-block;
    }
    .pricing-card.featured .pricing-amount { color: var(--gold); }
    .pricing-divider {
      height: 1px;
      background: rgba(0,0,0,0.08);
      margin: 28px 0;
    }
    .pricing-feature {
      font-size: 14px;
      color: var(--muted);
      padding: 6px 0;
      border-bottom: 1px solid rgba(0,0,0,0.05);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .pricing-feature::before { content: '✓'; color: var(--gold); font-size: 12px; flex-shrink: 0; }

    /* ─── PRICING PER-CARD COLORS ──────────────────────────────── */
    /* Solo — coral */
    .pricing-card:nth-child(1) { background: rgba(255,124,96,0.07); border-color: rgba(255,124,96,0.18); }
    .pricing-card:nth-child(1) .pricing-name { color: var(--coral); }
    .pricing-card:nth-child(1) .pricing-amount { color: var(--coral); }
    .pricing-card:nth-child(1) .pricing-divider { background: rgba(255,124,96,0.22); }
    .pricing-card:nth-child(1) .pricing-feature::before { color: var(--coral); }
    .pricing-card:nth-child(1):hover { border-color: rgba(255,124,96,0.45); box-shadow: 0 20px 60px rgba(255,124,96,0.14); }
    .pricing-card:nth-child(1) .pricing-cta { background: var(--coral); box-shadow: 0 6px 20px rgba(255,124,96,0.3); }
    .pricing-card:nth-child(1) .pricing-cta:hover { background: #ff6040; box-shadow: 0 10px 28px rgba(255,124,96,0.4); }

    /* Duo — teal */
    .pricing-card:nth-child(2) { background: rgba(28,183,141,0.08); border-color: rgba(28,183,141,0.25); }
    .pricing-card:nth-child(2) .pricing-name { color: var(--teal); }
    .pricing-card:nth-child(2) .pricing-amount { color: var(--teal); }
    .pricing-card:nth-child(2) .pricing-divider { background: rgba(28,183,141,0.22); }
    .pricing-card:nth-child(2) .pricing-feature::before { color: var(--teal); }
    .pricing-card:nth-child(2):hover { border-color: rgba(28,183,141,0.5); box-shadow: 0 20px 60px rgba(28,183,141,0.14); }
    .pricing-card:nth-child(2) .pricing-cta { background: var(--teal); box-shadow: 0 6px 20px rgba(28,183,141,0.3); }
    .pricing-card:nth-child(2) .pricing-cta:hover { background: #17a07c; box-shadow: 0 10px 28px rgba(28,183,141,0.4); }

    /* Tribu — blue */
    .pricing-card:nth-child(3) { background: rgba(101,174,191,0.07); border-color: rgba(101,174,191,0.18); }
    .pricing-card:nth-child(3) .pricing-name { color: var(--blue); }
    .pricing-card:nth-child(3) .pricing-amount { color: var(--blue); }
    .pricing-card:nth-child(3) .pricing-divider { background: rgba(101,174,191,0.22); }
    .pricing-card:nth-child(3) .pricing-feature::before { color: var(--blue); }
    .pricing-card:nth-child(3):hover { border-color: rgba(101,174,191,0.45); box-shadow: 0 20px 60px rgba(101,174,191,0.14); }
    .pricing-card:nth-child(3) .pricing-cta { background: var(--blue); box-shadow: 0 6px 20px rgba(101,174,191,0.3); }
    .pricing-card:nth-child(3) .pricing-cta:hover { background: #4e9cb0; box-shadow: 0 10px 28px rgba(101,174,191,0.4); }

    /* Enfant — pink */
    .pricing-card:nth-child(4) { background: rgba(233,165,185,0.07); border-color: rgba(233,165,185,0.18); }
    .pricing-card:nth-child(4) .pricing-name { color: var(--pink); }
    .pricing-card:nth-child(4) .pricing-amount { color: var(--pink); }
    .pricing-card:nth-child(4) .pricing-divider { background: rgba(233,165,185,0.22); }
    .pricing-card:nth-child(4) .pricing-feature::before { color: var(--pink); }
    .pricing-card:nth-child(4):hover { border-color: rgba(233,165,185,0.45); box-shadow: 0 20px 60px rgba(233,165,185,0.14); }
    .pricing-card:nth-child(4) .pricing-cta { background: var(--pink); box-shadow: 0 6px 20px rgba(233,165,185,0.3); }
    .pricing-card:nth-child(4) .pricing-cta:hover { background: #d988a8; box-shadow: 0 10px 28px rgba(233,165,185,0.4); }

    /* CTA bouton individuel */
    .pricing-cta {
      display: block;
      margin-top: 28px;
      padding: 13px 20px;
      border-radius: 100px;
      text-align: center;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      text-decoration: none;
      color: #fff;
      transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    }
    .pricing-cta:hover { transform: translateY(-2px); }

    /* ─── HOW IT WORKS ─────────────────────────────────────────── */
    #how {
      background: var(--dark);
    }
    .how-inner { max-width: 1100px; margin: 0 auto; }
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
      margin-top: 60px;
      position: relative;
    }
    .steps-grid::before {
      content: '';
      position: absolute;
      top: 28px; left: 40px; right: 40px;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--gold), var(--gold), transparent);
      opacity: 0.25;
    }
    .step {
      text-align: center;
      position: relative;
    }
    .step-number {
      width: 56px; height: 56px;
      border-radius: 50%;
      background: var(--mid);
      border: 1px solid rgba(222,164,110,0.35);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      font-weight: 800;
      color: var(--gold);
      margin: 0 auto 24px;
      position: relative;
      z-index: 1;
      transition: background 0.3s, border-color 0.3s;
    }
    .step:hover .step-number { background: rgba(222,164,110,0.15); border-color: var(--gold); }
    .step:nth-child(2) .step-number { color: var(--teal); border-color: rgba(28,183,141,0.35); }
    .step:nth-child(2):hover .step-number { background: rgba(28,183,141,0.12); border-color: var(--teal); }
    .step:nth-child(3) .step-number { color: var(--coral); border-color: rgba(255,124,96,0.35); }
    .step:nth-child(3):hover .step-number { background: rgba(255,124,96,0.12); border-color: var(--coral); }
    .step:nth-child(4) .step-number { color: var(--blue); border-color: rgba(101,174,191,0.35); }
    .step:nth-child(4):hover .step-number { background: rgba(101,174,191,0.12); border-color: var(--blue); }
    .step-title { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
    .step-text { font-size: 14px; color: var(--muted); line-height: 1.6; }

    /* ─── WEEKEND PACKAGE ──────────────────────────────────────── */
    #weekend {
      max-width: 1200px;
      margin: 0 auto;
    }
    .weekend-card {
      background: linear-gradient(135deg, var(--mid) 0%, #fef4e2 50%, var(--mid) 100%);
      border: 1px solid rgba(222,164,110,0.2);
      border-radius: 32px;
      padding: 80px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .weekend-card::before {
      content: '';
      position: absolute;
      top: -100px; right: -100px;
      width: 500px; height: 500px;
      border-radius: 50%;
      background: radial-gradient(ellipse, rgba(28,183,141,0.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .weekend-price {
      font-size: clamp(52px, 6vw, 80px);
      font-weight: 800;
      letter-spacing: -0.04em;
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
      margin-bottom: 8px;
    }
    .weekend-sub {
      font-size: 15px;
      color: var(--muted);
      margin-bottom: 36px;
    }
    .weekend-desc {
      font-size: 16px;
      color: var(--muted);
      line-height: 1.75;
      margin-bottom: 36px;
    }
    .weekend-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

    /* ─── FAQ ──────────────────────────────────────────────────── */
    #faq {
      background: var(--dark);
    }
    .faq-inner { max-width: 800px; margin: 0 auto; }
    .faq-list { margin-top: 60px; display: flex; flex-direction: column; gap: 2px; }
    .faq-item {
      background: rgba(0,0,0,0.03);
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid rgba(0,0,0,0.07);
      transition: border-color 0.3s;
    }
    .faq-item:hover { border-color: rgba(222,164,110,0.2); }
    .faq-q {
      width: 100%;
      background: none;
      border: none;
      color: var(--white);
      font-family: var(--font);
      font-size: 16px;
      font-weight: 500;
      text-align: left;
      padding: 24px 28px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      letter-spacing: -0.01em;
      transition: color 0.2s;
    }
    .faq-q:hover { color: var(--gold); }
    .faq-chevron {
      width: 20px; height: 20px;
      flex-shrink: 0;
      border: 1px solid rgba(222,164,110,0.4);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.4s, background 0.3s;
    }
    .faq-chevron svg { width: 10px; transition: transform 0.4s; }
    .faq-item.open .faq-chevron svg { transform: rotate(180deg); stroke: #fff; }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
      padding: 0 28px;
    }
    .faq-item.open .faq-a { max-height: 400px; padding-bottom: 24px; }
    .faq-a p { font-size: 15px; color: var(--muted); line-height: 1.7; }

    /* ─── FOOTER ───────────────────────────────────────────────── */
    footer {
      border-top: 1px solid rgba(0,0,0,0.07);
      padding: 60px 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 24px;
    }
    .footer-logo {
      font-size: 13px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
    }
    .footer-links { display: flex; gap: 28px; }
    .footer-links a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
    .footer-links a:hover { color: var(--white); }
    .footer-copy { font-size: 12px; color: rgba(138,154,181,0.5); }

    /* ─── RESPONSIVE ───────────────────────────────────────────── */
    @media (max-width: 900px) {
      #intro .split { grid-template-columns: 1fr; gap: 40px; }
      .steps-grid { grid-template-columns: repeat(2, 1fr); }
      .steps-grid::before { display: none; }
      .weekend-card { grid-template-columns: 1fr; padding: 48px 36px; }
      .benefits-grid { grid-template-columns: 1fr; }
      .nav-links { display: none; }
      .activities-grid { grid-template-columns: repeat(2, 1fr); }
      .activity-card.activity-agenda { grid-column: 1 / -1; }
      .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
      section { padding: 80px 5%; }
      .iti-card { grid-template-columns: 1fr; }
      .iti-visual { min-height: 160px; }
      .iti-content { padding: 32px 28px 0; }
      .iti-prev { left: -16px; }
      .iti-next { right: -16px; }
      .pricing-grid { grid-template-columns: 1fr; }
      .steps-grid { grid-template-columns: 1fr; }
      .activities-grid { grid-template-columns: 1fr; }
      footer { flex-direction: column; align-items: flex-start; }
    }
    /* ─── MODAL AGENDA ──────────────────────────────────────────── */
    #agendaModal {
      position: fixed;
      inset: 0;
      z-index: 300;
      display: flex;
      flex-direction: column;
      background: var(--navy);
      opacity: 0;
      pointer-events: none;
      transform: translateY(30px);
      transition: opacity 0.35s ease, transform 0.35s ease;
    }
    #agendaModal.active { opacity: 1; pointer-events: all; transform: translateY(0); }

    /* ─── MODAL OFFRES ──────────────────────────────────────────── */
    #offresModal {
      position: fixed;
      inset: 0;
      z-index: 300;
      display: flex;
      flex-direction: column;
      background: var(--navy);
      opacity: 0;
      pointer-events: none;
      transform: translateY(30px);
      transition: opacity 0.35s ease, transform 0.35s ease;
    }
    #offresModal.active { opacity: 1; pointer-events: all; transform: translateY(0); }

    .om-header {
      position: sticky;
      top: 0;
      z-index: 10;
      background: rgba(254,249,242,0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(0,0,0,0.08);
      padding: 18px 32px;
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }
    .om-title {
      font-size: 18px;
      font-weight: 700;
      color: var(--white);
      letter-spacing: -0.02em;
      margin-right: auto;
    }
    .om-count { font-size: 13px; color: var(--muted); white-space: nowrap; }
    .om-close {
      width: 36px; height: 36px;
      border-radius: 50%;
      border: 1px solid rgba(0,0,0,0.12);
      background: transparent;
      font-size: 18px;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      color: var(--muted);
      transition: background 0.2s, color 0.2s;
      flex-shrink: 0;
    }
    .om-close:hover { background: var(--coral); color: #fff; border-color: var(--coral); }

    .om-filters {
      position: sticky;
      top: 77px;
      z-index: 9;
      background: rgba(254,249,242,0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(0,0,0,0.06);
      padding: 14px 32px;
    }
    .om-filter-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
    .om-search {
      flex: 1; min-width: 180px;
      border: 1px solid rgba(0,0,0,0.12);
      border-radius: 12px;
      padding: 8px 16px;
      font-size: 14px;
      background: white;
      color: var(--white);
      font-family: var(--font);
      outline: none;
      transition: border-color 0.2s;
    }
    .om-search:focus { border-color: var(--gold); }
    .om-select {
      border: 1px solid rgba(0,0,0,0.12);
      border-radius: 12px;
      padding: 8px 12px;
      font-size: 13px;
      background: white;
      color: var(--white);
      font-family: var(--font);
      outline: none;
      cursor: pointer;
      min-width: 170px;
      transition: border-color 0.2s;
    }
    .om-select:focus { border-color: var(--gold); }
    .om-access { display: flex; gap: 16px; align-items: center; }
    .om-access label { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); cursor: pointer; white-space: nowrap; }
    .om-access input[type="checkbox"] { accent-color: var(--gold); width: 15px; height: 15px; }

    /* Sub-filter buttons — prominents et centrés */
    .om-subfilters-row {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      padding: 12px 32px;
      border-top: 1px solid rgba(0,0,0,0.06);
      margin-top: 12px;
      flex-wrap: wrap;
    }
    .om-subfil-btn {
      padding: 9px 22px;
      border-radius: 100px;
      border: 1.5px solid rgba(0,0,0,0.14);
      background: white;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      font-family: var(--font);
      color: var(--muted);
      transition: all 0.2s;
      box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    }
    .om-subfil-btn:hover { border-color: var(--gold); color: var(--gold); }
    .om-subfil-btn.sub-reduction.active { background: var(--coral); border-color: var(--coral); color: #fff; box-shadow: 0 4px 14px rgba(255,124,96,0.3); }
    .om-subfil-btn.sub-gratuite.active  { background: var(--teal);  border-color: var(--teal);  color: #fff; box-shadow: 0 4px 14px rgba(28,183,141,0.3); }
    .om-subfil-btn.sub-annee.active     { background: var(--blue);  border-color: var(--blue);  color: #fff; box-shadow: 0 4px 14px rgba(101,174,191,0.3); }

    /* Encadré City Pass dans la carte */
    .offre-citypass-detail {
      background: rgba(222,164,110,0.08);
      border-left: 2.5px solid var(--gold);
      border-radius: 0 8px 8px 0;
      padding: 8px 10px;
      font-size: 11px;
      line-height: 1.6;
      color: var(--muted);
      white-space: pre-line;
      margin-top: 6px;
    }

    .om-body {
      flex: 1;
      overflow-y: auto;
      padding: 28px 32px 48px;
    }
    .om-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 16px;
    }
    .om-empty {
      grid-column: 1/-1;
      text-align: center;
      padding: 80px 20px;
      color: var(--muted);
      font-size: 15px;
    }
    .om-loading {
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      padding: 80px;
      color: var(--muted);
      font-size: 14px;
    }
    .om-spinner {
      width: 36px; height: 36px;
      border: 3px solid rgba(222,164,110,0.2);
      border-top-color: var(--gold);
      border-radius: 50%;
      animation: spin 0.8s linear infinite;
    }
    @keyframes spin { to { transform: rotate(360deg); } }

    /* Offer cards */
    .offre-card {
      background: var(--dark);
      border: 1px solid rgba(0,0,0,0.07);
      border-radius: 16px;
      overflow: hidden;
      transition: transform 0.2s, box-shadow 0.2s;
      display: flex;
      flex-direction: column;
    }
    .offre-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
    .offre-img {
      height: 130px;
      background-size: cover;
      background-position: center;
      background-color: var(--mid);
      flex-shrink: 0;
    }
    .offre-img-placeholder { display: flex; align-items: center; justify-content: center; font-size: 32px; }
    .offre-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
    .offre-badges { display: flex; gap: 5px; flex-wrap: wrap; }
    .offre-badge {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 2px 8px;
      border-radius: 100px;
    }
    .badge-type     { background: rgba(222,164,110,0.15); color: var(--gold); }
    .badge-gratuit  { background: rgba(28,183,141,0.15);  color: var(--teal); }
    .badge-reduction{ background: rgba(255,124,96,0.15);  color: var(--coral); }
    .badge-annee    { background: rgba(101,174,191,0.15); color: var(--blue); }
    .offre-nom  { font-size: 14px; font-weight: 600; color: var(--white); line-height: 1.3; }
    .offre-ville{ font-size: 12px; color: var(--muted); }
    .offre-desc { font-size: 12px; color: var(--muted); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin-top: 2px; flex: 1; }
    .offre-access { font-size: 13px; margin-top: 4px; }
    .offre-link { font-size: 12px; color: var(--gold); text-decoration: none; margin-top: 6px; }
    .offre-link:hover { text-decoration: underline; }

    @media (max-width: 768px) {
      .om-header  { padding: 14px 16px; }
      .om-filters { padding: 10px 16px; top: 67px; }
      .om-body    { padding: 16px 16px 40px; }
      .om-grid    { grid-template-columns: 1fr 1fr; gap: 10px; }
    }
    @media (max-width: 480px) {
      .om-grid { grid-template-columns: 1fr; }
    }