/* ================================================================
   LES CHALETS DE MURIEL — FEUILLE DE STYLES
   ================================================================ */

/* ----------------------------------------------------------------
   1. VARIABLES & RESET
   ---------------------------------------------------------------- */
:root {
  /* Palette de bleus */
  --blue-50:  #f0f9ff;
  --blue-100: #e0f2fe;
  --blue-200: #bae6fd;
  --blue-300: #7dd3fc;
  --blue-400: #38bdf8;
  --blue-500: #0ea5e9;
  --blue-600: #0284c7;
  --blue-700: #0369a1;
  --blue-800: #075985;
  --blue-900: #1e40af;
  --blue-950: #1e3a5f;
  --navy:     #0f172a;

  /* Couleurs de surface */
  --white:    #ffffff;
  --bg-soft:  #f0f9ff;
  --bg-light: #e0f2fe;
  --text-dark: #0f172a;
  --text-mid:  #1e3a5f;
  --text-soft: #475569;
  --text-muted:#94a3b8;

  /* Dégradés signature */
  --grad-hero:    linear-gradient(135deg, rgba(14,165,233,.25) 0%, rgba(3,105,161,.55) 40%, rgba(30,58,95,.88) 100%);
  --grad-primary: linear-gradient(135deg, #0ea5e9 0%, #0369a1 60%, #1e40af 100%);
  --grad-soft:    linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
  --grad-deep:    linear-gradient(135deg, #0369a1 0%, #1e40af 55%, #0f172a 100%);
  --grad-section: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
  --grad-text:    linear-gradient(135deg, #0ea5e9 0%, #0369a1 50%, #1e40af 100%);
  --grad-card:    linear-gradient(135deg, rgba(14,165,233,.08) 0%, rgba(3,105,161,.05) 100%);

  /* Ombres */
  --shadow-sm: 0 2px 8px rgba(3,105,161,.1);
  --shadow-md: 0 8px 30px rgba(3,105,161,.15);
  --shadow-lg: 0 20px 60px rgba(3,105,161,.2);
  --shadow-xl: 0 30px 80px rgba(14,165,233,.25);

  /* Rayons */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  /* Transitions */
  --t-fast: .15s ease;
  --t-mid:  .3s ease;
  --t-slow: .5s ease;

  /* Layout */
  --max-w: 1200px;
  --nav-h: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; scrollbar-gutter: stable; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

* { user-select: none; }
input, textarea, select, [contenteditable] { user-select: text; }

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ----------------------------------------------------------------
   2. TYPOGRAPHY UTILITIES
   ---------------------------------------------------------------- */
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-white      { color: var(--white); }
.text-light-blue { color: var(--blue-200); }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: linear-gradient(135deg, #e0f2fe, #bae6fd);
  color: var(--blue-700);
  padding: .35rem 1.1rem;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-badge.light {
  background: rgba(255,255,255,.15);
  color: var(--blue-200);
  border: 1px solid rgba(255,255,255,.2);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}
.section-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-dark);
}
.section-head p {
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ----------------------------------------------------------------
   3. BUTTONS
   ---------------------------------------------------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--grad-primary);
  color: var(--white);
  padding: .9rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: .95rem;
  transition: transform var(--t-mid), box-shadow var(--t-mid), opacity var(--t-mid);
  box-shadow: 0 4px 20px rgba(3,105,161,.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(3,105,161,.5); }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.12);
  color: var(--white);
  padding: .9rem 2rem;
  border-radius: 100px;
  font-weight: 500;
  font-size: .95rem;
  border: 1.5px solid rgba(255,255,255,.4);
  backdrop-filter: blur(10px);
  transition: background var(--t-mid), border-color var(--t-mid), transform var(--t-mid);
}
.btn-outline:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.7); transform: translateY(-2px); }

.btn-blue {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--grad-soft);
  color: var(--white);
  padding: .8rem 1.8rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: .9rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}
.btn-blue:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-reserve {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--grad-primary);
  color: var(--white);
  padding: .7rem 1.5rem;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-mid), box-shadow var(--t-mid);
  flex-shrink: 0;
}
.btn-reserve:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-reserve-alt {
  background: linear-gradient(135deg, #0369a1 0%, #1e40af 100%);
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--grad-primary);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  transition: transform var(--t-mid), box-shadow var(--t-mid);
  margin-top: .5rem;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ----------------------------------------------------------------
   4. NAVBAR (anciennement 5)
   ---------------------------------------------------------------- */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 1.4rem 2rem;
  transition: padding var(--t-mid), background var(--t-mid), box-shadow var(--t-mid);
}
.navbar.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: .9rem 2rem;
  box-shadow: 0 2px 30px rgba(3,105,161,.1);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .85rem;
  min-width: 0;
  flex-shrink: 1;
}
.logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 2px 8px rgba(3,105,161,.35));
  transition: transform var(--t-mid);
}
.nav-logo:hover .logo-img { transform: scale(1.06) rotate(-2deg); }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--t-mid);
  line-height: 1.2;
  text-shadow: 0 1px 6px rgba(0,0,0,.3);
  min-width: 0;
  overflow-wrap: break-word;
}
.logo-name em { display: block; font-size: .92rem; opacity: .88; font-style: italic; }
.navbar.scrolled .logo-name { color: var(--blue-950); text-shadow: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}
.nav-link {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  position: relative;
  transition: color var(--t-fast);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 100%;
  height: 2px;
  background: var(--blue-300);
  transition: right var(--t-mid);
  border-radius: 2px;
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { right: 0; }
.navbar.scrolled .nav-link { color: var(--text-mid); }
.navbar.scrolled .nav-link:hover { color: var(--blue-600); }
.navbar.scrolled .nav-link::after { background: var(--blue-500); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--grad-soft);
  color: var(--white) !important;
  padding: .6rem 1.3rem;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(14,165,233,.35);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(14,165,233,.5); }
