/* =============================================================================
   CHALET DU PÈRE SAPIN – CSS Global
   Design: Nordic Luxury Lodge
   Palette: blanc cassé #FAFAF7, charbon #1A1A1A, or #B8860B, vert mousse #4A5E3A
   Typographie: Playfair Display (titres) + Lato (corps)
   ============================================================================= */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden; /* évite le stacking context sur body qui couperait les dropdowns */
}

body {
  font-family: 'Lato', system-ui, sans-serif;
  background-color: #FAFAF7;
  color: #1A1A1A;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

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

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

ul, ol { list-style: none; }

::selection {
  background: #B8860B;
  color: white;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #F5F0E8; }
::-webkit-scrollbar-thumb { background: #B8860B; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #9A7209; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #1A1A1A;
}

.font-playfair { font-family: 'Playfair Display', Georgia, serif; }
.font-lato { font-family: 'Lato', system-ui, sans-serif; }

/* ===== UTILITIES ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

.text-gold { color: #B8860B; }
.text-white { color: #fff; }
.text-white-80 { color: rgba(255,255,255,0.8); }
.text-white-70 { color: rgba(255,255,255,0.7); }
.text-white-60 { color: rgba(255,255,255,0.6); }
.text-white-50 { color: rgba(255,255,255,0.5); }
.text-white-40 { color: rgba(255,255,255,0.4); }
.text-white-30 { color: rgba(255,255,255,0.3); }
.text-dark { color: #1A1A1A; }
.text-dark-70 { color: rgba(26,26,26,0.7); }
.text-dark-60 { color: rgba(26,26,26,0.6); }
.text-dark-50 { color: rgba(26,26,26,0.5); }
.text-dark-40 { color: rgba(26,26,26,0.4); }

.bg-cream { background-color: #FAFAF7; }
.bg-sand { background-color: #F5F0E8; }
.bg-dark { background-color: #1A1A1A; }
.bg-darker { background-color: #0F0F0F; }

.badge-gold {
  color: #B8860B;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 600;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #B8860B;
  color: #fff;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  transition: all 0.2s;
}

.btn-gold:hover {
  background: #9A7209;
  box-shadow: 0 10px 25px rgba(184,134,11,0.3);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #1A1A1A;
  color: #fff;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.btn-dark:hover { background: #2A2A2A; }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.btn-outline-white:hover { background: rgba(255,255,255,0.2); }

.border-sand { border: 1px solid #E8E0D0; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: all 0.5s;
  background: transparent;
}

.navbar.scrolled,
.navbar.menu-open,
.navbar:not(.on-home) {
  background: rgba(26,26,26,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

@media (min-width: 640px) { .navbar-inner { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .navbar-inner { padding: 0 2rem; } }

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-logo img {
  height: 6rem;
  width: 6rem;
  object-fit: contain;
}

.navbar-logo-text { display: none; }

@media (min-width: 640px) {
  .navbar-logo-text { display: block; }
}

.navbar-logo-title {
  font-family: 'Playfair Display', Georgia, serif;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.2;
}

.navbar-logo-sub {
  color: #B8860B;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.navbar-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .navbar-links { display: flex; }
}

.navbar-link {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  transition: color 0.2s;
  font-family: 'Lato', sans-serif;
  position: relative;
  padding-bottom: 0.25rem;
}

.navbar-link:hover { color: #fff; }

.navbar-link.active {
  color: #B8860B;
}

.navbar-link.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: #B8860B;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  font-family: 'Lato', sans-serif;
  transition: color 0.2s;
  padding-bottom: 0.5rem; /* couvre le gap entre trigger et menu */
}

.dropdown-trigger:hover { color: #fff; }

.dropdown-trigger svg {
  transition: transform 0.2s;
  width: 14px; height: 14px;
}

.dropdown:hover .dropdown-trigger svg,
.dropdown.open .dropdown-trigger svg { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-0.5rem);
  padding-top: 0.5rem; /* comble le gap sans créer d'espace vide */
  width: 13rem;
  background: rgba(26,26,26,0.98);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 200;
}

.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s;
}

