    /* ── WhatsApp désactivé temporairement ── */
    .btn-whatsapp, .whatsapp-btn, .msb-whatsapp { display: none !important; }
    /* ── Téléphone désactivé (pas encore de numéro) ── */
    .btn-tel, .msb-tel { display: none !important; }

    :root {
      --pine:   #1c3525;
      --forest: #28503a;
      --sage:   #7aaa88;
      --cream:  #faf8f5;
      --stone:  #f0ebe2;
      --warm:   #e4ddd2;
      --amber:  #c8913c;
      --gold:   #d4a853;
      --brown:  #7a5530;
      --text:   #1a1610;
      --muted:  #6b6258;
      --shadow: rgba(0,0,0,.12);
      --apt1:   #1a6fba;   /* Bleu */
      --apt2:   #0e9e82;   /* Teal */
      --both:   #d94f00;   /* Orange-rouge */
      --nav-h:  68px;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--cream); }

    /* ─── NAV ─── */
    nav {
      position: fixed; top: 0; width: 100%; z-index: 1000;
      background: rgba(15,28,20,.96); backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(255,255,255,.06);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 2.5rem; height: var(--nav-h);
      transition: background .3s;
    }
    nav.scrolled { background: rgba(10,20,14,.98); }
    .nav-logo {
      display: flex; align-items: center; gap: .6rem; text-decoration: none;
    }
    .nav-logo img {
      height: 58px; width: auto; object-fit: contain;
    }
    .nav-logo-text {
      display: flex; flex-direction: column; line-height: 1.1;
    }
    .nav-logo-name {
      font-family: 'DM Serif Display', serif; font-size: 1.15rem;
      color: white; font-weight: 400;
    }
    .nav-logo-name span { color: var(--gold); }
    .nav-logo-sub {
      font-size: .62rem; color: rgba(255,255,255,.45);
      letter-spacing: .1em; text-transform: uppercase;
    }
    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a {
      text-decoration: none; color: rgba(255,255,255,.72); font-size: .82rem;
      font-weight: 500; transition: color .2s; letter-spacing: .04em; text-transform: uppercase;
    }
    .nav-links a:hover { color: white; }
    .nav-cta {
      background: var(--amber); color: white; border: none; padding: .6rem 1.4rem;
      border-radius: 4px; font-size: .82rem; font-weight: 600; cursor: pointer;
      text-decoration: none; transition: all .2s; letter-spacing: .05em; text-transform: uppercase;
    }
    .nav-cta:hover { background: var(--gold); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,145,60,.4); }
    /* ─── LANG SWITCHER (footer) ─── */
    .lang-switcher { display: flex; gap: .3rem; align-items: center; }
    .lang-btn { background: none; border: 1px solid rgba(255,255,255,.15); border-radius: 4px;
      padding: .2rem .45rem; cursor: pointer; font-size: .82rem; line-height: 1;
      transition: border-color .2s, background .2s; color: rgba(255,255,255,.45); }
    .lang-btn:hover { border-color: rgba(255,255,255,.4); color: rgba(255,255,255,.8); }
    .lang-btn.active { border-color: var(--gold); color: white; }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
    .hamburger span { display: block; width: 22px; height: 2px; background: white; border-radius: 2px; }

    /* ─── HERO ─── */
    .hero {
      min-height: 100vh;
      padding-top: calc(var(--nav-h) + 36px);
      background: linear-gradient(165deg, #060f0a 0%, #0c1f12 40%, #142a1c 70%, #1c3525 100%);
      position: relative; display: flex; align-items: flex-end; overflow: hidden;
    }
    .hero::before {
      content: ''; position: absolute; inset: 0;
      background: url('photo/Commun/Ext_chalets%20(6).avif') center 40%/cover no-repeat; background-image: -webkit-image-set(url('photo/Commun/Ext_chalets%20(6).avif') type('image/avif'), url('photo/Commun/Ext_chalets%20(6).webp') type('image/webp'));
      opacity: .72; mix-blend-mode: normal;
    }
    .hero::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(6,15,10,.95) 0%, rgba(6,15,10,.4) 50%, transparent 100%);
    }
    .hero-content {
      position: relative; z-index: 2;
      width: 100%; max-width: 1200px; margin: 0 auto;
      padding: 0 3rem 5rem;
      color: white;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: .5rem;
      border: 1px solid rgba(212,168,83,.5); color: var(--gold);
      padding: .35rem 1rem; border-radius: 3px; font-size: .73rem; font-weight: 600;
      letter-spacing: .15em; text-transform: uppercase; margin-bottom: 2rem;
      background: rgba(212,168,83,.08);
    }
    .hero h1 {
      font-family: 'DM Serif Display', 'Playfair Display', serif;
      font-size: clamp(2.8rem, 7vw, 6rem); font-weight: 400; line-height: 1.05;
      margin-bottom: 1.5rem; max-width: 800px;
    }
    .hero h1 em { font-style: italic; color: var(--gold); }
    .hero-desc {
      font-size: 1.05rem; line-height: 1.8; opacity: .78; margin-bottom: 2.5rem;
      max-width: 520px; font-weight: 300;
    }

    /* Apt pills */
    .hero-apt-selector {
      display: flex; gap: .8rem; margin-bottom: 2.5rem; flex-wrap: wrap;
    }
    .apt-pill {
      padding: .6rem 1.4rem; border-radius: 3px; font-size: .82rem; font-weight: 600;
      cursor: pointer; transition: all .2s; text-decoration: none;
      border: 1.5px solid rgba(255,255,255,.25); color: rgba(255,255,255,.88);
      background: rgba(255,255,255,.06); letter-spacing: .04em;
      backdrop-filter: blur(4px);
    }
    .apt-pill:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.5); }
    .apt-pill.apt1:hover { background: var(--apt1); border-color: var(--apt1); }
    .apt-pill.apt2:hover { background: var(--apt2); border-color: var(--apt2); }
    .apt-pill.both:hover { background: var(--amber); border-color: var(--amber); }

    /* Stat bar */
    .hero-stats {
      display: flex; gap: 0; margin-bottom: 3rem;
      border: 1px solid rgba(255,255,255,.1); border-radius: 4px;
      width: fit-content; overflow: hidden; background: rgba(0,0,0,.2);
      backdrop-filter: blur(8px);
    }
    .stat {
      text-align: center; padding: .9rem 1.8rem;
      border-right: 1px solid rgba(255,255,255,.08);
    }
    .stat:last-child { border-right: none; }
    .stat-num { font-family: 'DM Serif Display', serif; font-size: 1.6rem; font-weight: 400; color: var(--gold); line-height: 1; }
    .stat-label { font-size: .66rem; opacity: .6; letter-spacing: .08em; text-transform: uppercase; margin-top: .2rem; }

    .hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
    .btn-primary {
      background: var(--amber); color: white; padding: 1rem 2.2rem;
      border-radius: 4px; font-size: .9rem; font-weight: 600; text-decoration: none;
      transition: all .2s; display: inline-block; border: none; cursor: pointer;
      letter-spacing: .05em; text-transform: uppercase;
    }
    .btn-primary:hover { background: var(--gold); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(200,145,60,.45); }
    .btn-outline {
      border: 1.5px solid rgba(255,255,255,.4); color: white; padding: 1rem 2.2rem;
      border-radius: 4px; font-size: .9rem; font-weight: 600; text-decoration: none;
      background: transparent; transition: all .2s; display: inline-block;
      letter-spacing: .05em; text-transform: uppercase;
    }
    .btn-outline:hover { background: rgba(255,255,255,.1); border-color: white; }

    .scroll-hint {
      position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
      z-index: 2; animation: bounce 2.5s infinite;
    }
    .scroll-hint svg { width: 24px; height: 24px; fill: rgba(255,255,255,.4); }
    @keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(10px)} }

    /* ─── TICKER BAR (fusion savings + last-minute + rating) ─── */
    .ticker-bar {
      background: rgba(10,20,14,.97); color: rgba(255,255,255,.78);
      height: 36px; overflow: hidden; display: flex; align-items: center;
      border-bottom: 1px solid rgba(255,255,255,.07);
      position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 998;
    }
    .ticker-bar::before, .ticker-bar::after {
      content: ''; position: absolute; top: 0; bottom: 0; width: 40px; z-index: 2; pointer-events: none;
    }
    .ticker-bar::before { left: 0; background: linear-gradient(to right, rgba(10,20,14,.97), transparent); }
    .ticker-bar::after  { right: 0; background: linear-gradient(to left,  rgba(10,20,14,.97), transparent); }
    .ticker-track {
      display: inline-flex; align-items: center; gap: 0;
      white-space: nowrap;
      animation: ticker-scroll 40s linear infinite;
    }
    .ticker-track:hover { animation-play-state: paused; }
    @keyframes ticker-scroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .ticker-item {
      display: inline-flex; align-items: center; gap: .45rem;
      font-size: .78rem; padding: 0 1.8rem;
      border-right: 1px solid rgba(255,255,255,.1);
    }
    .ticker-item strong { color: white; font-weight: 600; }
    .ticker-item .t-highlight {
      background: var(--amber); color: white; padding: .1rem .5rem;
      border-radius: 2px; font-weight: 700; font-size: .75rem;
    }
    .ticker-item .t-fire {
      background: #e03000; color: white; padding: .1rem .5rem;
      border-radius: 2px; font-weight: 700; font-size: .72rem; animation: pulse-dot 1.5s infinite;
    }
    .ticker-lm { display: none; }
    .ticker-lm.show { display: inline-flex; }
    .stars { color: var(--gold); letter-spacing: 1px; font-size: .82rem; }

    /* ─── SECTIONS ─── */
    section { padding: 6rem 1.5rem; }
    .container { max-width: 1120px; margin: 0 auto; }
    .section-label {
      display: inline-flex; align-items: center; gap: .6rem;
      text-transform: uppercase; letter-spacing: .14em; font-size: .7rem; font-weight: 700;
      color: var(--gold); margin-bottom: 1rem;
    }
    .section-label::before {
      content: ''; display: block; width: 28px; height: 1.5px; background: var(--gold); flex-shrink: 0;
    }
    .section-title {
      font-family: 'DM Serif Display', 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; color: var(--pine);
      margin-bottom: 1.2rem; line-height: 1.1; letter-spacing: -.01em;
    }
    .section-title em { font-style: italic; color: var(--forest); }
    .section-sub { color: var(--muted); line-height: 1.8; max-width: 600px; font-size: .97rem; }

    /* ─── APARTMENTS SECTION ─── */
    .apartments { background: var(--stone); }
    .apt-tabs { display: flex; gap: .5rem; margin-top: 2.5rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
    .apt-tab {
      padding: .55rem 1.5rem; border-radius: 3px; font-size: .78rem; font-weight: 700;
      cursor: pointer; transition: all .2s; border: 1.5px solid #ccc; background: transparent;
      color: var(--muted); font-family: 'Inter', sans-serif; letter-spacing: .06em; text-transform: uppercase;
    }
    .apt-tab:hover { border-color: var(--pine); color: var(--pine); background: rgba(28,53,37,.05); }
    .apt-tab.active-apt1 { background: var(--apt1); border-color: var(--apt1); color: white; }
    .apt-tab.active-apt2 { background: var(--apt2); border-color: var(--apt2); color: white; }
    .apt-tab.active-both { background: var(--pine); border-color: var(--pine); color: white; }

    .apt-panels > div { display: none; }
    .apt-panels > div.show { display: block; }

    .apt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
    .apt-visual { position: relative; }
    .apt-badge {
      position: absolute; top: .8rem; right: .8rem; z-index: 2;
      background: rgba(0,0,0,.55); backdrop-filter: blur(12px);
      color: rgba(255,255,255,.92); padding: .3rem .85rem; border-radius: 3px; font-size: .72rem;
      font-weight: 700; letter-spacing: .06em; text-transform: uppercase; pointer-events: none;
    }
    /* ─── APT PHOTO GALLERY ─── */
    .apt-gallery { display: flex; flex-direction: column; gap: .4rem; }
    .apt-gallery-main {
      border-radius: 8px; overflow: hidden; aspect-ratio: 4/3; cursor: zoom-in;
      position: relative; box-shadow: 0 12px 40px rgba(0,0,0,.18);
    }
    .apt-gallery-main picture, .apt-gallery-main img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
    .apt-gallery-main:hover img { transform: scale(1.04); }
    .apt-gallery-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: .4rem; }
    .apt-gallery-thumb {
      border-radius: 5px; overflow: hidden; aspect-ratio: 4/3; cursor: zoom-in; position: relative;
    }
    .apt-gallery-thumb picture, .apt-gallery-thumb img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .25s; }
    .apt-gallery-thumb:hover img { transform: scale(1.07); }
    .apt-gallery-more-overlay {
      position: absolute; inset: 0; background: rgba(0,0,0,.52); display: flex; align-items: center;
      justify-content: center; color: white; font-size: 1.15rem; font-weight: 700; border-radius: 5px;
      pointer-events: none;
    }
    /* ─── LIGHTBOX ─── */
    .lightbox {
      display: none; position: fixed; inset: 0; background: rgba(0,0,0,.93);
      z-index: 9900; align-items: center; justify-content: center;
    }
    .lightbox.open { display: flex; }
    .lightbox-img { max-width: 88vw; max-height: 85vh; object-fit: contain; border-radius: 4px; display: block; }
    .lightbox-close {
      position: absolute; top: 1rem; right: 1.4rem; color: white; font-size: 2.2rem;
      cursor: pointer; background: none; border: none; line-height: 1; opacity: .8;
      transition: opacity .2s;
    }
    .lightbox-close:hover { opacity: 1; }
    .lightbox-nav {
      position: absolute; top: 50%; transform: translateY(-50%); color: white; font-size: 1.6rem;
      cursor: pointer; background: rgba(255,255,255,.12); border: none; border-radius: 50%;
      width: 50px; height: 50px; display: flex; align-items: center; justify-content: center;
      transition: background .2s;
    }
    .lightbox-nav:hover { background: rgba(255,255,255,.25); }
    .lightbox-prev { left: 1rem; }
    .lightbox-next { right: 1rem; }
    .lightbox-caption {
      position: absolute; bottom: 1.2rem; left: 50%; transform: translateX(-50%);
      color: rgba(255,255,255,.65); font-size: .82rem; white-space: nowrap;
    }
    @media (max-width: 768px) {
      .apt-gallery-main { aspect-ratio: 16/10; }
      .lightbox-nav { width: 38px; height: 38px; font-size: 1.2rem; }
    }

    .apt-info { padding-top: .5rem; }
    .apt-info h3 { font-family: 'DM Serif Display', 'Playfair Display', serif; font-size: 2rem; font-weight: 400; color: var(--pine); margin-bottom: .5rem; line-height: 1.1; }
    .apt-tagline { font-size: .72rem; color: var(--gold); font-weight: 700; margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: .12em; display: flex; align-items: center; gap: .5rem; }
    .apt-tagline::after { content: ''; flex: 1; max-width: 40px; height: 1px; background: var(--gold); }
    .apt-info p { color: var(--muted); line-height: 1.8; margin-bottom: 1.8rem; font-size: .94rem; }
    .apt-specs { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin-bottom: 1.8rem; }
    .apt-spec {
      background: white; border: 1px solid var(--warm); border-radius: 3px; padding: .75rem 1rem;
      display: flex; align-items: center; gap: .65rem; font-size: .86rem; font-weight: 500;
      color: var(--text);
    }
    .apt-spec:hover { border-color: var(--sage); background: #fefefe; }
    .apt-spec-icon { font-size: 1.1rem; }
    .apt-amenities { margin-bottom: 1.8rem; }
    .apt-amenities h4 { font-size: .7rem; font-weight: 700; color: var(--muted); margin-bottom: .8rem; text-transform: uppercase; letter-spacing: .1em; }
    .apt-amenities-list { display: flex; flex-wrap: wrap; gap: .45rem; }
    .apt-amenity-tag {
      background: white; border: 1px solid var(--warm); padding: .32rem .75rem;
      border-radius: 3px; font-size: .8rem; color: var(--text);
    }
    .apt-cta { display: flex; gap: .8rem; flex-wrap: wrap; }
    .btn-apt1 { background: var(--apt1); }
    .btn-apt1:hover { background: #224d7a; }
    .btn-apt2 { background: var(--apt2); }
    .btn-apt2:hover { background: #0a7a65; }

    /* Both: two cards side by side */
    .both-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 1.5rem; }
    .mini-apt-card {
      border-radius: 4px; padding: 1.8rem; color: white;
      position: relative; overflow: hidden;
    }
    .mini-apt-card.card1 { background: linear-gradient(145deg, #0e2444, var(--apt1)); }
    .mini-apt-card.card2 { background: linear-gradient(145deg, #1a0932, var(--apt2)); }
    .mini-apt-card h4 { font-family: 'DM Serif Display', 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: .3rem; font-weight: 400; }
    .mini-apt-card .mini-tag { font-size: .72rem; opacity: .65; margin-bottom: 1.2rem; text-transform: uppercase; letter-spacing: .08em; }
    .mini-apt-card ul { list-style: none; display: flex; flex-direction: column; gap: .45rem; font-size: .83rem; color: rgba(255,255,255,.85); }
    .mini-apt-card ul li::before { content: '→ '; color: var(--gold); opacity: .9; }
    .both-total {
      background: var(--stone); border-radius: 4px; padding: 1.5rem 1.8rem;
      display: flex; align-items: center; justify-content: space-between;
      margin-top: 1.2rem; border: 1px solid var(--warm); gap: 1rem; flex-wrap: wrap;
    }
    .both-total-info h4 { font-family: 'DM Serif Display', 'Playfair Display', serif; font-size: 1.2rem; color: var(--pine); margin-bottom: .3rem; font-weight: 400; }
    .both-total-info p { font-size: .85rem; color: var(--muted); }

    /* ─── ACTIVITIES ─── */
    .activities { background: var(--cream); }
    .seasons-tabs { display: flex; gap: .4rem; margin-top: 2rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
    .season-tab {
      padding: .5rem 1.3rem; border-radius: 3px; font-size: .75rem; font-weight: 700;
      cursor: pointer; border: 1.5px solid #ccc; background: transparent; color: var(--muted);
      font-family: 'Inter', sans-serif; transition: all .2s; letter-spacing: .06em; text-transform: uppercase;
    }
    .season-tab:hover { border-color: var(--pine); color: var(--pine); }
    .season-tab.active { background: var(--pine); border-color: var(--pine); color: white; }
    .activities-panel { display: none; }
    .activities-panel.show { display: block; }
    .activities-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
      gap: 1.5rem;
    }
    .activity-card {
      background: white; border-radius: 4px; overflow: hidden;
      box-shadow: 0 2px 12px rgba(0,0,0,.06); transition: transform .25s, box-shadow .25s;
      border: 1px solid var(--warm);
    }
    .activity-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.12); }
    .activity-visual {
      height: 110px; display: flex; align-items: center; justify-content: center; font-size: 3rem;
      position: relative; overflow: hidden;
    }
    .activity-visual::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--amber), var(--gold));
    }
    .activity-body { padding: 1.1rem 1.2rem 1.3rem; }
    .activity-body h4 {
      font-family: 'DM Serif Display', 'Playfair Display', serif; font-size: 1.1rem; font-weight: 400;
      color: var(--pine); margin-bottom: .5rem; line-height: 1.2;
    }
    .activity-body p { font-size: .82rem; color: var(--muted); line-height: 1.65; }
    .activity-dist {
      display: inline-flex; align-items: center; gap: .3rem;
      font-size: .72rem; font-weight: 700; color: var(--gold); margin-top: .65rem;
      text-transform: uppercase; letter-spacing: .06em;
    }

    /* ─── ACTUALITÉS / EVENTS ─── */
    .actualites { background: var(--stone, #f0ebe0); }
    .events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
    .event-card { background: white; border-radius: 4px; overflow: hidden; border: 1px solid var(--warm); box-shadow: 0 2px 12px rgba(0,0,0,.06); transition: transform .25s, box-shadow .25s; display: flex; flex-direction: column; }
    .event-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.12); }
    .event-banner { height: 90px; display: flex; align-items: center; justify-content: center; font-size: 2.8rem; position: relative; }
    .event-banner::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--amber), var(--gold)); }
    .event-date-badge { position: absolute; top: .7rem; right: .7rem; background: var(--pine); color: white; font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .25rem .65rem; border-radius: 3px; }
    .event-body { padding: 1.1rem 1.2rem 1.3rem; flex: 1; display: flex; flex-direction: column; }
    .event-body h4 { font-family: 'DM Serif Display', 'Playfair Display', serif; font-size: 1.05rem; font-weight: 400; color: var(--pine); margin-bottom: .45rem; line-height: 1.25; }
    .event-body p { font-size: .82rem; color: var(--muted); line-height: 1.65; flex: 1; }
    .event-meta { display: flex; align-items: center; gap: .4rem; margin-top: .8rem; font-size: .72rem; font-weight: 700; color: var(--gold); }
    .event-tag { display: inline-block; background: rgba(212,168,83,.12); color: var(--amber); border: 1px solid rgba(212,168,83,.3); border-radius: 3px; font-size: .68rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: .18rem .55rem; margin-top: .6rem; align-self: flex-start; }

    /* ─── GALLERY SLIDER ─── */
    .gallery { background: white; }
    .gallery-tabs { display: flex; gap: .4rem; margin: 2rem 0; flex-wrap: wrap; }
    .gallery-tab {
      padding: .45rem 1.2rem; border-radius: 3px; font-size: .75rem; font-weight: 700;
      cursor: pointer; border: 1.5px solid #ccc; background: transparent; color: var(--muted);
      font-family: 'Inter', sans-serif; transition: all .2s; letter-spacing: .06em; text-transform: uppercase;
    }
    .gallery-tab:hover { border-color: var(--pine); color: var(--pine); }
    .gallery-tab.active { background: var(--pine); border-color: var(--pine); color: white; }
    .gallery-slider-wrap { position: relative; }
    .gallery-grid {
      display: flex; gap: 6px;
      overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 4px;
    }
    .gallery-grid::-webkit-scrollbar { display: none; }
    .gallery-item {
      flex-shrink: 0; width: 320px; height: 260px;
      border-radius: 3px; overflow: hidden; position: relative;
      background: var(--warm); cursor: pointer; scroll-snap-align: start;
    }
    .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; display: block; }
    .gallery-item:hover img { transform: scale(1.06); }
    .gallery-nav-btn {
      position: absolute; top: 50%; transform: translateY(-50%);
      background: rgba(255,255,255,.92); border: none; border-radius: 50%;
      width: 44px; height: 44px; font-size: 1.25rem; line-height: 1;
      cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center;
      box-shadow: 0 2px 14px rgba(0,0,0,.18); transition: background .15s, opacity .15s;
    }
    .gallery-nav-btn:hover { background: white; }
    .gallery-nav-prev { left: .5rem; }
    .gallery-nav-next { right: .5rem; }
    .gallery-counter {
      text-align: center; margin-top: .7rem;
      font-size: .75rem; color: #aaa; letter-spacing: .04em;
    }
    .gallery-placeholder {
      width: 100%; height: 100%; display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: .5rem;
      font-size: 3rem; color: white;
    }
    .gallery-placeholder span { font-size: .78rem; font-weight: 700; opacity: .8; letter-spacing: .08em; text-transform: uppercase; }
    .gallery-item .overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(6,15,10,.75) 0%, transparent 60%);
      opacity: 0; transition: opacity .3s;
      display: flex; align-items: flex-end; padding: 1rem 1.1rem;
      color: white; font-size: .82rem; font-weight: 500;
    }
    .gallery-item:hover .overlay { opacity: 1; }
    @media (max-width: 768px) {
      .gallery-item { width: calc(100vw - 3rem); }
      .gallery-nav-btn { display: none; }
    }
    .apt-label-badge {
      position: absolute; top: .7rem; left: .7rem;
      padding: .2rem .6rem; border-radius: 2px; font-size: .7rem; font-weight: 700; color: white;
      letter-spacing: .06em; text-transform: uppercase;
    }
    .badge-apt1 { background: var(--apt1); }
    .badge-apt2 { background: var(--apt2); }
    .badge-both { background: var(--pine); }

    /* ─── AMENITIES ─── */
    .amenities { background: white; }
    .amenities-cols { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
    .amenity-col { }
    .amenity-col-title {
      font-family: 'DM Serif Display', 'Playfair Display', serif; font-size: 1rem;
      font-weight: 400; color: white; padding: .85rem 1.3rem;
      border-radius: 4px 4px 0 0; display: flex; align-items: center; gap: .55rem;
      letter-spacing: .01em;
    }
    .amenity-col-title.col1 { background: linear-gradient(135deg, #1e3d6b, var(--apt1)); }
    .amenity-col-title.col2 { background: linear-gradient(135deg, #280d46, var(--apt2)); }
    .amenity-col-title.col3 { background: linear-gradient(135deg, var(--pine), var(--forest)); }
    .amenity-list { background: var(--stone); border-radius: 0 0 4px 4px; padding: .6rem; display: flex; flex-direction: column; gap: .3rem; border: 1px solid var(--warm); border-top: none; }
    .amenity-item { display: flex; align-items: center; gap: .65rem; padding: .55rem .7rem; font-size: .85rem; border-radius: 3px; color: var(--text); transition: background .15s; }
    .amenity-item:hover { background: white; }
    .amenity-item-icon { font-size: 1rem; flex-shrink: 0; opacity: .85; }

    /* ─── LOCATION ─── */
    .location { background: var(--cream); }
    .location-intro { color: var(--muted); line-height: 1.8; font-size: .95rem; max-width: 680px; margin: .5rem 0 2rem; }
    .location-poi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin: 2.5rem 0; }
    .poi-card { background: white; border: 1px solid var(--warm); border-radius: 8px; padding: 1.1rem 1.2rem; display: flex; flex-direction: column; gap: .3rem; align-items: flex-start; }
    .poi-card-header { display: flex; align-items: center; gap: .5rem; font-weight: 700; font-size: .9rem; color: var(--pine); }
    .poi-card-header .poi-icon { font-size: 1.1rem; flex-shrink: 0; }
    .poi-card-dist { font-size: .78rem; font-weight: 700; color: var(--amber); }
    .poi-card-detail { font-size: .78rem; color: var(--muted); line-height: 1.5; }
    .poi-card a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
    .poi-card[data-lat] { cursor: pointer; transition: transform .18s, box-shadow .18s; }
    .poi-card[data-lat]:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,.1); border-color: var(--gold); }
    .poi-site-btn { display: inline-flex; align-items: center; gap: .3rem; margin-top: .6rem;
      font-size: .72rem; font-weight: 600; color: var(--pine); background: var(--cream);
      border: 1px solid var(--warm); border-radius: 20px; padding: .25rem .7rem;
      text-decoration: none; transition: background .15s, border-color .15s; width: fit-content; align-self: flex-start; }
    .poi-site-btn:hover { background: var(--gold); border-color: var(--gold); color: white; }
    .poi-pills { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.5rem 0 1rem; }
    .poi-pill { display: inline-flex; align-items: center; gap: .3rem; background: white;
      border: 1px solid var(--warm); border-radius: 20px; padding: .35rem .9rem;
      font-size: .8rem; cursor: pointer; transition: background .15s, border-color .15s; }
    .poi-pill:hover { background: var(--gold); border-color: var(--gold); color: white; }
    .poi-pill strong { color: var(--amber); }
    .poi-pill:hover strong { color: white; }
    .poi-toggle-btn { display: flex; align-items: center; gap: .5rem; margin: .5rem 0 0;
      background: none; border: 1px solid var(--warm); border-radius: 4px;
      padding: .6rem 1.2rem; font-size: .85rem; cursor: pointer; color: var(--pine);
      font-weight: 600; transition: background .15s; }
    .poi-toggle-btn:hover { background: var(--cream); }
    .poi-details { margin-top: 1.5rem; }
    .poi-category-title { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 700; margin: 2rem 0 .75rem; padding-bottom: .4rem; border-bottom: 2px solid var(--gold); display: inline-block; }
    .map-container { border-radius: 4px; overflow: hidden; height: 400px; box-shadow: 0 12px 40px rgba(0,0,0,.12); }
    .map-container iframe { width: 100%; height: 100%; border: 0; }

    /* ─── TESTIMONIALS ─── */
    .testimonials { background: var(--pine); color: white; position: relative; overflow: hidden; }
    .testimonials::before {
      content: '"'; position: absolute; top: -2rem; left: 2rem;
      font-family: 'DM Serif Display', serif; font-size: 20rem; line-height: 1;
      color: rgba(255,255,255,.03); pointer-events: none; font-style: italic;
    }
    .testimonials .section-title { color: white; }
    .testimonials .section-label { color: var(--gold); }
    .testimonials .section-label::before { background: var(--gold); }
    .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
    .testimonial-card {
      background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
      border-radius: 4px; padding: 2rem; position: relative;
      transition: background .25s, border-color .25s;
    }
    .testimonial-card:hover { background: rgba(255,255,255,.09); border-color: rgba(212,168,83,.3); }
    .testimonial-card::before {
      content: '\201C'; font-family: 'DM Serif Display', serif; font-size: 4rem; line-height: .8;
      color: var(--gold); display: block; margin-bottom: .5rem; font-style: italic; opacity: .7;
    }
    .testimonial-stars { color: var(--gold); margin-bottom: .8rem; font-size: .9rem; letter-spacing: 1px; }
    .testimonial-text { font-size: .93rem; line-height: 1.8; color: rgba(255,255,255,.82); margin-bottom: 1.5rem; }
    .testimonial-author { display: flex; align-items: center; gap: .9rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.1); }
    .testimonial-avatar {
      width: 40px; height: 40px; border-radius: 50%; background: var(--gold);
      display: flex; align-items: center; justify-content: center;
      font-weight: 700; font-size: .9rem; color: var(--pine); flex-shrink: 0;
    }
    .testimonial-name { font-weight: 600; font-size: .9rem; color: white; }
    .testimonial-meta { font-size: .75rem; color: rgba(255,255,255,.45); margin-top: .1rem; }

    /* ─── RÉSERVATION CTA ─── */
    .booking-cta-section {
      background: linear-gradient(135deg, #1a3308 0%, #2d5016 50%, #3d6b1f 100%);
      padding: 5rem 1.5rem;
    }
    .booking-cta-inner {
      max-width: 1120px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 420px; gap: 5rem; align-items: center;
    }
    .booking-cta-list { list-style: none; display: flex; flex-direction: column; gap: .7rem; margin: 1.5rem 0 2rem; }
    .booking-cta-list li { color: rgba(255,255,255,.88); font-size: .92rem; }
    .booking-cta-contacts { display: flex; gap: .8rem; flex-wrap: wrap; }
    .booking-cta-card {
      background: white; border-radius: 4px; padding: 2.2rem;
      box-shadow: 0 24px 80px rgba(0,0,0,.3);
    }
    .booking-cta-card h3 { font-family: 'DM Serif Display', 'Playfair Display', serif; font-size: 1.6rem; font-weight: 400; color: var(--pine); margin-bottom: .3rem; }
    .booking-cta-apt-btns { display: flex; flex-direction: column; gap: .7rem; }
    .bcta-apt-btn {
      display: flex; align-items: center; gap: .9rem;
      padding: .9rem 1.1rem; border-radius: 12px; border: 2px solid #e0dbd4;
      background: white; cursor: pointer; text-align: left; transition: all .18s;
      font-family: 'Inter', sans-serif; width: 100%;
    }
    .bcta-apt-btn span { font-size: 1.7rem; flex-shrink: 0; }
    .bcta-apt-btn div { flex: 1; }
    .bcta-apt-btn strong { display: block; color: var(--pine); font-size: .95rem; margin-bottom: .1rem; }
    .bcta-apt-btn small { color: #888; font-size: .78rem; }
    .bcta-apt-btn:hover { transform: translateX(4px); box-shadow: 0 4px 16px rgba(0,0,0,.1); }
    .bcta-apt1:hover { border-color: var(--apt1); background: rgba(61,107,159,.05); }
    .bcta-apt2:hover { border-color: var(--apt2); background: rgba(14,158,130,.05); }
    .bcta-both:hover { border-color: var(--amber); background: rgba(200,132,42,.05); }
    @media (max-width: 900px) {
      .booking-cta-inner { grid-template-columns: 1fr; gap: 3rem; }
    }

    /* ─── AVAILABILITY CALENDAR ─── */
    .availability { background: white; }
    .availability .section-title { color: var(--pine); }
    .avail-header { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 2rem; }
    .avail-apt-toggle { display: flex; gap: .5rem; flex-wrap: wrap; }
    .avail-toggle-btn {
      padding: .5rem 1.2rem; border-radius: 50px; font-size: .85rem; font-weight: 600;
      cursor: pointer; border: 2px solid #ddd; background: white; color: #666;
      font-family: 'Inter', sans-serif; transition: all .2s;
    }
    .avail-toggle-btn.on-apt1 { background: var(--apt1); border-color: var(--apt1); color: white; }
    .avail-toggle-btn.on-apt2 { background: var(--apt2); border-color: var(--apt2); color: white; }
    .avail-toggle-btn.on-both { background: var(--amber); border-color: var(--amber); color: white; }

    /* Legend */
    .avail-legend { display: flex; gap: 1.2rem; flex-wrap: wrap; align-items: center; }
    .legend-item { display: flex; align-items: center; gap: .45rem; font-size: .78rem; color: #555; }
    .legend-dot { width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; }
    .legend-dot.avail { background: #e8f5e0; border: 2px solid #6bb840; }
    .legend-dot.booked { background: #d94f00; border: 2px solid #b03a00; }
    .legend-dot.partial { background: linear-gradient(135deg, #e8f5e0 50%, #fde8e8 50%); border: 2px solid #ccc; }
    .legend-dot.selected { background: var(--amber); border: 2px solid var(--brown); }
    .legend-dot.today { background: #e8f0fc; border: 2px solid var(--apt1); }

    /* Calendar navigation */
    .cal-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; }
    .cal-nav-btn {
      width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid #ddd;
      background: white; cursor: pointer; font-size: 1rem; color: var(--text);
      display: flex; align-items: center; justify-content: center; transition: all .2s;
    }
    .cal-nav-btn:hover { background: var(--pine); color: white; border-color: var(--pine); }
    .cal-nav-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--pine); }

    /* Two-month grid */
    .cal-months { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .cal-month { background: var(--cream); border-radius: 16px; padding: 1.2rem; }
    .cal-month-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--pine); text-align: center; margin-bottom: 1rem; text-transform: capitalize; }
    .cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
    .cal-day-header { text-align: center; font-size: .72rem; font-weight: 700; color: #999; padding: .3rem 0; text-transform: uppercase; }
    .cal-day {
      aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
      border-radius: 8px; font-size: .83rem; cursor: pointer; transition: all .15s;
      position: relative; user-select: none; font-weight: 500; gap: 0px; line-height: 1.15;
    }
    .cal-num { display: block; }
    .cal-price { display: block; font-size: .55rem; font-weight: 700; color: var(--amber); opacity: .9; line-height: 1; }
    .cal-day.booked .cal-price, .cal-day.booked-apt1 .cal-price, .cal-day.booked-apt2 .cal-price { display: none; }
    .cal-day.selected-start .cal-price, .cal-day.selected-end .cal-price { color: white; opacity: .8; }
    .cal-day.empty { cursor: default; }
    .cal-day.past { color: #ccc; cursor: not-allowed; }
    .cal-day.past:hover { background: none; }
    .cal-day.today { background: #e8f0fc; color: var(--apt1); font-weight: 700; }
    .cal-day.available { background: white; color: var(--text); }
    .cal-day.available:hover { background: #d8f0c0; transform: scale(1.08); box-shadow: 0 2px 8px rgba(107,184,64,.25); }
    .cal-day.booked { background: #d94f00; color: #fff; cursor: not-allowed; text-decoration: line-through; }
    .cal-day.booked-apt1 { background: #1a6fba; color: #fff; cursor: not-allowed; }
    .cal-day.booked-apt2 { background: #0e9e82; color: #fff; cursor: not-allowed; }
    .cal-day.partial { background: linear-gradient(135deg, #e8f5e0 50%, #fde8e8 50%); color: var(--text); }
    .cal-day.selected-start, .cal-day.selected-end {
      background: var(--amber) !important; color: white !important;
      font-weight: 700; border-radius: 8px; box-shadow: 0 2px 8px rgba(200,132,42,.4);
    }
    .cal-day.in-range { background: #fdefd8; color: var(--brown); border-radius: 0; }
    .cal-day.in-range.range-start { border-radius: 8px 0 0 8px; }
    .cal-day.in-range.range-end { border-radius: 0 8px 8px 0; }

    /* Tooltip on hover */
    .cal-day[data-tip]:hover::after {
      content: attr(data-tip); position: absolute; bottom: calc(100% + 6px); left: 50%;
      transform: translateX(-50%); background: var(--text); color: white;
      font-size: .68rem; padding: .25rem .6rem; border-radius: 6px; white-space: nowrap;
      pointer-events: none; z-index: 10;
    }

    /* Selection summary */
    .avail-selection {
      margin-top: 1.5rem; background: var(--cream); border-radius: 14px;
      padding: 1.2rem 1.5rem; display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 1rem; border: 2px solid var(--warm); min-height: 60px;
    }
    .avail-selection.has-dates { border-color: var(--amber); background: #fdf5e8; }
    .selection-info { font-size: .9rem; color: #555; }
    .selection-info strong { color: var(--pine); font-size: 1rem; }
    .selection-info .nights-badge {
      display: inline-block; background: var(--amber); color: white;
      padding: .2rem .7rem; border-radius: 50px; font-size: .78rem; font-weight: 700; margin-left: .5rem;
    }
    .avail-book-btn {
      background: var(--pine); color: white; border: none; padding: .65rem 1.5rem;
      border-radius: 50px; font-size: .88rem; font-weight: 600; cursor: pointer;
      font-family: 'Inter', sans-serif; transition: background .2s; text-decoration: none;
      display: inline-flex; align-items: center; gap: .4rem;
    }
    .avail-book-btn:hover { background: var(--forest); }
    .avail-book-btn:disabled { background: #ccc; cursor: not-allowed; }

    /* Status by apt */
    .avail-status-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2rem; }
    .avail-status-card {
      border-radius: 12px; padding: 1rem 1.2rem; border: 2px solid;
      display: flex; flex-direction: column; gap: .3rem;
    }
    .avail-status-card.s1 { border-color: #aacce8; background: #f0f7fd; }
    .avail-status-card.s2 { border-color: #c8aae8; background: #f7f0fd; }
    .avail-status-card.sb { border-color: #e8c888; background: #fdf7f0; }
    .avail-status-card .sc-title { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
    .s1 .sc-title { color: var(--apt1); }
    .s2 .sc-title { color: var(--apt2); }
    .sb .sc-title { color: var(--amber); }
    .avail-status-card .sc-status { font-size: .88rem; font-weight: 600; }
    .sc-status.free { color: #4a9a30; }
    .sc-status.busy { color: #c04040; }
    .avail-status-card .sc-next { font-size: .78rem; color: #888; }

    @media (max-width: 768px) {
      .cal-months { grid-template-columns: 1fr; }
      .avail-status-grid { grid-template-columns: 1fr; }
      .avail-header { flex-direction: column; }
    }

    /* ─── PRICING TABLE ─── */
    .tarifs { background: var(--stone); }
    .tarifs-intro { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: start; margin-bottom: 2.5rem; flex-wrap: wrap; }
    .tarif-note { background: white; border-left: 4px solid var(--amber); padding: .9rem 1.2rem; border-radius: 0 10px 10px 0; font-size: .85rem; color: #555; line-height: 1.6; max-width: 340px; }
    .tarif-note strong { color: var(--pine); }

    /* Season badges strip */
    .season-legend { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 2rem; }
    .season-badge {
      display: flex; align-items: center; gap: .45rem;
      padding: .35rem .9rem; border-radius: 50px; font-size: .78rem; font-weight: 700;
      border: 1.5px solid; cursor: default;
    }
    .season-badge .sb-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

    /* Pricing grid */
    .tarifs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

    .tarif-card {
      background: white; border-radius: 4px; overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,.06); border: 1px solid var(--warm);
    }
    .tarif-card-header {
      padding: 1.2rem 1.4rem; display: flex; align-items: center; gap: .8rem;
    }
    .tarif-card-header h3 { font-family: 'DM Serif Display', 'Playfair Display', serif; font-size: 1.1rem; color: white; font-weight: 400; }
    .tarif-card-header .apt-sub-label { font-size: .78rem; opacity: .8; color: white; }
    .tarif-header-apt1 { background: linear-gradient(135deg, var(--apt1), #5d8fc0); }
    .tarif-header-apt2 { background: linear-gradient(135deg, var(--apt2), #07c4a0); }

    .tarif-table { width: 100%; border-collapse: collapse; }
    .tarif-table th {
      text-align: left; padding: .6rem 1.2rem; font-size: .72rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: .07em; color: #999; background: #fafafa;
      border-bottom: 1px solid #eee;
    }
    .tarif-table th:last-child { text-align: right; }
    .tarif-table td { padding: .75rem 1.2rem; font-size: .88rem; border-bottom: 1px solid #f4f4f4; vertical-align: middle; }
    .tarif-table td:last-child { text-align: right; font-weight: 700; font-size: .95rem; }
    .tarif-table tr:last-child td { border-bottom: none; }
    .tarif-table tr:hover td { background: var(--cream); }

    .period-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: .5rem; flex-shrink: 0; }
    .period-name { display: flex; align-items: center; }
    .period-dates { font-size: .76rem; color: #999; margin-top: .15rem; }

    .price-tag { color: var(--pine); }
    .price-tag .per-night { font-size: .72rem; font-weight: 400; color: #999; margin-left: .2rem; }

    /* Minimum stay badge */
    .min-stay { display: inline-block; background: var(--cream); border: 1px solid #e0d8cc; padding: .15rem .55rem; border-radius: 50px; font-size: .72rem; color: #777; margin-left: .4rem; }

    /* Both / full chalet card */
    .tarif-card-both { grid-column: 1 / -1; }
    .tarif-header-both { background: linear-gradient(135deg, var(--pine), var(--forest)); }
    .tarif-both-grid { display: grid; grid-template-columns: 1fr 1fr; }
    .tarif-both-col { padding: 1rem 0; }
    .tarif-both-col:first-child { border-right: 1px solid #eee; }
    .tarif-both-col .col-label { padding: .4rem 1.2rem; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: #bbb; }

    /* Promo badge */
    .promo-badge { background: #e8f5e0; color: #3a7a20; border: 1px solid #b0d890; padding: .2rem .6rem; border-radius: 50px; font-size: .72rem; font-weight: 700; margin-left: .5rem; }

    /* Calendar price tiers — subtle day bg */
    .cal-day.tier-low    { background: #f0fce8; }
    .cal-day.tier-mid    { background: #fff8e8; }
    .cal-day.tier-high   { background: #fff0d8; }
    .cal-day.tier-peak   { background: #ffe8d8; }
    .cal-day.tier-low:hover    { background: #d8f0c0; }
    .cal-day.tier-mid:hover    { background: #fce8a8; }
    .cal-day.tier-high:hover   { background: #f8d890; }
    .cal-day.tier-peak:hover   { background: #f8c898; }
    /* Don't override selected / booked states */
    .cal-day.selected-start.tier-low,   .cal-day.selected-start.tier-mid,
    .cal-day.selected-start.tier-high,  .cal-day.selected-start.tier-peak,
    .cal-day.selected-end.tier-low,     .cal-day.selected-end.tier-mid,
    .cal-day.selected-end.tier-high,    .cal-day.selected-end.tier-peak
    { background: var(--amber) !important; }

    /* Price tooltip in calendar legend */
    .cal-tier-legend { display: flex; gap: .9rem; flex-wrap: wrap; margin-top: 1rem; }
    .tier-legend-item { display: flex; align-items: center; gap: .4rem; font-size: .75rem; color: #666; }
    .tier-legend-dot { width: 12px; height: 12px; border-radius: 3px; flex-shrink: 0; }

    /* Selection price breakdown */
    .price-breakdown {
      background: white; border-radius: 12px; padding: 1rem 1.2rem;
      margin-top: .8rem; display: none; border: 1.5px solid #eee;
    }
    .price-breakdown.show { display: block; }
    .price-breakdown-rows { display: flex; flex-direction: column; gap: .4rem; margin-bottom: .7rem; }
    .pb-row { display: flex; justify-content: space-between; align-items: center; font-size: .83rem; color: #666; }
    .pb-row.total { font-weight: 700; font-size: .95rem; color: var(--pine); border-top: 1px solid #eee; padding-top: .5rem; margin-top: .3rem; }
    .pb-row.total .pb-price { color: var(--amber); font-size: 1.1rem; }
    .pb-row .pb-tier { display: inline-block; width: 8px; height: 8px; border-radius: 2px; margin-right: .4rem; }

    @media (max-width: 768px) {
      .tarifs-grid { grid-template-columns: 1fr; }
      .tarif-card-both { grid-column: 1; }
      .tarif-both-grid { grid-template-columns: 1fr; }
      .tarif-both-col:first-child { border-right: none; border-bottom: 1px solid #eee; }
      .tarifs-intro { grid-template-columns: 1fr; }
    }

    /* ─── FAQ ─── */
    .faq { background: var(--cream); }
    .faq-list { margin-top: 3rem; display: flex; flex-direction: column; gap: .5rem; max-width: 800px; }
    .faq-item {
      background: white; border-radius: 4px; overflow: hidden;
      border: 1px solid var(--warm); transition: box-shadow .2s;
    }
    .faq-item.open { box-shadow: 0 4px 20px rgba(0,0,0,.07); border-color: #ddd; }
    .faq-question {
      width: 100%; text-align: left; padding: 1.1rem 1.4rem;
      background: none; border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: space-between; gap: 1rem;
      font-size: .9rem; font-weight: 600; color: var(--text); font-family: 'Inter', sans-serif;
      transition: color .2s;
    }
    .faq-item.open .faq-question { color: var(--pine); }
    .faq-arrow { transition: transform .3s; color: var(--gold); flex-shrink: 0; font-size: .85rem; }
    .faq-item.open .faq-arrow { transform: rotate(180deg); }
    .faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
    .faq-item.open .faq-answer { max-height: 400px; }
    .faq-answer p { padding: 0 1.4rem 1.2rem; color: var(--muted); line-height: 1.8; font-size: .88rem; }

    /* ─── FOOTER ─── */
    footer { background: rgba(6,12,8,1); color: rgba(255,255,255,.65); padding: 4rem 1.5rem 2rem; border-top: 1px solid rgba(255,255,255,.06); }
    .footer-content { max-width: 1120px; margin: 0 auto; }
    .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
    .footer-logo { margin-bottom: .8rem; }
    .footer-logo img { height: 72px; width: auto; object-fit: contain; filter: drop-shadow(0 2px 6px rgba(0,0,0,.5)); }
    .footer-brand p { font-size: .83rem; line-height: 1.75; opacity: .55; margin-bottom: 1.2rem; }
    .social-links { display: flex; gap: .6rem; }
    .social-link {
      width: 34px; height: 34px; border-radius: 3px; background: rgba(255,255,255,.07);
      display: flex; align-items: center; justify-content: center;
      text-decoration: none; color: rgba(255,255,255,.6); transition: all .2s; font-size: .9rem;
    }
    .social-link:hover { background: var(--gold); color: var(--pine); }
    .footer-col h4 { color: rgba(255,255,255,.9); font-size: .7rem; font-weight: 700; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: .1em; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
    .footer-col ul a { text-decoration: none; color: rgba(255,255,255,.45); font-size: .83rem; transition: color .2s; }
    .footer-col ul a:hover { color: var(--gold); }
    .footer-col ul li { font-size: .83rem; color: rgba(255,255,255,.4); display: flex; align-items: center; gap: .4rem; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: .75rem; color: rgba(255,255,255,.3); }

    /* ─── FLOATING CTA ─── */
    .floating-cta {
      position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 99;
      background: var(--pine); color: white; border: none; padding: .85rem 1.6rem;
      border-radius: 4px; font-size: .82rem; font-weight: 700; cursor: pointer;
      box-shadow: 0 8px 28px rgba(10,25,15,.5); transition: all .25s;
      text-decoration: none; display: flex; align-items: center; gap: .6rem;
      transform: translateY(100px); opacity: 0; letter-spacing: .04em; text-transform: uppercase;
    }
    .floating-cta.visible { transform: translateY(0); opacity: 1; }
    .floating-cta:hover { background: var(--forest); transform: translateY(-3px); box-shadow: 0 12px 36px rgba(10,25,15,.6); }


    /* ─── WHATSAPP BUTTON ─── */
    .whatsapp-btn {
      position: fixed; bottom: 5rem; right: 1.5rem; z-index: 99;
      background: #25d366; color: white; border: none;
      width: 52px; height: 52px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem; cursor: pointer; text-decoration: none;
      box-shadow: 0 4px 20px rgba(37,211,102,.5);
      transition: all .2s; transform: translateY(100px); opacity: 0;
    }
    .whatsapp-btn.visible { transform: translateY(0); opacity: 1; }
    .whatsapp-btn:hover { background: #20ba5a; transform: scale(1.1); }
    .whatsapp-pulse {
      position: absolute; top: -3px; right: -3px;
      width: 14px; height: 14px; background: #ff4444; border-radius: 50%;
      border: 2px solid white; animation: pulse-dot 1.5s infinite;
    }
    @keyframes pulse-dot { 0%,100%{transform:scale(1)} 50%{transform:scale(1.3)} }

    /* ─── OWNER SECTION ─── */
    .owner { background: var(--stone); }
    .owner-grid { display: grid; grid-template-columns: 300px 1fr; gap: 5rem; align-items: center; margin-top: 3rem; }
    .owner-card {
      background: white; border-radius: 4px; padding: 2.5rem;
      text-align: center; box-shadow: 0 8px 40px rgba(0,0,0,.08);
      border: 1px solid var(--warm);
    }
    .owner-avatar {
      width: 100px; height: 100px; border-radius: 50%; margin: 0 auto 1rem;
      background: linear-gradient(135deg, var(--pine), var(--sage));
      display: flex; align-items: center; justify-content: center;
      font-size: 2.8rem; overflow: hidden; border: 3px solid var(--gold);
      box-shadow: 0 4px 20px rgba(0,0,0,.12);
    }
    .owner-avatar img { width: 100%; height: 100%; object-fit: cover; }
    .owner-name { font-family: 'DM Serif Display', 'Playfair Display', serif; font-size: 1.4rem; color: var(--pine); font-weight: 400; }
    .owner-title { font-size: .7rem; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin: .4rem 0 1.4rem; }
    .owner-stats { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin-top: 1.2rem; }
    .owner-stat {
      background: var(--stone); border-radius: 3px; padding: .8rem .5rem;
      text-align: center; border: 1px solid var(--warm);
    }
    .owner-stat-num { font-family: 'DM Serif Display', 'Playfair Display', serif; font-size: 1.4rem; font-weight: 400; color: var(--pine); }
    .owner-stat-label { font-size: .68rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-top: .1rem; }
    .owner-contact-btns { display: flex; flex-direction: column; gap: .6rem; margin-top: 1.4rem; }
    .btn-whatsapp {
      background: #25d366; color: white; border: none; padding: .75rem 1.2rem;
      border-radius: 3px; font-size: .85rem; font-weight: 700; cursor: pointer;
      text-decoration: none; display: flex; align-items: center; justify-content: center; gap: .5rem;
      transition: background .2s; letter-spacing: .03em;
    }
    .btn-whatsapp:hover { background: #1db954; }
    .btn-email {
      background: var(--pine); color: white; border: none; padding: .75rem 1.2rem;
      border-radius: 3px; font-size: .85rem; font-weight: 700; cursor: pointer;
      text-decoration: none; display: flex; align-items: center; justify-content: center; gap: .5rem;
      transition: background .2s; letter-spacing: .03em;
    }
    .btn-email:hover { background: var(--forest); }
    .btn-tel {
      background: white; color: var(--pine); border: 1.5px solid var(--pine); padding: .7rem 1.2rem;
      border-radius: 3px; font-size: .85rem; font-weight: 700; cursor: pointer;
      text-decoration: none; display: flex; align-items: center; justify-content: center; gap: .5rem;
      transition: all .2s; letter-spacing: .03em;
    }
    .btn-tel:hover { background: var(--pine); color: white; }
    .owner-info h3 { font-family: 'DM Serif Display', 'Playfair Display', serif; font-size: 2rem; color: var(--pine); margin-bottom: 1rem; font-weight: 400; line-height: 1.15; }
    .owner-info p { color: var(--muted); line-height: 1.8; margin-bottom: 1rem; font-size: .93rem; }
    .owner-badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
    .owner-badge {
      display: flex; align-items: center; gap: .4rem;
      background: white; border: 1px solid var(--warm);
      padding: .4rem .9rem; border-radius: 3px; font-size: .8rem; color: var(--text);
    }
    .owner-badge .ob-icon { font-size: .95rem; }
    .response-bar { margin-top: 1.5rem; }
    .response-bar-label { display: flex; justify-content: space-between; font-size: .8rem; color: var(--muted); margin-bottom: .5rem; }
    .response-bar-track { height: 5px; background: var(--warm); border-radius: 50px; overflow: hidden; }
    .response-bar-fill { height: 100%; background: linear-gradient(90deg, var(--amber), var(--gold)); border-radius: 50px; transition: width 1.2s ease; }


    /* ─── VIDEO SECTION ─── */
    .video-section { background: var(--pine); color: white; padding: 4rem 1.5rem; }
    .video-section .section-label { color: #a8c880; }
    .video-section .section-title { color: white; }
    .video-wrapper {
      position: relative; border-radius: 20px; overflow: hidden;
      max-width: 800px; margin: 2rem auto 0; cursor: pointer;
      box-shadow: 0 16px 60px rgba(0,0,0,.4);
    }
    .video-thumb {
      width: 100%; aspect-ratio: 16/9; background: linear-gradient(135deg, #1a3308, #4a7c28);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 1rem; position: relative;
    }
    .video-play-btn {
      width: 72px; height: 72px; background: rgba(255,255,255,.92);
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      font-size: 1.8rem; transition: transform .2s, box-shadow .2s;
    }
    .video-wrapper:hover .video-play-btn { transform: scale(1.1); box-shadow: 0 8px 32px rgba(0,0,0,.3); }
    .video-caption { font-size: 1rem; opacity: .8; }
    .video-embed { display: none; width: 100%; aspect-ratio: 16/9; }
    .video-embed.show { display: block; }
    .video-embed iframe { width: 100%; height: 100%; border: 0; }

    /* ─── URGENCY BANNER (calendar) ─── */
    .urgency-banner {
      background: linear-gradient(135deg, #fff3cd, #ffeaa0);
      border: 1.5px solid #f0c040; border-radius: 12px;
      padding: .9rem 1.2rem; margin-bottom: 1.2rem;
      display: flex; align-items: center; gap: .8rem; flex-wrap: wrap;
    }
    .urgency-banner .ub-icon { font-size: 1.3rem; flex-shrink: 0; }
    .urgency-banner .ub-text { font-size: .88rem; color: #7a5500; flex: 1; }
    .urgency-banner .ub-text strong { color: #5a3a00; }
    .urgency-items { display: flex; gap: .6rem; flex-wrap: wrap; }
    .urgency-tag {
      background: white; border: 1.5px solid #f0c040; color: #7a5500;
      padding: .25rem .7rem; border-radius: 50px; font-size: .78rem; font-weight: 600;
    }

    /* ─── EXIT INTENT POPUP — Supprimé (conformité RGPD, HTML retiré) ─── */

    /* ─── RESPONSIVE — TABLET (≤960px) ─── */
    @media (max-width: 960px) {
      .apt-grid { grid-template-columns: 1fr; gap: 2rem; }
      .apt-visual { height: auto; }
      .both-cards { grid-template-columns: 1fr; }
      .amenities-cols { grid-template-columns: 1fr 1fr; }
      .location-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .booking-wrapper { grid-template-columns: 1fr; gap: 2rem; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
      .owner-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .hero-content { padding: 0 1.5rem 4rem; }
      section { padding: 4.5rem 1.5rem; }
    }

    /* ─── RESPONSIVE — MOBILE (≤768px) ─── */
    @media (max-width: 768px) {
      /* Nav */
      nav { padding: 0 1rem; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .nav-cta { padding: .5rem 1rem; font-size: .78rem; }

      /* Mobile menu */
      .mobile-menu {
        display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
        background: rgba(10,20,14,.98); backdrop-filter: blur(16px); z-index: 99;
        flex-direction: column; border-bottom: 1px solid rgba(255,255,255,.08);
        box-shadow: 0 8px 32px rgba(0,0,0,.4);
      }
      .mobile-menu.open { display: flex; }
      .mobile-menu a {
        padding: 1rem 1.5rem; text-decoration: none; color: rgba(255,255,255,.75);
        font-weight: 500; border-bottom: 1px solid rgba(255,255,255,.06); display: block;
        font-size: .9rem; transition: color .15s, background .15s;
      }
      .mobile-menu a:hover { color: white; background: rgba(255,255,255,.04); }

      /* Hero */
      .hero h1 { font-size: clamp(2rem, 9vw, 3rem); margin-bottom: 1rem; }
      .hero-content p { font-size: .9rem; line-height: 1.7; margin-bottom: 1.5rem; }
      .hero-apt-selector { gap: .5rem; margin-bottom: 1.8rem; }
      .apt-pill { padding: .5rem 1rem; font-size: .78rem; }
      .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-bottom: 2rem; }
      .stat { padding: .75rem 1rem; border-right: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
      .stat:nth-child(2) { border-right: none; }
      .stat:nth-child(3) { border-bottom: none; }
      .stat:nth-child(4) { border-right: none; border-bottom: none; }
      .stat-num { font-size: 1.3rem; }
      .hero-buttons { flex-direction: column; gap: .7rem; }
      .hero-buttons .btn-primary,
      .hero-buttons .btn-outline { width: 100%; text-align: center; padding: 1rem; font-size: .9rem; }


      /* Sections */
      section { padding: 3rem 1.2rem; }
      .section-title { font-size: 1.75rem; }
      .section-sub { font-size: .9rem; }

      /* Apt tabs */
      .apt-tabs { display: flex; flex-wrap: nowrap; overflow-x: auto; gap: .4rem;
        margin-bottom: 1.5rem; padding-bottom: .3rem; -webkit-overflow-scrolling: touch;
        scrollbar-width: none; }
      .apt-tabs::-webkit-scrollbar { display: none; }
      .apt-tab { white-space: nowrap; flex-shrink: 0; padding: .5rem 1.1rem; font-size: .75rem; }

      /* Apt specs */
      .apt-specs { grid-template-columns: 1fr; }
      .apt-choices { grid-template-columns: 1fr; }
      .both-cards { grid-template-columns: 1fr; }
      .amenities-cols { grid-template-columns: 1fr; }

      /* Tarifs */
      .tarifs-grid { grid-template-columns: 1fr; }
      .tarif-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
      .tarif-table { min-width: 340px; font-size: .82rem; }
      .tarif-table th, .tarif-table td { padding: .6rem .7rem; }

      /* FAQ */
      .faq-q { font-size: .92rem; }

      /* Footer */
      .footer-top { grid-template-columns: 1fr; gap: 1.5rem; }
      .footer-bottom { flex-direction: column; text-align: center; gap: .4rem; font-size: .78rem; }

      /* Form */
      .form-row { grid-template-columns: 1fr; }

      /* Location pills */
      .poi-pills { gap: .4rem; }
      .poi-pill { font-size: .75rem; padding: .3rem .75rem; }

      /* Map */
      #leafletMap { height: 380px !important; }
    }

    /* ─── RESPONSIVE — SMALL MOBILE (≤480px) ─── */
    @media (max-width: 480px) {
      :root { --nav-h: 60px; }
      nav { height: var(--nav-h); padding: 0 .9rem; }
      .nav-logo { font-size: 1.1rem; }
      .nav-cta { padding: .45rem .8rem; font-size: .75rem; letter-spacing: 0; }

      /* Hero */
      .hero h1 { font-size: clamp(1.75rem, 10vw, 2.5rem); }
      .hero-badge { font-size: .7rem; padding: .3rem .7rem; }
      .hero-apt-selector { flex-direction: column; gap: .4rem; }
      .apt-pill { width: 100%; justify-content: center; }
      section { padding: 2.5rem 1rem; }
      .section-title { font-size: 1.55rem; }

      /* Gallery */
      .gallery-grid { grid-template-columns: 1fr; }
      .gallery-item:first-child { grid-column: 1; height: 220px; }

      /* Compare table */
      .compare-table th, .compare-table td { padding: .5rem .5rem; font-size: .74rem; }

      /* Floating sticky bar */
      .mobile-sticky-bar { padding: .6rem .8rem; }
      .msb-btn { font-size: .78rem; padding: .55rem .7rem; }
    }

    .lm-badge {
      background: #ff4444; color: white; font-weight: 700; font-size: .75rem;
      padding: .22rem .7rem; border-radius: 50px; flex-shrink: 0;
      animation: pulse-dot 1.5s infinite;
    }
    .lm-text strong { color: #f4c87a; }
    .lm-btn {
      background: var(--amber); color: white; padding: .35rem 1rem;
      border-radius: 50px; font-size: .8rem; font-weight: 700;
      text-decoration: none; white-space: nowrap; transition: background .2s;
    }
    .lm-btn:hover { background: var(--brown); }

    /* ─── VISITOR COUNTER ─── */
    .visitor-counter {
      display: none; align-items: center; gap: .5rem;
      background: #f0f8e8; border: 1px solid #c0e090; border-radius: 50px;
      padding: .32rem .9rem; font-size: .79rem; color: #3a7a20; font-weight: 600;
      margin-bottom: .9rem; width: fit-content;
    }
    .visitor-counter.show { display: flex; }
    .vc-dot {
      width: 8px; height: 8px; background: #3a9a20; border-radius: 50%;
      animation: pulse-dot 1.5s infinite; flex-shrink: 0;
    }

    /* ─── AIRBNB COMPARATOR ─── */
    .airbnb-compare { background: var(--cream); }
    .compare-table-wrap { overflow-x: auto; margin-top: 2rem; }
    .compare-table {
      width: 100%; border-collapse: separate; border-spacing: 0;
      max-width: 820px; border-radius: 16px; overflow: hidden;
      box-shadow: 0 4px 24px rgba(0,0,0,.08);
    }
    .compare-table th {
      padding: .85rem 1.2rem; font-size: .78rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: .06em; text-align: center;
    }
    .compare-table th:first-child { text-align: left; }
    .compare-table th.col-label  { background: #f0f0f0; color: #888; }
    .compare-table th.col-direct { background: var(--pine); color: white; }
    .compare-table th.col-airbnb { background: #ff5a5f; color: white; }
    .compare-table th.col-save   { background: var(--forest); color: white; }
    .compare-table td {
      padding: .8rem 1.2rem; font-size: .87rem;
      border-bottom: 1px solid #f0f0f0; text-align: center;
      vertical-align: middle; background: white;
    }
    .compare-table td:first-child { text-align: left; font-weight: 600; color: var(--text); }
    .compare-table tr:last-child td { border-bottom: none; }
    .compare-table tr:hover td { background: #fafafa; }
    .price-direct { color: var(--pine); font-weight: 700; font-size: 1rem; }
    .price-airbnb { color: #ff5a5f; font-weight: 700; font-size: 1rem; }
    .saving-cell  { color: #2a8a10; font-weight: 700; }
    .compare-note { font-size: .76rem; color: #aaa; text-align: center; margin-top: .7rem; }
    .compare-cta  { text-align: center; margin-top: 1.8rem; }
    @media (max-width: 600px) {
      .compare-table th, .compare-table td { padding: .6rem .7rem; font-size: .78rem; }
    }

    /* ─── MOBILE STICKY BAR ─── */
    .mobile-sticky-bar {
      display: none;
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
      background: white; border-top: 1px solid #eee;
      padding: .55rem .7rem env(safe-area-inset-bottom);
      gap: .45rem; box-shadow: 0 -4px 20px rgba(0,0,0,.12);
    }
    @media (max-width: 768px) {
      .mobile-sticky-bar { display: flex; }
      /* Les bulles flottantes et le bouton nav sont redondants avec la barre sticky */
      .floating-cta { display: none !important; }
      .whatsapp-btn { display: none !important; }
      .nav-cta { display: none !important; }
      /* Évite que la sticky bar cache le bas du contenu */
      body { padding-bottom: 4.5rem; }
    }
    .msb-btn {
      flex: 1; text-align: center; padding: .62rem .3rem;
      border-radius: 10px; font-size: .78rem; font-weight: 700;
      text-decoration: none; cursor: pointer; display: flex;
      align-items: center; justify-content: center; gap: .3rem;
      font-family: 'Inter', sans-serif; border: none;
    }
    .msb-tel      { background: var(--cream); color: var(--pine); border: 1.5px solid #ddd; }
    .msb-whatsapp { background: #25d366; color: white; }
    .msb-book     { background: var(--amber); color: white; }
    .msb-tel:hover { background: #e8e0d4; }
    .msb-whatsapp:hover { background: #20ba5a; }
    .msb-email { background: var(--pine); color: white; }
    .msb-email:hover { background: var(--forest); }
    .msb-book:hover { background: var(--brown); }

    /* ─── LEAFLET MAP ─── */
    #leafletMap { width: 100%; height: 550px; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 32px var(--shadow); }
    .leaflet-popup-content { font-family: 'Inter', sans-serif; font-size: .85rem; line-height: 1.5; }

    /* ─── CONTRAT (étape 5 du tunnel) ─── */
    .tcontrat-wrap {
      background: #fafaf8; border: 1px solid #e8e0d4; border-radius: 10px;
      overflow: hidden; margin-bottom: 1.4rem;
      font-size: .83rem;
    }
    .tcontrat-header {
      background: var(--pine); color: white; padding: .9rem 1.2rem;
      position: sticky; top: 0; z-index: 1;
    }
    .tcontrat-title { font-family: 'DM Serif Display', serif; font-size: 1rem; font-weight: 400; margin-bottom: .2rem; }
    .tcontrat-ref { font-size: .72rem; opacity: .6; }
    .tcontrat-body { padding: .4rem 0; }
    .tcontrat-section { padding: .8rem 1.2rem; border-bottom: 1px solid #eee; }
    .tcontrat-section:last-child { border-bottom: none; }
    .tcontrat-section-title {
      font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
      color: var(--muted); margin-bottom: .6rem;
    }
    .tcontrat-row {
      display: flex; justify-content: space-between; align-items: baseline;
      padding: .3rem 0; gap: 1rem; border-bottom: 1px solid #f4f0ec; font-size: .82rem;
    }
    .tcontrat-row:last-child { border-bottom: none; }
    .tcontrat-row span:first-child { color: var(--muted); flex-shrink: 0; min-width: 120px; font-size: .78rem; }
    .tcontrat-row span:last-child { color: var(--text); font-weight: 500; text-align: right; }
    .tcontrat-row-highlight span:last-child { color: var(--amber); font-weight: 700; }
    .tcontrat-cgl-list { margin: 0; padding-left: 1.1rem; display: flex; flex-direction: column; gap: .4rem; color: var(--text); line-height: 1.5; }
    .tcontrat-cgl-list li::marker { color: var(--gold); }


    /* Checkbox acceptation */
    .tcontrat-cgu-label {
      display: flex; gap: .7rem; align-items: flex-start; cursor: pointer;
      font-size: .83rem; color: var(--text); line-height: 1.55;
      background: white; border: 1.5px solid var(--warm); border-radius: 8px;
      padding: .9rem 1rem;
    }
    .tcontrat-cgu-label:has(input:checked) { border-color: var(--amber); background: #fdf8ec; }

    /* ═══════════════════════════════════════════════════════════
       TUNNEL DE RÉSERVATION
    ═══════════════════════════════════════════════════════════ */
    .tunnel-overlay {
      position: fixed; inset: 0; z-index: 9000;
      background: rgba(10,20,5,.72); backdrop-filter: blur(6px);
      display: flex; align-items: center; justify-content: center;
      opacity: 0; pointer-events: none;
      transition: opacity .28s ease;
    }
    .tunnel-overlay.open { opacity: 1; pointer-events: all; }

    .tunnel-modal {
      background: white; border-radius: 20px;
      width: min(1400px, 92vw); max-height: 92vh; min-height: 75vh;
      display: flex; flex-direction: column;
      box-shadow: 0 24px 80px rgba(0,0,0,.35);
      transform: translateY(30px) scale(.97);
      transition: transform .28s ease;
      overflow: hidden;
    }
    .tunnel-overlay.open .tunnel-modal { transform: translateY(0) scale(1); }

    /* Header */
    .tunnel-header {
      display: flex; align-items: center; gap: 1rem;
      padding: 1.1rem 1.6rem; border-bottom: 1px solid #eee;
      flex-shrink: 0;
    }
    .tunnel-logo { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--pine); flex: 1; }
    .tunnel-logo span { color: var(--amber); }
    .tunnel-close {
      background: none; border: none; cursor: pointer;
      font-size: 1.4rem; color: #999; line-height: 1;
      padding: .5rem .7rem; border-radius: 8px;
      transition: color .15s, background .15s;
      min-width: 44px; min-height: 44px; /* zone de tap iPhone */
      display: flex; align-items: center; justify-content: center;
    }
    .tunnel-close:hover { color: #333; background: #f0f0f0; }

    /* Progress */
    .tunnel-progress {
      padding: .8rem 1.6rem; border-bottom: 1px solid #eee;
      flex-shrink: 0; background: #fafaf8;
    }
    .tunnel-steps-bar {
      display: flex; align-items: center; gap: 0;
      max-width: 650px; margin: 0 auto;
    }
    .tbar-step {
      display: flex; flex-direction: column; align-items: center;
      flex: 1; position: relative;
    }
    .tbar-step::before {
      content: ''; position: absolute; top: 14px; left: 50%; right: -50%;
      height: 2px; background: #e0dbd4;
    }
    .tbar-step:last-child::before { display: none; }
    .tbar-step.done::before, .tbar-step.active::before { background: var(--forest); }
    .tbar-dot {
      width: 28px; height: 28px; border-radius: 50%;
      background: #e0dbd4; display: flex; align-items: center; justify-content: center;
      font-size: .7rem; font-weight: 700; color: #999; z-index: 1;
      transition: background .2s, color .2s;
    }
    .tbar-step.done .tbar-dot { background: var(--forest); color: white; }
    .tbar-step.active .tbar-dot { background: var(--amber); color: white; box-shadow: 0 0 0 4px rgba(200,132,42,.18); }
    .tbar-label { font-size: .62rem; color: #aaa; margin-top: .25rem; font-weight: 500; white-space: nowrap; }
    .tbar-step.active .tbar-label, .tbar-step.done .tbar-label { color: var(--pine); font-weight: 600; }

    /* Body layout */
    .tunnel-body {
      display: flex; flex: 1; overflow: hidden;
    }
    .tunnel-main {
      flex: 1; overflow-y: auto; padding: 2rem 2.5rem;
    }
    .tunnel-aside {
      width: 320px; background: #fafaf8; border-left: 1px solid #eee;
      padding: 1.6rem 1.5rem; overflow-y: auto; flex-shrink: 0;
    }

    /* Steps visibility */
    .tstep { display: none; }
    .tstep.active { display: block; }

    /* Step title */
    .tstep-title {
      font-family: 'Playfair Display', serif; font-size: 1.4rem;
      color: var(--pine); margin-bottom: .4rem;
    }
    .tstep-sub { font-size: .88rem; color: #777; margin-bottom: 1.6rem; }

    /* ── Step 1 : Logement ── */
    .tunnel-apt-cards { display: flex; flex-direction: column; gap: .9rem; }
    .tunnel-apt-card {
      border: 2px solid #e0dbd4; border-radius: 14px;
      padding: 1rem 1.2rem; cursor: pointer; transition: all .18s;
      display: flex; align-items: center; gap: 1rem;
    }
    .tunnel-apt-card:hover { border-color: var(--sage); box-shadow: 0 4px 16px rgba(0,0,0,.08); }
    .tunnel-apt-card.selected-apt1 { border-color: var(--apt1); background: rgba(61,107,159,.06); }
    .tunnel-apt-card.selected-apt2 { border-color: var(--apt2); background: rgba(14,158,130,.06); }
    .tunnel-apt-card.selected-both { border-color: var(--amber); background: rgba(200,132,42,.06); }
    .tac-icon { font-size: 2.2rem; flex-shrink: 0; }
    .tac-info { flex: 1; }
    .tac-name { font-weight: 700; color: var(--pine); font-size: 1rem; }
    .tac-desc { font-size: .82rem; color: #777; margin-top: .15rem; }
    .tac-price { font-size: .88rem; font-weight: 700; color: var(--amber); white-space: nowrap; }
    .tac-check { width: 22px; height: 22px; border-radius: 50%; border: 2px solid #ccc; flex-shrink: 0; transition: all .15s; }
    .tunnel-apt-card.selected-apt1 .tac-check { background: var(--apt1); border-color: var(--apt1); }
    .tunnel-apt-card.selected-apt2 .tac-check { background: var(--apt2); border-color: var(--apt2); }
    .tunnel-apt-card.selected-both .tac-check { background: var(--amber); border-color: var(--amber); }
    .tac-check::after {
      content: '✓'; display: flex; align-items: center; justify-content: center;
      width: 100%; height: 100%; color: white; font-size: .75rem; font-weight: 700; opacity: 0;
    }
    .tunnel-apt-card.selected-apt1 .tac-check::after,
    .tunnel-apt-card.selected-apt2 .tac-check::after,
    .tunnel-apt-card.selected-both .tac-check::after { opacity: 1; }

    /* ── Step 2 : Calendrier ── */
    .tcal-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
    .tcal-month-wrap { }
    .tcal-month-hd {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: .7rem;
    }
    .tcal-nav {
      background: none; border: 1px solid #ddd; border-radius: 6px;
      padding: .25rem .55rem; cursor: pointer; font-size: .9rem; color: #555;
      transition: background .15s;
    }
    .tcal-nav:hover { background: #f0ede8; }
    .tcal-month-name { font-weight: 700; font-size: .95rem; color: var(--pine); }
    .tcal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; }
    .tcal-dow {
      text-align: center; font-size: .65rem; font-weight: 700;
      color: #aaa; text-transform: uppercase; padding: .2rem 0;
    }
    .tcal-day {
      aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
      font-size: .8rem; border-radius: 6px; cursor: pointer; transition: background .12s, color .12s;
      position: relative; user-select: none; line-height: 1.1;
    }
    .tcal-price {
      font-size: .5rem; font-weight: 600; color: var(--amber); opacity: .85; margin-top: 1px;
    }
    .tcal-day.booked .tcal-price,
    .tcal-day.past .tcal-price { display: none; }
    .tcal-day.sel-start .tcal-price,
    .tcal-day.sel-end .tcal-price { color: #fff; opacity: .9; }
    .tcal-day.empty { cursor: default; }
    .tcal-day.past { color: #ccc; cursor: not-allowed; }
    .tcal-day.booked { background: #d94f00; color: #fff; cursor: not-allowed; text-decoration: line-through; }
    .tcal-day.sel-start, .tcal-day.sel-end {
      background: var(--amber); color: white; font-weight: 700; border-radius: 6px;
    }
    .tcal-day.in-range { background: rgba(200,132,42,.18); border-radius: 0; }
    .tcal-day.in-range.sel-start { border-radius: 6px 0 0 6px; }
    .tcal-day.in-range.sel-end { border-radius: 0 6px 6px 0; }
    .tcal-day:not(.past):not(.booked):not(.empty):hover { background: rgba(200,132,42,.3); }
    .tcal-day.sel-start:hover, .tcal-day.sel-end:hover { background: var(--amber); }
    .tcal-legend {
      display: flex; gap: 1rem; margin-top: .8rem; flex-wrap: wrap;
    }
    .tcal-legend-item { display: flex; align-items: center; gap: .35rem; font-size: .73rem; color: #888; }
    .tcal-legend-dot { width: 12px; height: 12px; border-radius: 3px; }

    /* ── Step 3 : Voyageurs ── */
    .tpax-row {
      display: flex; align-items: center; justify-content: space-between;
      padding: .9rem 0; border-bottom: 1px solid #f0ede8;
    }
    .tpax-row:last-child { border-bottom: none; }
    .tpax-label { font-weight: 600; color: var(--pine); font-size: .95rem; }
    .tpax-sub { font-size: .78rem; color: #999; margin-top: .1rem; }
    .tpax-ctrl { display: flex; align-items: center; gap: .7rem; }
    .tpax-btn {
      width: 32px; height: 32px; border-radius: 50%; border: 2px solid #ddd;
      background: white; font-size: 1.1rem; cursor: pointer; display: flex;
      align-items: center; justify-content: center; color: var(--pine);
      transition: border-color .15s, background .15s;
    }
    .tpax-btn:hover:not(:disabled) { border-color: var(--amber); background: rgba(200,132,42,.08); }
    .tpax-btn:disabled { opacity: .3; cursor: not-allowed; }
    .tpax-val { font-weight: 700; font-size: 1.05rem; color: var(--pine); min-width: 1.5rem; text-align: center; }
    .tpax-toggle {
      width: 44px; height: 24px; border-radius: 12px; background: #ddd;
      position: relative; cursor: pointer; transition: background .2s; border: none;
      flex-shrink: 0;
    }
    .tpax-toggle::after {
      content: ''; position: absolute; top: 3px; left: 3px;
      width: 18px; height: 18px; border-radius: 50%; background: white;
      transition: left .2s; box-shadow: 0 1px 4px rgba(0,0,0,.2);
    }
    .tpax-toggle.on { background: var(--forest); }
    .tpax-toggle.on::after { left: 23px; }

    .tpax-msg-label { font-weight: 600; font-size: .9rem; color: var(--pine); margin-bottom: .5rem; margin-top: 1.2rem; }
    .tpax-textarea {
      width: 100%; min-height: 80px; border: 1px solid #ddd; border-radius: 10px;
      padding: .7rem .9rem; font-family: 'Inter', sans-serif; font-size: .88rem; resize: vertical;
      outline: none; transition: border-color .15s;
    }
    .tpax-textarea:focus { border-color: var(--amber); }

    /* ── Step 4 : Coordonnées ── */
    .tcoord-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .tfield { display: flex; flex-direction: column; gap: .35rem; }
    .tfield.full { grid-column: 1/-1; }
    .tfield label { font-size: .82rem; font-weight: 600; color: var(--pine); }
    .tfield input {
      border: 1.5px solid #ddd; border-radius: 10px; padding: .65rem .9rem;
      font-family: 'Inter', sans-serif; font-size: .92rem; outline: none; transition: border-color .15s;
    }
    .tfield input:focus { border-color: var(--amber); }
    .tfield input.err { border-color: #e55; }

    /* ── Step 5 : Récap ── */
    .trecap-block {
      background: var(--cream); border-radius: 14px; padding: 1.2rem 1.4rem; margin-bottom: 1.2rem;
    }
    .trecap-row {
      display: flex; justify-content: space-between; align-items: baseline;
      font-size: .88rem; color: #555; margin-bottom: .4rem;
    }
    .trecap-row:last-child { margin-bottom: 0; }
    .trecap-row.total {
      font-size: 1.05rem; font-weight: 700; color: var(--pine);
      border-top: 1px solid #ddd; padding-top: .6rem; margin-top: .4rem;
    }
    .trecap-row.acompte { color: var(--amber); font-weight: 600; }
    .trecap-next {
      background: white; border: 1px solid #e0dbd4; border-radius: 14px;
      padding: 1.1rem 1.3rem; margin-bottom: 1.5rem;
    }
    .trecap-next h4 { font-size: .85rem; font-weight: 700; color: var(--pine); margin-bottom: .8rem; text-transform: uppercase; letter-spacing: .06em; }
    .trecap-step {
      display: flex; gap: .7rem; margin-bottom: .6rem; font-size: .83rem; color: #555;
    }
    .trecap-step-num {
      width: 22px; height: 22px; border-radius: 50%; background: var(--pine); color: white;
      font-size: .7rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }

    /* ── Step 6 : Succès ── */
    .tsuccess { text-align: center; padding: 1rem 0; }
    .tsuccess-icon { font-size: 4rem; margin-bottom: 1rem; }
    .tsuccess h2 { font-family: 'Playfair Display', serif; font-size: 1.7rem; color: var(--pine); margin-bottom: .6rem; }
    .tsuccess p { color: #666; line-height: 1.7; font-size: .92rem; max-width: 420px; margin: 0 auto 1.5rem; }
    .tsuccess-steps {
      display: flex; flex-direction: column; gap: .6rem;
      text-align: left; max-width: 380px; margin: 0 auto 2rem;
    }
    .tsuccess-step {
      display: flex; gap: .8rem; align-items: flex-start;
      background: var(--cream); border-radius: 10px; padding: .75rem 1rem; font-size: .85rem;
    }
    .tsuccess-step-num {
      width: 26px; height: 26px; border-radius: 50%; background: var(--forest); color: white;
      font-size: .75rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .tsuccess-step strong { display: block; color: var(--pine); font-size: .88rem; margin-bottom: .1rem; }

    /* Navigation buttons */
    .tunnel-nav {
      display: flex; justify-content: space-between; align-items: center;
      padding: 1rem 2rem; border-top: 1px solid #eee; flex-shrink: 0; background: white;
    }
    .tbtn {
      padding: .7rem 1.6rem; border-radius: 50px; font-size: .9rem; font-weight: 600;
      cursor: pointer; border: none; transition: all .18s; font-family: 'Inter', sans-serif;
    }
    .tbtn-back { background: #f0ede8; color: #555; }
    .tbtn-back:hover { background: #e5e0d8; color: var(--pine); }
    .tbtn-next { background: var(--amber); color: white; }
    .tbtn-next:hover { background: #a86e20; }
    .tbtn-next:disabled { background: #ccc; cursor: not-allowed; }
    .tbtn-submit { background: var(--pine); color: white; }
    .tbtn-submit:hover { background: var(--forest); }

    /* Summary aside */
    .taside-title { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: #aaa; margin-bottom: .8rem; }
    .taside-apt {
      display: inline-block; padding: .25rem .75rem; border-radius: 50px;
      font-size: .78rem; font-weight: 700; margin-bottom: .8rem;
    }
    .taside-apt.apt1 { background: rgba(61,107,159,.12); color: var(--apt1); }
    .taside-apt.apt2 { background: rgba(14,158,130,.12); color: var(--apt2); }
    .taside-apt.both { background: rgba(200,132,42,.12); color: var(--amber); }
    .taside-dates {
      font-size: .85rem; color: var(--pine); font-weight: 600; margin-bottom: .3rem;
    }
    .taside-nights { font-size: .78rem; color: #888; margin-bottom: 1rem; }
    .taside-price-rows { border-top: 1px solid #eee; padding-top: .8rem; }
    .taside-row {
      display: flex; justify-content: space-between; font-size: .8rem;
      color: #666; margin-bottom: .35rem;
    }
    .taside-row.total {
      font-weight: 700; color: var(--pine); font-size: .92rem;
      border-top: 1px solid #eee; padding-top: .5rem; margin-top: .3rem;
    }
    .taside-row.acompte { color: var(--amber); font-weight: 600; font-size: .82rem; }
    .taside-empty { font-size: .82rem; color: #bbb; font-style: italic; line-height: 1.6; }
    .taside-pax { font-size: .82rem; color: #666; margin-bottom: .4rem; }

    /* Tablette */
    @media (max-width: 960px) {
      .tunnel-modal { width: 96vw; }
      .tunnel-aside { width: 240px; padding: 1.2rem 1rem; }
      .tunnel-main { padding: 1.5rem 1.5rem; }
    }

    /* Mobile responsive */
    @media (max-width: 700px) {
      .tunnel-modal {
        width: 100%;
        max-height: var(--tunnel-max-h, 95vh);
        min-height: 0;
        border-radius: 20px 20px 0 0;
        align-self: flex-end;
      }
      .tunnel-overlay {
        align-items: flex-end;
      }
      .tunnel-aside { display: none; }
      .tunnel-main { padding: 1.2rem 1.1rem; }
      .tunnel-nav { padding: .85rem 1.1rem; }
      .tcal-wrap { grid-template-columns: 1fr; }
      .tcoord-grid { grid-template-columns: 1fr; }
      .tbar-label { display: none; }
    }