.navbar.scrolled .nav-cta { box-shadow: 0 2px 12px rgba(3,105,161,.35); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--r-sm);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--t-mid);
}
.navbar.scrolled .nav-toggle span { background: var(--blue-800); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------------------------------------------------------------
   6. HERO
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.6s ease-in-out, transform 8s ease-out;
}
.hero-slide.active { opacity: 1; transform: scale(1); }

/* Slides du hero : versions allegees, servies selon la largeur d'ecran (LCP) */
.hero-slide-1 { background-image: url('image00641-hero-sm.webp'); }
.hero-slide-2 { background-image: url('Chalet1_2-hero-sm.webp'); }
.hero-slide-3 { background-image: url('chalet2_1-hero-sm.webp'); }
@media (min-width: 901px) {
  .hero-slide-1 { background-image: url('image00641-hero.webp'); }
  .hero-slide-2 { background-image: url('Chalet1_2-hero.webp'); }
  .hero-slide-3 { background-image: url('chalet2_1-hero.webp'); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 860px;
  margin-inline: auto;
  padding: 0 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(10px);
  color: var(--blue-200);
  padding: .45rem 1.2rem;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--blue-300);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.4rem;
  text-shadow: 0 4px 30px rgba(0,0,0,.3);
}
.hero-title em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, #7dd3fc, #38bdf8, #bae6fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title-sub {
  display: block;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(.95rem, 2.1vw, 1.35rem);
  font-weight: 400;
  letter-spacing: .04em;
  color: rgba(255,255,255,.9);
  margin-top: .9rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}

.hero-subtitle {
  font-size: clamp(.95rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.88);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 300;
  text-shadow: 0 2px 10px rgba(0,0,0,.2);
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-dots {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: .7rem;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: 1.5px solid rgba(255,255,255,.6);
  transition: all var(--t-mid);
}
.hero-dot.active {
  background: var(--white);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(255,255,255,.6);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: floatY 2.5s ease-in-out infinite;
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.scroll-wheel {
  width: 3px; height: 7px;
  background: rgba(255,255,255,.7);
  border-radius: 2px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}

/* ----------------------------------------------------------------
   7. FEATURES BAR
   ---------------------------------------------------------------- */
.features-bar {
  background: var(--grad-primary);
  padding: 2.5rem 2rem;
  position: relative;
  z-index: 2;
}
.features-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.feat {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: 1rem 2.5rem;
  flex: 1;
  min-width: 180px;
  max-width: 260px;
}
.feat-icon { font-size: 1.8rem; flex-shrink: 0; filter: drop-shadow(0 2px 6px rgba(0,0,0,.2)); }
.feat-text { display: flex; flex-direction: column; }
.feat-text strong { color: var(--white); font-size: .95rem; font-weight: 600; }
.feat-text span, .feat-text a {
  color: var(--blue-200);
  font-size: .82rem;
  margin-top: .15rem;
  transition: color var(--t-fast);
}
.feat-text a:hover { color: var(--white); text-decoration: underline; }
.feat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.2);
  flex-shrink: 0;
}

/* ----------------------------------------------------------------
   8. ABOUT
   ---------------------------------------------------------------- */
.about {
  background: var(--grad-section);
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  top: -100px; right: 0;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(14,165,233,.06) 0%, transparent 70%);
  pointer-events: none;
}
.about-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.about-lead {
  font-size: 1.08rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-weight: 400;
}
.about-text p {
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.about-stats {
  display: flex;
  gap: 2rem;
  margin: 2rem 0 2.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(14,165,233,.06), rgba(3,105,161,.04));
  border-radius: var(--r-lg);
  border: 1px solid var(--blue-100);
}
.stat { text-align: center; flex: 1; }
.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .3rem;
}
.stat-lbl { font-size: .78rem; color: var(--text-soft); line-height: 1.3; }

.about-img {
  position: relative;
}

.about-img-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: visible;
}
.about-img-frame > img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  transition: transform var(--t-slow);
}
.about-img-frame:hover > img { transform: scale(1.02); }

.about-img-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 1rem 1.4rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 1px solid var(--blue-100);
  animation: floatY 3s ease-in-out infinite;
}
.img-card-icon { font-size: 2rem; display: block; margin-bottom: .3rem; }
.about-img-card p { font-size: .8rem; font-weight: 600; color: var(--blue-700); line-height: 1.4; }

/* Badge en haut à droite de la section About */
.about-section-badge {
  position: absolute;
  top: 2.5rem;
  right: 3rem;
  width: 120px; height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.badge-ring { position: absolute; inset: 0; animation: rotateSlow 12s linear infinite; }
.badge-center { font-size: 2.2rem; z-index: 1; animation: floatY 3s ease-in-out infinite; }

/* ----------------------------------------------------------------
   9. CHALETS
   ---------------------------------------------------------------- */
.chalets {
  background: var(--white);
  padding: 6rem 2rem 8rem;
  position: relative;
}
.chalets::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 30%, rgba(14,165,233,.04) 0%, transparent 50%),
    radial-gradient(circle at 90% 70%, rgba(3,105,161,.04) 0%, transparent 50%);
  pointer-events: none;
}