.dropdown-item:last-child { border-bottom: none; }
.dropdown-item:hover { background: rgba(255,255,255,0.05); }

.dropdown-item-name {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
}

.dropdown-item-sub {
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar-cta-btn {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: #B8860B;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  transition: all 0.2s;
}

.navbar-cta-btn:hover {
  background: #9A7209;
  box-shadow: 0 4px 15px rgba(184,134,11,0.3);
}

@media (min-width: 1024px) {
  .navbar-cta-btn { display: inline-flex; }
}

.hamburger {
  display: block;
  color: #fff;
  padding: 0.5rem;
}

@media (min-width: 1024px) {
  .hamburger { display: none; }
}

.hamburger svg { width: 24px; height: 24px; }

/* Mobile menu */
.mobile-menu {
  display: none;
  background: #1A1A1A;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 1rem;
}

@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
}

.mobile-menu.open { display: block; }

.mobile-link {
  display: block;
  color: rgba(255,255,255,0.8);
  padding: 0.5rem 0;
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
  transition: color 0.2s;
}

.mobile-link:hover { color: #fff; }

.mobile-section-title {
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
  margin-top: 1rem;
}

.mobile-divider {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem;
  margin-top: 1rem;
}

.mobile-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: #B8860B;
  color: #fff;
  font-weight: 600;
  padding: 0.75rem;
  border-radius: 9999px;
  margin-top: 1rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  transition: opacity 1s ease;
  opacity: 0;
}

.hero-slide.active { opacity: 1; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
}

.hero-badges {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 0.75rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero-title .gold { color: #B8860B; font-style: italic; }

@media (min-width: 640px) { .hero-title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 6rem; } }

.hero-subtitle {
  color: rgba(255,255,255,0.9);
  font-size: 1.125rem;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) { .hero-subtitle { font-size: 1.25rem; } }

.hero-desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  font-family: 'Lato', sans-serif;
  max-width: 32rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) { .hero-desc { font-size: 1rem; } }

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; }
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  animation: bounce 2s infinite;
}

.hero-scroll:hover { color: #fff; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

.hero-dots {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 10;
  display: flex;
  gap: 0.375rem;
}

.hero-dot {
  border-radius: 9999px;
  transition: all 0.3s;
  background: rgba(255,255,255,0.4);
  width: 6px; height: 6px;
}

.hero-dot.active {
  background: #B8860B;
  width: 1.5rem;
  height: 6px;
}

/* ===== STATS BAND ===== */
.stats-band {
  background: #1A1A1A;
  padding: 2rem 1rem;
}

.stats-grid {
  max-width: 64rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.stat-icon { color: #B8860B; }

.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.stat-label {
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* ===== SECTION CHALETS ===== */
.section { padding: 6rem 1rem; }

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) { .section-header h2 { font-size: 3rem; } }

.section-header p {
  color: rgba(26,26,26,0.6);
  max-width: 32rem;
  margin: 0 auto;
  font-family: 'Lato', sans-serif;
}

/* Chalet cards grid */
.chalets-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .chalets-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .chalets-grid { grid-template-columns: repeat(12, 1fr); }
}

.chalet-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  cursor: pointer;
  height: 320px;
}

@media (min-width: 768px) { .chalet-card { height: 380px; } }

.chalet-card.large {
  height: 480px;
}

@media (min-width: 1024px) {
  .chalet-card.large { grid-column: span 6; }
  .chalet-card:not(.large) { grid-column: span 3; }
}

@media (max-width: 1023px) {
  .chalet-card.large { grid-column: span 1; }
}

.chalet-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.chalet-card:hover img { transform: scale(1.05); }

.chalet-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2), transparent);
}

.chalet-card-capacity {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.2);
}

