/* ===================================================================
   CONFIGURATION GLOBALE (VARIABLES & RESET)
   =================================================================== */

   :root {
    /* Palette de couleurs */
    --color-background: #121212;
    --color-background-alt: #1A1A1A; /* Plus clair pour les cartes */
    --color-background-card: #0E0E0E; /* Plus sombre pour certaines cartes */
    --color-primary: #B48C63;
    --color-text-light: #F5F5F5;
    --color-text-medium: #a0a0a0;
    --color-border: #2a2a2a;
  
    /* Typographie */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Jost', sans-serif;
    --font-logo: 'Cinzel Decorative', serif;
  
    /* Layout & Effets */
    --header-h: 70px;
    --container-width: 1140px;
    --border-radius: 12px;
    --transition-smooth: all 0.35s cubic-bezier(.25, .8, .25, 1);
    --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.3);
  }
  
  /* Reset de base */
  *, *::before, *::after {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    font-size: 16px;
    /* Fixe le décalage des ancres à cause du header fixe */
    scroll-padding-top: calc(var(--header-h) + 20px);
  }
  
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text-light);
  background: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.theme-light {
  --color-background: #f8f4ef;
  --color-background-alt: #ffffff;
  --color-background-card: #fffbf5;
  --color-border: #e2d7ca;
  --color-text-light: #201b16;
  --color-text-medium: #5f5348;
  background: var(--color-background);
  color: var(--color-text-light);
}
body.theme-light h1,
body.theme-light h2,
body.theme-light h3,
body.theme-light h4,
body.theme-light h5,
body.theme-light h6 {
  color: #201b16;
}
body.theme-light p {
  color: #5f5348;
}
  
  img {
    max-width: 100%;
    display: block;
    height: auto;
  }
  
  /* ===================================================================
     TYPOGRAPHIE & ÉLÉMENTS DE BASE
     =================================================================== */
  
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-light);
    margin: 0 0 1rem;
    letter-spacing: 0.5px;
  }
  
  p {
    line-height: 1.7;
    color: var(--color-text-medium);
    margin: 0 0 1.25rem;
  }
  
  p:last-child {
    margin-bottom: 0;
  }
  
  a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
  }
  a:hover {
    filter: brightness(1.2);
  }
  
  /* Layout */
  .container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
.section {
  padding: 6rem 0;
  border-bottom: 1px solid var(--color-border);
}
body.theme-light .section {
  border-color: #eadfd3;
}
  
  /* Animations de fondu */
  .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s ease-out, transform .8s ease-out;
  }
  .fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* ===================================================================
     HEADER & NAVIGATION
     =================================================================== */
  
  .main-header {
    position: fixed;
    inset: 0 0 auto 0;
    height: var(--header-h);
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .7), transparent);
    transition: background-color .3s ease, backdrop-filter .3s ease, box-shadow .3s ease;
  }
  
  .main-header.scrolled {
    background: rgba(18, 18, 18, .85);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .25);
  }
  
  .header-container {
    max-width: 1400px; /* Plus large pour la nav */
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
  }
  
  .brand {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: var(--color-text-light);
  }
  .logo-img { max-height: 42px; }
  .logo-text {
    font-family: var(--font-logo);
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 1px;
  }
  .logo-text .dot, .hero-title .dot { color: var(--color-primary); }
  
  /* Navigation principale */
  .main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
  }
  
  .main-nav a {
    color: var(--color-text-light);
    font-weight: 500;
    font-size: 0.95rem;
    font-family: var(--font-body);
    position: relative;
    padding: .35rem 0;
    letter-spacing: 0.5px;
  }
  .main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 2px;
    width: 0;
    background: var(--color-primary);
    transition: width .35s ease;
  }
  .main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
  .main-nav a:hover { color: var(--color-primary); }
.main-nav a.nav-button {
  padding: .85rem 1.25rem;
}
.main-nav a:not(.nav-button) {
  padding: .35rem 0;
}