.chalet-card {
  max-width: var(--max-w);
  margin: 0 auto 5rem;
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--blue-100);
  position: relative;
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}
.chalet-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.chalet-alt {
  background: linear-gradient(180deg, #f8fdff 0%, #ffffff 100%);
}

.chalet-ribbon {
  position: absolute;
  top: 1.8rem; right: 0;
  background: var(--grad-soft);
  color: var(--white);
  padding: .35rem 3rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transform: rotate(0deg);
  box-shadow: 0 2px 12px rgba(14,165,233,.3);
  z-index: 5;
  border-radius: 4px;
}
.chalet-ribbon-alt {
  background: linear-gradient(135deg, #0369a1, #1e40af);
}

.chalet-head {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2.5rem 2.5rem 0;
  flex-wrap: wrap;
}
.chalet-num {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, #bae6fd, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  opacity: .6;
}
.chalet-num-alt {
  background: linear-gradient(135deg, #7dd3fc, #0369a1);
  -webkit-background-clip: text;
  background-clip: text;
}
.chalet-meta { flex: 1; }
.chalet-meta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--text-mid);
  margin-bottom: .3rem;
}
.chalet-tagline { color: var(--text-soft); font-size: .9rem; margin-bottom: .8rem; }
.chalet-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.tag {
  background: var(--bg-light);
  color: var(--blue-700);
  padding: .25rem .8rem;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 500;
  border: 1px solid var(--blue-200);
}

.gallery-wrap {
  padding: 2rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 1.2rem;
  align-items: stretch;
}
.gallery-main-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.gallery-main-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .3s ease;
}
.gallery-zoom {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(0,0,0,.45);
  color: var(--white);
  padding: .5rem;
  border-radius: var(--r-sm);
  backdrop-filter: blur(8px);
  transition: background var(--t-fast), transform var(--t-fast);
  z-index: 2;
}
.gallery-zoom:hover { background: rgba(3,105,161,.7); transform: scale(1.1); }

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
  /* overflow: hidden par défaut — pas de scrollbar surprise au hover */
  overflow: hidden;
  align-content: start;
}

.thumb {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-sm);
  cursor: pointer;
  /* On évite tout changement de dimensions au hover (cause des tremblements) */
  outline: 2.5px solid transparent;
  outline-offset: -1px;
  transition: outline-color var(--t-fast), opacity var(--t-fast), filter var(--t-fast);
  opacity: .75;
  /* Empêcher tout reflow du conteneur */
  will-change: opacity, filter;
}
.thumb:hover { opacity: 1; filter: brightness(1.08); outline-color: var(--blue-400); }
.thumb.active { outline-color: var(--blue-500); opacity: 1; filter: brightness(1); }
.thumb:focus-visible { outline: 2px solid var(--blue-500); outline-offset: 2px; }

.chalet-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  padding: 0 2.5rem 2.5rem;
}
.amen {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--bg-soft);
  border: 1px solid var(--blue-100);
  color: var(--text-mid);
  padding: .5rem 1rem;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 500;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.amen:hover { background: var(--blue-100); border-color: var(--blue-300); }
.amen span { font-size: 1rem; }

/* ----------------------------------------------------------------
   10. LIGHTBOX
   ---------------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] { display: none; }

.lb-bg {
  position: absolute;
  inset: 0;
  background: rgba(10,20,40,.92);
  backdrop-filter: blur(12px);
}
.lb-content {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 1100px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
#lbImg {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--r-md);
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  transition: opacity .25s ease;
}
.lb-counter {
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  letter-spacing: .05em;
}

.lb-close {
  position: fixed;
  top: 1.5rem; right: 1.5rem;
  z-index: 2;
  color: var(--white);
  font-size: 1.4rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast), transform var(--t-fast);
}
.lb-close:hover { background: rgba(255,255,255,.25); transform: rotate(90deg); }

.lb-prev, .lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: var(--white);
  font-size: 1.5rem;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast), transform var(--t-fast);
}
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }
.lb-prev:hover { background: rgba(14,165,233,.4); transform: translateY(-50%) scale(1.1); }
.lb-next:hover { background: rgba(14,165,233,.4); transform: translateY(-50%) scale(1.1); }

/* ----------------------------------------------------------------
   11. EXPERIENCE
   ---------------------------------------------------------------- */
.experience {
  background: var(--grad-deep);
  padding: 0 2rem;
  position: relative;
}
.exp-wave-top, .exp-wave-bot { width: 100%; overflow: hidden; display: block; }
.exp-wave-top svg, .exp-wave-bot svg { width: 100%; height: 80px; display: block; }

.exp-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 0;
}
.exp-inner .section-head h2 {
  color: var(--white);
  font-family: 'Playfair Display', serif;
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.exp-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 2rem 1.8rem;
  backdrop-filter: blur(8px);
  transition: background var(--t-mid), transform var(--t-mid), border-color var(--t-mid);
}
.exp-card:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-4px);
  border-color: rgba(125,211,252,.3);
}
.exp-icon { font-size: 2.4rem; margin-bottom: 1rem; filter: drop-shadow(0 4px 8px rgba(0,0,0,.3)); }
.exp-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: .6rem; font-weight: 600; }
.exp-card p { color: var(--blue-200); font-size: .88rem; line-height: 1.65; }

/* ----------------------------------------------------------------
   12. TESTIMONIALS
   ---------------------------------------------------------------- */
.testimonials {
  background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
  padding: 6rem 2rem;
}
.testi-inner { max-width: var(--max-w); margin: 0 auto; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--blue-100);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}
.testi-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testi-stars { color: #f59e0b; font-size: 1rem; letter-spacing: .15em; margin-bottom: 1rem; }
.testi-card p { color: var(--text-soft); font-size: .9rem; line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: .8rem; }
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--grad-soft);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: .9rem; color: var(--text-dark); }
.testi-author span { font-size: .78rem; color: var(--text-muted); }