.chalet-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}

.chalet-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 0.75rem;
}

.chalet-card-feature {
  font-size: 0.75rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.1);
}

.chalet-card-name {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.chalet-card.large .chalet-card-name { font-size: 1.75rem; }
.chalet-card:not(.large) .chalet-card-name { font-size: 1.25rem; }

.chalet-card-desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  font-family: 'Lato', sans-serif;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.chalet-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #B8860B;
  font-size: 0.875rem;
  font-weight: 600;
  transition: gap 0.2s;
}

.chalet-card:hover .chalet-card-link { gap: 0.5rem; }

/* ===== DOMAINE SECTION ===== */
.domaine-section {
  background: #1A1A1A;
  padding: 6rem 1rem;
  overflow: hidden;
}

.domaine-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .domaine-grid { grid-template-columns: 1fr 1fr; }
}

.domaine-text h2 {
  color: #fff;
  font-size: 2.25rem;
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) { .domaine-text h2 { font-size: 3rem; } }

.domaine-text p {
  color: rgba(255,255,255,0.7);
  font-family: 'Lato', sans-serif;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.domaine-text p strong { color: #fff; }

.domaine-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.domaine-tag {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
}

.domaine-tag .tag-icon { color: #B8860B; }

.domaine-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #B8860B;
  font-weight: 600;
  font-size: 0.875rem;
  margin-top: 2rem;
  transition: color 0.2s;
}

.domaine-link:hover { color: #D4A017; }
.domaine-link span { transition: transform 0.2s; }
.domaine-link:hover span { transform: translateX(4px); }

.domaine-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  height: 24rem;
}

.domaine-gallery-main {
  grid-row: span 2;
  border-radius: 0.75rem;
  overflow: hidden;
}

.domaine-gallery-main img,
.domaine-gallery-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.domaine-gallery-sub {
  border-radius: 0.75rem;
  overflow: hidden;
}

/* ===== TARIFS APERÇU ===== */
.tarifs-preview {
  background: #F5F0E8;
  padding: 6rem 1rem;
}

.tarifs-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto 2.5rem;
}

@media (min-width: 640px) {
  .tarifs-preview-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .tarifs-preview-grid { grid-template-columns: repeat(4, 1fr); }
}

.tarif-preview-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  border: 1px solid #E8E0D0;
  text-align: center;
  transition: box-shadow 0.2s;
}

.tarif-preview-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }

.tarif-preview-icon { font-size: 1.875rem; margin-bottom: 0.75rem; }

.tarif-preview-label {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 0.25rem;
}

.tarif-preview-note {
  color: rgba(26,26,26,0.4);
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

.tarif-preview-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #B8860B;
}

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  padding: 8rem 1rem;
  overflow: hidden;
}

.cta-section-bg {
  position: absolute;
  inset: 0;
}

.cta-section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-section-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.8);
}

.cta-section-content {
  position: relative;
  z-index: 10;
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.cta-section-content h2 {
  color: #fff;
  font-size: 2.25rem;
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) { .cta-section-content h2 { font-size: 3rem; } }

.cta-section-content p {
  color: rgba(255,255,255,0.7);
  font-family: 'Lato', sans-serif;
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) { .cta-buttons { flex-direction: row; } }

/* ===== FOOTER ===== */
.footer {
  background: #0F0F0F;
  color: rgba(255,255,255,0.7);
}

.footer-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 640px) { .footer-main { padding: 4rem 1.5rem; } }
@media (min-width: 768px) { .footer-main { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-main { grid-template-columns: 1.5fr 1fr 1fr 1fr; padding: 4rem 2rem; } }

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
}

.footer-brand-sub {
  color: #B8860B;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 1rem 0;
}

.footer-stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #B8860B;
  font-size: 0.875rem;
}

.footer-stars span {
  margin-left: 0.25rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
}

.footer-col h3 {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }

.footer-col a {
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: #B8860B; }

.footer-chalet-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-chalet-sub {
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.footer-contact-icon {
  color: #B8860B;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; padding: 1rem 1.5rem; }
}

@media (min-width: 1024px) {
  .footer-bottom { padding: 1rem 2rem; }
}

.footer-bottom a:hover { color: rgba(255,255,255,0.6); }

/* ===== PAGE HERO (sous-pages) ===== */
.page-hero {
  position: relative;
  height: 80vh;
  min-height: 400px;
  overflow: hidden;
}

.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero img[alt="Le domaine"] {
  object-fit: cover;
  object-position: bottom;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}

.page-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
}

.page-hero-content h1 {
  color: #fff;
  font-size: 3rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) { .page-hero-content h1 { font-size: 3.75rem; } }

.page-hero-content p {
  color: rgba(255,255,255,0.8);
  font-family: 'Lato', sans-serif;
  max-width: 32rem;
}

/* ===== CHALET DETAIL ===== */
.chalet-hero {
  position: relative;
  height: 90vh;
  min-height: 500px;
  overflow: hidden;
}

.chalet-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chalet-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.2), rgba(0,0,0,0.7));
  z-index: 10;
}

.chalet-hero-back {
  position: absolute;
  top: 6rem;
  left: 1.5rem;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.8);
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.chalet-hero-back:hover { color: #fff; }

.chalet-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 2rem;
}

@media (min-width: 640px) { .chalet-hero-content { padding: 3rem; } }

.chalet-hero-content-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.chalet-hero-features {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.chalet-hero-feature {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
}

.chalet-hero-content h1 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) { .chalet-hero-content h1 { font-size: 3.75rem; } }
@media (min-width: 1024px) { .chalet-hero-content h1 { font-size: 4.5rem; } }

.chalet-hero-capacity {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.chalet-hero-capacity svg { color: #B8860B; }

/* ===== IMAGE CAROUSEL ===== */
.carousel {
  position: relative;
  border-radius: 0.75rem;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0.75rem;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  transition: opacity 0.5s;
  opacity: 0;
}

.carousel-slide.active { opacity: 1; z-index: 1; }

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.4);
  color: #fff;
  border-radius: 9999px;
  padding: 0.5rem;
  opacity: 0;
  transition: all 0.2s;
  backdrop-filter: blur(4px);
}

.carousel:hover .carousel-arrow { opacity: 1; }
.carousel-arrow:hover { background: rgba(0,0,0,0.7); }

.carousel-arrow-left { left: 0.75rem; }
.carousel-arrow-right { right: 0.75rem; }

.carousel-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.375rem;
}

.carousel-dot {
  border-radius: 9999px;
  transition: all 0.3s;
  background: rgba(255,255,255,0.5);
  width: 6px;
  height: 6px;
}

.carousel-dot:hover { background: rgba(255,255,255,0.8); }
.carousel-dot.active { width: 1.5rem; background: #fff; }

.carousel-counter {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 10;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
}

/* Thumbnails */
.carousel-thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  position: relative;
  z-index: 10;
}

.carousel-thumb {
  flex-shrink: 0;
  width: 4rem;
  height: 3rem;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 2px solid transparent;
  opacity: 0.6;
  transition: all 0.2s;
  cursor: pointer;
}

.carousel-thumb:hover { opacity: 1; }
.carousel-thumb.active { border-color: #B8860B; opacity: 1; }

.carousel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: rgba(255,255,255,0.8);
  z-index: 10;
  font-size: 2rem;
  transition: color 0.2s;
}

.lightbox-close:hover { color: #fff; }

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.8);
  z-index: 10;
  background: rgba(255,255,255,0.1);
  border-radius: 9999px;
  padding: 0.75rem;
  transition: all 0.2s;
}

.lightbox-arrow:hover { color: #fff; background: rgba(255,255,255,0.2); }
.lightbox-arrow-left { left: 1rem; }
.lightbox-arrow-right { right: 1rem; }

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 0.5rem;
}