/* Bouton Contact dans la Nav */
.nav-button {
  background: var(--color-primary);
    color: var(--color-background);
    font-weight: 600;
    padding: 0.2rem 0.5rem 0.2rem 0.5rem !important;
    border-radius: 6px;
    transition: var(--transition-smooth);
  }
  .nav-button:hover {
    background: var(--color-text-light);
    color: var(--color-background);
    filter: none;
  }
  .nav-button::after { display: none !important; }
  body.theme-light .brand,
  body.theme-light .main-nav a,
  body.theme-light .theme-switch,
  body.theme-light .nav-button {
    color: #fff;
  }
  body.theme-light .nav-button {
    background: rgba(255,255,255,0.2);
    color: #fff;
  }
  body.theme-light .nav-button:hover {
    background: #fff;
    color: #111;
  }
  body.theme-light .main-nav a::after {
    background: #fff;
  }
  body.theme-light .main-header.scrolled {
    background: rgba(255,255,255,0.92);
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  }
  body.theme-light .main-header.scrolled .brand,
  body.theme-light .main-header.scrolled .main-nav a,
  body.theme-light .main-header.scrolled .theme-switch {
    color: #1f1b16;
  }
  body.theme-light .main-header.scrolled .main-nav a::after {
    background: var(--color-primary);
  }
  body.theme-light .main-header.scrolled .nav-button {
    background: var(--color-primary);
    color: #fff;
  }
  body.theme-light .main-header.scrolled .nav-button:hover {
    background: #1f1b16;
  }
  /* Maintient des contrastes du menu mobile quand on a scrollé la page */
  body.theme-light .main-header.scrolled .main-nav.is-open a,
  body.theme-light .main-header.scrolled .main-nav.is-open .nav-button {
    color: #fff;
  }
  body.theme-light .main-header.scrolled .main-nav.is-open .nav-button {
    background: rgba(255,255,255,0.2);
  }
  body.theme-light .main-header.scrolled .main-nav.is-open .nav-button:hover {
    background: #fff;
    color: #111;
  }
  body.theme-light .main-header.scrolled .main-nav.is-open a::after {
    background: #fff;
  }
  body.theme-light .main-header.scrolled .menu-toggle.is-active span {
    background: #fff;
  }
  
  .theme-switch {
    margin-left: 1rem;
    position: relative;
    display: inline-flex;
    align-items: center;
  }
  .checkbox {
    --toggle-height: 34px;
    --toggle-width: calc(var(--toggle-height) * 2);
    height: var(--toggle-height);
    width: var(--toggle-width);
    background: #222;
    appearance: none;
    -webkit-appearance: none;
    border: none;
    border-radius: var(--toggle-height);
    box-shadow: inset 0 8px 60px rgba(0,0,0,0.1),
                inset 0 8px 8px rgba(0,0,0,0.1),
                inset 0 -4px 4px rgba(0,0,0,0.1);
    position: relative;
    outline: none;
    cursor: pointer;
    transition: 0.5s;
    display: inline-block;
  }
  .checkbox::before{
    height: var(--toggle-height);
    width: var(--toggle-height);
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background: linear-gradient(to bottom,#444,#222);
    border-radius: var(--toggle-height);
    transform: scale(0.9);
    transition: 0.5s;
    box-shadow: 0 8px 40px rgba(0,0,0,0.5),
                inset 4px 4px rgba(255,255,255,0.2),
                inset -4px 4px rgba(255,255,255,0.2);
  }
  .checkbox:checked{
    background: #fff;
    box-shadow: inset 0 2px 60px rgba(0,0,0,0.1),
                inset 0 2px 8px rgba(0,0,0,0.1),
                inset 0 -4px 4px rgba(0,0,0,0.05);
  }
  .checkbox:checked::before{
    left: var(--toggle-height);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1),
                inset 4px 4px rgba(255,255,255,1),
                inset -4px 4px rgba(255,255,255,1);
    background: linear-gradient(to bottom,#eaeaea,#f9f9f9);
  }
  .checkbox:focus-visible {
    box-shadow: inset 0 8px 60px rgba(0,0,0,0.15),
                inset 0 8px 8px rgba(0,0,0,0.1),
                inset 0 -4px 4px rgba(0,0,0,0.08),
                0 0 0 3px rgba(255,255,255,0.35);
  }
  .theme-switch__sr {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }
  
  /* Menu Burger (Mobile) */
  .menu-toggle {
    display: none;
    width: 28px;
    height: 22px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    background: none;
    border: 0;
    z-index: 1002;
  }
  .menu-toggle span {
    width: 100%;
    height: 2px;
    background: var(--color-text-light);
    transition: all .3s;
  }
  .menu-toggle.is-active span { background: var(--color-text-light); }
  .menu-toggle.is-active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
  .menu-toggle.is-active span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
  
  
  /* ===================================================================
     SECTION HERO
     =================================================================== */
  
  .hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 0 1.5rem;
  }
  
  .hero-background-overlay {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .5); /* Overlay plus sombre */
    z-index: 1;
  }
  
  .hero-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    filter: brightness(0.9);
    animation: slow-zoom 24s infinite alternate ease-in-out;
  }
  @keyframes slow-zoom { from { transform: scale(1); } to { transform: scale(1.1); } }
  
  .hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInHero 1.6s ease-out;
  }
  
  .hero-title {
    font-family: var(--font-logo);
    font-size: 5rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin: 0 0 0.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    font-weight: 300;
    margin-bottom: 2.5rem;
  }
  
  @keyframes fadeInHero { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
  
  /* Bouton CTA Principal */
  .cta-button {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-background);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.9rem 2.5rem;
    border-radius: 8px;
    border: 2px solid var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  .cta-button:hover {
    background: transparent;
    color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    filter: none;
  }
  .cta-button--outline {
    background: transparent;
    color: var(--color-primary);
  }
  .cta-button--outline:hover {
    background: var(--color-primary);
    color: var(--color-background);
  }

  .hero-highlights {
    margin: 2.5rem auto 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 240px));
    justify-content: center;
    gap: 1rem;
    max-width: 900px;
  }
  .hero-highlights li {
    text-align: left;
    padding: 1rem 1.25rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(10, 10, 10, 0.55);
    backdrop-filter: blur(6px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.3);
  }
  .hero-highlight-title {
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.8rem;
    color: var(--color-text-light);
    opacity: 0.85;
  }
  .hero-highlight-text {
    display: block;
    margin-top: 0.35rem;
    color: var(--color-text-light);
    font-size: 0.95rem;
  }
  body.theme-light .hero-content,
  body.theme-light .hero-title,
  body.theme-light .hero-subtitle,
  body.theme-light .hero-highlights .hero-highlight-title,
  body.theme-light .hero-highlights .hero-highlight-text {
    color: #fff;
  }
  body.theme-light .hero-highlights li {
    border-color: rgba(255,255,255,0.2);
    background: rgba(0,0,0,0.55);
  }

  /* ===================================================================
     EN-TÊTES DE SECTION
     =================================================================== */

  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .section-header h2 {
    font-size: 3rem; /* Plus grand */
    display: inline-block;
    position: relative;
    margin-bottom: 1.5rem;
  }
  
  .section-header h2::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -12px;
    width: 70px; /* Plus long */
    height: 3px; /* Plus épais */
    background: var(--color-primary);
  }
  
  .section-header p {
    max-width: 680px;
    margin: 1rem auto 0;
    font-size: 1.1rem;
  }
  
  /* Cas spécifique de la section "Bienvenue" (plus centrée) */
  .welcome-container {
    max-width: 800px;
  }
  .welcome-container p {
    font-size: 1.15rem;
    line-height: 1.8;
  }
  .welcome-grid {
    display: grid;
    gap: 2.5rem;
  }
  .welcome-details {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 260px));
    justify-content: center;
  }
  .detail-card {
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 1.25rem;
    background: var(--color-background-alt);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  }
  .detail-title {
    margin: 0 0 0.35rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-light);
  }
  .detail-text {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-text-medium);
  }

  /* ===================================================================
     SECTION CHAMBRES
     =================================================================== */
  .stay-brief {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
    padding: 1.5rem;
    margin-bottom: 3rem;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    background: var(--color-background-alt);
    box-shadow: 0 5px 20px rgba(0,0,0,0.25);
  }
  .brief-item {
    padding: 1rem;
    border-radius: 10px;
    background: var(--color-background-card);
    border: 1px solid rgba(255,255,255,0.05);
  }
  .brief-item p {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    color: var(--color-text-medium);
  }
  .brief-item strong {
    display: block;
    margin-top: 0.35rem;
    font-size: 1.35rem;
    font-family: var(--font-heading);
    color: var(--color-text-light);
  }
  .brief-item--cta {
    background: linear-gradient(135deg, rgba(180,140,99,0.15), rgba(180,140,99,0.05));
    border-color: rgba(180,140,99,0.3);
  }
  .brief-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.35rem;
    font-weight: 600;
    color: var(--color-primary);
  }
  .brief-link::after {
    content: "→";
    transition: transform 0.3s ease;
  }
  .brief-link:hover::after {
    transform: translateX(4px);
  }

  .rooms-layout {
    display: grid;
    gap: 2rem;
  }
  
  .rooms-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
  }
  
  .room-card {
    background: var(--color-background-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
  }
  
  .room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
  }
  
  .room-card-content {
    padding: 2rem;
    border-top: 1px solid var(--color-border);
    flex-grow: 1; /* Permet aux cartes d'avoir la même hauteur */
    display: flex;
    flex-direction: column;
  }
  
  .room-card-content h3 {
    margin: 0 0 0.75rem;
    font-size: 2rem;
    color: var(--color-primary);
  }
  
  .room-card-description {
    margin: 0 0 1.5rem;
    font-size: 1rem;
    flex-grow: 1;
  }
  
  .room-card-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
    font-size: 0.95rem;
  }
  
  .room-card-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-text-medium);
  }
  .room-card-features strong {
    color: var(--color-text-light);
    font-weight: 500;
  }

  .room-card-actions {
    margin-top: 1.35rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
  }
  .room-card-actions .cta-button {
    font-size: 0.95rem;
    padding: 0.75rem 1.6rem;
  }
  
  /* Slider dans les cartes */
  .room-slider {
    position: relative;
    width: 100%;
    height: 300px; /* Hauteur fixe pour les cartes standards */
    overflow: hidden;
    background: #000;
  }
  .room-slider .slides { position: relative; width: 100%; height: 100%; }
  .room-slider .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity .5s ease, transform .5s ease;
  }
  .room-slider .slide.is-active { opacity: 1; transform: scale(1); }
  
  .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .35);
    background: rgba(0, 0, 0, .35);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    backdrop-filter: blur(3px);
    z-index: 3;
  }
  .slider-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-50%) scale(1.05);
  }
  .slider-btn.prev { left: 12px; }
  .slider-btn.next { right: 12px; }
  
  /* Layout Desktop pour les chambres */
  @media (min-width: 900px) {
    .rooms-grid {
      grid-template-columns: 1fr 1fr;
    }
    
    /* Mise en page spéciale pour la Suite Saphir */
    .room-card-featured {
      flex-direction: row;
      align-items: stretch;
    }
    .room-card-featured .room-slider {
      width: 60%;
      height: auto; /* Hauteur contrôlée par flex */
    }
    .room-card-featured .room-card-content {
      width: 40%;
      border-top: none;
      border-left: 1px solid var(--color-border);
      justify-content: center; /* Centre le contenu verticalement */
    }
  }
  
  /* ===================================================================
     SECTION JACUZZI
     =================================================================== */
  
  .jacuzzi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }
  
  .jacuzzi-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    margin: 0;
  }
  .jacuzzi-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
  }
  
  .jacuzzi-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition-smooth);
    display: block;
  }
  .jacuzzi-card:hover img {
    transform: scale(1.05);
  }
  .jacuzzi-video-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: inherit;
    background: #000;
  }
  .jacuzzi-video-wrapper video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity .95s ease, transform var(--transition-smooth);
    pointer-events: none;
    z-index: 1;
  }
  .jacuzzi-video-wrapper video.is-active {
    opacity: 1;
    z-index: 2;
  }
  .jacuzzi-card:hover .jacuzzi-video-wrapper video.is-active {
    transform: scale(1.05);
  }
  
  .jacuzzi-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
    color: var(--color-text-light);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
  }
  
  .jacuzzi-card:hover .jacuzzi-card-overlay {
    opacity: 1;
    transform: translateY(0);
  }
  
  .jacuzzi-card-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 0.25rem;
  }
  .jacuzzi-card-overlay p {
    color: var(--color-text-medium);
    margin: 0;
  }
  body.theme-light .jacuzzi-card-overlay h3,
  body.theme-light .jacuzzi-card-overlay p {
    color: #ffffff;
  }
  
  @media (min-width: 900px) {
    .jacuzzi-grid { grid-template-columns: repeat(4, 1fr); }
  
    .jacuzzi-grid .jacuzzi-card:nth-child(1) { 
      grid-column: span 2; 
    }
  
    .jacuzzi-grid .jacuzzi-card:nth-child(4) { 
      grid-column: 1 / -1; /* prend les 4 colonnes = plus de vide */
    }
  }
  
  
  /* ===================================================================
     SECTION SERVICES
     =================================================================== */
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.75rem;
  }
  
  .service-item {
    position: relative;
    padding: 2.5rem 2.25rem;
    background: radial-gradient(circle at top, rgba(180,140,99,0.12), transparent 60%) var(--color-background-card);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 25px 35px rgba(0,0,0,0.25);
    transition: transform .45s ease, box-shadow .45s ease, border-color .45s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .service-item::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.04);
    pointer-events: none;
  }
  .service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(0,0,0,0.35);
    border-color: rgba(180,140,99,0.35);
  }
  .service-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(180,140,99,0.15), rgba(180,140,99,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(180,140,99,0.35);
  }
  .service-icon {
    width: 42px;
    height: auto;
    filter: none;
  }
  .service-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1rem;
    text-align: center;
  }
  .service-pill {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-primary);
    border: 1px solid rgba(180,140,99,0.4);
    border-radius: 999px;
    padding: 0.25rem 0.85rem;
    background: rgba(180,140,99,0.1);
  }
  .service-item h3 {
    margin: 0;
    font-size: 1.7rem;
    color: var(--color-text-light);
    text-align: center;
  }
  .service-description {
    margin: 0 0 1rem;
    color: var(--color-text-medium);
    min-height: 60px;
    text-align: center;
    max-width: 260px;
  }
  .service-meta {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
  }
  .service-meta li {
    position: relative;
    padding: 0.4rem 0.95rem;
    color: var(--color-text-light);
    border-radius: 999px;
    border: 1px solid rgba(180,140,99,0.35);
    background: rgba(180,140,99,0.12);
    font-size: 0.95rem;
  }
  .service-meta li::before {
    display: none;
  }
  
  /* ===================================================================
     SECTION EXPÉRIENCE
     =================================================================== */
  .section-contrast {
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.95), rgba(12, 12, 12, 0.95));
  }
  body.theme-light .section-contrast {
    background: linear-gradient(180deg, rgba(248, 244, 239, 0.95), rgba(239, 231, 222, 0.95));
  }
  .experience-steps {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
  }
  .experience-step {
    position: relative;
    padding: 1.75rem 1.5rem 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border);
    background: var(--color-background-card);
    min-height: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  }
  body.theme-light .experience-step {
    background: #ffffff;
    border-color: #e6d8cc;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  }
  .experience-step h3 {
    font-size: 1.4rem;
    margin-top: 0.5rem;
  }
  .experience-step p {
    margin-bottom: 0;
  }
  .step-index {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.4em;
    color: var(--color-primary);
  }
  body.theme-light .experience-step p {
    color: #4e4238;
  }
  .experience-cta {
    margin-top: 3rem;
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(180, 140, 99, 0.35);
    background: rgba(180, 140, 99, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  body.theme-light .experience-cta {
    border-color: rgba(180, 140, 99, 0.45);
    background: rgba(180, 140, 99, 0.12);
    color: #3a2f26;
  }
  .experience-cta h3 {
    margin: 0 0 0.5rem;
  }
  
  /* ===================================================================
     SECTION GALERIE
     =================================================================== */
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
  }
  
  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    background: var(--color-background-card);
    transition: var(--transition-smooth);
    margin: 0;
    aspect-ratio: 4 / 3;
  }
  
  .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.96) contrast(1.02);
    transition: var(--transition-smooth);
    cursor: pointer;
  }
  
  .gallery-item:hover img {
    transform: scale(1.05);
    filter: saturate(1.1) contrast(1.05);
  }
  
  /* ===================================================================
     FOOTER
     =================================================================== */
  