/* ----------------------------------------------------------------
   13. CONTACT
   ---------------------------------------------------------------- */
.contact {
  background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 60%, #f0f9ff 100%);
  padding: 6rem 2rem 8rem;
  position: relative;
}
.contact-inner { max-width: var(--max-w); margin: 0 auto; }

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}

.contact-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: var(--white);
  border: 1px solid var(--blue-100);
  border-radius: var(--r-lg);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-mid), box-shadow var(--t-mid), border-color var(--t-mid);
}
a.contact-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); border-color: var(--blue-300); }
.cc-icon { font-size: 1.8rem; flex-shrink: 0; }
.cc-info { display: flex; flex-direction: column; }
.cc-info h4 { font-size: .8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .25rem; }
.cc-info strong { font-size: .98rem; color: var(--blue-800); font-weight: 600; }
.cc-info span { font-size: .8rem; color: var(--text-soft); margin-top: .2rem; }

.contact-form {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--blue-100);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group.full { margin-bottom: 1rem; }

label { font-size: .83rem; font-weight: 600; color: var(--text-mid); }
label span { color: #e74c3c; }

input, select, textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--blue-100);
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: .9rem;
  color: var(--text-dark);
  background: #fafeff;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px rgba(14,165,233,.12);
  background: var(--white);
}
input::placeholder, textarea::placeholder { color: var(--text-muted); }
textarea { resize: vertical; min-height: 100px; }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z' fill='%230369a1'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 10px center; background-size: 20px; padding-right: 2.5rem; }

.form-success { color: #059669; font-size: .9rem; margin-top: .8rem; font-weight: 500; }
.form-error   { color: #dc2626; font-size: .9rem; margin-top: .8rem; font-weight: 500; }

/* ----------------------------------------------------------------
   14. FOOTER
   ---------------------------------------------------------------- */
.footer {
  background: var(--navy);
  position: relative;
  padding-top: 0;
}
.footer-wave { width: 100%; overflow: hidden; display: block; margin-bottom: -4px; }
.footer-wave svg { width: 100%; height: 100px; display: block; }

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1rem;
}
.footer-logo strong { display: block; color: var(--white); font-size: 1.05rem; font-weight: 700; }
.footer-logo em { display: block; color: var(--blue-300); font-size: .8rem; font-style: normal; }
.footer-brand p { color: var(--blue-300); font-size: .88rem; line-height: 1.6; margin-bottom: 1.5rem; }

.footer-contacts { display: flex; flex-direction: column; gap: .6rem; }
.footer-contacts a {
  color: var(--blue-200);
  font-size: .88rem;
  transition: color var(--t-fast);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.footer-contacts a:hover { color: var(--white); }

.footer-nav h4 { color: var(--white); font-size: .9rem; font-weight: 600; margin-bottom: 1.2rem; }
.footer-nav ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-nav a { color: var(--blue-300); font-size: .87rem; transition: color var(--t-fast); }
.footer-nav a:hover { color: var(--white); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom p { color: rgba(255,255,255,.35); font-size: .8rem; }
.footer-bottom a { color: var(--blue-400); transition: color var(--t-fast); }
.footer-bottom a:hover { color: var(--blue-200); }

/* ----------------------------------------------------------------
   15. ANIMATIONS
   ---------------------------------------------------------------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(.8); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes scrollWheel {
  0%   { opacity: 1; transform: translateY(0); }
  80%  { opacity: 0; transform: translateY(10px); }
  100% { opacity: 0; transform: translateY(0); }
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.animate-up {
  opacity: 0;
  transform: translateY(28px);
}
.animate-up.in {
  animation: fadeUp .7s ease forwards;
}
.delay-1 { animation-delay: .15s !important; }
.delay-2 { animation-delay: .3s !important; }
.delay-3 { animation-delay: .45s !important; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------------------------------------------------------
   16. LEGAL PAGES (shared styles)
   ---------------------------------------------------------------- */
.legal-page {
  padding: calc(var(--nav-h) + 3rem) 2rem 6rem;
  min-height: 80vh;
}
.legal-inner {
  max-width: 800px;
  margin: 0 auto;
}
.legal-inner h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
}
.legal-inner h2 {
  font-size: 1.3rem;
  color: var(--blue-800);
  margin: 2.5rem 0 .8rem;
}
.legal-inner p, .legal-inner li {
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: .8rem;
}
.legal-inner ul { padding-left: 1.5rem; }
.legal-inner ul li { list-style: disc; }
.legal-inner a { color: var(--blue-600); text-decoration: underline; }
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--blue-600);
  font-weight: 500;
  margin-bottom: 2rem;
  transition: gap var(--t-fast);
}
.legal-back:hover { gap: .8rem; }

/* ----------------------------------------------------------------
   NEW: PROXIMITY (about section)
   ---------------------------------------------------------------- */
.about-proximity {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  margin: 1.5rem 0 2rem;
}
.prox-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: linear-gradient(135deg, rgba(14,165,233,.06), rgba(3,105,161,.04));
  border: 1px solid var(--blue-100);
  border-radius: var(--r-md);
  padding: .6rem .9rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: background var(--t-fast), border-color var(--t-fast);
}
.prox-item:hover { background: var(--blue-100); border-color: var(--blue-300); }
.prox-icon { font-size: 1.1rem; flex-shrink: 0; }

/* ----------------------------------------------------------------
   NEW: PLAGES
   ---------------------------------------------------------------- */
.plages {
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
  padding: 6rem 2rem 5rem;
  position: relative;
}
.plages-inner { max-width: var(--max-w); margin: 0 auto; }