.lightbox-counter {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
}

/* ===== EQUIPMENTS GRID ===== */
.equip-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) { .equip-grid { grid-template-columns: repeat(2, 1fr); } }

.equip-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.25rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  border: 1px solid #E8E0D0;
}

.equip-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #E8E0D0;
}

.equip-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(26,26,26,0.7);
  font-family: 'Lato', sans-serif;
  margin-bottom: 0.375rem;
}

.equip-check {
  color: #4A5E3A;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* ===== TARIFS CARDS ===== */
.tarif-card {
  border-radius: 0.75rem;
  padding: 1.25rem 0.75rem;
  transition: box-shadow 0.2s;
}

.tarif-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }

.tarif-card-default {
  background: transparent;
}

.tarif-card-default:hover { background: #F5F0E8; }

.tarif-card-highlight {
  background: #1A1A1A;
  color: #fff;
}

.tarif-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tarif-label {
  font-size: 0.875rem;
  font-weight: 600;
}

.tarif-note {
  font-size: 0.75rem;
  opacity: 0.5;
}

.tarif-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.tarif-price-gold { color: #B8860B; }

/* ===== TARIFS PAGE ===== */
.tarifs-page-header {
  background: #1A1A1A;
  padding: 5rem 1rem;
  margin-bottom: 3rem;
}

.tarif-section-title {
  margin: 2rem 0 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1A1A1A;
  border-left: 4px solid #B8860B;
  padding-left: 0.75rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s;
  border: 1px solid #E8E0D0;
  background: #fff;
  color: rgba(26,26,26,0.7);
}

.filter-btn:hover {
  border-color: rgba(26,26,26,0.3);
  color: #1A1A1A;
}

.filter-btn.active {
  background: #1A1A1A;
  color: #fff;
  border-color: #1A1A1A;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.tarif-chalet-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  border: 1px solid #E8E0D0;
  transition: box-shadow 0.2s;
}

.tarif-chalet-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }

.tarif-chalet-header {
  position: relative;
  height: 180px; /* 👈 plus grand */
  overflow: hidden;
  display: flex;
  align-items: center;
}

.tarif-chalet-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tarif-chalet-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
}

.tarif-chalet-header-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 1.5rem;
}

.tarif-chalet-header-link {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 0.75rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  transition: background 0.2s;
}

.tarif-chalet-header-link:hover { background: rgba(255,255,255,0.2); }

.tarif-chalet-body { padding: 1.5rem; }

.tarif-chalet-note {
  background: #F5F0E8;
  border-radius: 0.75rem;
  padding: 0.75rem;
  font-size: 0.75rem;
  color: rgba(26,26,26,0.6);
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
  margin-top: 1rem;
}

.tarif-chalet-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: #B8860B;
  color: #fff;
  font-weight: 600;
  padding: 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  margin-top: 1rem;
  transition: all 0.2s;
}

.tarif-chalet-cta:hover { background: #9A7209; }

/* ── Structure tarifs améliorée ───────────────────────── */

.tarif-section {
  margin-bottom: 2rem;
}

.tarif-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

/* Carte */
.tarif-card {
  background: #F5F0E8;
  border: 1px solid #E8E0D0;
  border-radius: 0.75rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

/* Carte highlight (noir) */
.tarif-card.highlight {
  background: #1A1A1A;
  color: #fff;
  border: none;
}

/* Texte */
.tarif-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #B8860B;
  font-weight: 600;
}

.tarif-card.highlight .tarif-label {
  color: #B8860B;
}

.tarif-price {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.tarif-note {
  font-size: 0.75rem;
  color: rgba(26,26,26,0.6);
}

.tarif-card.highlight .tarif-note {
  color: rgba(255,255,255,0.6);
}

/* Renforce le titre du chalet */
.tarif-chalet-header-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* Badge plus visible */
.tarif-chalet-header-content .badge-gold {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  opacity: 0.9;
}

/* Meilleur contraste */
.tarif-chalet-header-overlay {
  background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.3));
}