.main-footer {
  margin-top: 4rem;
  border-top: 1px solid var(--color-border);
  background: var(--color-background-card);
  color: var(--color-text-medium);
    padding: 2.5rem 1rem;
  }
  
  .footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
  }
  
  .footer-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    background: var(--color-background);
    transition: var(--transition-smooth);
  }
.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: var(--color-text-medium);
  transition: var(--transition-smooth);
}

.footer-socials a:hover {
  transform: translateY(-3px);
  border-color: var(--color-primary);
  background: var(--color-primary);
}
.footer-socials a:hover svg {
  fill: var(--color-background);
}

body.theme-light .main-footer {
  background: #efe3d6;
  color: #5c5248;
}
body.theme-light .footer-socials a {
  background: #fff;
  border-color: #d9ccbe;
}
body.theme-light .footer-socials svg {
  fill: #5c5248;
}
  
  .copyright {
    font-size: .9rem;
    color: #9a9a9a;
    opacity: .9;
  }
  
  /* ===================================================================
     MODALE CONTACT & LIGHTBOX (Styling JS)
     =================================================================== */
  
  /* --- Modale --- */
  .modal {
    overflow-y: auto;
    position: fixed;
    inset: 0;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    transition: opacity .45s cubic-bezier(.22, .61, .36, 1), visibility 0s linear .45s;
  }
  
  .modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity .5s cubic-bezier(.22, .61, .36, 1), visibility 0s;
  }
  
  .modal-content {
    background-color: var(--color-background-alt);
    border: 1px solid var(--color-border);
    margin: 8vh auto;
    padding: 2.5rem;
    width: min(92vw, 480px);
    position: relative;
    text-align: center;
    border-radius: var(--border-radius);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
    transform: translateY(14px) scale(.985);
    opacity: 0;
    filter: blur(.6px);
    transition: transform .5s cubic-bezier(.22, 1, .36, 1), opacity .45s ease-out, filter .45s ease-out;
  }
  
  .modal.is-open .modal-content {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
  }
  
  .close-btn {
    color: var(--color-text-medium);
    position: absolute;
    top: 10px;
    right: 18px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition-smooth);
  }
  .close-btn:hover, .close-btn:focus {
    color: var(--color-primary);
    transform: scale(1.06);
  }
  
  .modal-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .modal-logo {
    max-width: 80px;
    height: auto;
    margin-bottom: 0.5rem;
  }
  .logo-text-modal {
    font-family: var(--font-logo);
    font-size: 2rem;
    color: var(--color-text-light);
  }
  .logo-text-modal .dot { color: var(--color-primary); }
  
  .modal-body p { margin: 0.5rem 0; font-size: 1rem; }
  .modal-body p a { font-weight: 500; }
  
  .map-container {
    margin-top: 1.5rem;
    overflow: hidden;
    border-radius: var(--border-radius);
  }
  .contact-actions {
    margin: 1rem 0 1.5rem;
    display: flex;
    justify-content: center;
  }
  .contact-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1.2rem;
    border-radius: 999px;
    background: transparent;
    color: var(--color-primary);
    font-weight: 600;
    letter-spacing: 0.05em;
    border: 1px solid rgba(180,140,99,0.6);
    text-transform: uppercase;
  }
  .contact-cta:hover {
    background: rgba(180,140,99,0.08);
  }

  /* --- Formulaire de contact rapide --- */
  .contact-toggle-btn {
    margin: 1.5rem 0 0;
    width: 100%;
    padding: .85rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--color-border);
    background: var(--color-background-card);
    color: var(--color-text-light);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
  }
  .contact-toggle-btn:hover {
    border-color: var(--color-primary);
    background: var(--color-background-alt);
  }
  
  .contact-collapse {
    overflow: hidden;
    transition: height .4s ease, opacity .35s ease, transform .35s ease;
    opacity: 0;
    transform: translateY(6px);
  }
  .contact-collapse.is-open {
    opacity: 1;
    transform: translateY(0);
  }
  
  .contact-form {
    margin-top: 1.5rem;
    padding: 1.5rem;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    background: var(--color-background-card);
    text-align: left;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  .form-row:last-of-type { margin-bottom: 0; }
  .form-row .full { grid-column: 1 / -1; }
  .form-field label {
    display: block;
    margin-bottom: .35rem;
    color: var(--color-text-light);
    font-size: .9rem;
  }
  .form-field input, .form-field textarea {
    width: 100%;
    padding: .75rem .85rem;
    border-radius: 8px;
    border: 1px solid var(--color-border);
    background: var(--color-background);
    color: var(--color-text-light);
    transition: var(--transition-smooth);
    font-family: var(--font-body);
  }
  .form-field input:focus, .form-field textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: var(--color-background-alt);
  }
  .hp-field { position: absolute; left: -10000px; }
  .form-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
  }
  .form-note { color: var(--color-text-medium); font-size: .9rem; margin: 0; }
  
  .send-button {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-background);
    font-family: var(--font-body);
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    border: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
  }
  .send-button:hover { filter: brightness(1.15); }
  .form-feedback { margin-top: .75rem; min-height: 1.25rem; }
  
  
  /* --- Lightbox --- */
  .lightbox {
    position: fixed;
    inset: 0;
    z-index: 1002;
    display: none;
  }
  .lightbox.is-open { display: block; }
  .lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .8);
    backdrop-filter: blur(6px);
    animation: lbFade .25s ease-out;
  }
  .lightbox__inner {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 4rem 3.5rem;
  }
  .lightbox__img {
    max-width: 92vw;
    max-height: 86vh;
    border: 1px solid var(--color-border);
    background: var(--color-background-card);
    border-radius: var(--border-radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .45);
    animation: lbZoom .25s ease-out;
  }
  .lightbox__btn {
    position: absolute;
    z-index: 1;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .35);
    background: rgba(0, 0, 0, .45);
    color: #fff;
    font-size: 22px;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    backdrop-filter: blur(3px);
  }
  .lightbox__btn:hover {
    transform: scale(1.05);
    background: var(--color-primary);
    border-color: var(--color-primary);
  }
  .lightbox__btn--close { top: 18px; right: 20px; font-size: 24px; }
  .lightbox__btn--prev { left: 18px; top: 50%; transform: translateY(-50%); }
  .lightbox__btn--next { right: 18px; top: 50%; transform: translateY(-50%); }
  
  @keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes lbZoom {
    from { opacity: 0; transform: translateY(6px) scale(.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }

  /* ===================================================================
     PAGE SIMULATEUR DE SÉJOUR
     =================================================================== */

  body.simulator-page {
    background:
      radial-gradient(circle at 15% 20%, rgba(180,140,99,0.13), transparent 35%),
      radial-gradient(circle at 80% 5%, rgba(255,255,255,0.06), transparent 30%),
      linear-gradient(135deg, #0a0a0a 0%, #111 40%, #0b0b0b 100%);
    min-height: 100vh;
    padding-top: var(--header-h);
  }
  body.theme-light.simulator-page {
    background:
      radial-gradient(circle at 18% 18%, rgba(180,140,99,0.16), transparent 32%),
      linear-gradient(140deg, #f4ebe1 0%, #fdf9f4 60%, #f1e5d8 100%);
  }

  .sim-hero {
    position: relative;
    overflow: hidden;
    padding: calc(var(--header-h) + 2rem) 0 4rem;
  }
  .sim-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 75% 10%, rgba(180,140,99,0.18), transparent 34%);
    opacity: .75;
    pointer-events: none;
  }
  .sim-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: center;
  }
  .sim-hero-text h1 {
    font-size: clamp(2.6rem, 4vw, 3.4rem);
    margin-bottom: 1rem;
  }
  .sim-hero-lead {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 640px;
    margin-bottom: 1.5rem;
  }
  .sim-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 1.4rem;
  }
  .sim-hero-badges span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(180,140,99,0.12);
    border: 1px solid rgba(180,140,99,0.35);
    color: var(--color-text-light);
    font-weight: 500;
    letter-spacing: 0.02em;
  }
  .sim-hero-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
  }
  .sim-hero-card {
    position: relative;
    background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(180,140,99,0.08));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 1.8rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.32);
    overflow: hidden;
  }
  body.theme-light .sim-hero-card {
    background: linear-gradient(160deg, rgba(255,255,255,0.8), rgba(180,140,99,0.18));
    border-color: rgba(0,0,0,0.05);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
  }
  .sim-hero-card::before {
    content: "";
    position: absolute;
    right: -40px;
    top: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(180,140,99,0.35), transparent 60%);
    filter: blur(4px);
  }
  .sim-hero-card__header h2 { margin: 0.2rem 0 0.75rem; }
  .sim-hero-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.9rem;
  }
  .sim-hero-steps li {
    padding: 0.85rem 0.95rem;
    border-radius: 12px;
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.05);
  }
  .sim-hero-steps strong {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--color-text-light);
    letter-spacing: 0.02em;
  }
  .sim-hero-steps span { color: var(--color-text-medium); }
  body.theme-light .sim-hero-steps li { background: rgba(255,255,255,0.75); border-color: rgba(0,0,0,0.05); }
  .sim-hero-note {
    margin-top: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
  }

  .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.75rem;
    color: var(--color-primary);
    margin: 0;
  }

  .simulator-section {
    border: none;
    padding-top: 1rem;
  }
  .simulator-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.9fr);
    gap: 1.5rem;
    align-items: start;
  }
  .simulator-panel {
    background: var(--color-background-card);
    border: 1px solid var(--color-border);
    border-radius: 18px;
    padding: 1.75rem;
    box-shadow: 0 18px 40px rgba(0,0,0,0.25);
  }
  .simulator-dates { margin-bottom: 1.2rem; }
  .sim-date-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    align-items: end;
  }
  .sim-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    background: var(--color-background);
    padding: 0.9rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--color-border);
  }
  .sim-field span { font-weight: 600; font-size: 0.95rem; color: var(--color-text-light); }
  .sim-field input,
  .sim-field select {
    width: 100%;
    padding: 0.75rem 0.9rem;
    background: var(--color-background-card);
    border: 1px solid var(--color-border);
    color: var(--color-text-light);
    border-radius: 10px;
    font-family: var(--font-body);
    transition: var(--transition-smooth);
  }
  .sim-field input:focus,
  .sim-field select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(180,140,99,0.15);
  }
  .sim-field small { color: var(--color-text-medium); }

  .sim-nights {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1rem;
    background: rgba(180,140,99,0.16);
    border: 1px solid rgba(180,140,99,0.45);
    border-radius: 12px;
    font-weight: 700;
    color: var(--color-text-light);
    min-height: 58px;
    text-align: center;
  }

  .rooms-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.25rem;
  }

  .sim-room-card {
    background: linear-gradient(160deg, rgba(255,255,255,0.02), rgba(180,140,99,0.05));
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 1.1rem;
    box-shadow: 0 10px 26px rgba(0,0,0,0.18);
  }
  body.theme-light .sim-room-card {
    background: linear-gradient(160deg, rgba(255,255,255,0.9), rgba(180,140,99,0.12));
    border-color: rgba(0,0,0,0.05);
  }
  .sim-room-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.6rem;
  }
  .sim-room-head h4 {
    margin: 0.1rem 0;
    font-size: 1.35rem;
  }
  .sim-room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0.9rem;
  }
  .sim-option-card {
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 0.9rem 1rem;
    background: var(--color-background);
    min-height: 120px;
  }
  .sim-option-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.35rem;
  }
  .sim-option-head strong { color: var(--color-text-light); }
  .sim-option-head .eyebrow { letter-spacing: 0.12em; }
  .sim-check {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0;
    cursor: pointer;
  }
  .sim-check input {
    accent-color: var(--color-primary);
    width: 18px;
    height: 18px;
  }
  .sim-check span { color: var(--color-text-light); font-weight: 500; }
  .sim-room-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.8rem;
    padding-top: 0.6rem;
    border-top: 1px dashed var(--color-border);
  }
  .sim-room-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    background: rgba(180,140,99,0.12);
    border: 1px solid rgba(180,140,99,0.25);
    color: var(--color-text-light);
    font-weight: 600;
  }
  .sim-room-total {
    font-size: 1.2rem;
    color: var(--color-text-light);
  }

  .pill-button {
    background: transparent;
    border: 1px solid rgba(180,140,99,0.45);
    color: var(--color-text-light);
    border-radius: 999px;
    padding: 0.4rem 0.85rem;
    cursor: pointer;
    transition: var(--transition-smooth);
  }
  .pill-button:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-1px);
  }
  .pill-button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
  }

  .sim-actions {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: space-between;
  }
  .ghost-button {
    background: transparent;
    color: var(--color-primary);
    border: 1px dashed rgba(180,140,99,0.6);
    border-radius: 10px;
    padding: 0.8rem 1.1rem;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-smooth);
  }
  .ghost-button:hover {
    background: rgba(180,140,99,0.1);
    transform: translateY(-1px);
  }
  .sim-muted {
    color: var(--color-text-medium);
    margin: 0;
  }

  .simulator-summary {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
    background: linear-gradient(180deg, var(--color-background-card), var(--color-background));
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 18px 36px rgba(0,0,0,0.28);
  }
  body.theme-light .simulator-summary {
    background: linear-gradient(180deg, #fff, #f5ede4);
    box-shadow: 0 18px 36px rgba(0,0,0,0.12);
  }
  .summary-rooms {
    display: grid;
    gap: 0.9rem;
    margin: 1rem 0;
  }
  .summary-room {
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 0.9rem 1rem;
    background: var(--color-background);
  }
  .summary-room__title {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
  }
  .summary-room__options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
  }
  .summary-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.45rem 0.7rem;
    border-radius: 10px;
    border: 1px solid rgba(180,140,99,0.35);
    background: rgba(180,140,99,0.12);
    color: var(--color-text-light);
    font-size: 0.95rem;
  }
  .summary-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    background: rgba(180,140,99,0.15);
    border: 1px solid rgba(180,140,99,0.4);
    font-size: 1.05rem;
  }
  .summary-total strong {
    font-size: 1.35rem;
    color: var(--color-text-light);
  }
  .summary-note {
    font-size: 0.95rem;
    color: var(--color-text-medium);
    margin-top: 0.85rem;
  }
  .summary-actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1rem;
  }
  .sim-small { font-size: 0.92rem; }

  .sim-noscript {
    margin-top: 1.2rem;
    padding: 1rem 1.2rem;
    border-radius: 10px;
    border: 1px solid var(--color-border);
    background: rgba(255, 211, 130, 0.15);
    color: var(--color-text-light);
    font-weight: 600;
  }

  /* ===================================================================
     PAGE LIENS RAPIDES (QR CODE)
     =================================================================== */
  /* ===================================================================
     PAGE LIENS RAPIDES (QR CODE)
     =================================================================== */