.plages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
.plage-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--white);
  border: 1px solid var(--blue-100);
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}
.plage-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }

.plage-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.plage-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.plage-card:hover .plage-img-wrap img { transform: scale(1.05); }

.plage-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--grad-soft);
  color: var(--white);
  padding: .3rem .9rem;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(14,165,233,.4);
}

.plage-info { padding: 1.5rem; }
.plage-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--text-mid);
  margin-bottom: .5rem;
}
.plage-info p { color: var(--text-soft); font-size: .9rem; line-height: 1.6; margin-bottom: 1rem; }
.plage-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.plage-tags span {
  background: var(--bg-light);
  color: var(--blue-700);
  padding: .25rem .75rem;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 500;
  border: 1px solid var(--blue-200);
}

.plage-more-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.plage-extra {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}
.plage-extra:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.activities-section { margin-top: 3rem; }
.activities-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  text-align: center;
}
.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.activity-card {
  background: var(--white);
  border: 1px solid var(--blue-100);
  border-radius: var(--r-xl);
  padding: 1.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}
.activity-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.activity-icon { font-size: 2.2rem; flex-shrink: 0; }
.activity-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: .2rem;
}
.activity-info p { color: var(--text-soft); font-size: .85rem; }

/* ----------------------------------------------------------------
   NEW: REVIEWS / MARQUEE
   ---------------------------------------------------------------- */
.reviews {
  background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
  padding: 6rem 0 3rem;
  overflow-x: clip;
  overflow-x: hidden;
}
.reviews-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }

/* Notes Airbnb */
.airbnb-scores {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: var(--white);
  border: 1px solid var(--blue-100);
  border-radius: var(--r-xl);
  padding: 2rem 2.5rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
}
.score-global {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  min-width: 100px;
}
.score-stars { color: #f59e0b; font-size: 1.3rem; letter-spacing: .1em; }
.score-num {
  font-size: 2.8rem;
  font-weight: 700;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.score-lbl { font-size: .78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; }

.score-items { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: .6rem 2rem; min-width: 280px; }
.score-item { display: flex; align-items: center; gap: .6rem; }
.si-label { font-size: .82rem; color: var(--text-soft); min-width: 110px; flex-shrink: 0; }
.si-bar {
  flex: 1;
  height: 5px;
  background: var(--blue-100);
  border-radius: 3px;
  overflow: hidden;
}
.si-fill {
  height: 100%;
  background: var(--grad-soft);
  border-radius: 3px;
}
.si-val { font-size: .82rem; font-weight: 600; color: var(--blue-700); flex-shrink: 0; }

/* Marquee */
.marquee-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  overflow: hidden;
  width: 100%;
  padding: .5rem 0;
  cursor: default;
  /* Fondu sur les bords */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.marquee-track {
  grid-column: 1;
  display: flex;
  gap: 1.5rem;
  width: max-content;
  min-width: 0;
  animation: marqueeScroll 180s linear infinite;
  padding: 1rem 0;
  will-change: transform;
}
.marquee-wrapper:hover .marquee-track { animation-play-state: paused; }

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

.rv-card {
  width: 320px;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--blue-100);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-mid), transform var(--t-mid), border-color var(--t-mid);
}
.rv-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--blue-300); }