/* ===== PARTENAIRES ===== */
.partenaire-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #E8E0D0;
  transition: all 0.2s;
}

.partenaire-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-color: rgba(184,134,11,0.3);
}

.partenaire-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.partenaire-category {
  color: #B8860B;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  background: #F5F0E8;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
}

.partenaire-icon {
  color: rgba(26,26,26,0.3);
  transition: color 0.2s;
}

.partenaire-card:hover .partenaire-icon { color: #B8860B; }

.partenaire-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.partenaire-card:hover .partenaire-name { color: #B8860B; }

.partenaire-desc {
  color: rgba(26,26,26,0.6);
  font-size: 0.875rem;
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
}

/* ===== RESERVATION ===== */
.form-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #E8E0D0;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) { .form-grid { grid-template-columns: repeat(2, 1fr); } }

.form-field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(26,26,26,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.375rem;
}

.form-input {
  width: 100%;
  padding: 0.625rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid #E8E0D0;
  font-size: 0.875rem;
  font-family: 'Lato', sans-serif;
  color: #1A1A1A;
  background: #FAFAF7;
  transition: all 0.2s;
  outline: none;
}

.form-input:focus {
  border-color: #B8860B;
  box-shadow: 0 0 0 3px rgba(184,134,11,0.2);
}

.form-input.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.2);
}

.form-error {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: #ef4444;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.form-note {
  background: #F5F0E8;
  border-radius: 0.75rem;
  padding: 1rem;
  display: flex;
  gap: 0.75rem;
}

.form-note-icon {
  color: #B8860B;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.form-note p {
  color: rgba(26,26,26,0.7);
  font-size: 0.75rem;
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
}

.form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #B8860B;
  color: #fff;
  font-weight: 600;
  padding: 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  transition: all 0.2s;
}

.form-submit:hover {
  background: #9A7209;
  box-shadow: 0 10px 25px rgba(184,134,11,0.3);
}

/* Sidebar */
.sidebar-dark {
  background: #1A1A1A;
  border-radius: 1rem;
  padding: 1.5rem;
  color: #fff;
}

.sidebar-dark h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  border: none;
  padding: 0;
}

.sidebar-dark p {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  font-family: 'Lato', sans-serif;
  margin-bottom: 1.25rem;
}

.sidebar-contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid;
  transition: background 0.2s;
  margin-bottom: 0.75rem;
}

.sidebar-contact-link-fb {
  background: rgba(24,119,242,0.2);
  border-color: rgba(24,119,242,0.3);
}

.sidebar-contact-link-fb:hover { background: rgba(24,119,242,0.3); }

.sidebar-contact-link-lbc {
  background: rgba(249,115,22,0.2);
  border-color: rgba(249,115,22,0.3);
}

.sidebar-contact-link-lbc:hover { background: rgba(249,115,22,0.3); }

.sidebar-contact-link-mail {
  background: rgba(184,134,11,0.2);
  border-color: rgba(184,134,11,0.3);
}

.sidebar-contact-link-mail:hover { background: rgba(184,134,11,0.3); }

.sidebar-contact-name {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
}

.sidebar-contact-sub {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
}

.sidebar-contact-ext {
  color: rgba(255,255,255,0.3);
  margin-left: auto;
}

.sidebar-white {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #E8E0D0;
}

.sidebar-white h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 1rem;
  border: none;
  padding: 0;
}

.sidebar-list li {
  display: flex;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(26,26,26,0.7);
  font-family: 'Lato', sans-serif;
  margin-bottom: 0.75rem;
}

.sidebar-list .arrow {
  color: #B8860B;
  font-weight: 700;
}

.sidebar-sand {
  background: #F5F0E8;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #E8E0D0;
}

.sidebar-sand h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 1rem;
  border: none;
  padding: 0;
}