body.quick-links-page {
  min-height: 100vh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.4rem, 4vh, 3.2rem) clamp(1.1rem, 4vw, 1.8rem);
  background:
    radial-gradient(circle at 25% 20%, rgba(180, 140, 99, 0.12), transparent 32%),
    radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.05), transparent 30%),
    linear-gradient(145deg, #050505 0%, #0c0c0c 35%, #050505 100%);
  color: #f3ede5;
  font-family: var(--font-heading);
  -webkit-tap-highlight-color: transparent;
}

.quick-links-wrapper {
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.5rem, 4vh, 2.6rem);
}

.quick-links-hero {
  display: flex;
  justify-content: center;
}
.quick-links-hero__img {
  width: clamp(175px, 30vw, 230px);
  max-width: 78vw;
  max-height: 32vh;
  height: auto;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.55));
}

.quick-links-stack {
  width: 100%;
  display: grid;
  gap: clamp(0.8rem, 2.4vh, 1.15rem);
  justify-items: center;
}

.quick-link-pill {
  width: clamp(280px, 86vw, 400px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  text-decoration: none;
  color: #f7f2e9;
  background: linear-gradient(165deg, #1c1c1c 0%, #111 100%);
  border: 1px solid #4a4a4a;
  border-radius: 999px;
  padding: clamp(0.9rem, 2.5vh, 1.05rem) clamp(1rem, 4.2vw, 1.3rem);
  font-size: clamp(1.18rem, 4.6vw, 1.42rem);
  letter-spacing: 0.06em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 30px rgba(0, 0, 0, 0.4);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease, letter-spacing .16s ease;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}
.quick-link-pill:hover {
  transform: translateY(-2px);
  background: linear-gradient(165deg, #222 0%, #141414 100%);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(180, 140, 99, 0.4);
  border-color: #c7b299;
  letter-spacing: 0.065em;
}
.quick-link-pill:active {
  transform: translateY(0);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.42);
}
.quick-link-text {
  display: inline-block;
  padding-inline: 0.4rem;
}

@media (max-width: 480px) {
  body.quick-links-page { padding: 2.5rem 1.1rem; }
  .quick-links-wrapper { gap: 2.2rem; }
  .quick-links-hero__img { width: 200px; }
  .quick-link-pill { font-size: 1.3rem; padding: 1rem 1.1rem; }
}
@media (max-height: 720px) {
  .quick-links-wrapper { gap: 1.5rem; }
  .quick-links-hero__img { width: clamp(150px, 28vw, 200px); max-height: 28vh; }
  .quick-link-pill { font-size: 1.24rem; padding: 0.95rem 1.05rem; }
}
@media (max-height: 620px) {
  body.quick-links-page { padding-top: 1.1rem; padding-bottom: 1.1rem; }
  .quick-links-wrapper { gap: 1.15rem; }
  .quick-links-hero__img { width: clamp(135px, 26vw, 180px); max-height: 24vh; }
  .quick-link-pill { font-size: 1.14rem; padding: 0.85rem 1rem; }
}
  
  /* ===================================================================
     RÉGLAGES RESPONSIVES
     =================================================================== */
  
@media (max-width: 900px) {
    /* Header & Nav Mobile */
    .menu-toggle { display: flex; }
    .main-nav {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(18, 18, 18, 0.98);
      backdrop-filter: blur(10px);
      opacity: 0;
      visibility: hidden;
      transition: opacity .35s ease, visibility .35s ease;
      z-index: 1001;
    }
    .main-nav.is-open { opacity: 1; visibility: visible; }
    .main-nav ul { flex-direction: column; gap: 1.5rem; }
    .main-nav a { font-size: 1.8rem; font-family: var(--font-heading); }
    .main-nav a::after { display: none; }
    .nav-button {
      
      background: none;
      color: var(--color-primary);
      padding: 0;
      font-size: 1.8rem;
      font-family: var(--font-heading);
      border: none;
    }
    
    /* Hero */
    .hero-title { font-size: 3.5rem; }
    .hero-subtitle { font-size: 1.1rem; }
    
    /* Sections */
    .section { padding: 4rem 0; }
    .section-header { margin-bottom: 3rem; }
    .section-header h2 { font-size: 2.5rem; }
  
    /* Chambres (tout en pile) */
    .room-card-featured { flex-direction: column; }
    .room-card-featured .room-slider,
    .room-card-featured .room-card-content {
      width: 100%;
    }
    .room-card-featured .room-card-content {
      border-left: none;
      border-top: 1px solid var(--color-border);
    }
    
    /* Formulaire */
    .form-row { grid-template-columns: 1fr; }
    
    .hero-highlights { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
    .welcome-grid { gap: 2rem; }
    .stay-brief { grid-template-columns: 1fr; }
    .experience-cta { flex-direction: column; align-items: flex-start; }
    .theme-switch { margin-left: 0.5rem; }
    .theme-switch .checkbox { --toggle-height: 28px; }

    /* Simulateur */
    .sim-hero-grid { grid-template-columns: 1fr; }
    .sim-hero-card { order: -1; }
    .simulator-grid { grid-template-columns: 1fr; }
    .simulator-summary { position: static; }
    .sim-hero { padding-top: calc(var(--header-h) + 1.2rem); }
    .sim-hero { display: none; }
    .simulator-section { padding-top: 2.5rem; }
  }
  /* Style du bouton "Réserver" dans le hero */
  @media (max-width: 600px) {
    :root { --header-h: 65px; }
    .hero-title { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1rem; }
    .cta-button { padding: 0.8rem 1.8rem; font-size: 0.9rem; }
    .section-header h2 { font-size: 2rem; }
    
    .room-card-content { padding: 1.5rem; }
    .room-card-content h3 { font-size: 1.6rem; }
    
    .jacuzzi-grid {
      grid-template-columns: 1fr;
    }
    .jacuzzi-card img { height: 300px; }
    .jacuzzi-video-wrapper { height: 300px; }
    
    .lightbox__inner { padding: 3rem 1.5rem; }
    .lightbox__btn { width: 38px; height: 38px; }
    .hero-highlights { grid-template-columns: 1fr; }
    .experience-steps { grid-template-columns: 1fr; }
  }