.rv-top {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1rem;
}
.rv-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.rv-meta { flex: 1; min-width: 0; }
.rv-meta strong { display: block; font-size: .9rem; color: var(--text-dark); font-weight: 600; }
.rv-meta span { font-size: .75rem; color: var(--text-muted); display: block; margin-top: .1rem; }
.rv-stars { color: #f59e0b; font-size: .85rem; flex-shrink: 0; letter-spacing: .05em; }

.rv-card p {
  font-size: .87rem;
  color: var(--text-soft);
  line-height: 1.65;
  font-style: italic;
}

.marquee-hint {
  text-align: center;
  color: var(--text-muted);
  font-size: .78rem;
  margin-top: .5rem;
  letter-spacing: .04em;
}
.reviews-cta {
  text-align: center;
  margin-top: 2rem;
}
.btn-airbnb-reviews {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--white);
  color: var(--blue-700);
  border: 1.5px solid var(--blue-200);
  padding: .75rem 1.75rem;
  border-radius: 100px;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: background var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
}
.btn-airbnb-reviews:hover {
  background: var(--bg-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* ----------------------------------------------------------------
   17b. CHALET DESCRIPTION
   ---------------------------------------------------------------- */
.chalet-desc {
  padding: .5rem 2.5rem 1.5rem;
}
.chalet-desc p {
  color: var(--text-soft);
  font-size: .9rem;
  line-height: 1.75;
  margin-bottom: .8rem;
}
.chalet-menage {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: linear-gradient(135deg, rgba(14,165,233,.07), rgba(3,105,161,.05));
  border: 1px solid var(--blue-100);
  border-radius: 100px;
  padding: .35rem 1rem;
  font-size: .82rem;
  color: var(--text-mid);
  font-weight: 500;
}

/* 4-stat layout tweak */
.about-stats { gap: 1.2rem; }
.stat-num { font-size: 1.75rem; }

/* ----------------------------------------------------------------
   17c. CARTE GOOGLE MAPS
   ---------------------------------------------------------------- */
/* ============ FAQ ============ */
.faq {
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
  padding: 6rem 2rem 5rem;
}
.faq-inner { max-width: 860px; margin: 0 auto; }
.faq-list { margin-top: 3rem; display: flex; flex-direction: column; gap: .9rem; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--blue-100);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color var(--t-mid), box-shadow var(--t-mid);
}
.faq-item[open] { border-color: var(--blue-300); box-shadow: var(--shadow-md); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 3.2rem 1.25rem 1.5rem;
  position: relative;
  user-select: text;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 {
  display: inline;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
}
.faq-item summary::after {
  content: '';
  position: absolute;
  right: 1.5rem;
  top: 1.55rem;
  width: 10px; height: 10px;
  border-right: 2px solid var(--blue-500);
  border-bottom: 2px solid var(--blue-500);
  transform: rotate(45deg);
  transition: transform var(--t-mid);
}
.faq-item[open] summary::after { transform: rotate(-135deg); top: 1.85rem; }
.faq-item summary:hover h3 { color: var(--blue-600); }
.faq-item summary:focus-visible { outline: 2px solid var(--blue-500); outline-offset: -2px; }

.faq-answer { padding: 0 1.5rem 1.4rem; }
.faq-answer p { color: var(--text-soft); line-height: 1.75; font-size: .96rem; }
.faq-answer a { color: var(--blue-600); font-weight: 500; text-decoration: underline; text-underline-offset: 2px; }
.faq-answer a:hover { color: var(--blue-700); }

@media (max-width: 900px) {
  .faq { padding: 4rem 1.2rem 3.5rem; }
  .faq-item summary { padding: 1.1rem 2.8rem 1.1rem 1.2rem; }
  .faq-answer { padding: 0 1.2rem 1.2rem; }
}

/* ============ GUIDES / BLOG ============ */
.guides {
  background: var(--bg-soft);
  padding: 6rem 2rem 5rem;
}
.guides-inner { max-width: var(--max-w); margin: 0 auto; }

.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.guide-card {
  background: var(--white);
  border: 1px solid var(--blue-100);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-mid), box-shadow var(--t-mid);
  display: flex;
  flex-direction: column;
}
.guide-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.guide-thumb {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--blue-100);
}
.guide-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.guide-card:hover .guide-thumb img { transform: scale(1.06); }
.guide-body { padding: 1.5rem 1.6rem 1.8rem; display: flex; flex-direction: column; gap: .7rem; }
.guide-cat {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue-600);
}
.guide-body h3 { font-size: 1.15rem; line-height: 1.35; color: var(--text-dark); }
.guide-body h3 a { color: inherit; }
.guide-body h3 a:hover { color: var(--blue-600); }
.guide-body p { font-size: .92rem; line-height: 1.65; color: var(--text-soft); }

.guides-more { text-align: center; margin-top: 3rem; }
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--blue-700);
  padding: .9rem 2rem;
  border-radius: 100px;
  font-weight: 500;
  font-size: .95rem;
  border: 1.5px solid var(--blue-300);
  background: var(--white);
  transition: background var(--t-mid), border-color var(--t-mid), transform var(--t-mid);
}
.btn-outline-dark:hover { background: var(--blue-50); border-color: var(--blue-500); transform: translateY(-2px); }

@media (max-width: 900px) {
  .guides-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .guides { padding: 4rem 1.2rem 3.5rem; }
}

.map-section {
  background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
  padding: 6rem 2rem;
}
.map-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.map-content {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.map-frame {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--blue-100);
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: none;
}
.map-distances {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.map-dist-item {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  background: var(--white);
  border: 1px solid var(--blue-100);
  border-radius: var(--r-md);
  padding: .9rem 1.1rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
}
.map-dist-item:hover {
  transform: translateX(4px);
  border-color: var(--blue-300);
  box-shadow: var(--shadow-md);
}
.map-dist-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: .1rem; }
.map-dist-item div { display: flex; flex-direction: column; }
.map-dist-item strong { font-size: .88rem; color: var(--text-mid); font-weight: 600; margin-bottom: .2rem; }
.map-dist-item span { font-size: .8rem; color: var(--text-soft); }

/* ----------------------------------------------------------------
   17d. HOST INFO (section contact)
   ---------------------------------------------------------------- */