.sidebar-chalet-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: background 0.2s;
  margin-bottom: 0.5rem;
}

.sidebar-chalet-link:hover { background: #fff; }

.sidebar-chalet-link img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  object-fit: cover;
  flex-shrink: 0;
}

.sidebar-chalet-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1A1A1A;
  transition: color 0.2s;
}

.sidebar-chalet-link:hover .sidebar-chalet-name { color: #B8860B; }

.sidebar-chalet-cap {
  font-size: 0.75rem;
  color: rgba(26,26,26,0.5);
}

/* ===== RESERVATION LAYOUT ===== */
.reservation-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .reservation-grid { grid-template-columns: 2fr 1fr; }
}

.reservation-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* ===== MENTIONS LÉGALES ===== */
.mentions-content section {
  margin-bottom: 2rem;
}

.mentions-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 0.75rem;
}

.mentions-content p {
  color: rgba(26,26,26,0.8);
  font-family: 'Lato', sans-serif;
  line-height: 1.7;
}

/* ===== ACTIVITIES GRID ===== */
.activities-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) { .activities-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .activities-grid { grid-template-columns: repeat(3, 1fr); } }

.activity-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid #E8E0D0;
  transition: box-shadow 0.2s;
}

.activity-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }

.activity-icon {
  color: #B8860B;
  margin-bottom: 0.75rem;
}

.activity-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 0.5rem;
}

.activity-card p {
  color: rgba(26,26,26,0.6);
  font-size: 0.875rem;
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
}

/* ===== TARIFS DETAIL GRID ===== */
.tarifs-detail-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) { .tarifs-detail-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tarifs-detail-grid { grid-template-columns: repeat(3, 1fr); } }

.tarif-detail-card {
  border-radius: 0.75rem;
  padding: 1.25rem;
  border: 1px solid #E8E0D0;
  transition: box-shadow 0.2s;
}

.tarif-detail-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }

.tarif-detail-default {
  background: #fff;
}

.tarif-detail-highlight {
  background: #1A1A1A;
  border-color: #1A1A1A;
  color: #fff;
}

.tarif-detail-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: #B8860B;
  margin-bottom: 0.5rem;
}

.tarif-detail-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.tarif-detail-note {
  font-size: 0.75rem;
  opacity: 0.5;
}

/* ===== OTHER CHALETS ===== */
.other-chalets-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) { .other-chalets-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .other-chalets-grid { grid-template-columns: repeat(3, 1fr); } }

.other-chalet-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  height: 13rem;
  cursor: pointer;
}

.other-chalet-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.other-chalet-card:hover img { transform: scale(1.05); }

.other-chalet-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.other-chalet-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
}

.other-chalet-name {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
}

.other-chalet-cap {
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
}

/* ===== PARTENAIRES GRID ===== */
.partenaires-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) { .partenaires-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .partenaires-grid { grid-template-columns: repeat(3, 1fr); } }

/* ===== TARIFS PAGE GRID ===== */
.tarifs-page-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) { .tarifs-page-grid.all { grid-template-columns: repeat(2, 1fr); } }
.tarifs-page-grid.single { max-width: 48rem; margin: 0 auto; }

/* ===== FEATURE TAGS ===== */
.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-tag {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: #F5F0E8;
  color: #1A1A1A;
  font-size: 0.75rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid #E8E0D0;
}

/* ===== SUCCESS STATE ===== */
.success-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  border: 1px solid #E8E0D0;
  text-align: center;
  max-width: 32rem;
  width: 100%;
}

.success-icon {
  color: #4A5E3A;
  margin: 0 auto 1rem;
}

.success-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 0.75rem;
}

.success-card p {
  color: rgba(26,26,26,0.6);
  font-family: 'Lato', sans-serif;
  margin-bottom: 1.5rem;
}

/* ===== AVAILABILITY WARNING ===== */
.availability-warning {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: #92400e;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  margin-top: 0.25rem;
}

/* ===== PRESENTATION BADGES ===== */
.pres-badges {
  background: #1A1A1A;
  padding: 1.5rem 1rem;
}

.pres-badges-inner {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.pres-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
}

.pres-badge-icon { color: #B8860B; }

/* ===== PRESENTATION CONTENT ===== */
.pres-content-grid {
  display: grid;
  gap: 4rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .pres-content-grid { grid-template-columns: 1fr 1fr; }
}

.pres-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.pres-gallery-main {
  grid-column: span 2;
  border-radius: 1rem;
  overflow: hidden;
  height: 16rem;
}

.pres-gallery-sub {
  border-radius: 0.75rem;
  overflow: hidden;
  height: 10rem;
}

.pres-gallery-main img,
.pres-gallery-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ===== RESERVATION LAYOUT ===== */
.reservation-layout {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .reservation-layout { grid-template-columns: 2fr 1fr; }
}

.reservation-form-col { min-width: 0; }

.reservation-form {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  border: 1px solid #E8E0D0;
}

.reservation-form > div { margin-bottom: 1.5rem; }

.form-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #E8E0D0;
}

.form-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(26,26,26,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.375rem;
}

.form-field { margin-bottom: 1rem; }

.form-textarea { resize: none; }

.form-input-error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.2) !important;
}

.form-notice {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: #92400e;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  margin-top: 0.25rem;
}

.form-alert {
  background: #F5F0E8;
  border-radius: 0.75rem;
  padding: 1rem;
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.form-alert p {
  color: rgba(26,26,26,0.7);
  font-size: 0.75rem;
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
}

/* Sidebar contact */
.sidebar-contact {
  background: #1A1A1A;
  border-radius: 1rem;
  padding: 1.5rem;
  color: #fff;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid;
  transition: background 0.2s;
}

.sidebar-link-fb {
  background: rgba(24,119,242,0.2);
  border-color: rgba(24,119,242,0.3);
}
.sidebar-link-fb:hover { background: rgba(24,119,242,0.3); }

.sidebar-link-lbc {
  background: rgba(249,115,22,0.2);
  border-color: rgba(249,115,22,0.3);
}
.sidebar-link-lbc:hover { background: rgba(249,115,22,0.3); }

.sidebar-link-mail {
  background: rgba(184,134,11,0.2);
  border-color: rgba(184,134,11,0.3);
}
.sidebar-link-mail:hover { background: rgba(184,134,11,0.3); }

.sidebar-link-title {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
}

.sidebar-link-sub {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
}

.sidebar-infos {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #E8E0D0;
}

.sidebar-infos ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sidebar-infos li {
  display: flex;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(26,26,26,0.7);
  font-family: 'Lato', sans-serif;
}

.arrow-gold {
  color: #B8860B;
  font-weight: 700;
}

.sidebar-chalets {
  background: #F5F0E8;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #E8E0D0;
}

/* ===== CAROUSEL RESPONSIVE ===== */
/* Ratio adaptatif selon la taille d'écran — images jamais tronquées */
.carousel-responsive {
  /* Mobile : ratio 4:3 */
  aspect-ratio: 4 / 3;
  height: auto !important;
  width: 100%;
  position: relative;
}
@media (min-width: 640px) {
  .carousel-responsive {
    aspect-ratio: 16 / 9;
  }
}
@media (min-width: 1024px) {
  .carousel-responsive {
    aspect-ratio: 16 / 7;
    max-height: 700px;
  }
}
/* Le track occupe tout le conteneur */
.carousel-responsive .carousel-track {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
/* Chaque slide superposée */
.carousel-responsive .carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s;
  opacity: 0;
}
.carousel-responsive .carousel-slide.active {
  opacity: 1;
  z-index: 1;
}
/* Images : contain pour ne jamais tronquer */
.carousel-responsive .carousel-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #111;
  cursor: pointer;
}