.host-info {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-top: .4rem;
}
.host-badge-item {
  display: flex;
  align-items: center;
  gap: .8rem;
  background: var(--white);
  border: 1px solid var(--blue-100);
  border-radius: var(--r-md);
  padding: .85rem 1.1rem;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.host-badge-item:hover { border-color: var(--blue-300); box-shadow: var(--shadow-md); }
.host-icon { font-size: 1.3rem; flex-shrink: 0; }
.host-badge-item div { display: flex; flex-direction: column; }
.host-badge-item strong { font-size: .84rem; color: var(--text-mid); font-weight: 600; margin-bottom: .1rem; }
.host-badge-item span { font-size: .79rem; color: var(--blue-600); font-weight: 500; }

/* ----------------------------------------------------------------
   17. RESPONSIVE
   ---------------------------------------------------------------- */

/* Appareils tactiles — désactiver les animations hover sur images */
@media (hover: none) {
  .about-img-frame:hover > img              { transform: none; }
  .plage-card:hover .plage-img-wrap img     { transform: none; }
  .plage-extra:hover                        { transform: none; box-shadow: var(--shadow-md); }
  .chalet-card:hover                        { transform: none; box-shadow: var(--shadow-lg); }
  .plage-card:hover                         { transform: none; box-shadow: var(--shadow-lg); }
  .testi-card:hover                         { transform: none; box-shadow: var(--shadow-sm); }
  .activity-card:hover                      { transform: none; box-shadow: var(--shadow-md); }
  .about-img-card                           { animation: none; }
  .badge-ring                               { animation: none; }
}

@media (max-width: 1024px) {
  .about         { padding: 5rem 2rem; }
  .about-inner   { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img     { order: -1; }
  .about-img-frame > img { aspect-ratio: 16/7; }
  .about-proximity { grid-template-columns: 1fr 1fr; }

  .gallery-wrap  { grid-template-columns: 1fr; }
  .gallery-thumbs { grid-template-columns: repeat(5, 1fr); overflow-x: auto; overflow-y: visible; gap: .5rem; padding-bottom: 4px; }

  .exp-grid      { grid-template-columns: repeat(2, 1fr); }

  .plages        { padding: 5rem 2rem 4rem; }
  .plages-grid   { grid-template-columns: 1fr; }
  .plage-more-imgs { grid-template-columns: 1fr 1fr; }
  .activities-grid { grid-template-columns: 1fr 1fr; }

  .score-items   { grid-template-columns: 1fr; }

  .contact       { padding: 5rem 2rem 6rem; }
  .contact-content { grid-template-columns: 1fr; }

  .map-section   { padding: 5rem 2rem; }
  .map-content   { grid-template-columns: 1fr; }
  .map-frame iframe { height: 320px; }

  .footer-inner  { grid-template-columns: 1fr 1fr; }
  .footer-brand  { grid-column: span 2; }
}

@media (max-width: 768px) {
  html, body {
    overflow-x: clip;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    touch-action: pan-y;
    overscroll-behavior-x: none;
  }

  /* Navigation */
  .navbar { padding: 1rem 1.25rem; }
  .navbar.scrolled { padding: .75rem 1.25rem; }
  .nav-inner { min-width: 0; }
  .logo-name { font-size: 1.05rem; line-height: 1.15; }
  .nav-toggle { display: flex; flex-shrink: 0; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 90vw);
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0;
    transition: right var(--t-mid);
    box-shadow: -10px 0 40px rgba(0,0,0,.3);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links li { width: 100%; border-bottom: 1px solid rgba(255,255,255,.07); }
  .nav-link {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
    color: rgba(255,255,255,.8) !important;
  }
  .nav-cta { margin-top: 1.5rem; width: 100%; justify-content: center; }

  /* Hero */
  .hero-content { padding: 0 1.25rem; }
  .hero-title { font-size: clamp(2rem, 8vw, 3.2rem); }

  /* Padding vertical réduit sur toutes les sections */
  .about        { padding: 3.5rem 1.25rem; }
  .chalets      { padding: 3.5rem 1.25rem 4.5rem; }
  .experience   { padding: 0 1.25rem; }
  .plages       { padding: 3.5rem 1.25rem 3rem; }
  .reviews      { padding: 3.5rem 0 2rem; }
  .reviews-inner { padding: 0 1.25rem; }
  .testimonials { padding: 3.5rem 1.25rem; }
  .contact      { padding: 3.5rem 1.25rem 4.5rem; }
  .map-section  { padding: 3.5rem 1.25rem; }

  /* About — masquer les éléments décoratifs qui débordent */
  .about-inner  { gap: 2rem; }
  .about-img-frame { overflow: hidden; }
  .about-img-card      { display: none; }
  .about-section-badge { display: none; }
  .about-img-frame > img { aspect-ratio: 16/9; }
  .about-proximity { grid-template-columns: 1fr 1fr; gap: .4rem; }
  .about-stats  { gap: .8rem; padding: .9rem 1rem; margin: 1.5rem 0 2rem; }
  .stat-num     { font-size: 1.5rem; }

  /* Features bar */
  .features-bar { padding: 1.5rem 1rem; }
  .features-inner { flex-direction: column; gap: 0; }
  .feat         { max-width: 100%; padding: .7rem 1.25rem; min-width: unset; }
  .feat-divider { width: 80%; height: 1px; }

  /* Chalet cards */
  .chalet-card  { margin: 0 auto 2.5rem; border-radius: var(--r-lg); }
  .chalet-ribbon { right: 0; padding: .3rem 2rem; font-size: .72rem; }
  .chalet-head  { flex-direction: column; align-items: flex-start; gap: .8rem; padding: 1.5rem 1.25rem 0; }
  .chalet-num   { font-size: 3rem; }
  .gallery-wrap { padding: 1.2rem 1.25rem; max-width: 100%; overflow: hidden; }
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); overflow-x: auto; gap: .4rem; padding-bottom: 4px; max-width: 100%; -webkit-overflow-scrolling: touch; }
  .chalet-amenities { padding: 0 1.25rem 1.5rem; gap: .45rem; }
  .amen         { padding: .4rem .7rem; font-size: .8rem; }
  .chalet-desc  { padding: .4rem 1.25rem 1rem; }

  /* Experience */
  .exp-grid     { grid-template-columns: 1fr; }
  .exp-inner    { padding: 3rem 0; }

  /* Testimonials */
  .testi-grid   { grid-template-columns: 1fr; }

  /* Plages */
  .plage-more-imgs { grid-template-columns: 1fr; gap: 1rem; }
  .activities-grid { grid-template-columns: 1fr; }
  .plage-extra  { aspect-ratio: 16/6; }

  /* Avis Airbnb */
  .airbnb-scores { flex-direction: column; gap: 1.2rem; padding: 1.25rem; }
  .score-global  { flex-direction: row; gap: 1rem; align-items: center; }
  .score-items   { min-width: 0; }
  .si-label      { min-width: 0; }
  .rv-card      { width: 260px; }

  /* Formulaire de contact */
  .contact-form { padding: 1.5rem; border-radius: var(--r-lg); }
  .form-row     { grid-template-columns: 1fr; }

  /* Carte */
  .map-frame iframe { height: 250px; }
  .map-distances { gap: .5rem; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.25rem 2rem; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Lightbox */
  .lb-prev { left: .5rem; }
  .lb-next { right: .5rem; }
}

@media (max-width: 480px) {
  .navbar { padding: .9rem 1rem; }
  .navbar.scrolled { padding: .7rem 1rem; }
  .logo-name { font-size: .95rem; }
  .hero-content { padding: 0 1rem; }
  .hero-title   { font-size: clamp(1.9rem, 9vw, 2.8rem); }
  .hero-ctas    { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }

  .about        { padding: 3rem 1rem; }
  .about-proximity { grid-template-columns: 1fr; }
  .about-stats  { flex-wrap: wrap; }
  .stat         { min-width: calc(50% - .6rem); }

  .chalets      { padding: 3rem 1rem 4rem; }
  .section-head { margin-bottom: 2rem; padding: 0; }
  .chalet-head  { padding: 1.2rem 1rem 0; }
  .gallery-wrap { padding: 1rem; }
  .gallery-thumbs { grid-template-columns: repeat(3, 1fr); }
  .chalet-amenities { padding: 0 1rem 1.2rem; }
  .chalet-desc  { padding: .4rem 1rem .8rem; }

  .plages       { padding: 3rem 1rem 2.5rem; }
  .reviews-inner { padding: 0 1rem; }
  .testimonials { padding: 3rem 1rem; }
  .contact      { padding: 3rem 1rem 4rem; }
  .map-section  { padding: 3rem 1rem; }

  .contact-form { padding: 1.2rem; }
  .btn-submit   { width: 100%; justify-content: center; }

  .map-frame iframe { height: 200px; }

  .footer-inner { padding: 2.5rem 1rem 1.5rem; }
  .footer-bottom { padding: 1rem; }

  .rv-card      { width: 230px; }
  .logo-name em { display: none; }
}

@media (min-width: 1440px) {
  .hero-title   { font-size: 6.5rem; }
}

/* ----------------------------------------------------------------
   18. PRÉFÉRENCES SYSTÈME
   ---------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .hero-slide { transform: none !important; }
}

/* ----------------------------------------------------------------
   SPLASH SCREEN
   ---------------------------------------------------------------- */
.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Fond sombre océan — sublime le logo sans fond */
  background: radial-gradient(ellipse at 50% 40%, #0c2a4a 0%, #071828 50%, #020d14 100%);
  overflow: hidden;
  transition: opacity .85s cubic-bezier(.4,0,.2,1);
}
/* Halo lumineux derrière le logo */
.splash-screen::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -58%);
  width: clamp(320px, 55vw, 560px);
  height: clamp(320px, 55vw, 560px);
  background: radial-gradient(circle, rgba(56,189,248,.18) 0%, rgba(3,105,161,.12) 40%, transparent 72%);
  border-radius: 50%;
  animation: splashGlow 3s ease-in-out infinite;
  pointer-events: none;
}
.splash-screen.hide {
  opacity: 0;
  pointer-events: none;
}
.splash-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  width: 100%;
  max-width: 100%;
  padding: 0 1.5rem;
  animation: splashIn .95s cubic-bezier(.22,1,.36,1) both;
}
.splash-logo {
  width: min(70vw, 280px);
  height: auto;
  max-width: 100%;
  object-fit: contain;
  /* Rogne le rectangle blanc aux coins — le badge est circulaire */
  border-radius: 50%;
  /* Lueur bleue autour du cercle */
  filter:
    drop-shadow(0 0 40px rgba(56,189,248,.45))
    drop-shadow(0 8px 32px rgba(3,105,161,.6))
    drop-shadow(0 32px 80px rgba(2,13,20,.9));
  animation: splashPulse 2.8s ease-in-out infinite;
}
.splash-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2.8vw, 1.3rem);
  color: rgba(186,230,253,.9);
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: 0;
  animation: splashFadeUp .7s .6s ease both;
}
.splash-loader {
  display: flex;
  gap: .5rem;
  opacity: 0;
  animation: splashFadeUp .5s .9s ease both;
}
.splash-loader span {
  width: 7px;
  height: 7px;
  background: var(--blue-400);
  border-radius: 50%;
  animation: splashDot 1.3s ease-in-out infinite;
}
.splash-loader span:nth-child(2) { animation-delay: .2s;  background: var(--blue-300); }
.splash-loader span:nth-child(3) { animation-delay: .4s;  background: rgba(186,230,253,.7); }

@keyframes splashIn {
  from { opacity: 0; transform: scale(.78) translateY(32px); }
  to   { opacity: 1; transform: scale(1)   translateY(0); }
}
@keyframes splashFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes splashGlow {
  0%, 100% { opacity: .8; transform: translate(-50%, -58%) scale(1); }
  50%       { opacity: 1;  transform: translate(-50%, -58%) scale(1.1); }
}
@keyframes splashPulse {
  0%, 100% { filter: drop-shadow(0 0 40px rgba(56,189,248,.45)) drop-shadow(0 8px 32px rgba(3,105,161,.6)) drop-shadow(0 32px 80px rgba(2,13,20,.9)); }
  50%       { filter: drop-shadow(0 0 60px rgba(56,189,248,.65)) drop-shadow(0 8px 40px rgba(3,105,161,.8)) drop-shadow(0 32px 80px rgba(2,13,20,.9)); }
}
@keyframes splashDot {
  0%, 80%, 100% { transform: scale(.65); opacity: .35; }
  40%           { transform: scale(1.2);  opacity: 1; }
}

@media print {
  .navbar, .cookie-banner, .lightbox, .hero-dots, .hero-scroll { display: none !important; }
  .hero { height: auto; min-height: unset; }
}
